如何在 Perl 中组合 .EXE 命令?

发布于 2024-07-12 12:06:29 字数 75 浏览 10 评论 0原文

我有一组 .EXE 命令。 如何让所有这些命令作为单个文件在 Perl 中运行? 在 Perl 中调用 .EXE 文件的过程是什么?

I have a set of .EXE commands. How do I get all those commands run in Perl as a single file?
Whats the process to call the .EXE files in Perl?

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

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

发布评论

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

评论(2

吃→可爱长大的 2024-07-19 12:06:29

Perl system() 函数将执行以下操作:

#!/usr/bin/perl -w

system("prog1.exe");
system("prog2.exe");

The Perl system() function will do this:

#!/usr/bin/perl -w

system("prog1.exe");
system("prog2.exe");
忘年祭陌 2024-07-19 12:06:29

从 Perl 调用系统命令的方法是使用反

system("String containing command + args here")

引号,或者如果您想对输出执行某些处理,则可以使用反引号。

`command + args here`

您也可以使用所有正常的 Perl 字符串操作单行符和反引号。

TThe way to call system commands from perl is to use

system("String containing command + args here")

or if you want to perform some processing on the output, you use backticks

`command + args here`

You can use all your normal perl string manipulation oneliners with the backtick as well.

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