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