Perl 脚本调用 unix 命令系统 unzip

发布于 2024-12-11 18:46:07 字数 276 浏览 0 评论 0原文

我正在尝试使用 Perl 脚本解压缩文件。为了解压缩该文件,我选择尝试调用 UNIX 命令系统 unzip。我的问题似乎是该命令没有读取变量。

my $file_path = "/home/data"
my $file_name = "TEST.ZIP"

system ('unzip $file_path/$file_name');

当我运行命令时,我看到了。

解压缩:找不到 /、/.zip 或 /.ZIP。

我该如何解决这个问题?

I am trying to unzip a file using a Perl script. In order to unzip the file I chose to try and invoke the UNIX command system unzip. My problem seems to be that the command is not reading the variables.

my $file_path = "/home/data"
my $file_name = "TEST.ZIP"

system ('unzip $file_path/$file_name');

When I run the command I see.

unzip: cannot find /, /.zip or /.ZIP.

How do I solve this problem?

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

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

发布评论

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

评论(2

π浅易 2024-12-18 18:46:07
system ("unzip $file_path/$file_name");

如果要使用字符串插值,请使用双引号。

system ("unzip $file_path/$file_name");

Use double quotes if you want to use string interpolation.

骑趴 2024-12-18 18:46:07

最好使用相关的 (Archive::Extract) 模块。

Better use a relevant (Archive::Extract) module.

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