Adds forever script
This commit is contained in:
parent
67346b2887
commit
4f36945dd7
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
while :; do
|
||||
"$@"
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
exit $?
|
||||
fi
|
||||
done
|
Loading…
Reference in New Issue