|
@@ -8,7 +8,7 @@ wastefulBreakLine="If one of those bottles should happen to fall"
|
8
|
8
|
breakLine=$([ "$1" = --careless ] && echo $wastefulBreakLine ||
|
9
|
9
|
echo $standardBreakLine)
|
10
|
10
|
|
11
|
|
-function pred() {
|
|
11
|
+pred() {
|
12
|
12
|
case $1 in
|
13
|
13
|
*nine) echo ${1%nine}eight;;
|
14
|
14
|
*eight) echo ${1%eight}seven;;
|
|
@@ -30,21 +30,21 @@ function pred() {
|
30
|
30
|
esac
|
31
|
31
|
}
|
32
|
32
|
|
33
|
|
-function teenpred() {
|
|
33
|
+teenpred() {
|
34
|
34
|
case $1 in
|
35
|
35
|
thirteen) echo twelve;;
|
36
|
36
|
*) echo $(crunchprefix $(pred $(uncrunchprefix ${1%teen})))teen;;
|
37
|
37
|
esac
|
38
|
38
|
}
|
39
|
39
|
|
40
|
|
-function tenspred() {
|
|
40
|
+tenspred() {
|
41
|
41
|
case $1 in
|
42
|
42
|
twenty) echo nineteen;;
|
43
|
43
|
*) echo $(crunchprefix --tens $(pred $(uncrunchprefix ${1%ty})))ty-nine;;
|
44
|
44
|
esac
|
45
|
45
|
}
|
46
|
46
|
|
47
|
|
-function crunchprefix() {
|
|
47
|
+crunchprefix() {
|
48
|
48
|
|
49
|
49
|
|
50
|
50
|
|
|
@@ -59,7 +59,7 @@ function crunchprefix() {
|
59
|
59
|
esac
|
60
|
60
|
}
|
61
|
61
|
|
62
|
|
-function uncrunchprefix() {
|
|
62
|
+uncrunchprefix() {
|
63
|
63
|
case $1 in
|
64
|
64
|
twen) echo two;;
|
65
|
65
|
thir) echo three;;
|
|
@@ -70,7 +70,7 @@ function uncrunchprefix() {
|
70
|
70
|
esac
|
71
|
71
|
}
|
72
|
72
|
|
73
|
|
-function grammar() {
|
|
73
|
+grammar() {
|
74
|
74
|
local oneBottle=false
|
75
|
75
|
while read line; do
|
76
|
76
|
line="${line/one more bottles/one more bottle}"
|
|
@@ -92,13 +92,13 @@ function grammar() {
|
92
|
92
|
done
|
93
|
93
|
}
|
94
|
94
|
|
95
|
|
-function capitalize() {
|
|
95
|
+capitalize() {
|
96
|
96
|
while read line; do
|
97
|
97
|
echo -n ${line:0:1} | tr '[:lower:]' '[:upper:]'
|
98
|
98
|
echo ${line#?}
|
99
|
99
|
done
|
100
|
100
|
}
|
101
|
|
-function punctuate() {
|
|
101
|
+punctuate() {
|
102
|
102
|
while read line; do
|
103
|
103
|
case "${line}" in
|
104
|
104
|
[Ii]f*) echo ${line},;;
|
|
@@ -108,7 +108,7 @@ function punctuate() {
|
108
|
108
|
done
|
109
|
109
|
}
|
110
|
110
|
|
111
|
|
-function verse () {
|
|
111
|
+verse () {
|
112
|
112
|
local nb=$1
|
113
|
113
|
echo $nb bottles of beer on the wall
|
114
|
114
|
echo $nb bottles of beer
|
|
@@ -122,7 +122,7 @@ function verse () {
|
122
|
122
|
echo $nb bottles of beer on the wall
|
123
|
123
|
}
|
124
|
124
|
|
125
|
|
-function poeticize() {
|
|
125
|
+poeticize() {
|
126
|
126
|
while read first rest; do
|
127
|
127
|
case "$rest" in
|
128
|
128
|
*beer*)
|
|
@@ -137,7 +137,7 @@ function poeticize() {
|
137
|
137
|
done
|
138
|
138
|
}
|
139
|
139
|
|
140
|
|
-function syllables {
|
|
140
|
+syllables() {
|
141
|
141
|
local n=1
|
142
|
142
|
case $1 in
|
143
|
143
|
eleven) n=2;;
|