plan9fox/rc/bin/g
Sigrid Solveig Haflínudóttir 577a537d65 g: add .ha (Hare)
2022-05-30 21:55:38 -04:00

39 lines
738 B
Bash
Executable file

#!/bin/rc
rfork e
nl='
'
flags=()
recurse=()
files=()
while(! ~ $#* 1 && ~ $1 -* && ! ~ $1 --){
if(~ $1 '-n')
recurse=-n1
if not
flags=($flags $1);
shift
}
if(~ $1 --)
shift
if(~ $#* 0) {
echo 'usage: g [flags] pattern [files]' >[1=2]
exit usage
}
pattern=$1
shift
suffixes='\.([bcChlmsy]|asm|awk|cc|cgi|cpp|cs|go|goc|ha|hs|java|lua|lx|mk|ml|mli|ms|myr|pl|py|rc|sh|tex|xy)$'
fullnames='(^|/)mkfile$'
repodirs='(^|/)(.git|.hg)($|/)'
switch($#*){
case 0
walk -f $recurse | grep -e $fullnames -e $suffixes >[2]/dev/null
case *
for(f in $*){
if(test -d $f)
walk -f $recurse -- $f \
| grep -e $fullnames -e $suffixes >[2]/dev/null
if not
echo $f
}
} | grep -v $repodirs | xargs grep -n $flags -- $pattern /dev/null