forked from nikita-skobov/create-bash-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate-bash-script.sh
312 lines (263 loc) · 7.05 KB
/
create-bash-script.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
#!/usr/bin/env bash
function usage()
{
local just_help=$1
local missing_required=$2
local invalid_value=$3
local invalid_option=$4
local help="Usage: create-bash-script.sh [OPTIONS]
This script creates a bash script in your current working directory
with command line argument parsing based on your desired arguments.
Example: create-bash-script.sh --seperator SPACE
--arguments region,name,account
--short-arguments r,,a
--name test.sh
The above command will create a bash script named test.sh with space seperated
argument parsing where the argument options are --region, --name, and --account,
and it creates short argument options for region: -r, and account: -a, but
does not create a short argument option for name.
Options (* indicates it is required):
* -n, --name name of the output script
* -a, --arguments a comma seperated list of arguments to parse in your script
-s, --seperator only two options: SPACE | EQUALS (defaults to SPACE)
-sa, --short-arguments a comma seperated list of short names for your arguments
--help displays this usage text"
if [ "$just_help" != "" ]
then
echo "$help"
return
fi
if [ "$missing_required" != "" ]
then
echo "Missing required argument: $missing_required"
fi
if [ "$invalid_option" != "" ] && [ "$invalid_value" = "" ]
then
echo "Invalid option: $invalid_option"
elif [ "$invalid_value" != "" ]
then
echo "Invalid value: $invalid_value for option: --$invalid_option"
fi
echo -e "\n"
echo "$help"
return
}
function beginswith() {
case $2 in "$1"*) true;; *) false;; esac;
}
function create_arg_array() {
local long_arg_csv=$1
local short_arg_csv=$2
IFS=',' read -r -a temp_arr1 <<< "$long_arg_csv"
IFS=',' read -r -a temp_arr2 <<< "$short_arg_csv"
arg_array=()
for index in "${!temp_arr1[@]}"
do
arg_array+=("${temp_arr1[$index]},${temp_arr2[$index]}")
done
}
function create_usage_single() {
local single_arg_csv=$1
IFS=',' read -r -a temp_arr1 <<< "$single_arg_csv"
local short_opt="${temp_arr1[1]}"
local long_opt="${temp_arr1[0]}"
local is_required=" "
if beginswith "*" $long_opt
then
is_required="*"
# remove the first character: *
long_opt=$(echo "$long_opt" | cut -c 2-)
fi
if [ "$short_opt" = "" ]
then
echo " $is_required --$long_opt$seperator [ENTER YOUR DESCRIPTION HERE]"
else
echo " $is_required -$short_opt$seperator, --$long_opt$seperator [ENTER YOUR DESCRIPTION HERE]"
fi
}
function create_req_arg_string() {
req_arg_string="REQ_ARGS=("
for item in "${arg_array[@]}"
do
IFS=',' read -r -a temp_arr1 <<< "$item"
local long_opt="${temp_arr1[0]}"
if beginswith "*" $long_opt
then
is_required="*"
# remove the first character: *
long_opt=$(echo "$long_opt" | cut -c 2-)
req_arg_string="$req_arg_string\"$long_opt\" "
fi
done
req_arg_string="$req_arg_string)"
}
function create_parse_string() {
parse_string=""
for item in "${arg_array[@]}"
do
IFS=',' read -r -a temp_arr1 <<< "$item"
local long_opt="${temp_arr1[0]}"
local short_opt="${temp_arr1[1]}"
if beginswith "*" $long_opt
then
# remove the first character: *
long_opt=$(echo "$long_opt" | cut -c 2-)
fi
if [ "$seperator" = " " ]
then
if [ "$short_opt" = "" ]
then
parse_string="$parse_string\n\t\t--$long_opt)\n\t\t$long_opt=\"\$2\"\n\t\tshift\n\t\tshift\n\t\t;;"
else
parse_string="$parse_string\n\t\t-$short_opt|--$long_opt)\n\t\t$long_opt=\"\$2\"\n\t\tshift\n\t\tshift\n\t\t;;"
fi
else
if [ "$short_opt" = "" ]
then
parse_string="$parse_string\n\t\t--$long_opt=*)\n\t\t$long_opt=\"\${key#*=}\"\n\t\tshift\n\t\t;;"
else
parse_string="$parse_string\n\t\t-$short_opt=*|--$long_opt=*)\n\t\t$long_opt=\"\${key#*=}\"\n\t\tshift\n\t\t;;"
fi
fi
done
}
# required argument list:
REQ_ARGS=("arguments" "name")
# get command line arguments
POSITIONAL=()
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
--help)
usage 1
exit
;;
-s|--seperator)
seperator="$2"
shift # past argument
shift # past value
;;
-a|--arguments)
arguments="$2"
shift
shift
;;
-sa|--short-arguments)
short_arguments="$2"
shift
shift
;;
-n|--name)
name="$2"
shift
shift
;;
*)
POSITIONAL+=("$1") # saves unknown option in array
shift
;;
esac
done
for i in "${REQ_ARGS[@]}"; do
# $i is the string of the variable name
# ${!i} is a parameter expression to get the value
# of the variable whose name is i.
req_var=${!i}
if [ "$req_var" = "" ]
then
usage "" "--$i"
exit
fi
done
if [ "$seperator" = "" ] || [ "$seperator" = "SPACE" ]
then
seperator=" "
elif [ "$seperator" = "EQUALS" ]
then
seperator="="
else
usage "" "" "$seperator" "seperator"
exit
fi
create_arg_array "$arguments" "$short_arguments"
create_req_arg_string
create_parse_string
usage_string=""
for item in "${arg_array[@]}"
do
single_usage_item=$(create_usage_single "$item")
usage_string="$usage_string $single_usage_item\n"
done
loop_type_string=""
loop_positional_string=""
if [ "$seperator" = " " ]
then
loop_positional_string="POSITIONAL+=(\"\$1\") # saves unknown option in array"
loop_type_string="while [[ \$# -gt 0 ]]\ndo\nkey=\"\$1\"\n"
else
loop_positional_string="POSITIONAL+=(\"\$key\") # saves unknown option in array"
loop_type_string="for key in \"\$@\"\ndo\n"
fi
# check if that file already exists
if [ -f "$name" ]; then
echo "file: $name already exists. Are you sure you want to overwrite it? (y or n)"
read answer
if ! beginswith "y" "$answer"; then
echo "Overwriting of file: $name was denied. Script terminating."
exit
else
> "$name"
fi
fi
# output to file
echo -e "#!/usr/bin/env bash
function usage()
{
local just_help=\$1
local missing_required=\$2
local invalid_argument=\$3
local invalid_option=\$4
local help=\"Usage: $name [OPTIONS]
[ENTER YOUR DESCRIPTION HERE]
Example: $name [ENTER YOUR EXAMPLE ARGUMENTS HERE]
Options (* indicates it is required):
$usage_string\"
if [ \"\$missing_required\" != \"\" ]
then
echo \"Missing required argument: \$missing_required\"
fi
if [ \"\$invalid_option\" != \"\" ] && [ \"\$invalid_value\" = \"\" ]
then
echo \"Invalid option: \$invalid_option\"
elif [ \"\$invalid_value\" != \"\" ]
then
echo \"Invalid value: \$invalid_value for option: --\$invalid_option\"
fi
echo -e \"\\n\"
echo \"\$help\"
return
}
$req_arg_string
# get command line arguments
POSITIONAL=()
$loop_type_string
case \$key in$parse_string
*)
$loop_positional_string
shift
;;
esac
done
for i in \"\${REQ_ARGS[@]}\"; do
# \$i is the string of the variable name
# \${!i} is a parameter expression to get the value
# of the variable whose name is i.
req_var=\${!i}
if [ \"\$req_var\" = \"\" ]
then
usage \"\" \"--\$i\"
exit
fi
done
" >> "$name"