cmd 运行批处理,路径中有括号不识别怎么办
cmd 运行批处理,路径中有括号时,使用CALL或者转义即可,如下所示
cmd /c "d:\test(t)t.bat"
cmd /c call "d:\test(t)t.bat"
cmd /c "d:\test^(t^)t.bat"
效果如下:
cmd 运行批处理,路径中有括号时,使用CALL或者转义即可,如下所示
cmd /c "d:\test(t)t.bat"
cmd /c call "d:\test(t)t.bat"
cmd /c "d:\test^(t^)t.bat"
效果如下: