plan9port/bin/psu
2005-01-04 21:15:35 +00:00

22 lines
190 B
Bash
Executable file

#!/bin/sh
flag=''
if [ "x$1" = "x-a" ]
then
flag=-a
shift
fi
case $# in
0)
user=$USER
;;
1)
user=$1
;;
*)
echo 'usage: psu [-a] [user]' 1>&2
exit 1
esac
ps $flag | grep "^$user "