xargs -n 1 -I @ ehco @
-n 表示拿傳進來的第幾個個值
-I @ 表示將指定的值存放於 @這個變數中
Example:
#echo 'book' | xargs -n 1 -I @ echo This is a @
#This is a book
2009年8月11日 星期二
xargs 以變數取代輸入資料
訂閱:
張貼留言 (Atom)
xargs -n 1 -I @ ehco @
-n 表示拿傳進來的第幾個個值
-I @ 表示將指定的值存放於 @這個變數中
Example:
#echo 'book' | xargs -n 1 -I @ echo This is a @
#This is a book
0 意見:
張貼留言