当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Perl qx用法及代码示例



描述

此函数是使用 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 qx Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。