-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneral
117 lines (90 loc) · 3.18 KB
/
general
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
#!/bin/bash
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# -----------------------------------------------------------------------------
# Copyright (C) Business Learning Incorporated (businesslearninginc.com)
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License at
# <http://www.gnu.org/licenses/> for more details.
#
# -----------------------------------------------------------------------------
#
# bash library for general-purpose script processing
#
# -----------------------------------------------------------------------------
# check_program_dependencies() checks external program dependencies passed in
# through $0
#
function check_program_dependencies() {
local -a deps=("$@")
for i in "${deps[@]}"; do
if ! command -v "$i" &>/dev/null; then
printf "\n%s\n" "Error: program $i not installed."
quit 1
fi
done
}
# -----------------------------------------------------------------------------
# check_file_dependencies() checks file dependencies passed in through $0
#
function check_file_dependencies() {
local -a deps=("$@")
for i in "${deps[@]}"; do
if [ ! -f "$i" ]; then
printf "\n%s\n" "Error: file $i not found."
quit 1
fi
done
}
# -----------------------------------------------------------------------------
# display_banner() builds and displays a custom-sized script banner using
# configuration details managed through the args library
#
function display_banner() {
printf "\n"
printf "%s\n" " |"
printf "%s\n" " | $(get_config_details title)"
printf "%s\n" " | $(get_config_details version)"
printf "%s\n" " |"
printf "%s\n" " | Usage:"
printf "%s\n" " | $(get_config_details syntax)"
printf "%s\n" " |"
local max_col=0
local count_args=0
count_args=$(get_config_args_length)
# determine maximum column width for setting output columns
#
for ((j = 0; j < count_args; j++)); do
arg_len=$(get_config_arg "$j" short_form)+$(get_config_arg "$j" long_form)
((${#arg_len} > max_col)) && max_col=${#arg_len}
((j == count_args - 1)) && ((max_col += 6))
done
for ((j = 0; j < count_args; j++)); do
printf "%-${max_col}s %s\n" " | $(get_config_arg "$j" short_form), $(get_config_arg "$j" long_form)" "$(get_config_arg "$j" description)"
done
printf "%s\n\n" " |"
}
# -----------------------------------------------------------------------------
# function exist_directory() confirms directory existence
#
function exist_directory() {
if [ ! -d "${1}" ]; then
printf "\n%s\n" "Error: directory ${1} not found."
quit 1
fi
}
# -----------------------------------------------------------------------------
# quit() exits program (with exit status passed in)
#
function quit() {
local result=""
result=("${1}")
printf "\n"
exit "${result[0]}"
}