トーク:find, tar, ssh を組み合わせワンライナーで利用する
提供:maruko2 Note.
find /var/log/httpd -type f -daystart -mtime +0 -print0 | xargs -0 mv -v --target-directory=/data/log
/var/log/httpd 内の通常ファイルのうち、変更日が昨日以前のファイルを、/data/log ディレクトリに移動させる。