トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS

Top / linux / System Command Examples / various examples / grep 再帰的に処理時に特定のディレクトリを除外する
Last-modified: 2017-10-06 (金) 16:47:51 (2188d)

grep 再帰的に処理時に特定のディレクトリを除外する


  • syntax:
    grep -rl --exclude-dir=検索除外ディレクトリ名 検索文字列 検索Path
    grep -rl --exclude-dir=./husatto* HageHage ./*

  • comment:
    grepの検索を再帰的に処理するときに特定のディレクトリを除外したい

  • Example:



    Tag: Linux grep

    Goto Top Page

Top / linux / System Command Examples / various examples / grep 再帰的に処理時に特定のディレクトリを除外する