Linux xargs命令詳解

2021-08-04 16:25:00 字數 2987 閱讀 3606

xargs用法詳解

1. 簡介

之所以能用到這個命令,關鍵是由於很多命令不支援|管道來傳遞引數,而日常工作中有有這個必要,所以就有了xargs命令,例如:

find /sbin -perm +700 |ls -l       這個命令是錯誤的

find /sbin -perm +700 |xargs ls -l   這樣才是正確的

xargs 可以讀入 stdin 的資料,並且以空白字元或斷行字元作為分辨,將 stdin 的資料分隔成為 arguments 。 因為是以空白字元作為分隔,所以,如果有一些檔名或者是其他意義的名詞內含有空白字元的時候, xargs 可能就會誤判了~他的用法其實也還滿簡單的!就來看一看先!

2. 選項解釋

-0 當sdtin含有特殊字元時候,將其當成一般字元,想/』空格等

例如:root@localhost:~/test#echo "//"|xargs  echo 

root@localhost:~/test#echo "//"|xargs -0 echo 

/-a file 從檔案中讀入作為sdtin,(看例一)

-e flag ,注意有的時候可能會是-e,flag必須是乙個以空格分隔的標誌,當xargs分析到含有flag這個標誌的時候就停止。(例二)

-p 當每次執行乙個argument的時候詢問一次使用者。(例三)

-n num 後面加次數,表示命令在執行的時候一次用的argument的個數,預設是用所有的。(例四)

-t 表示先列印命令,然後再執行。(例五)

-i 或者是-i,這得看linux支援了,將xargs的每項名稱,一般是一行一行賦值給{},可以用{}代替。(例六)

-r no-run-if-empty 當xargs的輸入為空的時候則停止xargs,不用再去執行了。(例七)

-s num 命令列的最好字元數,指的是xargs後面那個命令的最大命令列字元數。(例八)

-l  num use at most max-lines nonblank input lines per command line.-s是含有空格的。

-l  同-l

-d delim 分隔符,預設的xargs分隔符是回車,argument的分隔符是空格,這裡修改的是xargs的分隔符(例九)

-x exit的意思,主要是配合-s使用。

-p 修改最大的程序數,預設是1,為0時候為as many as it can ,這個例子我沒有想到,應該平時都用不到的吧。

3. 應用舉例

例一:root@localhost:~/test#cat test 

#!/bin/sh

echo "hello world/n"

root@localhost:~/test#xargs -a test echo

#!/bin/sh echo hello world/n

root@localhost:~/test#

例二:root@localhost:~/test#cat txt

/bin tao shou kun

root@localhost:~/test#cat txt|xargs -e 『shou』 echo

/bin tao

root@localhost:~/test#

例三:root@localhost:~/test#cat txt|xargs -p echo

echo /bin tao shou kun ff ?…y

/bin tao shou kun ff

例四:root@localhost:~/test#cat txt|xargs -n1 echo

/bin

taoshou

kunroot@localhost:~/test3#cat txt|xargs  echo

/bin tao shou kun

例五:root@localhost:~/test#cat txt|xargs -t echo

echo /bin tao shou kun 

/bin tao shou kun

例六:$ ls | xargs -t -i mv {} {}.bak

例七:root@localhost:~/test#echo ""|xargs -t mv

mv mv: missing file operand

try `mv –help』 for more information.

root@localhost:~/test#echo ""|xargs -t -r  mv

root@localhost:~/test#

(直接退出)

例八:root@localhost:~/test#cat test |xargs -i -x  -s 14 echo "{}"

exp1

exp5

file

xargs: argument line too long

linux-2

root@localhost:~/test#

例九:root@localhost:~/test#cat txt |xargs -i -p echo {}

echo /bin tao shou kun ?…y

root@localhost:~/test#cat txt |xargs -i -p -d " " echo {}

echo /bin ?…y

echo tao ?…/bin

yecho shou ?…tao

再如:root@localhost:~/test#cat test |xargs -i -p -d " " echo {}

echo exp1

exp5

file

linux-2

ngis_post

taotest

txtxen-3

?…yroot@localhost:~/test#cat test |xargs -i -p echo {}

echo exp1 ?…y

echo exp5 ?…exp1

yecho file ?…exp5

y

Linux xargs命令詳解

1 多行內容的單輸出且每行3個 cat home omc ftl logs.txt xargs n3 2 查詢系統中的每乙個普通檔案,然後使用xargs命令來測試它們分別屬於哪類檔案 find home omc maxdepth 1 user root type f xargs file 3 在 v...

Linux xargs 命令詳解

xargs 是給命令傳遞引數的乙個過濾器,也是組合多個命令的乙個工具。xargs 可以將管道或標準輸入 stdin 資料轉換成命令列引數,也能夠從檔案的輸出中讀取資料。xargs 也可以將單行或多行文字輸入轉換為其他格式,例如多行變單行,單行變多行。xargs 預設的命令是 echo,這意味著通過管...

Linux xargs 用法詳解

1.簡介 之所以能用到這個命令,關鍵是由於很多命令不支援 管道來傳遞引數,而日常工作中有有這個必要,所以就有了xargs命令,例如 find sbin perm 700 ls l 這個命令是錯誤的 find sbin perm 700 xargs ls l 這樣才是正確的 xargs 可以讀入 st...