dotfiles/bin/forever

10 řádky
97 B
Bash
Spustitelný soubor

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