mscripts/scripts/psg
2016-09-18 14:20:38 +02:00

11 lines
76 B
Bash
Executable File

#!/bin/bash
#echo $1
if [ $1 ]; then
ps aux | grep $@
else
ps aux
fi