ちょっと前のネタだがメモ
http://openlab.dino.co.jp/2008/02/20/133431188.html
xargsでmvを実行したいとき
$ find . -name \*~ -print0 | xargs -0 mv -t /var/tmp
- print0と-0は空白文字を含んだファイル名対策らしい。
該当ディレクトリの最新のファイル名を取得
http://openlab.dino.co.jp/2008/03/25/121822193.html
#/bin/sh ls -t -w 1|head -n 1|xargs $*
$ recent tar xvzf
めも
未検証