plan9port/bin/psu

24 lines
207 B
Text
Raw Normal View History

2003-10-13 18:25:28 +00:00
#!/bin/sh
flag=''
if [ "x$1" = "x-a" ]
then
flag=-a
shift
fi
user=`whoami`
case $# in
0)
user=`whoami`
;;
1)
user=$1
;;
*)
echo 'usage: psu [-a] [user]' 1>&2
exit 1
esac
ps $flag | grep "^$user "