xref: /plan9/rc/bin/whois (revision 7dd7cddf99dd7472612f1413b4da293630e6b1bc)
1#!/bin/rc
2
3for(i in $*)
4	grep '^'$i'	' /adm/whois ||
5	grep -i $i /adm/keys.who ||
6	grep -i $i /adm/netkeys.who ||
7	grep -i $i /adm/whois ||
8	grep -i $i /adm/users ||
9	echo who indeed is $i
10