标签: perl
如何从perl脚本中.exe file中的特定目录运行cmd。 例如,我应该写什么来运行c:/users/user/desktop/file.exe.中的文件 我试过这个:
.exe file
cmd
c:/users/user/desktop/file.exe.
system("c:/users/user/desktop/file.exe");
但它没有用。 什么是正确的语法?