-
Notifications
You must be signed in to change notification settings - Fork 0
/
header-long
146 lines (126 loc) · 3.14 KB
/
header-long
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/usr/bin/env bash
# ================================================================
# -*- mode: bash -*-
# vi: set ft=sh
# ****************************************************************
#
# DESCRIPTION
# Script template for full bodied script
#
# SYNTAX & EXAMPLES
# See 'SYNTAX' (below)
#
# ----------------------------------------------------------------
# IMPLEMENTATION
# version script 0.1.1
# author Greg Milligan
# copyright Copyright (c) 2018 http://xybersolve.io
# license GNU General Public License
#
# ================================================================
# DEBUG OPTION
# set -n # Uncomment to check your syntax, without execution.
# set -x # Uncomment to debug this shell script
#
# ---------------------------------------------------------------
#
# TODO:
# ****************************************************************
# ---------------------------------------
# CONFIGFURATION
# ---------------------------------------
# strict environment
set -o errexit # exit on command error status
set -o nounset # no unreadonlyd variables
set -o pipefail # failr on pipe failures
trap 'echo "Aborting due to errexit on line $LINENO. Exit code: ${?}" >&2' ERR
# ---------------------------------------
# GLOBAL VARIABLES
# ---------------------------------------
# booleans
declare -ir TRUE=1
declare -ir FALSE=0
# script info
declare -r PROGNAME="$(basename ${0})"
declare -r VERSION=0.0.1
declare -r SUBJECT=""
declare -r KEYS=""
declare -ri MIN_ARG_COUNT=1
declare -r SYNTAX=$(cat <<EOF
Script: ${PROGNAME}
Purpose:
Usage: ${PROGNAME} [options]
Options:
--help: help and usage
--version: show version info
EOF
)
# files & directories
declare -r SCRIPT_DIR="$( dirname ${0} )"
# actions
declare -i GET_IPS=${FALSE}
# script globals
declare -A IPS=()
# ---------------------------------------
# COMMON FUNCTIONS
# ---------------------------------------
usage() {
echo "${SYNTAX}"
}
error() {
printf "\n%s\n" "Error: ${1}"
}
die() {
error "${1}"
usage
printf "\n\n"
exit "${2:-1}"
}
show_version() {
printf "\n\n%s %s\n\n\n" "${PROGNAME}" "${VERSION}"
exit 0
}
show_help() {
printf "\n\n"
usage
printf "\n\n"
exit 0
}
# ---------------------------------------
# MAIN ROUTINES
# ---------------------------------------
__get_opts() {
while (( $# > 0 )); do
local arg="${1}"; shift;
case ${arg} in
--help) show_help ;;
--version) show_version ;;
--ips) GET_IPS=${TRUE} ;;
--log-local)
__log_local_clients
exit 0
;;
--list-pref*) # --option argument
__nwsu.list_preferred "${1}"
exit 0
;;
--quotes*) # --option=argument
SPEAK_DATA=${TRUE}
[[ ${arg} =~ '=' ]] && VOICE="${arg#*=}"
;;
*) die "Unknown option: ${arg}" ;;
esac
done
return 0
}
__dispatch() {
(( GET_IPS )) && __get_ips
return 0
}
main() {
(( ${#} < MIN_ARG_COUNT )) && die "Expects at least ${MIN_ARG_COUNT} arguments" 1
(( $# > 0 )) && __get_opts "$@"
__dispatch
return 0
}
(( ${#} > 0 )) && main "${@}" || main