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 运行顺序 shell 命令,但我需要 shell 环境来保留它的变量。
例如:
$result = `cd /`; $result = `touch test.txt`;
在这个例子中,我需要在 / 上创建 test.txt。
另外,我不想在像 $result= 这样的一行代码中运行它们touch /test.txt;在环境变量保持不变的情况下,我需要单独调用 shell。
touch /test.txt
chdir '/'; $result = `touch test.txt`;