Created
March 10, 2021 00:19
-
-
Save woodRock/da811d4bc3038b12cc4561aea8a3a803 to your computer and use it in GitHub Desktop.
Holds the door! A bash script to stop the terminal from automatically closing upon completion of a script. Useful for debugging on Windows systems.
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
# Argument to hold the script. | |
if [[ "$2" == "hold" ]]; then | |
echo "Hold the Door!" | |
read | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment