在这里,我编写了一个脚本,该脚本应该执行当前目录中的所有文件。它们是批处理文件。
set path [pwd]
append path "/"
set files [glob *]
foreach file $files {
exec cmd.exe /c ${path}$file
}
但我收到以下错误:
The system cannot find the path specified.
在这里,我编写了一个脚本,该脚本应该执行当前目录中的所有文件。它们是批处理文件。
set path [pwd]
append path "/"
set files [glob *]
foreach file $files {
exec cmd.exe /c ${path}$file
}
但我收到以下错误:
The system cannot find the path specified.