-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathutility.sh
191 lines (157 loc) · 4.1 KB
/
utility.sh
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/usr/bin/env bash
#set -x
export PS4='+ [`basename ${BASH_SOURCE[0]}`:$LINENO ${FUNCNAME[0]} \D{%F %T} $$ ] '
PATH="$PATH:/usr/bin:/bin:/sbin:/usr/sbin"
export PATH
CURDIR=$(cd "$(dirname "$0")"; pwd);
MYNAME="${0##*/}"
RET_OK=0
RET_FAIL=1
##################### function #########################
_report_err() { echo "${MYNAME}: Error: $*" >&2 ; }
if [ -t 1 ]
then
RED="$( echo -e "\e[31m" )"
HL_RED="$( echo -e "\e[31;1m" )"
HL_BLUE="$( echo -e "\e[34;1m" )"
NORMAL="$( echo -e "\e[0m" )"
fi
_hl_red() { echo "$HL_RED""$@""$NORMAL";}
_hl_blue() { echo "$HL_BLUE""$@""$NORMAL";}
_trace() {
echo $(_hl_blue ' ->') "$@" >&2
}
_print_fatal() {
echo $(_hl_red '==>') "$@" >&2
}
_is_number() {
local re='^[0-9]+$'
local number="$1"
if [ "x$number" == "x" ]; then
_print_fatal "error: _is_number need one parameter"
exit 1
else
number=${number//[[:space:]]/}
fi
if [[ $number =~ $re ]] ; then
return 0
else
_print_fatal "error: ${number} not a number" >&2
exit 1
fi
}
_is_valid_ip() {
local ip="$1"
local stat=0
if [ "x$ip" == "x" ]; then
return 1
else
ip=${ip//[[:space:]]/}
fi
ret=`echo "${ip}." | /bin/grep -P "([0-9]{1,3}\.){4}"`
if [ "$ret" ]; then
if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
OIFS=$IFS
IFS='.'
ip=($ip)
IFS=$OIFS
[[ ${ip[0]} -le 255 && ${ip[1]} -le 255 \
&& ${ip[2]} -le 255 && ${ip[3]} -le 255 ]]
stat=$?
else
stat=1
fi
else
stat=1
fi
return $stat
}
_usage() {
cat << USAGE
Usage: bash ${MYNAME} [options].
Options:
-h, --help Print this help infomation.
USAGE
exit ${RET_FAIL}
}
#
# Parses command-line options.
# usage: _parse_options "$@" || exit $?
#
_parse_options()
{
declare -a argv
while [[ $# -gt 0 ]]; do
case $1 in
-s|--ssh)
g_NOPASSWD=1
shift
;;
-l|--limit)
g_LIMIT=${2}
_is_number "${g_LIMIT}"
shift 2
;;
-h|--help)
_usage
exit
;;
--)
shift
argv=("${argv[@]}" "${@}")
break
;;
-*)
_print_fatal "command line: unrecognized option $1" >&2
return 1
;;
*)
argv=("${argv[@]}" "${1}")
shift
;;
esac
done
case ${#argv[@]} in
2)
command -v greadlink >/dev/null 2>&1 && g_HOST_LIST=$(greadlink -f "${argv[0]}") || g_HOST_LIST=$(readlink -f "${argv[0]}")
g_CMD="${argv[1]}"
;;
0|*)
_usage 1>&2
return 1
;;
esac
}
#--- FUNCTION -------------------------------------------------------------------------------------------------------
# NAME: __detect_color_support
# DESCRIPTION: Try to detect color support.
#----------------------------------------------------------------------------------------------------------------------
_COLORS=${BS_COLORS:-$(tput colors 2>/dev/null || echo 0)}
__detect_color_support() {
if [ $? -eq 0 ] && [ "$_COLORS" -gt 2 ]; then
RC="\033[1;31m"
GC="\033[1;32m"
BC="\033[1;34m"
YC="\033[1;33m"
EC="\033[0m"
else
RC=""
GC=""
BC=""
YC=""
EC=""
fi
}
__detect_color_support
########################################################################
# set DOITPROG to echo to test this script
# Don't use :- since 4.3BSD and earlier shells don't like it.
doit="${DOITPROG-}"
# Make a couple of temp file names in the proper directory.
dsttmp=/tmp/#inst.$$#
rmtmp=/tmp/#rm.$$#
# Trap to clean up temp files at exit.
trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0
trap '(exit $?); exit' 1 2 13 15
# Move or copy the file name to the temp name
# $doit cp "$src" "$dsttmp" &&