在 perl 脚本中运行多个 shell 命令

发布于 2024-10-21 20:14:12 字数 228 浏览 2 评论 0原文

我正在使用 System() 命令从 perl 脚本执行 shell 命令,但我需要一个接一个地运行多个命令。我们怎样才能在一行中做到这一点。

我目前正在做的是:

$cmd = "ls -l cd /home/xyz ls -l" , 
System($cmd)

我确信单个命令可以正常工作,有人可以让我知道这是否是正确的方法吗?如果不是,这里出了什么问题?

I am using System() command to execute shell command from perl script but I need to run multiple commands one after another. How can we do that in one line.

What I am doing currently is :

$cmd = "ls -l cd /home/xyz ls -l" , 
System($cmd)

I am sure that single command works fine , Can someone let me know if this is right way to do? if not what is wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨小墨 2024-10-28 20:14:12

您需要执行与在 shell 中相同的操作。对于您的测试命令,它看起来像:

$cmd = "ls -l ; cd /home/xyz ; ls -l";
system($cmd);

或者更好,按照 BadFileMagic 的建议:

$cmd = "ls -l ; cd /home/xyz && ls -l";

这样,第二个 <如果 cd 失败,则不会执行 code>ls。

You need to do the same thing that you would in your shell. For your test command, it would look something like:

$cmd = "ls -l ; cd /home/xyz ; ls -l";
system($cmd);

Or better yet, as suggested by BadFileMagic:

$cmd = "ls -l ; cd /home/xyz && ls -l";

This way, the second ls is not executed if the cd fails.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文