描述
此函数是使用 back-quotes 执行系统命令的替代方法。例如,qx(ls -l) 将使用 -l 命令行 选项执行 UNIX ls 命令。您实际上可以使用任何一组定界符,而不仅仅是括号。
用法
以下是此函数的简单语法 -
qx EXPR
返回值
此函数从执行的系统命令返回值。
示例
以下是显示其基本用法的示例代码 -
#!/usr/bin/perl -w
# summarize disk usage for the /tmp directory
# and store the output of the command into the
# @output array.
@output = qx(du -s /tmp);
print "@output\n";
执行上述代码时,会产生以下结果 -
176 /tmp
相关用法
- Perl qw用法及代码示例
- Perl qr用法及代码示例
- Perl qq用法及代码示例
- Perl quotemeta()用法及代码示例
- Perl q用法及代码示例
- Perl sin()用法及代码示例
- Perl abs()用法及代码示例
- Perl kill用法及代码示例
- Perl chop()用法及代码示例
- Perl wantarray用法及代码示例
- Perl gmtime用法及代码示例
- Perl exists()用法及代码示例
- Perl split用法及代码示例
- Perl localtime用法及代码示例
- Perl delete()用法及代码示例
- Perl undef用法及代码示例
- Perl reset()用法及代码示例
注:本文由纯净天空筛选整理自 Perl qx Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。