How can I get `find` to ignore .svn directories?

后端 未结 20 1475
迷失自我
迷失自我 2020-12-04 05:05

I often use the find command to search through source code, delete files, whatever. Annoyingly, because Subversion stores duplicates of each file in its .

20条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-04 05:49

    Try findrepo which is a simple wrapper around find/grep and much faster than ack You would use it in this case like:

    findrepo uint 'messages.*'
    

提交回复
热议问题