如何在 Windows 上用 Perl 调用 winrar?
是否可以在Windows系统上通过perl
调用winrar
,例如
perl -e "rar a -rr10 -s c:\backups\backup.rar @backup.lst"
如果可以,是否有更有效的方法来做到这一点?
我在谷歌上查找了“perl -e”+winrar,但是没有一个结果给了我任何与我正在寻找的答案相距甚远的答案。我运行的系统是Windows XP系统。如果更容易的话,我愿意用另一种语言(例如 python)来完成此操作;不过我对 Perl 更满意。
Is it possible to call winrar
through perl
on a windows system, such as
perl -e "rar a -rr10 -s c:\backups\backup.rar @backup.lst"
If so, is there a more efficient way to do this?
I've looked up "perl -e" +winrar on google, however none of the results gave me any answer that was remotely close to what I was looking for. The system I'm running this on is a Windows XP system. I'm open to doing this in another language like python if its easier; however I am more comfortable with Perl.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 CPAN 模块 Archive::Rar 访问 Windows 中的 RAR 工具:
You can access the RAR facilities in Windows using the CPAN module Archive::Rar:
从 Perl 脚本执行外部命令的一种方法是使用 system:
One way to execute external commands from a Perl script is to use system:
要使用 Perl 程序中的外部应用程序,请使用 system 内置程序。
如果需要命令的输出,可以使用反引号 (``) 或 qx 运算符,如 perlop。您还可以使用 perlipc。
To use external applications from your Perl program, use the system builtin.
If you need the output from the command, you can use the backtick (``) or qx operator as discussed in perlop. You can also use pipes as discussed in perlipc.