5 lines
67 B
Plaintext
5 lines
67 B
Plaintext
|
#!/bin/sh
|
||
|
if ! ps cx|grep "$1\$" >> /dev/null; then
|
||
|
exec $@
|
||
|
fi
|