g: add '.hs' and 'mkfile' to the walk. (thanks joe9)
This expands the set of files that we grep through by default to include mkfiles and haskell.
This commit is contained in:
parent
0366f11300
commit
03499e53cc
1 changed files with 3 additions and 1 deletions
4
rc/bin/g
4
rc/bin/g
|
@ -20,7 +20,9 @@ case 0
|
|||
exit usage
|
||||
case 1
|
||||
pattern=$1
|
||||
files=`$nl{walk -f $recurse | grep '\.([bcChlmsy]|asm|awk|cc|cgi|cpp|cs|go|goc|java|lx|ms|pl|py|rc|tex|xy)$' >[2]/dev/null}
|
||||
fullnames='mkfile$'
|
||||
suffixes='\.([bcChlmsy]|asm|awk|cc|cgi|cpp|cs|go|goc|hs|java|lx|ms|pl|py|rc|tex|xy)$'
|
||||
files=`$nl{walk -f $recurse | grep -e $fullnames -e $suffixes >[2]/dev/null}
|
||||
case *
|
||||
pattern=$1
|
||||
shift
|
||||
|
|
Loading…
Reference in a new issue