15 lines
319 B
Bash
Executable File
15 lines
319 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# usage: monitor.sh "<the exe file's absolute path and its shell parameter>"
|
|
# And then when ever the exe shutdown it will be automatically restart
|
|
|
|
exe=$1
|
|
while true; do
|
|
state=`ps aux | grep "$1" | grep -v grep | grep -v $0`
|
|
if [ ! "$state" ]; then
|
|
exec $exe &
|
|
echo "restart $exe"
|
|
fi
|
|
sleep 0.5
|
|
done
|