Files
dotfiles/utils/.local/bin/tryna
2026-02-21 18:10:09 +08:00

25 lines
364 B
Bash
Executable File

#!/husr/bin/env bash
set -uo pipefail
if [[ "$1" == "-h" || "$1" == "--help" ]]; then
cat <<EOF
Usage: $(basename "$0") [-h] <command>
Retry a command until it fails.
Options:
-h, --help Show this help message
Arguments:
command Command to repeatedly execute
EOF
exit 0
fi
"$@"
while [[ "$?" -eq 0 ]]; do
sleep 0.5
"$@"
done