よく忘れるので備忘録として記録しておく。
サブディレクトリ以下の特定の拡張子からのみ全文検索する
例: *.rb から hoge を検索する
find ./ -type f -name "*.rb" -print0 | xargs -0 grep hoge
サブディレクトリ以下の特定の拡張子を全て置換する
例: css -> scss に置換
find ./ -type f -name "*.css" -print0 | while read -r -d '' file; do mv "$file" "${file%.*}.scss"; done
rsync 便利コマンド集
サーバから特定日時以降のファイルのみ取得する
例: example.com から 2016-01-01 以降に更新されたファイルを全て取得する
rsync -aR -e ssh example.com:'`find /var/log/httpd -type f -newermt "2016-01-01 00:00:00"`' ./