[script] find without looking into .svn
This commit is contained in:
parent
f16f078bf0
commit
5a75a9e7a1
11
scripts/find-nosvn
Normal file
11
scripts/find-nosvn
Normal file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
txtRED='\e[1;31m' # Red
|
||||
txtdfl='\e[0m' # Default
|
||||
echo -e "${txtRED}searching for $@${txtdfl}";
|
||||
|
||||
#find . -not -iwholename "*.svn" -name "*.[ch]" -exec grep -nH --color=auto $@ {} \;
|
||||
|
||||
find . -type d -a -name .svn -prune -o -name "*.[ch]" -exec grep -nH --color=always $@ {} \;
|
||||
#find . -name "*.[ch]" -exec grep -nH --color=auto --exclude-dir=.svn $@ {} \;
|
||||
#try ack
|
Loading…
Reference in New Issue
Block a user