Created
February 4, 2021 17:56
-
-
Save rpappalax/566471f187ac31274a3935879c671a0b 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
condition=0 | |
echo "STEP1" | |
export SHOULD_I_STOP=${condition} | |
if [[ ${SHOULD_I_STOP} == 1 ]]; then | |
echo "STEP2" | |
fi | |
if [[ ${SHOULD_I_STOP} == 1 ]]; then | |
echo "STEP3" | |
fi | |
if [[ ${SHOULD_I_STOP} == 1 ]]; then | |
echo "STEP4" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment