shell命令xargs

來源:互聯網
上載者:User

shell命令xargs

build and execute command lines from standard input

xargs 可以讀入 stdin 的資料,並且以空格符或斷行字元作為分辨,將 stdin 的資料分隔成為 arguments 。

1)說明

xargs [-0epn] command

選項與參數:

-0: 如果輸入的 stdin 含有特殊字元,例如 `, \, 空白鍵等等字元時,這個 -0 參數可以將他還原成一般字元。

-e: 這個是 EOF (end of file) 的意思。後面可以接一個字串,當 xargs 分析到這個字串時,就會停止繼續工作!

-p: 在執行每個指令的 argument 時,都會詢問使用者的意思;

-n: 後面接次數,每次 command 指令執行時,要使用幾個參數的意思。

當 xargs 後面沒有接任何的指令時,預設是以 echo 來進行輸出!

2)樣本

cut -d ":" -f1 /etc/passwd | tail -n 5 | xargs finger

3)使用 xargs 的原因是, 很多指令其實並不支援管道命令,因此我們可以透過 xargs 來提供該指令引用 standard input 之用。

find ./ -name prime.cpp | ls -l //輸出並不是我們所想,因為ls不支援管道

find ./ -name prime.cpp | xargs ls -l

原文

[1]http://linux.vbird.org/linux_basic/0320bash.php

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.