Bash template is just template

This commit is contained in:
Martin Blazik
2021-10-16 18:42:46 +02:00
parent 8e406cddcd
commit 83794c6f00

View File

@@ -1,11 +1,15 @@
#!/usr/bin/env bash
# !! DRAFT !!
# !!!!!!!!!!!!!!!!!!!!!!!!
# JUST TEMPLATE
# !!!!!!!!!!!!!!!!!!!!!!!!
# https://betterdev.blog/minimal-safe-bash-script-template/
# https://medium.com/better-programming/my-minimal-safe-bash-script-template-300759114040
# https://github.com/koalaman/shellcheck
echo "Just tempalte. Change it to by your requirements"
exit 10
set -E -o errexit -o nounset -o pipefail
trap cleanup SIGINT SIGTERM ERR EXIT
@@ -83,7 +87,7 @@ function parse_params() {
;;
*)
EXTRA_ARGS+=("$opt")
EXTRA_ARGS+=("$ARG")
;;
esac
@@ -98,7 +102,6 @@ a_option_flag=0
abc_option_flag=0
flag_option_flag=0
parse_params "$@"
if ((flag_option_flag)); then