-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgetopts.sh
80 lines (73 loc) · 1.55 KB
/
getopts.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
#!/usr/bin/env bash
export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
while getopts "cn" opt; do
case $opt in
c)
let Type=1
;;
n)
let Type=2
;;
*)
let Type=3
;;
esac
done
while getopts ":a:" opt; do
case $opt in
a)
echo "-a was triggered, Parameter: $OPTARG" >&2
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
:)
echo "Option -$OPTARG requires an argument." >&2
exit 1
;;
esac
done
echo "The type is $Type";
function usage
{
echo "bash $0 --name=NAME --workspace=WORKSPACE --base=BASE --level=LEVEL --table=TABLE [--help|-h]"
}
topdir=`dirname $0`;
ARGS=`getopt -a -o w:b:l:t:h -l name:,workspace:,base:,level:,table:,help -- "$@"`
[ $? -ne 0 ] && usage
eval set -- "${ARGS}"
while true
do
case "$1" in
--name)
name="$2"
shift 2
;;
--workspace)
workspace="${2}"
shift 2
;;
--base)
base="$2"
shift 2
;;
--level)
level="$2"
shift 2
;;
--table)
table="$2"
shift 2
;;
--help|-h)
echo "unknown arg: $1"
usage
exit 1
;;
--)
shift
break
;;
esac
done