はい!今やってます!

Work Pertly, Live Idly

【WIP】Oh-My-Shell Commands ~シェルコマンドの覚書き~

この記事について

空で打てなかったシェルコマンドをひたすら書き連ねる為の記事

特定の文字列を含むファイルを探す

  • 検索結果を含む
grep -rnw ./ -e "phrase"
  • ファイル一覧
find ./ -type f -print | xargs grep "phrase"