Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想执行一个包含 1 个文本文件(比如 Text.exe)的程序,我想使用这个输出(也是 txt)以供将来在 C# 程序中使用。我正在考虑使用 Perl 脚本来执行它(该脚本还执行其他一些操作),但不太确定如何在 Perl 脚本中调用 .exe。我很感激任何建议。
使用反引号:`如果您需要捕获程序的输出。
`
my $output = `program.exe`;
您可以在perlipc中找到有关 Perl 中可用的不同 IPC 方法的更多详细信息。
采用:
system("c:\somepath\program.exe");
您可以向字符串添加参数。