-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathargs.bash
More file actions
executable file
·71 lines (66 loc) · 1.01 KB
/
Copy pathargs.bash
File metadata and controls
executable file
·71 lines (66 loc) · 1.01 KB
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
function err {
>&2 echo $@
}
function usage {
err "Usage: $0 hello|bye [OPTIONS]"
exit 1
}
function hello {
function usage {
err "Usage $0 hello [--formal] [--lower-case] [--upper-case]"
exit 1
}
message="Hello."
while [ $# -ge 1 ]; do
case $1 in
--formal)
message="Greetings, good sir!"
;;
--lower-case)
message="hello."
;;
--upper-case)
message="HELLO."
;;
*)
usage
esac
shift
done
echo $message
}
function bye {
function usage {
echo "Usage $0 goodbye [--formal] [--lower-case] [--upper-case]"
exit 1
}
$message="Bye."
while [ $# -ge 1 ]; do
case $1 in
--formal)
message="Fare thee well, good sir!"
;;
--lower-case)
message="bye."
;;
--upper-case)
message="BYE."
;;
esac
shift
done
echo $message
}
case $1 in
hello)
shift
hello $@
;;
bye)
shift
bye $@
;;
*)
usage
;;
esac