-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathargument.sh
57 lines (52 loc) · 924 Bytes
/
argument.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
#!/usr/bin/env sh
options=()
arguments=()
for arg in "$@"; do
if [ "${arg:0:1}" = "-" ]; then
if [ "${arg:1:1}" = "-" ]; then
options[${#options[*]}]="${arg:2}"
else
index=1
while option="${arg:$index:1}"; do
[ -n "$option" ] || break
options[${#options[*]}]="$option"
let index+=1
done
fi
else
arguments[${#arguments[*]}]="$arg"
fi
done
unset count_flag pretty
[ -t 0 ] && [ -t 1 ] && pretty="1"
[ -n "$CI" ] && pretty=""
echo "${options[@]}"
for option in "${options[@]}"; do
case "$option" in
"h" | "help" )
echo help
#exit 0
;;
"v" | "version" )
echo version
#exit 0
;;
"c" | "count" )
count_flag="-c"
;;
"t" | "tap" )
pretty=""
;;
"p" | "pretty" )
pretty="1"
;;
* )
echo usage >&2
exit 1
;;
esac
done
if [ "${#arguments[@]}" -eq 0 ]; then
echo usage >&2
exit 1
fi