Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使我的 perl prog 在其他 perl 安装中可移植。好像草莓MinGW perl 正在做一个把事情搞砸的转换。
当我运行系统命令时,它似乎正在将窗口的开关转换为绝对路径。IE
system('cmd /c "echo hello"');
被执行为:
c:\Windows\system32\cmd.exe c:/ "echo hello"
取自 Process Explorer。
我该如何阻止这种行为?