當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。