5 lines
90 B
Bash
Executable file
5 lines
90 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for proc in $@; do
|
|
ps ax|grep $proc|grep -v $0|grep -v "grep $proc"
|
|
done
|