Last active
August 30, 2023 19:25
-
-
Save kamilogorek/635251990c0a15ad721525287b0268e9 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env bash | |
fn() { | |
echo "Return is just placeholder exit code, rely on command instead" | |
return 1 | |
} | |
i=1 | |
while true; do | |
echo "Run attempt: $i" | |
((i++)) | |
fn | |
if [ $? -eq 1 ]; then | |
break | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment