0

我需要使用 perl 运行顺序 shell 命令,但我需要 shell 环境来保留它的变量。

例如:

$result = `cd /`;
$result = `touch test.txt`;

在这个例子中,我需要在 / 上创建 test.txt。

另外,我不想在像 $result= 这样的一行代码中运行它们touch /test.txt;在环境变量保持不变的情况下,我需要单独调用 shell。

4

1 回答 1

3
chdir '/';
$result = `touch test.txt`;
于 2013-04-03T08:22:00.993 回答