summaryrefslogtreecommitdiff
path: root/rc/bin/ape/grep
blob: c67d3f70d80afa773787a5df152fe6effcf6db66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/rc

rfork e

opts=()
files=()
argv0=$0
while(! ~ $#* 0){
	switch($1){
	case -[cefinsv]
		opts=($opts $1)
	case -q
		opts=($opts -s)
	case -*
		echo $argv0 $1 not supported >[1=2]
		exit 'not supported'
	case *
		files=($files $1)
	}
	shift
}
exec /$cputype/bin/grep $opts $files