LoginSignup
4
5

More than 5 years have passed since last update.

.svnディレクトリをfindから除く

Last updated at Posted at 2012-03-07
# xmlファイルを検索、ただし.svnディレクトリ以下は除く
find ./ \
     -type d -name '.svn' -prune \
  -o -type f -name '*.xml'

# xmlファイルを検索、ただし.svnディレクトリ以下は除く
# 検索結果のファイルの内容から、apiを含む行を探す
find ./ \
     -type d -name '.svn' -prune \
  -o -type f -name '*.xml' -print0 \
| xargs -0 grep -n --color 'api'
4
5
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
4
5