11 lines
237 B
Bash
11 lines
237 B
Bash
#!/bin/sh
|
|
|
|
if ps -ef | grep -v grep | grep /home/user/private/idlerpg/irpg.pl
|
|
then
|
|
exit 0
|
|
else
|
|
cd /home/user/private/idlerpg
|
|
nohup /home/user/private/idlerpg/irpg.pl </dev/null >/dev/null 2>&1 &
|
|
exit 0
|
|
fi
|