如何在 Perl 中组合 .EXE 命令?
我有一组 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Perl
system()
函数将执行以下操作:The Perl
system()
function will do this:从 Perl 调用系统命令的方法是使用反
引号,或者如果您想对输出执行某些处理,则可以使用反引号。
您也可以使用所有正常的 Perl 字符串操作单行符和反引号。
TThe way to call system commands from perl is to use
or if you want to perform some processing on the output, you use backticks
You can use all your normal perl string manipulation oneliners with the backtick as well.