Skip to content

Instantly share code, notes, and snippets.

@BaderSZ
Created April 18, 2021 09:51
Show Gist options
  • Save BaderSZ/61b5a15a71a22ccd6f19d1fd95f7c6af to your computer and use it in GitHub Desktop.
Save BaderSZ/61b5a15a71a22ccd6f19d1fd95f7c6af to your computer and use it in GitHub Desktop.
Bash script template, including functions, etc.
#!/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