summaryrefslogtreecommitdiff
path: root/rc/bin/Bfn
blob: 636aee52458b5a00f1be0204967761278a102889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/rc
if(! ~ $#* 1){
	echo usage: $0 fn >[2=1]
	exit usage
}
res=`{grep -n '^'$1'\(' *.c | sed -n 's/^([^:]*:[^:]*).*$/\1/gp' }
ifs='
'
for(i in $res)
	echo $i
switch($#res){
case 0
	echo $1: not found >[2=1]
case 1
	plumb $res
}