LinuxコマンドTips
作成日時:2018/04/01
更新日時:2018/04/01
スポンサーリンク
ファイル名に特定の文字列を含むファイルを検索
find . -type f -name "*検索する文字列*"
ファイル内容に特定の文字列を含むファイルを検索
find . -type f -print0 | xargs grep '検索する文字列'
grep 検索する文字列 -rl .
ファイル内容に特定の文字列を含むファイルを検索(特定ディレクトリ以下の検索を除外)
find . -type d -name '除外するディレクトリ名' -prune -o -type f -print | xargs grep -l '検索する文字列'
指定ディレクトリ以下のファイル内文字列を置き換える
find ./ -name '*' -type f | xargs sed -i 's/${置換前}/${置換後}/g'