2022-02-03 14:32:08 +01:00
|
|
|
|
#!/bin/sh
|
|
|
|
|
#
|
|
|
|
|
# Purpose {{{
|
|
|
|
|
# This script will …
|
|
|
|
|
# 1. …
|
|
|
|
|
# …
|
|
|
|
|
#
|
|
|
|
|
# !!DATE!!
|
|
|
|
|
# }}}
|
|
|
|
|
# Vars {{{
|
2022-07-19 11:33:20 +02:00
|
|
|
|
PROGNAME=$(basename "${0}"); readonly PROGNAME
|
|
|
|
|
PROGDIR=$(readlink -m $(dirname "${0}")); readonly PROGDIR
|
|
|
|
|
ARGS="${*}"; readonly ARGS
|
2022-02-03 14:32:08 +01:00
|
|
|
|
readonly NBARGS="${#}"
|
|
|
|
|
[ -z "${DEBUG}" ] && DEBUG=1
|
|
|
|
|
## Export DEBUG for sub-script
|
|
|
|
|
export DEBUG
|
|
|
|
|
|
|
|
|
|
## Default values for some vars
|
|
|
|
|
#readonly MY_VAR_XY_DEFAULT="666"
|
|
|
|
|
|
|
|
|
|
## Colors
|
|
|
|
|
readonly PURPLE='\033[1;35m'
|
|
|
|
|
readonly RED='\033[0;31m'
|
|
|
|
|
readonly RESET='\033[0m'
|
|
|
|
|
readonly COLOR_DEBUG="${PURPLE}"
|
|
|
|
|
# }}}
|
|
|
|
|
usage() { # {{{
|
|
|
|
|
|
|
|
|
|
cat <<- HELP
|
|
|
|
|
usage: $PROGNAME [-d|-h]
|
|
|
|
|
|
|
|
|
|
Try to give a description…
|
|
|
|
|
|
|
|
|
|
EXAMPLES :
|
|
|
|
|
- Apply my script to…
|
|
|
|
|
${PROGNAME}
|
|
|
|
|
|
|
|
|
|
OPTIONS :
|
|
|
|
|
-d,--debug
|
|
|
|
|
Enable debug messages.
|
|
|
|
|
|
|
|
|
|
-h,--help
|
|
|
|
|
Print this help message.
|
|
|
|
|
HELP
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
# }}}
|
|
|
|
|
debug_message() { # {{{
|
|
|
|
|
|
|
|
|
|
local_debug_message="${1}"
|
|
|
|
|
|
|
|
|
|
## Print message if DEBUG is enable (=0)
|
|
|
|
|
[ "${DEBUG}" -eq "0" ] && printf '\e[1;35m%-6b\e[m\n' "DEBUG − ${PROGNAME} : ${local_debug_message}"
|
|
|
|
|
|
|
|
|
|
unset local_debug_message
|
|
|
|
|
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
# }}}
|
|
|
|
|
error_message() { # {{{
|
|
|
|
|
|
|
|
|
|
local_error_message="${1}"
|
|
|
|
|
local_error_code="${2}"
|
|
|
|
|
|
|
|
|
|
## Print message
|
|
|
|
|
printf '%b\n' "ERROR − ${PROGNAME} : ${RED}${local_error_message}${RESET}"
|
|
|
|
|
|
|
|
|
|
exit "${local_error_code:=66}"
|
|
|
|
|
}
|
|
|
|
|
# }}}
|
|
|
|
|
define_vars() { # {{{
|
|
|
|
|
|
|
|
|
|
## If my_var_xy wasn't defined (argument) {{{
|
|
|
|
|
#if [ -z "${my_var_xy}" ]; then
|
|
|
|
|
### Use default value
|
|
|
|
|
#readonly my_var_xy="${MY_VAR_XY_DEFAULT}"
|
|
|
|
|
#fi
|
|
|
|
|
## }}}
|
|
|
|
|
|
2022-12-01 10:40:38 +01:00
|
|
|
|
|
|
|
|
|
true; ## Remove me
|
2022-02-03 14:32:08 +01:00
|
|
|
|
}
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
main() { # {{{
|
|
|
|
|
|
2022-12-01 10:40:38 +01:00
|
|
|
|
debug_message "--- MAIN BEGIN"
|
|
|
|
|
|
2022-02-03 14:32:08 +01:00
|
|
|
|
## If script should not be executed right now {{{
|
|
|
|
|
### Exit
|
|
|
|
|
is_script_ok \
|
|
|
|
|
&& exit 0
|
|
|
|
|
## }}}
|
|
|
|
|
|
|
|
|
|
## Define all vars
|
|
|
|
|
define_vars
|
2022-12-01 10:40:38 +01:00
|
|
|
|
debug_message "| Define vars"
|
2022-02-03 14:32:08 +01:00
|
|
|
|
|
2022-12-01 10:40:38 +01:00
|
|
|
|
debug_message "--- MAIN END"
|
2022-02-03 14:32:08 +01:00
|
|
|
|
}
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Manage arguments # {{{
|
|
|
|
|
# This code can't be in a function due to argument management
|
|
|
|
|
|
|
|
|
|
if [ ! "${NBARGS}" -eq "0" ]; then
|
|
|
|
|
|
|
|
|
|
manage_arg="0"
|
|
|
|
|
|
|
|
|
|
## If the first argument is not an option
|
|
|
|
|
if ! printf -- '%s' "${1}" | grep -q -E -- "^-+";
|
|
|
|
|
then
|
|
|
|
|
## Print help message and exit
|
|
|
|
|
printf '%b\n' "${RED}Invalid option: ${1}${RESET}"
|
|
|
|
|
printf '%b\n' "---"
|
|
|
|
|
usage
|
|
|
|
|
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Parse all options (start with a "-") one by one
|
|
|
|
|
while printf -- '%s' "${1}" | grep -q -E -- "^-+"; do
|
|
|
|
|
|
|
|
|
|
case "${1}" in
|
|
|
|
|
-d|--debug ) ## debug
|
|
|
|
|
DEBUG=0
|
2022-12-01 10:40:38 +01:00
|
|
|
|
debug_message "--- Manage argument BEGIN"
|
2022-02-03 14:32:08 +01:00
|
|
|
|
;;
|
|
|
|
|
-h|--help ) ## help
|
|
|
|
|
usage
|
|
|
|
|
## Exit after help informations
|
|
|
|
|
exit 0
|
|
|
|
|
;;
|
|
|
|
|
#-v|--var ) ## Define var with given arg
|
|
|
|
|
### Move to the next argument
|
|
|
|
|
#shift
|
|
|
|
|
### Define var
|
|
|
|
|
#readonly my_var_xy="${1}"
|
|
|
|
|
#;;
|
|
|
|
|
* ) ## unknow option
|
|
|
|
|
printf '%b\n' "${RED}Invalid option: ${1}${RESET}"
|
|
|
|
|
printf '%b\n' "---"
|
|
|
|
|
usage
|
|
|
|
|
exit 1
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
2022-12-01 10:40:38 +01:00
|
|
|
|
debug_message "| ${RED}${1}${COLOR_DEBUG} option managed."
|
2022-02-03 14:32:08 +01:00
|
|
|
|
|
|
|
|
|
## Move to the next argument
|
|
|
|
|
shift
|
|
|
|
|
manage_arg=$((manage_arg+1))
|
|
|
|
|
|
|
|
|
|
done
|
|
|
|
|
|
2022-12-01 10:40:38 +01:00
|
|
|
|
debug_message "| ${RED}${manage_arg}${COLOR_DEBUG} argument(s) successfully managed."
|
2022-02-03 14:32:08 +01:00
|
|
|
|
else
|
2022-12-01 10:40:38 +01:00
|
|
|
|
debug_message "| No arguments/options to manage."
|
2022-02-03 14:32:08 +01:00
|
|
|
|
fi
|
|
|
|
|
|
2022-12-01 10:40:38 +01:00
|
|
|
|
debug_message "--- Manage argument END"
|
2022-02-03 14:32:08 +01:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
main
|
|
|
|
|
|
|
|
|
|
exit 255
|