Files
dotfiles/bin/forever
2019-10-10 13:57:59 +02:00

10 lines
97 B
Bash
Executable File

#!/usr/bin/env bash
while :; do
"$@"
if [ $? -ne 0 ]; then
exit $?
fi
done