我有一组.EXE命令.如何将所有在Perl中运行的命令作为单个文件?什么是在Perl中调用.EXE文件的过程?
Perl system()函数将执行此操作:
system()
#!/usr/bin/perl -w system("prog1.exe"); system("prog2.exe");