nsbin/old/taskgreper

6 lines
90 B
Bash
Executable File

#!/bin/sh
for proc in $@; do
ps ax|grep $proc|grep -v $0|grep -v "grep $proc"
done