Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 1 | #!/bin/bash |
2 | |||||
3 | # Template to start a simple bash program. This is designed only for the | ||||
Gunnar Mills | 28e403b | 2017-10-25 16:16:38 -0500 | [diff] [blame] | 4 | # simplest of programs where all program parameters are positional, there is no |
Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 5 | # help text, etc. |
6 | |||||
7 | # Description of argument(s): | ||||
8 | # parm1 Bla, bla, bla (e.g. "example data"). | ||||
9 | |||||
10 | |||||
Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 11 | function get_parms { |
12 | |||||
13 | # Get program parms. | ||||
14 | |||||
15 | parm1="${1}" ; shift | ||||
16 | |||||
17 | return 0 | ||||
18 | |||||
19 | } | ||||
Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 20 | |
21 | |||||
Michael Walsh | 7beadb2 | 2017-10-26 17:45:12 -0500 | [diff] [blame] | 22 | function exit_function { |
23 | |||||
24 | return | ||||
25 | |||||
26 | } | ||||
27 | |||||
Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 28 | function validate_parms { |
29 | |||||
30 | # Validate program parameters. | ||||
31 | |||||
32 | # Your validation code here. | ||||
33 | |||||
34 | if [ -z "${parm1}" ] ; then | ||||
35 | echo "**ERROR** You must provide..." >&2 | ||||
36 | return 1 | ||||
37 | fi | ||||
38 | |||||
Michael Walsh | 7beadb2 | 2017-10-26 17:45:12 -0500 | [diff] [blame] | 39 | trap "exit_function $signal \$?" EXIT |
40 | |||||
Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 41 | return 0 |
42 | |||||
43 | } | ||||
Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 44 | |
45 | |||||
Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 46 | function mainf { |
47 | |||||
Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 48 | get_parms "$@" || return 1 |
49 | |||||
50 | validate_parms || return 1 | ||||
51 | |||||
52 | # Your code here... | ||||
53 | |||||
54 | return 0 | ||||
55 | |||||
56 | } | ||||
Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 57 | |
58 | |||||
Michael Walsh | 7d68d00 | 2017-05-05 16:36:54 -0500 | [diff] [blame] | 59 | # Main |
60 | |||||
61 | mainf "${@}" | ||||
62 | rc="${?}" | ||||
63 | exit "${rc}" |