いつも忘れる
find ./ type f -name "*.txt" | xargs grep "hoge"
findコマンドで拡張子が"txt"のファイルを探す。
type -f で、実体ファイルを対象とする。
./ で、ディレクトリ配下を検索する。
findコマンドで検索した結果をxargsに引き渡す
先に検索した結果「ディレクトリ以下の "*.txt" ファイル」の中からhogeという文字列を含むものを、grepでピックアップする。
Go to list of users who liked
More than 5 years have passed since last update.
いつも忘れる
find ./ type f -name "*.txt" | xargs grep "hoge"
findコマンドで拡張子が"txt"のファイルを探す。
type -f で、実体ファイルを対象とする。
./ で、ディレクトリ配下を検索する。
findコマンドで検索した結果をxargsに引き渡す
先に検索した結果「ディレクトリ以下の "*.txt" ファイル」の中からhogeという文字列を含むものを、grepでピックアップする。
Register as a new user and use Qiita more conveniently
Go to list of users who liked