星期一, 7月 06, 2009

xargs 指令使用筆記

xargs 指令使用筆記

* xargs - build and execute command lines from standard input
* xargs 可以把從 stdio 傳來的字串當成某個指令的參數。

把 /tmp 下的 core dump 檔案都砍掉
find /tmp -name core -type f -print0 | xargs -0 /bin/rm -f

顯示與砍掉所有 .svn 的目錄
find . -name .svn | xargs ls -ld
find . -name .svn | xargs rm -rf

顯示系統內所有 user id 並排序
cut -d: -f1 < /etc/passwd | sort | xargs echo

沒有留言: