Created
April 18, 2021 09:51
-
-
Save BaderSZ/61b5a15a71a22ccd6f19d1fd95f7c6af to your computer and use it in GitHub Desktop.
Bash script template, including functions, etc.
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
#!/bin/env bash | |
set -euo pipefail | |
EXIT_SUCCESS=0 | |
EXIT_FAILURE=1 | |
## insert functions here... | |
print_help() { | |
echo "Commands:" | |
echo " ./bash_template.sh arg1" | |
echo " ./bash_template.sh help" | |
} | |
main() { | |
case "${1}" in | |
"help") | |
print_help | |
exit ${EXIT_SUCCESS};; | |
"none") | |
echo "No argument given!" | |
print_help | |
exit ${EXIT_FAILURE};; | |
"*") | |
echo "Invalid argument!" | |
print_help | |
exit ${EXIT_FAILURE};; | |
} | |
main ${1-none} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment