Created
November 28, 2012 14:33
-
-
Save davidmz/4161662 to your computer and use it in GitHub Desktop.
Скрипт авторестарта программы
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ $# -eq '0' ] | |
then | |
echo 'Empty command' | |
exit 1 | |
fi | |
stop=0 | |
trap 'stop=1' TERM QUIT INT | |
while [ $stop -eq '0' ] | |
do | |
$@ | |
sleep 1 | |
done | |
echo 'Bye' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment