1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

任意の文字列を含むファイルを探す方法

Posted at

背景

「文言変更しといて〜〜」みたいな依頼の時に、該当の文言を変更する機会が多い。
が、該当のファイルを見つけるための方法を毎回調べているので記載しようと思う。

目的

以下の2パターンに置いて該当のファイルを探し出せるコマンドを知ること。

1.ファイル名に任意の文言を含むケース
2.ファイルの中身に任意の文言を含むケース

1.ファイル名に任意の文言を含むケース

$ find {検索対象フォルダのパス} -type f -name "*{検索したい文字列}*"

2.ファイルの中身に任意の文言を含むケース

$ grep "{検索したい文字列}" -rl {検索対象フォルダのパス}
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?