Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Comment: | Initial commit of the final version of the Advanced Bash Scripting guide, by Mendel Cooper, http://bash.deta.in/abs-guide-latest.tar.bz2 |
---|---|
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA1: |
5f696bf5d889bc8ad3482f08484ee4a3 |
User & Date: | pooryorick 2014-07-22 18:26:00 |
2014-07-22
| ||
18:26 | Initial commit of the final version of the Advanced Bash Scripting guide, by Mendel Cooper, http://bash.deta.in/abs-guide-latest.tar.bz2 Leaf check-in: 5f696bf5d8 user: pooryorick tags: trunk | |
11:07 | initial empty check-in check-in: 4a27a0c22c user: pooryorick tags: trunk | |
Added BashExtraKeys.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 | #!/bin/bash # Author: Sigurd Solaas, 20 Apr 2011 # Used in ABS Guide with permission. # Requires version 4.2+ of Bash. key="no value yet" while true; do clear echo "Bash Extra Keys Demo. Keys to try:" echo echo "* Insert, Delete, Home, End, Page_Up and Page_Down" echo "* The four arrow keys" echo "* Tab, enter, escape, and space key" echo "* The letter and number keys, etc." echo echo " d = show date/time" echo " q = quit" echo "================================" echo # Convert the separate home-key to home-key_num_7: if [ "$key" = $'\x1b\x4f\x48' ]; then key=$'\x1b\x5b\x31\x7e' # Quoted string-expansion construct. fi # Convert the separate end-key to end-key_num_1. if [ "$key" = $'\x1b\x4f\x46' ]; then key=$'\x1b\x5b\x34\x7e' fi case "$key" in $'\x1b\x5b\x32\x7e') # Insert echo Insert Key ;; $'\x1b\x5b\x33\x7e') # Delete echo Delete Key ;; $'\x1b\x5b\x31\x7e') # Home_key_num_7 echo Home Key ;; $'\x1b\x5b\x34\x7e') # End_key_num_1 echo End Key ;; $'\x1b\x5b\x35\x7e') # Page_Up echo Page_Up ;; $'\x1b\x5b\x36\x7e') # Page_Down echo Page_Down ;; $'\x1b\x5b\x41') # Up_arrow echo Up arrow ;; $'\x1b\x5b\x42') # Down_arrow echo Down arrow ;; $'\x1b\x5b\x43') # Right_arrow echo Right arrow ;; $'\x1b\x5b\x44') # Left_arrow echo Left arrow ;; $'\x09') # Tab echo Tab Key ;; $'\x0a') # Enter echo Enter Key ;; $'\x1b') # Escape echo Escape Key ;; $'\x20') # Space echo Space Key ;; d) date ;; q) echo Time to quit... echo exit 0 ;; *) echo You pressed: \'"$key"\' ;; esac echo echo "================================" unset K1 K2 K3 read -s -N1 -p "Press a key: " K1="$REPLY" read -s -N2 -t 0.001 K2="$REPLY" read -s -N1 -t 0.001 K3="$REPLY" key="$K1$K2$K3" done exit $? |
Added Change.log.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 | CHANGE LOG & Release History The latest version of this file is available on-line at http://http://bash.deta.in/Change.log ================================================================== Current version = 10 Dated 03/10/14 http://bash.deta.in/abs-guide-latest.tar.bz2 http://bash.deta.in/abs-guide.pdf -------------------------------------------------------------------- Announcements Version 10 released. The ABS Guide is now in the Public Domain. The author will no longer support or update this document. ****************************************************************** It has come to the attention of the author that unauthorized electronic and print editions of this book are being sold commercially on itunes and elsewhere. These are illegal and pirated editions produced without the author's permission, and readers of this book are advised not to purchase them. If you possess a printed copy of this book, then be aware that its copyright is invalid, and that therefore you have the right to copy or reproduce it. ****************************************************************** Honor roll of supporters. The following persons have made much welcomed, though unsolicited monetary contributions to the ABS Guide author. Matthias Gutfeldt . . . . . . . . . A big Thank You! ****************************************************************** ==================================================================== Version 10, PublicDomain release. 1) In "Miscellany" chapter: In "Optimizations" section, Quite a number of significant additions and examples, per Erik Brandsberg. (Thank you!) In "Shell Wrappers" section, Added "ex56py.sh" example of embedded Python script. Added "speech.sh" example of a talking script. 2) In "Another Look At Variables" chapter Made reference to $USERNAME more ambiguous, per note from Dominique Brazziel At "PS4" entry, Added Erik Brandsberg's suggestion for embedding diagnostic info. (Thank you!) 3) In "Loops" section of "Loops and Branches" chapter: Added note concerning omitting do/done with curly-bracket delimited command block. (Thank you, YongYe!) Added example of parameterized [list] in a for-loop. 4) In "External Commands" chapter: At "diff" entry, added note about return code 2 on failed binary file comparison. At "dd" entry, added example script for preparing a bootable SD card for the Raspberry Pi. At "paste" entry, added short example. Added entry for "xz" in File and Archiving Commands subsection. 5) In "Here Documents" chapter: Fixup to multi-line variable example, to eliminate error message. (Thank you, Ken B!) 6) Fixed some example scripts to remove quoting of matched variable with =~ operator. 7) In "Parameter Substitution and Expansion" Table, Made minor changes in because Bash updates changed the behavior of certain parameter operators, and made not of same. Grrr! 8) In "History Commands" appendix: Note about enabling the history mechanism within a script, per comment by David (dhw). 9) In "Contributed Scripts" appendix: Added "sedappend.sh" script example of inserting text in a file using sed. 10) In the Bibliography: Added an entry for Daniel Goldman's excellent ebook introduction to sed. 10) Fixed and/or updated some more scripts. Version 6.6, Ytterbiumberry* release 1) Revise and debug example scripts, as necessary. 2) Stylistic alterations and corrections. 3) In Quoting Variables section of "Quoting" chapter, Added Chris Hiestand's suggestion to weirdvars.sh example. 4) In "Internal Commands and Builtins" chapter, Correction at "popd" entry. (Thank you, Emeric Vigier.) 5) In "Functions" chapter: Added : (null-command) in an otherwise-empty function (Thank you, Dominick Geyer.) 6) In "Regular Expressions" chapter: In "Globbing" Section, added David Wheeler's advice on avoiding pitfalls with filenames with embedded whitespace. (Thanks!) 7 In "Another Look at Variables" chapter, In "Internal Variables" section, Added Ariel Meragelman's fix to Matthew Sage's example. (Thank you!) 8) Multiple updates to sample "bashrc" file (Appendix M). 9) Added Joseph Steinhauser's two scripts to "ASCII Table" Appendix. (Thank you!) 10) In the Bibliography: Corrected a typo in the listing for David Korn's UWIN utility. (Thank you, Praveen Bhamidipati, for pointing it out!) 11) Added new "Parsing and Managing Pathnames" appendix. (With thanks to Emmanuel Rouat and David Wheeler.) 12) Updated epub version posted. (Thank you, Michael Satke!) 13) Enhanced "backlight.sh" example script. 14) In Copyright Appendix, added warning concerning illegal/pirated editions of the ABS Guide. 15) In "Contributed Scripts" appendix: Added "bingo.sh" Bingo number generator script. 16) Various example script fixups. (Thank you to all you fine people pointing out errors.) * No such thing, but there most certainly ought to be. Imagine a genetically engineered berry containing rare earths. Version 6.5, Tungstenberry* release 05 April 2012 * No such thing, but there most certainly ought to be. Imagine a genetically engineered berry containing metallic fibers which could be used as filaments in incandescent lightbulbs. 1) In "Bash, versions 2, 3, and 4" chapter, In the Version 3.0 section, At the Extended Brace Expansion discussion, Added "eval" workaround for parameterization. (Thank you, Emiliano G.!) 2) In "Special Characters" chapter, Fixed missing parenthesis at "pipe" entry. (Thank you, Adamas, for pointing this out.) 3) In "Internal Commands and Builtins" chapter, At "let" entry, added Jeff Gorak's correction to the return value "anomaly." 4) At references to "trinary" operator, noted the somewhat more common, but clumsier "ternary" usage. 5) In "External Commands" chapter: In "Miscellaneous Commands" section, At "dd" entry, added creating bootable flash drives example. 6) In "System and Administrative Commands" chapter, In "Filesystem" subsection, Added "mkdosfs" entry. In "Miscellaneous" subsection, Added "xrandr" entry and "backlight.sh" example script. 7) In the Bibliography, added "AuctionGallery" entry. 8) Appendix D, Revision of exit code 2 entry. Added an example for exit code 126. 9) Fix quoting error in "Special Variables" Table in Reference Cards, per Matthew Stanfield (Thank you!). 10) In "Complex Commands" section of "External Commands" Chapter: Added as comment Rich's alternative awk syntax to the month_length () example. 11) Used (with permission) code snippets from YongYe's "Tetris Game" script in "Internal Commands" and "List Constructs" chapters. Also added an entry for this in the "Bibliography" appendix. The URL for YongYe's script is: https://github.com/yongye/shell/blob/master/Tetris_Game.sh 12) In "Miscellany" chapter, In "Shell Scripting Under Windows" section, added reference to UNWIN, as pointed out by Greg Alheid. 13) New cover for pdf version! 14) Fixups on scripts. [Thanks go to Darren Birkett, Chris Manson, yongye, and others.] 15) Domain shift! Changed webofcrafts.net links to deta.in. Version 6.4, Vortexberry* release 30 August 2011 1) In "Shell Programming!" chapter: Fixed format of block-quote on the BASIC language. 2) In the "Tests" chapter: Added a warning about whitespace in if [ "$a" = "b" ] test construct. Added a caution about the exit status of an arithmetic expression. (Thanks, ujqm8360, for the pointer.) 3) In "Variables Revisited" chapter: In "Manipulating Strings" section: In the first substring removal example, added instances of parameterization. 4) In "Testing and Branching" section of "Loops and Branches" chapter: Added footnote concerning optional left-paren in "case" statements. (Thank you, "amphiboly" and Jens Schweikhardt.) 5) In "Miscellany" chapter, In "Shell Scripting Under Windows" section, noted MSFT release of Windows PowerShell. 6) In "I/O Redirection" chapter: Added non-standard "input-file command > output-file" to opening examples. (Thank you, "amphiboly" and Jens Schweikhardt.) 7) In "Functions" chapter: Added a "single-command" instance to note about "compacted" functions. Added entry to "_()" example concerning ":()" function name. In "empty function" example, noted that a function containing only comments is still empty. (Thank you, Mark Bova.) 8) In "Bash, versions 2, 3, and 4" chapter: In "Bash, version 4" section, At "associative array" entry, added caution that index array elements containing only whitespace are not permitted. 9) In "Local Variables" section of "Functions" chapter: Added footnote concerning visibility of local variables in daughter functions. (Thank you, Thomas Braunberger.) 10) In "Here Strings" section of "Here Documents" chapter: Added an example of feeding the stdin of a loop from a here string. (Thank you, Seamus.) 11) In "Process Substitution" chapter: Added Bill Davidsen's example (Thanks!). 12) In "External Commands" chapter: In "Text Processing" section: At "tr" entry, added "Just another Bash hacker!" example script. snippet (courtesy of a Wikipedia article). In "Math Commands" section: At "dc" entry, elaborated first example and added one line of explanation. 13) In "Debugging" chapter: At "trap" entry, added Graham Ewart's "progress bar" script. (Thanks!) At "set -u" entry, correction and example snippet added. 14) In "Bash, versions 2, 3, and 4" chapter, In the Version 3.1 section, Corrected the "+=" entry (Thanks, Ajoy Thamattorr). 15) In "Writing Scripts" section of "Exercises" appendix: Added "ASCII to Integer" exercise to Intermediate section. 16) In "Contributed Scripts" appendix: Added "sam.sh" Morse code practice script. Added "gronsfeld.bash" Gronsfeld Cipher script. 17) Fixed "base64.sh" script. It works now. 18) Epub version of ABS Guide now available, thanks to Craig Barnes. 19) Miscellaneous bugfixes, minor improvements, and URL updates. * Vortexberry bushes are nowhere to be found. They were all uprooted by rampaging unicorns. Version 6.3, Swozzleberry* release 30 April, 2011 1) Added brief coverage of Bash 4.1/4.2 releases. Read -N. Negative array indices. Negative parameter in string extraction. Bash now recognizes \u unicode escape. There is a new "lastpipe" shell option. etc. 2) In "Shell Programming!" chapter, Fixed the URL on the Christensen quote. (Thanks, Ilario Fav.) 3) In "Special Characters" chapter, Revised "?:" trinary-construct entry. Added $' ... ' entry. Added definition of ASCII. 4) In the "Tests" chapter, At "-p" entry, added Carl Anderson's example. 5) In "Introduction to Variables and Parameters" chapter: In "Variable Substitution" section: Corrected comment concerning when variables appear "naked." Removed comment about non-portable behavior of uninitialize variables in arithmetic expressions. (Thank you, Jeffery Haemer.) Added footnote that $0 does not always return the script name. (Thank you, Gregg Leichtman!) 6) In "Internal Commands and Builtins" chapter, At "let" entry, added caution about misleading exit status returned in certain situations. (Thank you, Evgeniy Ivanov.) In "Job controls" subsection, added footnote that "wait" can only take PIDs of child processes as arguments. (Thank you, Simon Haller.) 7) In "I/O Redirection" chapter: Fixed commentary on "ls -yz 2>&1 >> command.log" example. (Thank you, Teika Kazura.) 8) In "max.sh" example script, fixed comment. (Thank you, Robert Bruntz.) 9) In the "Bash, versions 2,3, and 4" chapter, removed the "{X..d..2}" example. (Thank you, Jeffrey Haemer, for the pointer.) 10) In "Bash, versions 2, 3, and 4" chapter, In the Version 3.1 section, At the "+=" entry, added Jeffrey Haemer's $PATH append example. 11) In "Local Variables" section of "Functions" chapter: Added note about return value of setting local variable. (Thank you, Evegniy Ivanov.) 12) In "Complex Commands" section of "External Commands" Chapter: At "xargs" entry: Added tip about using the -P option to run processes in parallel. (Thank you, Roberto Polli.) 13) In "Here Documents" chapter: Added footnote about using <<- to suppress tabs allowing closing limit string to deviate from the first column on a line. (Thank you, Dennis Benzinger.) 14) In the "Miscellany" chapter: Fixed the URL on Moshe Jacobson's utility (changed it to point to the "ansi-color" script). Then, decided to rehost Jacobson's original source code on webofcrafts.net (Update: deta.in). (Thank you, qun-ying, for pointing out the broken URL.) 15) In the "Variables Revisited" chapter: In "Parameter Substitution" section: Revised the "${parameter:?err_msg}" entry, per Kevin LeBlanc (thanks!). 16) In "Process Substitution" chapter: Added "psub.bash" example of redirecting output of process substitution into a loop. (Thanks, Diego Molina!) 17) Reference cards: Revisions, per Kevin LeBlanc (thanks!). 18) Added a snippet from Andrzej Szelachowski's ~/.bash_profile file to the ".bashrc" Appendix. (Thanks!) 19) In "/dev" section of "/dev and /proc" chapter: Expanded Mark's command-line time-fetch example into a short script. 20) In "Network" subsection of "System and Administrative Commands," Added "iptables" entry. Moved "nmap" and "netstat" entries here. 21) Added "Network Programming" chapter. Moved "test-cgi.sh" script here from TODO section. 22) In "Escaping" section of "Quoting" Chapter: Broke out $' ... ' string-expansion as a separate topic. (This was a long-overdue fixup.) 23) New scripts: read-N.sh here-commsub.sh neg-array.sh neg-offset.sh base64.sh ip-addresses.sh lastpipe-option.sh BashExtraKeys.sh (with thanks to Sigurd Solaas). Long in-line example at "Unicode" entry, with tie-in to $' ... ' string-expansion. 24) In "Writing Scripts" section of "Exercises" appendix: Added "Unicode Table" exercise to Intermediate section. 25) Fixups on various typos. 26) Fixups on scripts. * Swozzleberry? There really is such a thing? It's a variant spelling of "swazzle," a sort of kazoo-like noisemaker used by puppeteers. Now, imagine a gourd-like berry that can be used to make funny sounds. . . . Version 6.2, Rowanberry release 17 March, 2010 1) In "Special Characters" chapter, At "comma operator" entry, fixed first example (comment spread over two lines). 2) In the "Tests" chapter, In the "Other Comparison Operators" section, Fixed up comment at "==" entry. (Thank you, Bruno Brant!) 3) Updated "ex18.sh" example. 4) Multiple fixups submitted by Ramses Rodriguez Martinez. (Thanks!) 5) In the "Variables Revisited" chapter: In "Parameter Substitution" section: fixed typo in example at "${var##Pattern}" entry. In "Declare" subsection: fixed "declare | grep HOME" example. (Thank you, Tom Olson.) 6) In "Here Documents" chapter: Added comment on colon being optional in "commentblock.sh" example. (Thanks, Mihkel Punga.) ====Reorganization==== 7) Broke out section 9.5, "Indirect References," as Chapter 27. 8) Moved "The Double-Parentheses Construct" to "Operations and Related Topics" chapter. 9) Moved "Operator Precedence" sectionto "Operations and Related Topics" chapter. 10) Created new "Manipulating Variables" chapter out of two sections of old "Variables Revisited" chapter. Revised examples at two entries. ====================== 11) Miscellaneous fixups of scripts and typos in text. Thank you, Henrique Abreu. Version 6.1, Buffaloberry release September 30, 2009 1) In "Shell Programming!" chapter, Added new sidebar to the intro text. 2) In Quoting Variables section of "Quoting" chapter, Revised double-quoting footnote about apparent inconsistent behavior of "\" ... (Thank you, Daniel Barclay for the heads-up!) 3) In "Special Characters" chapter: Added $[ ... ] integer expansion entry. At "&>" entry, added usage examples. 4) In "Tests" chapter: In "Other Comparison Operators" section: Expanded "compound comparison" section to include rihad's caution about -a and -o operators not "short-circuiting." At "[" entry, added footnote defining "token." 5) In "Internal Commands and Builtins" chapter, At "eval" entry, reworded intro and added material to first example. Subsequently rewrote first example once again, per suggestion by Gerrit. (Thanks!) Removed "eval.example" script, since it was misleading and confusing, per the suggestion of Nathan Coulter. Added footnote per Nathan Coulter to introductory paragraph. (Thanks!) 6) In "External Commands" chapter: In "Math Commands" section: At "dc" entry, added two short usage example, including a somewhat cryptic one (Golden Ratio calculation). Fixed typo (extra quoe at close) at inline "dc" example. (Thank you, Daniel Scott Matthews!) In "File and Archiving Commands" section: Added entry for "openssl," with usage examples. Added entry for "getfact" and "setfacl," with usage examples. Added two footnotes to "sum, cksum, md5sum, sha1sum" entry. In "External Commands" section: In "ex33.sh" example, changed "NO_ARGS=86" to "NO_ARGS=0" per alert from Gerrit. (Thanks!) 7) In "Variables Revisited" chapter: In "Parameter Substitution" section, Fixed typos at "${var%Pattern}, ${var%%Pattern}" entry. (Thank you, Donald White, for pointing this out!) At "${parameter-default}" entry, added snippet from revised "hanoi2.bash" script to usage example. In "Internal Variables" section, At "$DIRSTACK" entry, added footnote defining "stack." Added $CDPATH entry. In "Indirect References" section, Added a sidebar explaining the actual process of constructing an indirect reference. At "unset" entry, added note linking to ${parameter:-default} parameter substitution construct. (Thank you, Timothy Redaelli, for pointing out the ambiguity here.) 8) In "Command Substitution" chapter: Enhanced "setting a variable to the contents of a file" in-line example. 9) In "Functions" chapter: At "exit status" entry, added statement relating function exit status to that of ordinary commands. 10) In "Bash, versions 2, 3, and 4" chapter: In "Bash, version 4" section, Corrected a typo in Substring Extraction entry example script. Removed quoting of matched variable with =~ operator. (Thank you, Thomas Güttler, for pointing this out.) 11) In the "Miscellany" chapter: In the "Portability Issues" section, Added Larry Wall epigraph. In the "Interactive and non-interactive shells and scripts" section, Added John Lange's examples using "if [ -t 0 ]" ... Added a new sub-subsection with a "test-suite.sh" script. 12) In "Process Substitution" chapter: Added instances to first usage example. Stylistic cleanups. 13) In "Exit and Exit Status" chapter, Added discussion of exit status of a _pipe_, including effect of prefixing the pipe with ! ... 14) In "Arrays Chapter, Fixed comment in "ex68.sh" example -- 1 is not a prime. Thank you, Gordon Hopper, for pointing this out. Fixed error in comment "ex67.sh" example. (Thank you Grigory Romanenkov, for pointing this out.) 15) In "Here Documents" chapter: Added cautionary note about the use of ! as a limit string. At quoting/escaping the limit string discussion, added Allen Halsey's explanation. (Thank you!) 16) In "Bash, versions 2, 3, and 4" chapter: At "coproc" entry, fixed examples and added commentary, courtesy of George Dimitriu. (Thanks!) 17) In "Endnotes" chapter: In "Where to Go For Help" section, Added "CI-300 printer manual" epigraph. 18) In "Bibliography" section: Added entry for Wikipedia article on "dc." Added entry for Philip Patterson's "logforbash" script. 19) Changed several instances of "print $9" to "print $8" in embedded awk scripts. (Thank you, Michal Nagy, for the heads up.) 20) Added a new appendix: "An Introduction to Programmable Completion." Added the following support scripts: "UseGetOpt-2.sh" and "UseGetOpt-2" 21) In "Contributed Scripts" appendix: Fixed up "hanoi2.bash" script so it doesn't crash with error if no params. (Thank you, Stephen Solomon, for the heads up!) Added "show-all-colors.sh" example script, courtesy of Chetankumar Phulpagare. 22) Updated download URL. 23) Cleanups/fixups to main text, appendices, and script examples where appropriate. Version 6.0, Thimbleberry release March 23, 2009 1) Changed the title of Chapter 1. 2) Updated "copy-cd.sh" and "ex40.sh" examples to reflect changes in cdrtools. 3) In "Special Characters" chapter: Added another instance in the "brace expansion" example. 4) In "Testing and Branching" section of "Loops and Branches" chapter: Clarified outline of "case" construct. 5) In "Internal Commands and Builtins" chapter: At "eval" entry, added "arr-choice.sh" example script. (Thank you, Antonio Macchi!) At "read" entry, added "-u" option. 6) In "Internal Variables" section of "Variables Revisited" chapter: Added $BASHPID variable (new to Bash 4+). At "$$" entry, noted that within a subshell, PID of script returned by $$. 7) In "Arrays" chapter: Added material to "array-function.sh" example script. 8) In "Variables Revisited" chapter: In "Indirect References" section: Fixed comment in "ind-ref.sh" example, thanks to Jakob Bohm. 9) In "External Commands" chapter: In "File and Archiving Commands" section: Added "pax" entry. 10) In "I/O Redirection" chapter: Added a couple of new instances on stderr redirection. Added comments on a couple of new operators added in ver. 4 of Bash that are still not functional. 11) In "Bash, versions 2, 3, and 4" chapter (new title!): In Version 3 section, more on quoting "=~" operator. Added instances in "brace expansion" example. Added a section for version 4 of Bash. Added "fetch_address.sh" and "fetch_address-2.sh" examples to illustrate associative arrays. Added "cas4.sh" example to illustrate enhancements to case construct. Added discussion of the new "coproc" command, with illustrative examples. Added discussion of the new "mapfile" command, with an illustrative example. Briefly mentioned a couple of the changes to "read" options. Listed the new -l and -c options to "declare" builtin, with a short illustrated inline script. Listed new upper/lowercase operators for parameter substitution, with example. Listed the new "brace expansion" options. Discussed change in the treatment of positional parameters in substring extraction. Discussed the new ** globbing operator and "globstar" shell option. Discussed the new "command_not_found_handle ()" error-handling function, with in-line example. Added an "editorial" sidebar. It is certain to generate controversy. 12) In "System Resources" subsection of "System and Administrative At "ulimit" entry, added footnote about -f, -c behavior in POSIX mode and newly-added options (ver. 4+ of Bash). 13) In "Process Substitution" chapter: Added "wr-ps.bash" while-read loop example. (Thank you, Tomas Pospisek!) 14) In "Gotchas" chapter: Samuli Kaipiainen supplied a corrected explanation for piping-to-grep misbehavior. 15) In the "Portability Issues" section of the "Miscellany" chapter: Added entries to list of features in Bash missing in traditional "sh." 16) In "Options" chapter: Added entries for "globstar" and "checkjobs" in the table. 17) In "Subshells" chapter: Added a few comments and a short in-line example. 18) In "Contributed Scripts" appendix: Added "fifteen.sh" (Fifteen Puzzle) example script. (Thank you, Antonio Macchi!) Added "hanoi2.bash" -- graphic version of "hanoi.bash." Added "hanoi2a.bash" -- alternate graphic version of "hanoi.bash." Had to remove "obj-oriented.sh" example because it only works with obsolete versions of Bash. Removed "ftpget.sh" script. 19) In "Download and Mirror Sites" appendix: Fixed a typo in the ABS Guide download URL. 20) In "Bibliography" section: Added Shell Script Games entry. Added Bash Hackers Wiki entry. Added mirror site for the official Bash FAQ. Added Greg's WIKI: Bash FAQ entry. Added joyent site. 21) Updated the Index with references to new material. 22) Numberous syntactical and stylistic fixes. Version 5.6, Worcesterberry release 01/26/09 1) In "Special Characters" chapter: At "#" (comments) entry, added example of comment embedded within a pipe. At "semicolon" entry, slightly revised comments. Corrected a typo in "filter" footnote ("rougly"). At "$IFS" entry, added sidebar defining the term "field." 2) In "Variables Revisited" chapter: In "Manipulating Strings" section: * Expanded first inline "Substring Replacement example, thanks to the suggestion from Zhiyi Liu. Also added explanatory footnote. * Fixed minor typo in "rand-string.sh" example script. (Thank you, Ethan Larson, for bringing it to my attention.) 3) In "Internal Commands and Builtins" chapter: At "let" reference, inserted footnote that the command cannot be used for setting string variables. 4) In "Regular Expressions" chapter: Added example snippet of use of POSIX character classes (excerpted from ktour.sh example). 5) In "Gotchas" chapter: Added entry about misuse of "let" command to set string variables. 6) In "Contributed Scripts" appendix: Added "ktour.sh" -- Knight's Tour -- example script. Added "msquare.sh" -- Magic Square -- example script. 7) In "Bibliography" section: Added http://bashcookbook.com entry. Word usage cleanups in a couple of entries. 8) Moved the download and mirror site URLs from the title page to the "Download and Mirror Sites" appendix (where they rightfully belong!). Removed http://personal.riverusers/~thegrendel/ URL. In Download and Mirror Sites" appendix: Gave Ronny Bangsund credit for graciously donating server space for a mirror site. Removed stale www.morethan.org URL. Updated document author's e-mal. 9) Updated sample "bashrc" file (Appendix K). 10) Cleanups/fixups to main text, appendices, and script examples where appropriate. Version 5.5, Farkleberry release 11/28/08 1) In Introduction to Part 1, Added _Webster's Dictionary_ epigraph. 2) In "Why Shell Programming?" chapter, Added Spenser epigraph at end. 3) In Quoting chapter, rewrote introductory paragraph. In "Quoting Variables" subsection, simplified introductory paragraph to eliminate confusion. 4) In "Special Characters" chapter: At "comma operator" entry, added discussion and usage example for string concatenation. (Thank you, Rory Winston!) 5) In "Introduction to Variables and Parameters" chapter: Minor revision of introduction. In "Special Variable Types" section: At "$0" entry, expanded footnote to include command-line meaning. Revised and expanded "ex19.sh" example. In "Bash Variables Are Untyped" section, slightly revised "int-or-string.sh"example 6) In "Tests" chapter: In "Nested if/then Condition Tests" section: Expanded and clarified in-line example. 7) In "Variables Revisited" chapter: In "Manipulating Strings" section, At "${string//substring/replacement}" entry, added deletion examples to inline script. Extended "substring-extraction.sh" example. Fixup on "paragraph-space.sh" example. In "Parameter Substitution" section, Expanded in-line example at "${!varprefix*}, ${!varprefix@}" entry. In "$RANDOM" section, In discussion of /dev/urandom, eliminated confusing reference to "dd." In "Typing Variables" section: Added subsection on using "declare" to identify variables. (Thank you, Dieter Plaetinck, for the idea.) Minor fixup and clarifications in "ifs.sh" example script. 8) In "Testing and Branching" section of "Loops and Branches" chapter: At "select" entry, fixed a typo ("but that this ..." --> "but this ..." 9) In "External Commands" chapter: In "Basic Commands" section: At "chattr" entry, added footnote that "s" option may not be implemented. In "File and Archiving Commands" section: Expanded"shar" entry. At "bzip2" entry, added reference to "bzcat." In "Time/Date Commands" section: Updated output of "time" command. In "Miscellaneous Commands" section, At "yes" entry, fix to example of writing "yes" as a function (outputs "y" rather than "yes"). In "Terminal Commands" section: At "tput" entry, added ordered list of examples using the command. In "Complex Commands" section: At "find" entry, clarified usage of numerical modifier with -mtime/-atime options. (Pedro Javier Gonzalo Castellanos brought my attention to this.) In "Math Commands" section: Once again revised "cannon.sh" example. 10) In "Regular Expressions" chapter: In "Globbing" Section, added footnote defining a "wild card" character. At [bracketed characters] section, clarified language to indicate a *single* character selected between each set of brackets. 11) In "Here Strings" section of "Here Documents" chapter: Reformatted introductory paragraph. Added comment to "prepend.sh" example script about using "sed." 12) In "Arrays" chapter: Fixed a couple of errors in "empty-array.sh" example. (Thank you again, Nathan Coulter!) Slightly expanded "array-ops.sh" example. 13) In "Functions" chapter: Added "recursion-demo2.sh" example script. Added note that "empty" functions are not permitted in scripts. (Thank you, Thiemo Kellner!) Added short example of rather strange _() function. 14) In "System and Administrative Commands" chapter: Added entry for "lid" (list groups/members). At "halt" entry, added warning about carelessly invoking. 15) In "Loops and Branches" chapter: In "Loop Control" section: Added Verlaine quote. 16) In "Bash Variables are Untyped" section of "Introduction to Variables" Added comments to "int-or-string.sh" example script. 17) In "Internal Variables" section of "Variables Revisited" chapter: At $IFS entry, fixed up confusing language in 'echo "$IFS" | cat -vte" usage example. At $PIPESTATUS entry, fixup in first usage example and cleanup of reduncancy in the introductory explanation. (Thank you, der.hans!) More or less rationalized capitalization at intro to entries. 18) In "I/O Redirection" chapter: Added footnote about data streams and peripherals. Updated URL of Chet Ramey's archived e-mail in footnote. (Thank you, David Huston!) 19) In "Of Zeroes and Nulls" chapter: Added Tennyson epigraph at beginning. 20) In the "Shell Wrappers" section of "Miscellany" chapter: In footnote, corrected location of xmkmf to /usr/bin. 21) In "Bash, versions 2 and 3" chapter: Renamed "ex79.sh" example to "cards.sh" and made minor revisions thereto. 22) In "Exit and Exit Status" chapter, Added footnote modifying statement about $? giving functions a return value. Modified 3 in-line examples snippets for improved legibility. 23) In "Aliases" chapter: Added footnote in introduction. 24) In "Operators" subsection of "Operations and Related Topics" chapter: Revised "integer variable" text and in-line example for increased clarity. At "Comma operator" entry, revised text and in-line example for increased clarity. 25) In "Bash, versions 2 and 3" chapter: In generalized brace expansion entry in-line example, showed that parameterization doesn't work. 26) In "/dev" section of "/dev and /proc" chapter: Modified intro to define what a "device file" is. 27) In "Writing Scripts" section of "Exercises" appendix: Rewrote "Home Directory Listing" exercise to save to a USB flash drive, rather than a now-obsolete floppy disk. Rewrote "Determinants" exercise in more elaborate detail. 28) In "Contributed Scripts" appendix: Added "sw.sh" (command-line stopwatch) example script. Thank you, Pádraig Brady! Slight mods to "life.sh" script. 29) Fixups on erroneous links in the index. 30) In "ASCII Table" appendix: A couple of fixups to "ascii.sh" script. 31) In "Important Files" appendix, Added /etc/passwd entry. 32) In "Bibliography" section: Added URLs to GNU sed and gawk reference manuals. Fixed typo in "Unix Power Tools" entry. 33) In "Revision History" appendix: Fixed minor formatting bug in the synopsis (line break in the URL). 34) Fixed up the tarball so it expands into its own directory, rather than in $PWD. This is in closer conformity to the UNIX standard. 35) Enforced consistent use of "command-line" term with embedded hyphen. 36) Cleanups/fixups to main text, appendices, and script examples where appropriate . . . especially to older scripts where the command/usage has changed over the years, e.g., self-exec.sh. Version 5.4, Angleberry release 07/21/08 1) In "Tests" chapter: In "Test Constructs" section: Rewrote "arithmetic expansion" discussion and in-line example. Removed "if-echo" construct example (too confusing). In "File test Operators" section: At "-b" entry, added short usage example. Added a few lines to "arith-tests.sh" example. In "Test Comparison Operators" section: At "-z" entry, added short in-line example. 2) In "Introduction to Variables and Parameters" chapter: In "Variable Substitution" section, Added in-line example to "warning" about unassigned variables. Minor cleanups to introductory text. In "Special Variable Types" section, at discussion of "du" overflow, noted that this has been fixed as of kernel 2.6.23. (Thank you, Mauro Giachero, for pointing this out.) 3) In "Loops and Branches" chapter: Added in-line example of a function providing the [list] for a "for" loop, using command substitution. At "until" loops section, expanded "ex27.sh" example script. 4) In "Functions" chapter: Added comment to the effect that a function call is equivalent to a command. 5) In "Internal Commands and Builtins" chapter: At footnote to "getopts" entry, fixed typo. At "let" entry, added to "ex46.sh" example to include C-style increment, decrement, and trinary operators. 6) In "External Commands" chapter: In "Text Processing" section: At "recode" entry, fixed typo (removed extraneous ">"). In "Math Commands" section: At "factor" entry, added "primes2.sh" example script. In "Time/Date Commands" section: At "sleep" entry, fixed typo in usage example. At "date" entry, fixup: delete "generate six-digit random integers" && add explanation in <programlisting> In "File and Archiving Commands" section: At "more/less" entry, added paragraph (with link) explaining that "less" displays man page source. At "diff3" entry, added listing for "merge." In "Miscellaneous Commands" section: At "tee" entry, fixed typo (siponing -> siphoning). At "m4" entry, clarified footnote definition of "macro." At "getopt" entry, added Peggy Russell's note about the necessity of "eval." At "yes" entry, Added a use (of sorts) for parsed-variable echoing capability. Cleared up ambiguity about "yes" parsing variables (it doesn't). Added simple emulation of "yes" in a script function. In "Communications Commands" section: Added "mailstats" command. In "Terminal Commands" section: Added "resize" entry. At "tput" entry, added listing of some interesting options. 7) In "Arrays" chapter: Fixed error and typos in "array-strops.sh" example. Added comment line to "ex67.sh" example about ${Array[$element]}. (Thank you Juan Bellon, for the the heads-up on the above!) Revisions and fixups to "empty-array.sh" example script (Thank you, Nathan Coulter!) 8) In "Variables Revisited" chapter: In "Manipulating Strings" section: Minor rewrites to clarify meaning ("strip" --> "delete" ... etc.) In "Indirect References" section: Complete rewrite of introduction for additional clarity. Added material to "ind-ref.sh" example. In "Typing Variables" section: Added short in-line example to footnote. 9) In the "Shell Wrappers" section of "Miscellany" chapter: Fixed a typo in "ex3.sh" example ("This match lines ..." --> "This matches lines ..."). Added mention of Martin Matusiak's "undvd" shell wrapper script. Added mention of Itzchak Rehberg's "Ext3Undel" package. 10) In "Escaping" section of "Quoting" Chapter: Minor fixups and clarifications. 11) In "/dev" section of "/dev and /proc" chapter: Added "music.sh" example script (plays music!). Thanks, Antonio Macchi!) Added links / short explanations to pseudo-device listing. 12) Slight stylistic revisions to "Credits" section "Endnotes" Chapter. 13) In "Debugging" chapter: Added explanations and references to listing of internal variables new to version 3 of Bash. 14) In "Restricted Shells" chapter: Cleaned up markup tags (changed to <itemizedlist>). 15) In "Assorted Tips" section of "Miscellany" chapter: Added "progress-bar.sh" example script. (Thanks, Dotan Barak!) At "rcs" entry, correction: added space to "# $Id" in 2 places. 16) In "Special Characters" chapter: At "whitespace" entry, added link to "[:space:]" POSIX character class. 17) In "Contributed Scripts" appendix: Added "maned.sh" -- man page editor example script. Added "sd.sh" -- Standard Deviation example script. Added "nim.sh" -- game of Nim example script. Added Peggy Russell's "UseGetOpt.sh" example script (thanks!). Slight fixup to "tohtml.sh" (more accurate conversion). 18) In "Writing Scripts" section of "Exercises" appendix: Added "Craps" exercise. Added "Tic-tac-toe" exercise. Added "Banner" exercise. Added "Table of Logarithms" exercise. 19) In "Bibliography" section: Added entry+link to John Lion's _Commentary_ (still da bestest UNIX reference). 20) Cleanups/fixups to main text, appendices, and script examples where appropriate . . . especially to older scripts. Version 5.3, Goldenberry release 05/11/08 1) In "Special Variable Types" section of "Introduction to Variables and Fixed exit-status error in second "shift-past.sh" example. (Thank you, E. Choroba!) At "#" entry, added "quoted" to "escaped" for "#" in non-comment lines. Added a number of missing "Ctl-?" entries. Now, the entire alphabet is complete <g>. At "Ctl-N" entry, added footnote about history buffer. 2) In "Tests" chapter: In "Test Constructs" section: At [[ double brackets ]] construct, added discussion and example on arithmetic evaluation of octal and hex constants within [[ ... ]]. (Thank you, Moritz Gronbach!) Consolidated entire [[ ... ]] topic into a single <sidebar>. 3) In "Text Processing" section of "External Commands" Chapter: Added "cw-solver.sh" (crossword puzzle solver) example script. 4) In "System and Administrative Commands" chapter: At "lockfile" entry: Updated in-line example per suggestion of E. Choroba. Added info to footnote defining "semaphore." 5) In "Internal Commands and Builtins" chapter: At "read" entry, appended Antonio Macchi's suggestions to "arrow-detect.sh" example. 6) In "Quoting Variables" section of "Quoting" chapter: Added simple in-line example. 7) In "Debugging" chapter: Changed note defining 'signal' into a sidebar and removed superfluous comma. 8) In "Gotchas" chapter: Added item about unintended consequences of preserving whitespace within a variable. (Thank you, Claus Tirel, for inspiring me to do this.) 9) In "Assorted Tips" section of "Miscellany" chapter: At return value trickery discussion, added Caution about only one "echo" statement in a function. 10) In "Operator Precedence" section "Miscellany" chapter: Fixed an error in the table (!= is not a "combination assignment" operator. 11) In "Contributed Scripts" appendix: Added "Petals Around the Rose" example script. (Thank you, Serghey Rodin!) Modified "basics-reviewed.bash" script, per contribution of Cliff Bamford. (Many thanks!) In "basics-reviewed.bash" script, fixed two typos. Added very long and complex "qky.sh" (Perquackey-type game) script. 12) In "Exit Codes With Special Meanings" appendix: Added footnote about previously unused exit codes in the 64-78 range now allocated. (Thank you, Greg Metcalfe, for pointing this out.) 13) In "Bibliography" section: Added reference/link to Penguin Pete's site. 14) In "Exercise" appendix: Added humorous preface. 15) Cleanups/fixups to main text, appendices, and script examples where appropriate. Version 5.2, Silverberry release 03/16/08 1) In the "Starting Off With a Sha-Bang" chapter: Added footnote about "#!/bin/env bash" ... Added footnote about alternate spellings of "sha-bang." 2) In "Why Shell Programming?" chapter, Put "When not to use shell scripts" into a sidebar. 3) In "Special Characters" chapter: Added short introductory paragraph ("meta-meaning" ... etc.) At "-" entry, added "cat -" inline example. At "--" entry, added tip about removing dash-prefixed file names. At "Ctl-Z" entry, added MS-DOS EOF info. At "pipe" sidebar, added "philtre" footnote. Cleaned up some of the markup. 4) In "Internal Commands and Builtins" chapter: At "eval" entry, modified "ex43.sh" example at the suggestion of E. Choroba. (Thanks!) 5) In "Basic Commands" section of "External Commands" Chapter: At "rm" entry, reworked note about deleting dash-prefixed filenames. 6) In "Introduction to Variables and Parameters" chapter: At "shift entry", added comments to "shift-past.sh" example at the suggestion of Eleni Fragkiadaki (thanks!). 7) In "Variable Substitution" section of "Introduction to Variables: At discussion of "variable name," added brief definition of a "pointer" to footnote. 8) In "Bash Variables are Untyped" section of "Introduction to Variables" Added reference to "declare / typeset." 9) In "Miscellaneous Commands" section of "External Commands" Chapter: Added "xmessage" entry. Added "zenity" entry. 10) In "I/O Redirection" chapter: At "Using Exec" section, Added comment to "upperconv.sh" example, noting that 'cat' is unnecessary. (Thank you, Walter Brameld IV!) 11) In "Functions" chapter: Rewrote introduction to subsection on recursion by changing a footnote to a sidebar. Also added "recursion-demo.sh" example script. In subsection on recursion without using local variables, added "fibo.sh" example. Added note, per Yan Chen's commentary on redefinition of the same function. 12) In "Job Control Commands" section of "Internal Commands and Builtins" chapter: At "wait" entry, added Walter Brameld's explanation of script-in-background hang. (Thanks!) 13) In "Operators" subsection of "Operations and Related Topics" chapter: Moved "!" from bitwise to logical operators. Made capitalization of operators more consistent. (Thanks, Sebastian Arming, for bringing these to my attention.) 14) In "Time/Date Commands" section of "External Commands" chapter: At "date" entry, added "date-calc.sh" example. (Thank you, Nathan Coulter!) 15) In "File and Archiving Commands" section of "External Commands" Chapter: Added "lzma" entry. 16) "System and Administrative Commands" chapter: At "lockfile" entry, added footnote defining "semaphore." Reworked "env" entry. 17) In "Contributed Scripts" appendix: Added "homework.sh" example. Added Patsie's "tree2.sh" example. 18) In the "Sed and Awk Micro-primer" appendix: In "Awk" section, added example of "$0" (field #0). 19) In "Bash, versions 2 and 3" chapter: Fixed a typo in first paragraph ("number of bug" -> "number of bugs"). Added cautionary note about =~ regex match operator incompatibilities in version 3.2 update of Bash. (Thanks, Chris Bainbridge, for the heads up!) Added Bash, version 3.2 subsection. 20) In "Assorted Tips" section of "Miscellany" chapter: At "Passing an array to a function" entry, fixed typo: "bag of trick" --> "bag of tricks" Created a new sub-subsection for the topic of widgets. Added 'xmessage' and 'zenity' commands, with in-line examples. 21) In "Parameter Substitution" section of "Variables Revisited" chapter: Fixed two typos (missing left curly bracket). (Thank you, Jean-Michel Vallat, for pointing this out.) 22) In "Typing Variables" section of "Variables Revisited" chapter: Added footnote defining "typing." 23) In "Optimizations" section of "Miscellany" chapter: Added footnote about using functions. 24) In "Bibliography" section: Minor rewrites and updates of entries. Updated a few stale URLs. 25) In "ASCII Table" appendix: Replaced "ascii.c" with "ascii.sh" script contributed by Sebastian Arming. (Thanks!) 26) In "Writing Scripts" section of "Exercises" appendix: Revised "safe delete" exercise. 27) In" DOS Batch Files" appendix: Added footnote about rewriting the example batch file. 28) More cleanups/fixups/additions to Index. 29) More cleanups/fixups to main text, appendices, and examples where appropriate. Version 5.1, Lingonberry release 11/10/07 (The usual fixups after a .0 release ...) 1) In "Special Characters" chapter: At "-" (dash) entry, added default parameter (parameter substitution). At "+" (plus) entry, added alternate parameter (parameter substitution). At "," (comma) entry, added footnote defining "operator." Added "Ctl-Y" entry. (Thank you, Stuart J. Browne!) 2) In "Complex Commands" section of "External Commands" Chapter: At "xargs" entry: Added another example of "xargs -0" usage. Added note about sequential processing of arguments passed. 3) In "File and Archive Commands" section of "External Commands" Chapter: At "tar" entry, added "--after-date" option. 4) In "Manipulating Strings" section of "Variables Revisited" chapter: At "${string:position:length}" entry, added "rand-string.sh" example script. 5) In "File and Archiving Commands" section of "External Commands" Chapter: At "sum/cksum/md5sum/sha1sum" entry, added note about enhanced "sha1sum" commands. At "csplit" entry, added "splitcopy.sh" example. 6) In "Internal Commands and Builtins" chapter: At "eval" entry, added E. Choroba's in-line example (Thanks!) 7) In "/proc" section of "/dev and /proc" chapter: Output fixup for "get-commandline.sh" inline example. (Thank you, Han Holl!) 8) In "Arrays" chapter: Added "ex68a.sh" example, Jared Martin's improved version of "ex68.sh" ... 9) "System and Administrative Commands" chapter: Added "mkisofs" entry. 10) In "Miscellany" chapter: Added much-needed "Operator Precedence" section, with *table* and examples. 11) In "Miscellaneous Commands" section of "External Commands" chapter: At "jot" entry, added additional material (including random sequence output). 12) In "Subshells" chapter: Enhanced "subshell.sh" example to show that changes to a global variable inside a subshell do not affect its value outside the subshell. 13) In "$RANDOM" section of "Variables Revisited" chapter: Added "brownian.sh" example. 14) In the "Regular Expressions" chapter, Added footnote defining "meta-meaning." 15) In "Assorted Tips" section of "Miscellany" chapter: Added entry showing how to access a variable in a subshell _outside_ the subshell. 16) In" DOS Batch Files" appendix: corrected Ted Davis URL (Thank you, Rik Kabel!) 17) In "Bibliography" section: Fixed URL on "Ted Davis' Shell Scripts on the PC" site. (Thanks, Rik Kabel!) 18) In "Mirror Sites" appendix: Removed dead link to Sunsite (ibiblio.org). Apparently they no longer mirror the ABS Guide. 19) In "Revision History" appendix: Added a copy on an e-mail shortly after release of version 0.1 of the ABS Guide. 20) In "Copyright" appendix: Liberalized the license terms to *permit* modified or derivative versions of the book. However, the Copyright Appendix is invariant and may not be omitted. 21) Changed "Sony Librie" references to include the newer Sony PRS-500/505 device. 22) More cleanups/fixups/additions to Index. 23) More cleanups/fixups to main text and examples where appropriate. Version 5.0, Serviceberry release 06/24/07 1) In "Special Characters" chapter: Added note to "ex8.sh" example script at the suggestion of Hans-Joerg Diers. (Thanks!) At "-" entry, added xref to example for "--" option flag. At "-" entry, added discussion of end-of-options for a builtin for the "--" flag. (Thank you again, Hans-Joerg Diers.) 2) In "File and Archiving Commands" section of "External Commands" Chapter: Expanded "make" entry. 3) In "Text Processing" section of "External Commands" Chapter: At "grep" entry, added "from.sh" example. 4) In "Process Substitution" chapter: New introduction. Changed "Command substitution template" heading to corrected "Process substitution template." 5) In "I/O" Redirection chapter: Broke up large usage example at beginning of chapter into separate parts. Much more useful to link to this way. 6) "System and Administrative Commands" chapter: At "newgrp" entry, added Kurt Glaesemann's note. 7) In "Arrays" chapter: Changed "array operations on variables" note to a sidebar. 8) In "Loops and Branches" chapter: More explanation of omitting test brackets in "while" loop. More material on "while-read" construct. Added Shakespeare epigraph. 9) In "Parameter Substitution" section of "Variables Revisited" chapter: Clarified substring removal operations. 10) In "/dev" section of "/dev and /proc" chapter: Moved "socket" definition from a footnote to a sidebar. 11) In "Endnotes" Chapter: Added "Disclaimer" section. 12) In "Bibliography" section: Added entry for Tim Waugh's "xmlto" Bash script. 13) In "Copyright" appendix: Added anti-lawsuit waiver. Minor fixups and additions. 14) In "Important Files" appendix, Added /etc/sysconfig/hwconf entry. 15) In "Contributed Scripts" appendix: Added JuanJo Ciarlante's "insertion-sort.bash" example (thanks!). 16) In "Reference Cards" appendix: Added entries to "Miscellaneous Constructs" table (at Double Parentheses). 17) Added "ASCII Table" appendix. 18) Added cross-linked index/glossary. Much needed! 19) Fixed URL for pdf version of document at mirror site. 20) Reformatted many of the epigraphs (quotations) for improved appearance. 21) Minor text and script cleanups, as appropriate. Version 4.3, Inkberry release 04/29/07 1) In "Special Characters" chapter: At "| / pipes" entry, added UNIX FAQ note in sidebar. (Thank you, Nick Battle, for doing the research on this.) At "ctl-H" entry, added commentary, per Constantin Hagemeier's suggestions. 2) In "I/O" Redirection chapter: In introductory in-line example, Added note that "&>>filename" fails. (Thank you, David Perlman.) In "Applications" section, Fixed up formatting/comments of "logevents.sh" example script. 3) Indented some of the case statment conditions in text for better readability. 4) In "Arrays" chapter: Fixed erroneous comment in "array-assign.bash" example script. (Thank you, Manfred Schwarb, for pointing this out.) 5) In "Internal Commands and Builtins" chapter: At "read" entry, added a section to the "read-novar.sh" example script. Clarified user instructions in "read-r.sh" example script. (Thank you, Paul O'Malley.) At "export" entry, added general definition of the term "export" in a footnote. 6) In "Variable Substitution" section of "Introduction to Variables and Parameters" chapter: Added footnote about "rvalue" and "lvalue." 7) In "Internal Variables" section of "Variables Revisited" chapter: At "$IFS" entry, revised first set of usage examples at the suggestion of Christian Laubscher. (Thanks!) Modified "$GROUPS" entry at the suggestion of Dan Stromberg. (Thanks!) 8) In "Loops and Branches" chapter: Added a paragraph at end of chapter on which type of loop to use. Modified "ex24.sh" script for better functionality. In "Loop Control" section: Added James "Mike" Conley's fix of Jean Helou's code. (Thanks!) 9) In "Complex Commands" section of "External Commands" Chapter: At "find" entry, slight revision to "ex57.sh" example script. (Thanks, Robbie Morrison.) 10) In "File and Archiving Commands" section of "External Commands" Chapter: Added note for clarification to "ex48.sh" example. (Thanks, Evan.) 11) In "Text Processing" section of "External Commands" Chapter: At "grep" entry, added "--color" and "-o" options discussion. (Thank you, Benno Schulenberg.) 12) In the "Regular Expressions" chapter, At asterisk (*) entry, fixed error in example. (Thank you, Benno Schulenberg.) 13) In "Here Strings" section of "Here Documents" chapter: Added discussion of bracketed-variable problem in "commentblock.sh" example. (Thank you, Kurt Pfeifle!) 14) In "Communications Commands" section of "External Commands" chapter: At "wget" entry, added discussion of "-c" option. 15) "System and Administrative Commands" chapter: At "chkconfig" entry, clarification to include system services. (Thank you, Dan.) 16) In "Bash, version 3" section of "Bash, versions 2 and 3" chapter: Removed a "the the" typo. 17) In "Subshells" chapter: Added definition of "scope" in a sidebar. 18) In "/dev and /proc" chapter: Added "get-commandline.sh" in-line example. 19) In "Gotchas" chapter: At "suid" entry, modified footnote, per suggestion of Dan Stromberg. 20) In the "Security Issues Section" of the "Miscellany" chapter: Added a subsection on "Writing Secure Shell Scripts". (Thank you, Dan Stromberg!) 21) In "Contributed Scripts" appendix: Added "pad.sh" script. Added "soundcard-on.sh" script. Added "find-splitpara.sh" script. Added "tohtml.sh" script. Shortened a couple of overlength lines in "nightly-backup.sh" and "ftpget.sh" scripts for better print formatting. 22) In "Analyzing Scripts" section of "Exercises" appendix: Added Nathan Coulter's code snippet (thanks!). 23) In "Writing Scripts" section of "Exercises" appendix: Added "Monitoring a User" exercise to "Intermediate" section. Removed "Converting a file to HTML" exercise (since I included a script that does this <g>). 24) In "Copyright" appendix: Added URL for Chinese translation. 25) In "Bibliography" section: Added Fritz Mehnert's Bash-related projects. 26) In README file: Fixed typo. (Thanks, Yuval Langer, for pointing it out. Added short "sed" script for reverting example scripts to original executable version. 27) Reverted to tagging "C" (C language) references with "<command>" tags for additional clarity. Version 4.2, Sparkleberry release 12/10/06 1) In "Why Shell Programming?" chapter, added paragraph with Mayer quote about a "useful" language. 2) In the "Starting Off With a Sha-Bang" chapter: Minor editing of footnotes. 3) In "Basic Commands" section of "External Commands" Chapter: At "ls" entry, added tip about exit status. At "chmod" entry, discussion of "chmod 444" and "chmod 111" and "chmod 000"(for a directory) added to in-line example. 4) In "Math Commands" section of "External Commands" chapter: Modified "alt-bc.sh" example script to eliminate global variable. 5) In "Complex Commands" section of "External Commands" Chapter: At "find" entry, added "finding suid files" inline example. 6) In "Quoting" Chapter: Correct "Encapsulating '!' ..." footnote. (Thank you, Geoff Lee.) In "Escaping" section: Modified "escaped.sh" example script to show effect of escaping a newline. 7) In "Internal Variables" section of "Variables Revisited" chapter: At "$SHLVL" entry, added footnote defining "nesting." 8) In "Text Processing" section of "External Commands" Chapter: Added "texexec" entry. 9) In "Loops and Branches" chapter: In "while loops" section, Added a paragraph specially dedicated to "while-read" loops. Added use of function within test brackets of loop. 10) In "Redirected Code Blocks" section of "I/O Redirection" chapter: Added using a "here document" to feed into the stdin of a while-read loop. (Thank you, Albert Siersema!) 11) In "Numerical Constants" section of "Operations and Related Topics" In "numbers.sh" example, added "echo ((0x...))" construct. 12) In "Internal Commands and Builtins" chapter: In "Network" subsection, added "ip" entry, and Juan Nicolas Ruiz's "ip.sh" example script. (Thank you!) At "read" entry: Modified "arrow-detect.sh" example script per Mark Alexander (Thanks!) At "export" entry: Reordered the intro, with link. At "eval" entry: Added "echo-params" example script. 13) In "Arrays" chapter: Fixed comments in "bubble.sh" example (Paulo Aragao's alternative). (Thank you, C.Y. Hunt!) 14) "System and Administrative Commands" chapter: Added usage examples at "lsof" entry. 15) In "/dev and /proc" chapter: In "/dev" section, Added example of "head -1 /dev/hdc" to check whether CD is in drive. In "/proc" section, Added "cpuinfo" sub-example. Added "fgrep Mem /proc/meminfo" Fixed /proc/cpuinfo example (FC6 breaks old one!) Fixed /proc/bus/usb/devices example (FC6 breaks old one!) 16) In "Miscellaneous Commands" section of "External Commands" chapter: At "dd" entry, added material. At "hexdump" entry, added usage example. 17) In "Gotchas" chapter: Added (very short) intro paragraph. 18) In "Complex Functions and Function Complexities" section of "Functions" Fixed up "max.sh" example script (can't use negative function return values any more!) 19) In "Writing Scripts" section of "Exercises" appendix: Fixed typo in "Square Roots" exercise. 20) In "Command-Line Options" appendix: Fixed GNU standards page URL (Thank you, Kevin Hunsaker). 21) In "Bibliography" section: Added entry for "Pixelbeat command-line reference." Added entry for "dd" thread on Linux Questions. 22) Fixed embarrassing typo (missing space) on title page. 23) Changed <command> tags to more appropriate <firstterm> in the title listing of many examples. 24) Fixed up "split" links in List of Examples on title page. 25) Parameterized modem port in "ex24.sh" example. 26) Current revision's Major Project: shorten overlength lines for formatting reasons. "days-between.sh" example [also Fixed misspelling (permissable --> permissible).] "Hash.lib" example "usb.sh" example "is_spammer.bash" example "wgetter2.bash" example "bashpodder.sh" example "gcd.sh" example "random-between.sh" example "ex36.sh" example "ex41.sh" example "ex64.sh" example "rnd.sh" example "de-rpm.sh" example "and-list2.sh" example "fc4upd.sh" example "iscan.sh" example "cccl" example "horserace.sh" example "factr.sh" example "letter-count2.sh" example "bashrc" example Alan Cox's and Lee Maschmeyers' examples in "Special Characters" chapter. Done (I think)! Version 4.1, Waxberry release. 10/08/06 1) In the "Starting Off With a Sha-Bang" chapter: Added Sven Mascheck's note to the footnote on magic numbers in 4.2 BSD. (Thanks, Sven.) 2) In "Special Characters" chapter: At "$$" entry, in footnote, added definition of a "process." 3) In "Here Strings" section of "Here Documents" chapter: Added short intro example. Thank you, Sebastian Kaminski, for the suggestion. 4) In "Functions" chapter: Added note about single-line functions, with warning that a semicolon must terminate the final command in such a function. Embedded Christopher Head's function definition snippet in S.C.'s inline example. 5) "System and Administrative Commands" chapter: At "stat" entry, added in-line example script showing setting of file-descriptive variables. (Thank you, Joël Bourquard, for the suggestion.) At "netstat" entry, added note about "netstat -lptu." 6) In "Communications Commands" section of "External Commands" chapter: At "rsync" entry, changed final paragraph to a "note." 7) In "Text Processing" section of "External Commands" Chapter: At "tail" entry, noted that "tail -$LINES" is now deprecated, and corrected examples. Also cleaned up "head" references and examples, as above. At "tr" entry, in sidebar, removed misleading statement about mandatory quoting of letter ranges within brackets. (Thank you, Omair Eshkenazi, for pointing this out.) At "nl" entry, changed "cat -n" reference to "cat -b" for clarity. (Thank you, Omair Eshkenazi, for pointing this out.) 8) In "Special Variable Types" section of "Introduction to Variables and Added short definition of "child process" to note about exporting variable to child processes. At "shift" entry, added paragraph and short in-line example code listing on passing a numerical parameter indicating how many positions to shift. 9) In "Subshells" chapter: Added definition of "subshell" in a sidebar box. Added in-line example, showing subshell with "ps." Added footnote that "exec" does not fork off a subprocess/subshell. At "dedicated environment" inline example, noted that the "exit" only terminates the subshell, not the parent process. Removed "note" markers from paragraph about variables in a subshell not being visible outside the subshell. Added note, with example, about use of "$BASH_SUBSHELL" -- but _not_ "$SHLVL" to indicate level of nesting within a subshell. 10) In "Loops and Branches" chapter: Corrected minor grammar error in "findstring.sh" example. Added footnote defining "iteration." Added (needed!) spaces in definitions of "while" and "until" loops. Noted that "while loop" uses previously-discussed "test brackets," and can use double-brackets construct. 11) In "Internal Commands and Builtins" chapter: At "unset" entry, added string test to "unset.sh" example. At "exit" entry, added note that this command may also terminate a subshell. At "exit" entry, added footnote that this command *only* terminates the process it is running within. At footnote to "hash" entry, gave a couple of synonyms for "algorithm." 12) In "Internal Variables" section of "Variables Revisited" chapter: At "$SHLVL" entry, added note that this variable not affected by subshells. At "$!" entry, added Matthew Sage's "hanging job" example (thank you!). 13) In "/proc" section of "/dev and /proc" chapter: Added "cat /proc/acpi/battery/BAT0/info" to introductory usage examples. Added note about controlling peripherals by sending commands to /proc. 14) In "Miscellaneous Commands" section of "External Commands" chapter: At "mkfifo" entry, added Omair Eshkenazi's example script (thanks!). 15) In "Time/Date Commands" section of "External Commands" chapter: At "batch" entry, added short definition of "batch processing." 16) In "Manipulating Strings" section of "Variables Revisited" chapter: At "${string%substring}" entry, added Rory Winston's usage example (thanks!). 17) In "Colorizing Scripts" section of "Miscellany" chapter: Modified "Draw-box.sh" example per suggestions of Jim Angstadt (thanks!). 18) In "Of Zeroes and Nulls" chapter: Added comments to "ex73.sh" and "ramdisk.sh" example scripts. 19) In "Contributed Scripts" appendix: In "days-between.sh" example, Corrected Gauss' Formula comment (reference date is March 1, 1600, *not* January 1). Corrected broken link in above comment. (Thank you, Nick Alexeev, for the pointers.) Added "nightly-backup.sh" example. (Thank you, Richard Neill.) 20) In the "Sed and Awk Micro-primer" appendix: Added note about other "sed" delimiters, such as "%" ... (Thank you, Omair Eshkenazi.) 21) In "Analyzing Scripts" section of "Exercises" appendix: Added Rory Winston's one-liner script (thanks!). 22) In "Writing Scripts" section of "Exercises" appendix: In EASY section, added "Self-reproducing" script. In DIFFICULT section, added "Cross Reference" script. added "Square Roots" script. 23) In "Bibliography" section: At reference and URL for Col Needham's original IBDB scripts, Noted that the link no longer works. (Thank you, Colin Brace, for pointing this out.) 24) In "Assorted Tips" section of "Miscellany" chapter: Added "pseudo-code" entry. 25) In "Copyright" appendix: Added footnote stating author's intention to commit the book to the Public Domain in 2014. 26) Miscellaneous: Added footnote defining "deprecate." Version 4.0, Winterberry release. 06/18/06 1) "System and Administrative Commands" chapter: Added "gnome-mount" entry. Modified "command" entry to eliminate ambiguity. At "uname" entry, reordered usage example. At "watch" entry, noted that piping output of "watch command" to "grep" doesn't work. In "Filesystem" subsection, At "lockfile" entry, additional comment in in-line example script. In "Job Control" subsection, Added "killall" entry. At "nice" entry, elaborated on "renice," "snice," and "skill." 2) In "Communications Commands" section of "External Commands" chapter: At "ping" entry, added in-line example script. 3) In "Text Processing" section of "External Commands" Chapter: At "tsort" entry, added material. 4) In "Arrays" chapter: Noted an exception to 'array2=( "${array1[@]}" )' array copying method. (Thank you, Jochen, DeSmet.) Extended "empty-array.sh" (Thank you, Omair Eshkenazi.) 5) In "Tests" chapter: In "Test Constructs" section: Fixed comment typos in "broken-links.sh" example. (Thank you, Omair Eshkenazi.) Added material to note about "test" builtin and /usr/bin/test not being equivalent. In "Other Comparison Operators" section: Rewrote the (short) intro. In "Test Your Knowledge of Tests" section: Updated intro to example snippet. 6) In "$RANDOM" section of "Variables Revisited" chapter: Fixed typo in comment in Jipe's in-line example. Added comment to "random-between.sh" example. (Thank you, Omair Eshkenazi, for both of the above.) 7) In the "Security Issues Section" of the "Miscellany" chapter: Fixed typo in second paragraph. (Thank you, Omair Eshkenazi.) 8) In "List Constructs" chapter: Modified "and list" setting variable to default value in-line example. (Thank you, Omair Eshkenazi.) 9) In "Job Control Commands" section of "Internal Commands and Builtins" chapter: At "kill" entry, added comment about additional file giving signal listing. 10) In "Time/Date Commands" section of "External Commands" chapter: At "touch" entry, added tip about not overwriting files. 11) In "Internal Commands and Builtins" chapter: Added short usage examples to "true" and "false" entries. 12) In "Bash, version 3" section of "Bash, versions 2 and 3" chapter: Added "pipefail" option. Also added this to table in "Options" chapter. At {x..y} "braces expansion operator entry, added a simple "echo" using this. (Thank you, Damon Puncer, for the suggestion.) 13) In "File and Archiving Commands" section of "External Commands" Chapter: At "diff" entry, added note about "diffstat." Moved "sum/cksum/md5sum/sha1sum" and "shred" entries to "Encoding and Encryption" subsection. 14) In "Contributed Scripts" appendix: Added "ha.sh" hashing script. (Thank you, Oliver Beckstein.) Added comments to "fifo.sh" script. (Thank you, Omair Eshkenazi.) More explicit reference to Mark Moraes copyright before his two scripts. 15) Moved "Here Documents" chapter from "Beyond the Basics" section to "Advanced Topics" section. 16) Moved "I/O Redirection" chapter from "Beyond the Basics" section to "Advanced Topics" section. 17) In "/dev" section of "/dev and /proc" chapter: Added material to "socket" footnote. 18) Split off the three "Command" chapters into a different Part. Put an alphabetical command cross-reference into the Introduction to that Part. >> This is a major reorganization of the document. << 19) In "Special Characters" chapter: Added "extended brace expansion" (Bash 3+) entry. Added "{} -- placeholder for text after "xargs -i" . . . 20) In "Reference Cards" appendix: In "Miscellaneous Constructs" table: Added "extended brace expansion" (Bash 3+) entry. Added "{}" (text replacement) entry. Added more hypertext links. Cleanups. 21) Delineated all references to "root user" with <firstterm> tags. 22) Changed many of the <emphasis> tags in the document to more appropriate <firstterm>, <filename>, and <varname>, etc. 23) Changed certain of the <varname> tags to the more appropriate <parameter>. 24) Various minor fixups on example scripts. Version 3.9 Spiceberry release, 05/15/06 1) In the "Starting Off With a Sha-Bang" chapter: Added footnote that when launching a script from Bash, the #! isn't strictly necessary. (Thank you, Diane Holt, for bringing this to my attention.) 2) In "I/O Redirection" chapter: At introduction to chapter, Added explanatory examples in introductory in-line code block. At "Using Exec" section, Added brief explanation of different effects of "exec N > filename" and "N > filename." (Thank you, Ahmed Darwish, for both of the above.) 3) In "Special Characters" chapter: At "$" entry, added an additional usage example. At "$$" entry, added footnote explaining of what a PID is. At redirection operators entry, added "<>" description. At "-" entry, fixup on "bunzip2" example. (Thanks, Roman.) 4) In "Miscellaneous Commands" section of "External Commands" chapter: At "yes" entry, added parsing of variables. 5) In "File and Archiving Commands" section of "External Commands" Chapter: At "gzip" entry, added note about "-c" option. 6) In "Manipulating Strings" section of "Variables Revisited" chapter: At "${string%%substring}" entry, added "ra2ogg.sh" example script. 7) In "Bash, version 3" section of "Bash, versions 2 and 3" chapter Added "Bash, version 3.1" subsection. Entry for "+=" operator. 8) In "Subshells" chapter: Modified final note about command list within curly brackets, per suggestion of Andreas Kühne. 9) In "Gotchas" chapter: Converted separate entries to bulleted-item list. Added entry for error in leaving out termination semicolon in command block within curly braces. (Thank you, Andreas Kühne.) 10) In "Writing Scripts" section of "Exercises" appendix: Added "Checking whether a process is still running" exercise ("Easy" section). 11) "System and Administrative Commands" chapter: Minor revision of "strace" entry. Added "ltrace" entry. Added "lspci" entry. 12) In "Contributed Scripts" appendix: Minor modification to "life.sh" script, to check for missing startfile. 13) In "Reference Cards" appendix: Fixed up error in "Miscellaneous Constructs" table (terminating semicolon in command list within curly brackets). (Thank you, Andreas Kühne.) 14) In "Revision History" appendix: Fixed embarrassing typos. 15) Various minor fixups on example scripts. Version 3.8 Blaeberry release, 02/26/06 1) In "Special Characters" chapter: Minor additions to leadin to "control characters" entries, and to "Ctl-K" and "Ctl-L" entries. 2) In "Introduction to Variables and Parameters" chapter: Rewrote lead-in. In "Variable Substitution" section: Added inline example of difference between variable name and value. Added escaped whitespace example to "ex9.sh" script. 3) In "Basic Commands" section of "External Commands" Chapter: At "cp" entry, added example of using -u option. 4) At beginning "Regular Expressions" chapter, added Stowe Boyd epigraph. 5) "System and Administrative Commands" chapter: In "Job Control" subsection, Added "pgrep/pkill" entry. At "ps" entry, mentioned "aux" options. In "Filesystem" subsection, At "lockfile" entry, more material, including usage example and footnote. Added "flock" entry. 6) In "File and Archiving Commands" section of "External Commands" Chapter: At "sha1sum" entry, added paragraph about security consultants' misgivings. More info at "cpio" entry. 7) In "Parameter Substitution" section of "Variables Revisited" chapter: Fixed minor typo at "${parameter:+alt_value}" example. (Thank you, Jemshad O K) 8) Partitioned "Security Issues Section" of the "Miscellany" chapter into two subsections. Added subsection about "shc" utility for compiling script source. 9) In "Loops" section of "Loops and Branches" chapter: Applied fixup to "bin-grep.sh" example. (Thank you, Anton Filippov.) 10) In "Redirecting Code Blocks" section of "I/O Redirection" chapter: Corrected annotation in final section of "redir2.sh" example. (Thank you, Brian Onn.) 11) In "Internal Commands and Builtins" chapter: Added "revposparams.sh" example. (Thank you, Dan Jacobson.) More info at "nmap" entry. 12) In "Text Processing" section of "External Commands" Chapter: At "egrep" / "fgrep" entry, added note about boolean "|" operator. 13) In "Here Strings" section of "Here Documents" chapter: Added short inline usage example. Added "mailbox_grep.sh" example. (Thank you, Francisco Lobo, for both of the above.) 14) Added "Bash Command-Line Options" section to (retitled) "Command Line Options" appendix. 15) In "Copyright" appendix: Added anti-DRM provisions. 16) Various minor fixups on example scripts. Version 3.7 Whortleberry release, 10/23/05 1) In "Special Characters" chapter: At "whitespace" entry, added footnote about newline/linefeed. 2) In "Basic Commands" section of "External Commands" Chapter: At "ln" entry, noted that only symbolic links can refer to a directory. 3) In "Text Processing Commands" section of "External Commands" Chapter: Modified comments in "wf.sh" example. At "grep" entry, fixed 2 typos "Now, let's search this file . . . " "printf 'a b\nc d\n\n\n\n\n\000\n\000e\000\000\nf' | grep -cz ." At "diff" entry, fixed typo ("spiff" --> "sdiff"). (Thank you, Frank Wang.) At "colrm" entry, changed "warning" to "caution" -- toned it down a bit. At "cut" entry, Added note about using linefeed as delimiter. (Thank you, Jaka Kranjc.) Got rid of unnecessary "cat" in inline example. At "iconv" entry, added snippet of code from "booklistgen.sh" script. (Thank you, Peter Knowles, for permission to use it.) 4) In "Complex Commands" section of "External Commands" Chapter: At "expr" entry, added usage example of escaped parentheses. (Thank you, Peter Knowles, for permission to use it.) 5) In "File and Archiving Commands" section of "External Commands" Chapter: Added "sha1sum" command at Frank Wang's suggestion. 6) In "Communications Commands" section of "External Commands" chapter: In "Remote Host Access" subsection, added "scp" entry. Added material at "uucp" entry. Added "uux" entry. At "wget" listing, added comments. At "rsync" entry, fixed up usage example. Added "fc4upd.sh" example. (Thank you, Frank Wang.) 7) In "Complex Commands" section of "External Commands" Chapter: At "xargs" entry, added footnote about speeding up execution. 8) In "Math Commands" section of "External Commands" chapter: Added Frank Wang's comments to "monthlypmt.sh" example. 9) In "Miscellaneous Commands" section of "External Commands" chapter: At "tee" entry, redesigned diagram for greater clarity. 10) In "Testing and Branching" section of "Loops and Branches" chapter: Rewrote explanation of filename "globbing" in the [list] of a for-loop and added comments to "list-glob.sh" example. 11) In "Quoting" chapter: Added sidebar near beginning of chapter. Removed intro paragraph (superfluous) at beginning of "Quoting Variables" section. 12) In "$RANDOM" section of "Variables Revisited" chapter: Added comment to "ex21.sh" example. 13) In "Command Substitution" chapter: Added footnote about nesting command substitution with backticks by using escaping. (Thanks, John Default.) 14) In "System and Administrative Commands" chapter: Moved "dmesg" entry to "Information and Statistics" subsection. In "Process Control and Booting" subsection, added "service" entry. At "uptime" entry, added note about load average. Fixups at "terminals and modes" sidebar, second example. (Thank you, Mark Norman.) 15) In "Bibliography" section: Added reference and URL for Col Needham's original IBDB scripts. 16) Numerous typos corrected, per a list sent in by Mark Norman (thanks!). 17) Various changes and fixups in example scripts. Version 3.6 Pokeberry release, 08/28/05 1) In "Special Characters" chapter: At "-" (redirection from/to stdin or stdout [dash]) entry, corrected comments. (Thank you, Frank Wang.) Replaced flawed first example at "brace expansion" entry. Added quoting comment at "whitespace" entry. 2) In "Operators" subsection of "Operations and Related Topics" chapter: Removed unnecessary "echo" from modulo operator usage example. (Thank you, Pasha Zubkov.) 3) In "/proc" section of "/dev and /proc" chapter: Added comment to "pid-identifier.sh" example, per Teemu Huovila. (Thanks!) 4) In "Testing and Branching" section of "Loops and Branches" chapter: Changed description of "case" construct from "equivalent of" to "analog to" "switch" in C/C++. (Thank you, Teemu Huovila.) 5) In "Communications Commands" section of "External Commands" chapter: Added "rsync" entry. 6) In "Miscellaneous Commands" section of "External Commands" chapter: Added additional usage example at "jot/seq" entry. 7) In "Internal Commands and Builtins" chapter: Added "testing 'false'" to "false" entry example. (Thank you, Joe Friedrichsen for the suggestion.) At "getopts" entry, made corrections in description of behavior of $GETOPTS. (Thank you, Pharis Monalo.) At "source" entry, added notes about passing arguments to "sourced" file and using a "return" to pass control back to the calling script. Added "caller" entry. 8) In "Contributed Scripts" appendix: Made changes to "whx.sh" script. 9) In "Test Constructs" section of "Tests" chapter: Fixed up "ex.11.sh" example for difference in Bash 3.x behavior. (Thank you, Frank Wang.) 10) In "Internal Variables" section of "Variables Revisited" chapter: Fixed up comments in "t-out.sh" example to reflect changes in Bash 3.x. (Thank you, Frank Wang.) Fixed up explanation of "anomalous" output given by ${PIPESTATUS[@]} in certain situations. (Thank you, Frank Wang, for providing Chet Ramey's explanation.) 11) In "Typing Variables" section of "Variables Revisited" chapter: Added caution + example of how "typeset" restricts the scope of a variable. (Thank you, Michael Iatrou.) 12) In "File and Archiving Commands" section of "External Commands" Chapter: At "file" entry, fixed typo (/usrlocal/bin => /usr/local/bin). Fixed error in "strip-comments.sh" example script. (Thank you, Jesse Gough.) 13) In "Complex Commands" section of "External Commands" Chapter: At "xargs" entry, added extra usage example. At "expr" entry, added example of illegal arithmetic operation. 14) In "$RANDOM" section of "Variables Revisited" chapter: Added Frank Wang's alternative to jipe's example. 15) In "Quoting" chapter: Split the chapter into introduction and "Quoting Variables" and "Escaping" sections. Corrected note about unquoted "grep" . . . Added discussion about quoting correcting echo's appetite for newlines. Clarified explanation of referencing quoted variables and added footnote. Amended tip about double quotes being necessary only to prevent word splitting. (Thank you, Harald Koenig.) 16) In "Local Variables" section of "Functions" chapter: In footnoted example of a segfaulting recursive function, added an "echo" to properly exercise the function. (Thank you, Dr. Roland Sonnenschein.) 17) In "Debugging" chapter: At listing of "Tools for debugging non-working scripts," added list item for "$LINENO" variable and "caller" builtin. At "trap" entry, replaced buggy "multiple-processes.sh" example. (Thank you, Tedman Eng.) 18) In "Copyright" appendix: Updated licensing terms to give the LDP the right to reassign custodianship of the book in the event the author cannot be contacted. 19) In "Bibliography" section: Added entry for Peter Knowles' booklistgen.sh -- Sony Librie booklist generator -- making possible Linux access to this neat e-book reader. 20) Corrected spelling of the name of contributor Stéphane Chazelas in multiple places. (Thank you, Bertrand Mollinier Toublet, for pointing out these embarrassing typos.) 21) Various changes and fixups in example scripts. Version 3.5 Boxberry release, 06/05/05 1) In "Indirect References to Variables" section of "Variables Revisited" chapter: Added "ugly kludge" sidebar. 2) In "Variable Assignment" section of "Introduction to Variables and Parameters" chapter: After "ex16.sh" example, noted that $(...) construct is a form of command substitution. 3) In "Special Variable Types" section of "Introduction to Variables and Parameters" chapter: In note about remedies for missing command-line parameters, added discussion about using parameter substitution, rather than adding extra characters to variable names. (Thank you, Fabian Kreutz.) 4) In "Command Substitution" chapter: At note at end of chapter, added mention that nesting is possible with $(...) construct, and added "agram2.sh" example script. 5) In "Internal Commands and Builtins" chapter: At "exec" entry, added footnote and streamlined text. 6) In "File and Archiving Commands" section of "External Commands" Chapter: At "more/less" entry, added "testing command sequence" usage example. At "mktemp" entry, added usage example and elaborated existing example. 7) In "Communications Commands" section of "External Commands" chapter: At "dig" entry, added "spam-lookup.sh" example. 8) In "Text Processing" section of "External Commands" Chapter: At "tail" entry, added usage example of combining "head" and "tail" to extract a specific line or lines from a text file. 9) In "System and Administrative Commands" chapter: At "umask" entry, added "rot13a.sh" example script. 10) In "Complex Functions and Function Complexities" section of "Functions" chapter: Added in-line example ("days in month") of capturing function "echo" as "return value." 11) In the "Shell Wrappers" section of "Miscellany" chapter: Added "pr-asc.sh" example script. 12) Changed "Files" chapter into an appendix. 13) In the "Sed and Awk Micro-primer" appendix: More examples of the awk "print" command. 14) In "Contributed Scripts" appendix: Added "whx.sh" script. (Thank you, Walter Dnes.) 15) Miscellaneous fixups and stylistic changes in the text and various scripts. Fixed up three misspellings of "permissible"! Updated morethan.org site address. Version 3.4 Teaberry release, 05/08/05 1) In "Special Characters" chapter: Some minor additions and cleanups. 2) In "Basic Commands" section of "External Commands" Chapter: At "ls" entry, minor fixups on "ex40.sh" example. At "rm" entry, added "rm -- -badname" method of deleting hyphen-prefixed filenames. 3) In "Time/Date Commands" section of "External Commands" chapter: At "date" entry: Added mention of "TZ=XXX" option. (Thanks, Frank Kannemann and Pete Sjöberg.) Also added discussion of additional options. 4) In "Communications Commands" section of "External Commands" chapter: At "lynx" entry, added paragraph on "-traversal" option. At "wget" entry, added comments to "quote-fetch.sh" example script. 5) In "Miscellaneous Commands" section of "External Commands" Chapter: At "sox" entry, added links for examples of script use. At "getopt" entry, fixed typo. 6) In "Math Commands" section of "External Commands" chapter: At "dc" entry, added echoing obfuscated text entry. 7) In "Internal Commands and Builtins" chapter: At "echo" entry, added comments to in-line examples of embedding linefeed in a string. (Per suggestion of Michal Jaegermann.) At "hash" entry, added footnote explaining what a hash is. Modified "col-totaler3.sh" example script to make it more interesting. At "forking" sidebar, added paragraph about parent-child process problem. 8) In "File test Operators" section of "Tests" chapter: Added deprecated "-a" option. 9) In "System and Administrative Commands" chapter: Added "nc" entry, and Added "iscan.sh" example script. (Thank you, Hobbit.) Added Dr. Andrew Tridgell's famous one-line script. (Thank you for permission to quote it, Tridge.) At "logrotate" entry, added URL for Stefano Falsetto's "rottlog" project. At "ps" entry, added graphical "tree" options. Added "quota" entry. Separated "Analyzing a System Script" into a section of its own. 10) In "Bash, version 3" section of "Bash, versions 2 and 3" chapter At "=~" entry, added Social Security number example. Added end of chapter note that version 3 update breaks a few old scripts. 11) In "Testing and Branching" section of "Loops and Branches" chapter: Added code snippet from Stefano Falsetto's "rottlog" package. (Thank you, Stefano.) 12) In "Debugging" chapter: Added Stefano Falsetto's "debecho ()" debugging echo. (Thank you, Stefano.) 13) In "$RANDOM" section of "Variables Revisited" chapter: Added footnote discussing "seeds." 14) In "Parameter Substitution" section of "Variables Revisited" chapter: Changed "rfe.sh" example to use "case" construct to test for command-line parameters. 15) In "Manipulating Strings" section of "Variables Revisited" chapter: Added "getopt-simple.sh" example. (Thank you, Chris Morgan.) 16) In "Gotchas" chapter: Added comments about 'exporting' inner shell variables to "subshell-pitfalls.sh" example. Added note that, as of Bash 3, periods are no longer permitted within variable or function names. 17) In "Here Documents" chapter: Added Huxley epigraph. Reshuffled order of first several examples. Added in-line example of an "ex script" (Smith/Jones replacement). 18) In "Regular Expressions" chapter: In "Globbing" Section: Stylistic fixups. Added footnote. 19) In "Assorted Tips" section of "Miscellany" chapter: Corrected "dialog.sh" example. Added entry on setting a variable to the contents of a sed or awk script, with cross-references to a couple of example scripts. 20) In "Contributed Scripts" appendix: Added Mariusz Gniazdowski's "Hash.lib" hashing library for scripting, and an example script using the library ("hash-example.sh"). (Thank you, Mariusz.) Minor revision of "mail-format.sh" example (converted sed script to a variable) 21) In "Writing Scripts" section of "Exercises" appendix: Added "Removing Inactive Accounts" exercise to "Intermediate" section. Added "Checking for Broken Links" exercise to "Intermediate" section. 22) In "Bibliography" section: Added Henry Spencer epigraph. Added "Wicked Cool Shell Scripts" entry. Added "seder's grabbag." Added Linuxreviews. 23) Miscellaneous stylistic changes in various scripts. 24) Many minor stylistic changes in the body of the text. Version 3.3 Raspberry release, 03/20/05 1) In the "Starting Off With a Sha-Bang" chapter: Amended footnote [3] to mention a cat / here document. (Thank you, Fabian Kreutz.) Fixed typo in "ex1a.sh" example. (Thank you, Preetam.) Added Larry Wall epigraph. Changed "Important" block to "Tip," and added "generalizing scripts" paragraph. 2) In "Special Characters" chapter: At "#" entry, noted that if comment follows a command on a line, then whitespace preceding the "#" is necessary. (Thanks, Le Wen.) 3) In "Basic Commands" section of "External Commands" Chapter: Greatly expanded discussion of "chattr" entry. 4) In "File and Archiving Commands" section of "External Commands" Chapter: Added "rpm -qf" tip at "rpm" entry. 5) In "Text Processing" section of "External Commands" Chapter: Added "enscript" entry. At "egrep" and "fgrep" entries. added symbolic link note added "dict-lookup.sh" example script. Updated "wc" entry. 6) In "Communications Commands" section of "External Commands" chapter: Added "netconfig" entry. 7) In "Math Commands" section of "External Commands" chapter: Fixup of "hexconvert.sh" example script (had left out initialization of E_NOARGS variable) (Thanks, Stefano Palmeri.) 8) In "Internal Commands and Builtins" chapter: At "forking/spawning" sidebar: Added "spawn.sh" example 9) In "Job Control Commands" section of "Internal Commands and Builtins" chapter: Corrected note discussing zombie processes. (Thank you, Alan Sundell.) 10) In "Here Documents" chapter: Removed reference to 'telnet' -- since it's generally not a good idea. 11) In "Of Zeroes and Nulls" chapter Added/revised discussion of /dev/zero. 12) In the "Shell Wrappers" section of "Miscellany" chapter: Added footnote giving examples of system utilities that are really shell wrappers. Added "logging-wrapper.sh" example. 13) In "Indirect References to Variables" section of "Variables Revisited" chapter: Expanded Nils Radtke's example of building dynamic variable names. 14) In "Parameter Substitution" section of "Variables Revisited" chapter: Fixed up "ex6.sh" example to make it less ambiguous, per suggestion of "Der Schwadde" . . . ). 15) In "Miscellaneous Commands" section of "External Commands" Chapter: At "dd" entry," added lowercase conversion in-line example. At "jot/seq" entry, added "letter-count.sh" example script. (Thanks, Stefano Palmeri.) 16) In "System and Administrative Commands" chapter: At "lockfile" entry, fixed typo in inline example. (Thanks, Andreas Abraham.) At "fuser" entry, added more material. 17) In "Gotchas" chapter: At "Mixing up '=' and '-eq' entry, fixed typo. (Thanks, Andreas Abraham.) 18) In "Colorizing Scripts" section of "Miscellany" chapter: Added "horserace.sh" example. (Thanks, Stefano Palmeri.) 19) In "Redirecting Code Blocks" section of "I/O Redirection" chapter: Added code snippet and commentary to redir2.sh example. (Thank you, Bruno de Oliveira Schneider.) 20) In "Copyright" appendix: Added second URL for French translation. 21) In the "Sed and Awk Micro-primer" appendix: Fixed "letter-count.sh" example to work with gawk, ver. 3.1.3. (Thanks to Stefano Palmeri for pointing out the need for a fixup.) Renamed filename to "letter-count2.sh" to accommodate alternate version of script which will appear prior to this one in the text. 22) In "Contributed Scripts" appendix: Fixups to "wgetter2.bash" script. Added "bashpodder.sh" script. (Thank you, Linc Fessenden.) 23) In "Writing Scripts" section of "Exercises" appendix: In "Intermediate sub-section": Added "Enforcing Disk Quotas" exercise. 24) Various miscellaneous fixups and enhancements: In example scripts. In citations of book titles (inserted <citetitle> tag). Version 3.2 Blueberry release, 02/06/05 1) In the "Starting Off With a Sha-Bang" chapter: Fixed small typo (if [ $# -ne $Number_of_expected args ]). Thanks, Robbie Morrison. Added epigraph to "Why Shell Programming?" section. 2) In "Special Characters" chapter: At "&" entry, added comment about Nasimuddin Ansari's suggested change to "background-loop.sh" example. 3) In "Colorizing Scripts" section of "Miscellany" chapter: Added link to Henry/teikedvl's utility for creating colorized scripts. 4) In "Complex Functions and Function Complexities" section of "Functions" chapter: Added "func-cmdlinearg.sh" example script to clear up confusion about command-line args passed to a script. 5) In "Local Variables" section of "Functions" chapter: Fixed typo in example in footnote. (Thank you, jaka kranjc.) 6) In "File and Archiving Commands" section of "External Commands" Chapter: At "files" entry, added example of finding specific file types in a given directory. 7) In "Communications Commands" section of "External Commands" chapter: At "ssh" entry, added caution about ssh using up loop's stdin. (Thanks, Jason Bechtel.) 8) In "Special Variable Types" section of "Introduction to Variables" chapter Some fixups for "ex18.sh" example. Added Chris Monson's example of finding last command line parameter. 9) In "Parameter Substitution" section of "Variables Revisited" chapter: Added material to "param-sub.sh" example. 10) In "Double Parentheses Construct" section of "Variables Revisited" chapter: In "c-vars.sh" example, added instances of differing side-effects of pre- and post-increment operators. (Thanks, Jeroen Domburg.) 11) In "Indirect References to Variables" section of "Variables Revisited" chapter: Added Nils Radtke's example of building dynamic variable names. 12) In "Text Processing" section of "External Commands" Chapter: Added extra explanatory lines at "grep" listing. Moved "manview.sh" script example from Contributed Script appendix to "groff, tbl, eqn" entry. 13) In the "Shell Wrappers" section of "Miscellany" chapter: Added redirection comment to "ex3.sh" example. (Thanks, jaka kranjc.) 14) In "Regular Expressions" chapter: Added listing of components of REs. Streamlined the discussion following. 15) In "$RANDOM" section of "Variables Revisited" chapter: Added footnote about randomness and pseudorandomness. Added a couple of cross-links in the text. 16) In "System and Administrative Commands" chapter: Added usage example at "last" entry. 17) In "/dev" section of "/dev and /proc" chapter: Changed reference URL from slashdot.org to news-15.net (a known spam ISP). Added to footnote about mounting a USB flash drive. 18) In "Gotchas" chapter: Added note about not hyphenating function names. 19) In "Bibliography" section: Added William Parks' Dec. '04 "Linux Gazette" article to his listing. Added entry for "Unix Oneliners." Added "http://www.zazzybob.com" entry. 20) In "Writing Scripts" section of "Exercises" appendix: In "Intermediate" section, added "Integer or String" exercise . In "Intermediate" section, added "Logged in User Information" exercise . 21) In "Contributed Scripts" appendix: Added "cdll" expanded 'cd' command. (Thanks, Phil Braham.) Added "wgetter2.bash" example script. (Thanks, Little Monster <monster@monstruum.co.uk>.) 22) In "Localization" appendix: Again, fixed quoting problem in "localized.sh" in-line example (per Bruno Haible). 23) In "Important System Directories" appendix: Corrected "/sys" entry. Added "/mnt," "/dev," "/proc," and "/media" entries. 24) In "Analyzing Scripts" section of "Exercises" appendix: Added short example script. 25) Added comment block to sample .bashrc file (Appendix G). (Thanks, Ane-Pieter Wieringa.) 26) Deleted unwanted space in ": <<XXX" here document comments in various scripts and text body. 27) Various miscellaneous fixups in example scripts. (Thanks, Kalin Kozhuharov and others.) Version 3.1 Bayberry release, 11/14/04 1) In "Subshells" chapter: Removed superfluous close-parenthesis from in-line example comments. Removed doubled line in "lock file" in-line example. (Thanks, bojster.) Added example of the $BASH_SUBSHELL variable (new to Bash 3). 2) In "Complex Functions and Function Complexities" chapter: Fixed typos in "realname.sh" example script. (Thanks, bojster.) 3) In "Unofficial Shell Scripting Stylesheet" section of Scripting With Style" chapter: Fixed a couple of typos involving extra space and quote. (Thanks, bojster.) Added Ender's suggestion to use exit codes in /usr/include/sysexits.h. Added Ender's list of suggested script invocation flags. 4) In "Colorizing Scripts" section of "Miscellany" chapter: Added example of using bold foreground text, with note to that effect. Updated link for Moshe Jacobson's project. (Thanks, bojster.) 5) In "Assorted Tips" section of "Miscellany" chapter: At "whatis" entry, added safer alternative to using that. (Thanks, bojster.) Added discussion of the use of the "rcs" package in script revisions. 6) In "System and Administrative Commands" chapter: At "fuser" entry, added usage example. 7) Assorted other typos pointed out by bojster fixed. 8) In "$RANDOM" section of "Variables Revisited" chapter: Removed an unnecessary variable from "ex21.sh" example. (Thanks, jaka kranjc.) 9) In "Internal Variables" section of "Variables Revisited" chapter: Fixed prefatory comment in "timed-input.sh" example. Added $BASH_SUBSHELL variable (Bash 3 or later). 10) In "File and Archiving Commands" section of "External Commands" Chapter: At "split" entry, added "csplit." 11) In "Gotchas" chapter: Added "echo $BASH_SUBSHELL" command to Richardson/Berendsen example. 12) In "Debugging" chapter: Added Kernighan quote at beginning. Added list of debugging variables new to version 3 of Bash. 13) In "Bibliography" section: Updated William Parks' bio and added his Nov. '04 "Linux Gazette" article. 14) In "To Do List" appendix. Added Michael Zick's "test-cgi.sh" script as a starter example. 15) In "Writing Scripts" section of "Exercises" appendix: In "Difficult" section, added "Creating man pages" exercise . 16) In "Contributed Scripts" appendix: Applied Daniel Albers' patch to "life.sh" to enable use of non-square grids. Added two additional reader exercises to "life.sh" script. 17) In "Localization" appendix: Fixed quoting bug in "localized.sh" in-line example. Numerous other changes and bugfixes. (Thanks, Alfredo Pironti.) 18) In "History Commands" appendix: Added $HISTTIMEFORMAT variable (new to Bash, ver. 3.0 or later). Added link to "Advancing in the Bash Shell" site. 19) Added "Mirror Site" appendix. 20) Minor cleanups on various example scripts. Version 3.0 Loganberry release, 10/03/04 1) In "Numerical Constants" section of "Operations and Related Topics" chapter: Fixed error in comment in "numbers.sh" script. (Thanks, Frank Wang.) 2) In "Operators" subsection of "Operations and Related Topics" chapter: Added four increment operations to "arith-ops.sh" example. (Thanks, Frank Wang.) 3) In "Testing and Branching" section of "Loops and Branches" chapter: Fixed "ex29.sh" example to account for sorting problem in some locales. (Thanks, Frank Wang.) 4) In "Internal Variables" section of "Variables Revisited" chapter: At "$!" entry, added "hanging job" example. (Thanks, Sylvain Fourmanoit.) At "$PIPESTATUS" entry, added discussion of fixes in Bash, ver. 3, with examples. Added discussion of "volatility" of this variable. 5) In the "Using Exec" section of "I/O Redirection" chapter: Added "avoid-subshell.sh" example script. (Thanks, Matthew Walker.) 6) In "Communications Commands" section of "External Commands" chapter: At "ssh" entry, added "remote.bash" example script. (Thank you, Michael Zick.) At "dig" entry: Added discussion of some interesting options. Added "is-spammer.sh" example script. (Thank you, Michael Zick.) 7) In "/proc" section of "/dev and /proc" chapter: Added short example of parsing /proc/bus/usb/devices to determine whether USB 1.1 port detected. 8) In "Complex Commands" section of "External Commands" Chapter: Added comments and fixup to "ex41.sh" example (xargs can't handle unmatched quotes). Simplified "ex45.sh" example by eliminating a misleading section. (Thanks, Frank Wang, for both of the above.) 9) In "Arrays" chapter: Fixed up some comments in "array-assign.bash" example. (Thanks, Frank Wang.) Corrected comment in "stack.sh" example. 10) In "Here Documents" chapter: Added section for "here strings" (<<<). Added "prepend.sh" example. (Thanks, Kenny Stauffer.) 11) In "Special Characters" chapter: Added entry for "<<<" (here strings). 12) In "Parameter Substitution" section of "Variables Revisited" chapter: Fixed typo in comments of "var-match.sh" example script. (Thanks, bojster.) 13) In "Process Substitution" chapter: Added more commentary to in-line SuSE code fragment. (Thanks, Filip Moritz.) 14) In "Assorted Tips" section of "Miscellany" chapter: Fixed typo in "multiplication.sh" example. (Thanks, Frank Wang.) 15) In "Recursion" section of "Miscellany" chapter: Added note about execute permissions to "recurse.sh" example script. 16) In the "Portability Issues" section of the "Miscellany" chapter: Fixed typo ("funtionality). (Thanks, Andreas Abraham.) 17) In "System and Administrative Commands" chapter: Fixed mistake in a comment in "killall, from /etc/rc.d/init.d" in-line example. (Thanks, Andrzej Stefanski.) At "lockfile" entry, fixed typo. (Thanks, bojster.) 18) In "Time/Date Commands" section of "External Commands" chapter: At "date" entry, added discussion of more options. 19) In "Miscellaneous Commands" section of "External Commands" Chapter: Added comment to "blot-out.sh" example script noting that it may not work well under a journaled filesystem. (Thanks, bojster.) 20) In "Colorizing Scripts" section of "Miscellany" chapter: Added note about "echo -ne \E[0m" being a better alternative to "tput sgr0." Added "Draw-box.sh" example. (Thanks, Stefano Palmeri.) 21) In "Bibliography" section: Added entry for Ken Burtch's "Linux Shell Scripting with Bash." 22) In "Reference Cards" appendix: Miscellaneous minor cleanups in tables. 23) "Bash, version 2" chapter title changed to "Bash, versions 2 and 3" Split chapter in sections for "Bash, version 2" and "Bash, version 3." List of new features in Bash, version 3 in latter section. * {a..z} brace expansion operator * ${!array[@]} operator * =~ Regular Expression matching operator within [[ double brackets ]] 24) In "Author's Note" section of "Endnotes" chapter: Added Latin epigraph. 25) In "Copyright" appendix: Added note exempting Public Domain scripts from the overall license and copyright restrictions of the document. 26) In "Contributed Scripts" appendix: Added Michael Zick's elegant "is_spammer.bash" script. 27) Updated "ex40.sh" and "copy-cd.sh" examples for newer versions of "cdrecord." 28) Changed almost all occurrences of "Unix" to "UNIX" for consistency. Version 2.8 Elderberry release, 07/11/04 1) In the introduction: Added link to pdf version of the book. 2) In "Arithmetic Expansion" chapter: Fixed typo -- missing parenthesis -- in inline example. (Thank you, Thorsten Bonow.) 3) In "Special Characters" chapter: Added material at "Ctl-D" entry. Added material at "Ctl-K" entry. Added material at "Ctl-U" entry. (Thank you, Jeremy Impson.) Added "Ctl-V" entry. (Thank you, Jeremy Impson.) Added "Ctl-W" entry. (Thank you, Jeremy Impson.) At "-" (redirection from/to stdin or stdout) entry: Fixed comment in Alan Cox's example. (Thank you, Ken Fuchs.) 4) In "Gotchas" chapter: Added another alternative to Anthony Richardson's piping-loop example. (Thank you, Wilbert Berendsen.) 5) In "Internal Commands and Builtins" chapter: At "echo" entry, showed how to embed a linefeed within echoed text. (Thanks, Steve Parker.) At "read" entry, added note that "read -n" command sequence will not detect the ENTER (newline) key. (Thank you, Tony Morgan.) At "source" entry, rewrote introductory paragraph for additional clarity. Added "bind" entry, with a brief footnote about the readline library. Slight modification of discussion at "help" entry. 6) In "File and Archiving Commands" section of "External Commands" Chapter: At "sum, cksum, md5sum" entry, added usage examples and expanded note. 7) In "List Constructs" chapter: Added example snippets from Miquel van Smoorenburg's /etc/rc.d/init.d/single script. 8) In "/dev" section of "/dev and /proc" chapter: Fixed up "Downloading a URL" inline example. (Thanks, Mihai Maties.) Added "noatime" to USB flash drive installation example. 9) Cleaned up and made consistent notes about #!/bin/sh disabling extended Bash functionality. 10) In "Exit Codes With Special Meanings" appendix: Fixed footnote about out-of-range exit values. 11) In "Important System Directories" appendix: Added /var and /boot entries. Additional short notes. Other Minor changes. 12) In the "Sed and Awk Micro-primer" appendix: Corrected explanation of backslash in sed. (Thank you, George Cristian Birzan.) 13) In "Bibliography" section: Added entry for "The Linux USB subsystem." 14) Various minor changes to example scripts. Version 2.7 Mulberry release, 04/18/04 1) In the "Starting Off With a Sha-Bang" chapter: Added "ex1a.sh" example as a bridge between "ex1.sh" and "ex2.sh" examples. Added a few explanatory notes. Minor revisions to comments in "ex1.sh" and "ex2.sh" examples. Added "$" to variable name in script prolog note. Minor revisions to "Why Shell Programming?" section. 2) In "Special Characters" chapter: In in-line example at "Control-K" entry, expanded explanation of effect of a vertical tab. (Thank you, Lee Maschmeyer.) Minor rewording at "`" (backticks), "\" (escape), and other entries. 3) In "Quoting" chapter: Slight rewording of note about certain programs expanding special characters in a quoted string. Dropped word "apparently" from footnote on quoting "!" character. 4) In "/dev" section of "/dev and /proc" chapter: Added short explanation of Bash's treatment of /dev/tcp/host/port pseudo-device files. Added footnote defining a socket. Added use of /dev/sda1 in mounting a USB flash drive. Added examples of getting the time from a remote network and downloading a URL -- using /dev/tcp. (Thank you, Mark.) 5) In "/proc" section of "/dev and /proc" chapter: Added "cat /proc/apm" to list of 'proc' examples. Redid first parsing example. 6) In the "Portability Issues" section of the "Miscellany" chapter: Added discussion of using !#/bin/sh to run scripts. (Thank you, Ian D. Allen.) 7) In "Assorted Tips" section of "Miscellany" chapter: Added redirecting stderr to stdout in "if-grep" test. (Thank you, Chris Martin.) Added tip about setting PATH and umask at beginning of script. (Thank you, Ian D. Allen.) 8) In "System and Administrative Commands" chapter: At "ifconfig" entry, added "ifconfig -a" output example. At "hostname" entry, added note about "domainname" and similar commands. At "netstat" entry, added screen output example. 9) In "Text Processing" section of "External Commands" Chapter: Added comment (suggested modification) to "wf.sh" example. (Thanks, Arun Giridhar.) At "grep" entry, added method of searching for two different patterns, with usage example. 10) In "Internal Commands and Builtins" chapter: Expanded "ex43.sh" example. 11) In "Comparison Operators" section of "Tests" chapter: Changed section title. Added brief intro paragraph. At "==" entry, added note and embedded pre-existing example within it. 12) In "Regular Expressions" chapter: In "Brief Introduction to Regular Expression" Section: Added sidebar with example of testing an RE. In "Globbing" Section: Fixed typo in footnote 1. (Thanks (Asheesh Soni.) 13) In "Copyright" appendix: Added URL for French translation. 14) In "Contributed Scripts" appendix: Replaced "tree.sh" script with a simplified version, revised by Rick Boivie. 15) Added "To Do List" appendix. 16) Changed all "process id" references to "process ID" to avoid confusion. 17) Minor cleanups and fixups to various scripts. Version 2.6 'SALAL' release, 03/15/04 1) In "Exit and Exit Status" chapter, Added comment to inline example discussing negation of a 'true' command. (Thanks, Kristopher Newsome.) 2) Added "Standard Command-Line Options" appendix. 3) In "Basic Commands" section of "External Commands" Chapter: At 'cat' entry, added discussion of redirecting stdin as an alternate to 'cat.' Fixed a typo in "ex40.sh" example script. (Thanks, Thiers Botelho.) Updated URL in comment in "ex40.sh" example script. 4) In "Miscellaneous Commands" section of "External Commands" Chapter: Added "sox" entry. At 'dd' entry, did some minor fixups on "blot-out.sh" example. At 'dd' entry, added "self-copy.sh" example. At 'dd' entry, converted "exercising dd" in-line example to an external shell script example, with some modifications. 5) In the "Starting Off With a Sha-Bang" chapter: Added listing of Open Group site to POSIX footnote. 6) In "System and Administrative Commands" chapter: At "passwd" entry: Simplified "setnew-passwd.sh" example. Added "setterm" entry in Terminal Commands section. 7) In "Internal Variables" section of "Variables Revisited" chapter: Added material at "$PIPESTATUS" entry. Minor changes in discussion of 'eval' entry. Modified "rot14.sh" example. Minor changes in comments in "ex44.sh" example. At "piping to a while-read" note, added "gendiff" code fragment. 8) In "$RANDOM" section of "Variables Revisited" chapter: Removed an unnecessary line from "random-test.sh" example. 9) In "Complex Commands" section of "External Commands" Chapter: At "find" entry, added short in-line example of removing core dump files. At "xargs" entry, added paragraph about curly brackets. Made minor stylistic changes to "wf2.sh" example. Additional explanatory comments in "ex42.sh" example. Additional comment in "idelete.sh" example. 10) In "Time/Date Commands" section of "External Commands" chapter: Added a couple of words at "zdump" listing. Reformatted short in-line examples at "sleep" and "usleep" listings. 11) In "Communications Commands" section of "External Commands" chapter: At "wget" entry, added "quote-fetch" example. 12) In "Internal Commands and Builtins" chapter: At "eval" entry, revisions to discussion and addition of an in-line usage example. Drastically revised "ex44.sh" example. 13) In "Bash, Version 2" chapter: Added an exercise to "resistor-inventory.sh" exercise. 14) In "Loops and Branches" chapter: At "while loops" discussion, added paragraph to final *note* about piping into a loop. Added comments to "ex25.sh" example. 15) In "Process Substitution" chapter: Added example of comparing the output of a command with different options. Added example of comparing contents of different directories. 16) In "Debugging" chapter: At "trap" entry, added "multiple-processes.sh" example. (Thank you, Vernia Damiano.) Added comments to "ex76.sh" example. 17) In "Writing Scripts" section of "Exercises" appendix: In "Difficult" section, added "Word Ladders" exercise . 18) Minor cleanups and fixups to various scripts. 19) In "Bibliography" section: Added entries for comp.os.unix.sh and comp.os.unix FAQs. Version 2.5 'STARFRUIT' release, 02/15/04 1) In "I/O Redirection Chapter": At discussion of redirection of multiple output streams, Added information about order of operations being important. (Thanks, Paulo Marcel Coelho Aragao.) 2) In "Redirecting Code Blocks" section of "I/O Redirection" chapter: Fixed error in comment in example "redir4.sh." Old = # More concise is line_count=$(wc < "$Filename") New = # More concise is line_count=$(wc -l < "$Filename") Simplified example "redir2a.sh." (Thanks, Paulo Marcel Coelho Aragao, for all of the above.) 3) In "Here Documents" chapter: Minor rewrite of beginning paragraphs. Clarified comment in "generate-script.sh" example. Amended warning near end of chapter to include trailing whitespace on a "limit string" line, as well as leading whitespace. Added explanatory paragraph. Noted that the "-" option marking a limit string suppresses only leading tabs. Modified comments in "ex71a.sh" example to reflect this. (Thanks, Paulo Marcel Coelho Aragao, for all of the above.) Fixed two minor errors in "self-document.sh" example script. (Thanks, Markus Wolf.) 4) In "Command Substitution" chapter: Added footnote at beginning of chapter giving technically correct explanation of what happens. Added link in first footnote. Noted that `...` and $(...) treat a "\\" differently.. (Thanks, Paulo Marcel Coelho Aragao, for pointing this out.) 5) In "System and Administrative Commands" chapter: At "passwd" entry: Fixed typo (omitted word "command"). Added mention of "-l," "-u," and "-d" options. Broke out "setnew-passwd.sh" as an external example. Moved "MAKEDEV" entry to just below "mknod." Added "usermod," "groupmod," "iwconfig," "lsusb / usbmodules," "modinfo," and "setquota" entries. 6) In "Basic Commands" section of "External Commands" Chapter: At "rm" entry, added note about removing filenames beginning with a dash. 7) In "Communications Commands" section of "External Commands" chapter: Added "chfn" entry. 8) In "Complex Commands" section of "External Commands" Chapter: At "xargs" entry, added "kill-byname.sh" example script. 9) In "Complex Functions and Function Complexities" chapter: section of "Functions" chapter: In discussion of capturing output of a function, corrected reference of "parameter substitution" to "command substitution." In "max2.sh" example, corrected typo and misleading comment. In "count_lines_in_etc_passwd" in-line example, added comment. In "ref-params.sh" example, added comment (almost) clarifying a particularly difficult construct. (Paulo Marcel Coelho Aragao) Modified note about being unable to dereference passed parameter to a function. Removed "note" and made it into an ordinary paragraph. Added "ind-func.sh" example of passing an indirect reference to a function. Added Bruce W. Clare's "dereference.sh" example of dereferencing a parameter passed to a function. 10) In "Assorted Tips" section of "Miscellany" chapter: At discussion of using stdout to capture function "return value(s)," added parenthetical clarification. 11) In "Regular Expressions" chapter: Removed specific reference tying UNIX to use of REs. Noted that GNU tools allow extended REs if escaped. Removed brackets from RE character sets where unnecessary and misleading. In "Globbing" Section: Corrected note about 'echo' performing wildcard expansion. (Thanks, Paulo Marcel Coelho Aragao, for all of the above.) Broke 'echo' filename expansion examples out of main "screen" block. 12) In "Arithmetic Expansion" chapter: At in-line example code, Fixed comment about quotes enclosing "special characters." Noted that within double parens, parameter dereferencing is optional. (Thanks, Paulo Marcel Coelho Aragao.) 13) In "Gotchas" chapter: Fixed "bad-op.sh" example (misuse of string comparison operators). Added much additional explanatory material to it. Broke it out as an external example. (Thanks, Paulo Marcel Coelho Aragao, for the hint.) 14) In "Subshells" chapter: Additional comment at code snippet for testing whether a variable is defined. Modification of code snippet testing for a lock file. (Thanks, Paulo Marcel Coelho Aragao, for both of the above.) 15) In "/dev and /proc" chapter: Added Troy Engel's "dev-tcp" example script. 16) In "Bibliography" section: Added "Mastering Regular Expressions (Friedl)" reference. (Thanks, Paulo Marcel Coelho Aragao, for the suggestion.) Added reference to William Park's Bash enhancement project. 17) In "Contributed Scripts" appendix: Did some very minor polishing on "days-between.sh" script. Added Troy Engel's "archiveweblogs.sh" example. 18) In "Writing Scripts" section of "Exercises" appendix: Added "Logging Logins" problem to "Intermediate" section. Added optional section to "Word-Find" problem. Fixed typo in "Playfair Cipher" problem. 19) Added "Important System Directories" appendix. 20) At various points in the text, corrected maximum return value of a function to 255 (was 256). Version 2.4 'MUSKMELON' release, 01/25/04 1) In "Loops and Branches" chapter: Fixed comment in "continue-nlevel.sh" example. Minor fine-tuning of "bin-grep.sh" example. Added comment to "symlinks.sh" example. (Thanks, Paulo Marcel Coelho Aragao, for all of the above.) 2) In "Operations and Related Topics" chapter: Added counting method in "arith-ops.sh" example. (Thanks, David Lombard.) Minor comment addition to "and-or.sh" example. 3) In "Internal Commands and Builtins" chapter: Fixed error in comment in "ex44.sh" example. Corrected discussion at "getopts" entry. (Thanks, Paulo Marcel Coelho Aragao.) Fixed comment misnaming $IFS. (Thanks, Mike Latimer.) 4) In "$RANDOM" section of "Variables Revisited" chapter: Simplified dice throw section of "ex21.sh" example. Alternate formula in "random-between.sh" example. (Thanks, Paulo Marcel Coelho Aragao, for both of the above.) 5) In "Arithmetic Expansion" chapter: Added use of (( stand-alone expression )) to in-line usage example. 6) In "Basic Commands" section of "External Commands" Chapter: At "ln" entry, added "hello.sh" example (link at "$0" entry in "Special Variable Types" section of "Introduction to Variables and Parameters" chapter.) 7) In "File and Archiving Commands" section of "External Commands" Chapter: Fixed error in command-line args check in "strip-comments.sh" example. Removed unnecessary 'eval' from "strip-comments.sh" example. (Thanks, Paulo Marcel Coelho Aragao, for both of the above.) Fixed a subtle logic error in "file-integrity.sh" example. (Thanks, Paulo Marcel Coelho Aragao, for bringing the error to my attention.) 8) In "Communications Commands" section of "External Commands" chapter: Clarified explanation of "ipcalc" entry. Corrected "ping" entry. (Thanks, Paulo Marcel Coelho Aragao, for directing my attention to these.) 9) In "Complex Commands" section of "External Commands" Chapter: Added comment to "ex57.sh". (Thanks, Paulo Marcel Coelho Aragao.) 10) In "Internal Variables" section of "Variables Revisited" chapter: Changed description of "$IFS" entry to correctly read "internal field separator. (Thanks, Mike Latimer.) Added short introductory paragraph to "$IFS" entry. 11) In "System and Administrative Commands" chapter: Renamed "crond" entry to the more traditional "cron," and noted that "crond" is Matthew Dillon's version. Added explanatory notes to "id" and "logname" entries. (Thanks, Paulo Marcel Coelho Aragao, for all of the above.) 12) In "Math Commands" section of "External Commands" chapter: Added Paulo Mercel coelho Aragao's comment to "base.sh" example. 13) In "Time/Date Commands" section of "External Commands" chapter: Simplified "ex51.sh" example by eliminating an unnecessary 'eval.' (Thanks, Paulo Marcel Coelho Aragao.) 14) In "Miscellaneous Commands" section of "External Commands" Chapter: Cleaned up in-line example at "mcookie" entry. Corrected description of "objdump" entry. Corrected "getopt" entry. (Thanks, Paulo Marcel Coelho Aragao.) 15) In "Text Processing Commands" of "External Commands and Filters" chapter: Added comment to in-line example at "grep" entry. 16) In "Functions" chapter: Added material to "ex59.sh" example. 17) In "Tests" chapter: Added "if grep" example at "if" entry. (Thanks, Michel Briand.) 18) In "Here Documents" chapter: Added comment block to "ex71.sh", explaining how to redirect stdout to a file. Added in-line example of setting a variable from the output of a here document. (Thanks, Jason Parker, for both of the above.) 19) In "Arrays" chapter: Fixed errors in comments in in-line "Nested Array" example. Added clarification and comments to "array-assign.bash" example. (Thank you, William Park, for both of the above.) After "array-assig.bash" example, added note about speeding up execution using an "unnecessary" 'declare -a' in an array declaration. 20) In "Gotchas" chapter: Added problem with "tail -f" piped to a "grep" while trying to write the stdout to a file. (Thanks, TKVoice Author, for bringing this to my attention.) 21) In "Options" chapter: Minor revisions to "Bash options" table. 22) In "Revision History" appendix: Changed format to a table. 23) Restored truncated version of Revision History to front matter. It turns out that this is required Docbook metadata, per the LDP. Version 2.3 'STRAWBERRY' release, 12/28/03 1) In "Parameter Substitution" section of "Variables Revisited" chapter: Fixed typo ("code code") at "${parameter=default}" entry. (Thank you, Ken Harrenstien.) Simplified usage example of "${var#Pattern}. Added more elaborate alternate. (Thank you, Manfred Schwarb.) 2) In "Operations and Related Topics" chapter: Noted that as of version 2.05b, Bash supports 64-bit integers. (Thank you, Ken Harrenstien.) 3) In "Options" chapter: Clarified "single-dash" versus "double-dash" invocation of options. 4) In "Internal Commands" chapter: Applied fix to "eval.example" example. (Thanks, Paulo Marcel Coelho Aragao.) 5) In "Text Processing Commands" of "External Commands and Filters" chapter: Modified "wf.sh" example to also filter out commas. 6) In "Basic Commands" section of "External Commands" Chapter: At "ln" discussion, fixed error and added John MacDonald's lucid explanation of the difference between a hard and soft link. 7) In "Complex Commands" section of "External Commands" Chapter: At "xargs" discussion, added "wf2.sh" example script. 8) In "Special Characters" chapter: Modified "ex58.sh" example to include creation date in name of backup file. (Thanks, Joshua Tschida.) Added listing for "Ctl-Q." (Thanks, Jeremy Weatherford.) Fixed erroneous comment at ": >>" entry. (Thanks, Mitchlan Landers.) 9) In "Time/Date Commands" section of "External Commands" chapter: At "date" discussion, added "ex58" cross-reference and using "date" to generate 6-digit random integers. 10) Bash, version 2.05b, no longer supports large negative integer return values. This required changing some text and rewriting the example scripts "max2.sh" and "return-test.sh" in the "Functions" chapter. Also, the "days-between.sh" script in the "Contributed Scripts" appendix needed modification. It serves me right for using undocumented features. 11) In "Functions" chapter: Added subsection on recursion in a function, without using local variables. Added Amit Singh's wonderfully recursive "Towers of Hanoi" (hanoi.bash) example script. 12) In "Gotchas" chapter: Added discussion of hazards of using undocumented features in Bash. 13) In "Internal Variables" section of "Variables Revisited" chapter: Revised discussion of "$TMOUT" variable to reflect changes in version 2.05b of Bash. Provided inline usage example. 14) In "Here Documents" chapter: Minor stylistic change in introductory paragraph. 15) In "Globbing" section of "Regular Expressions" chapter: Added discussion of changing globbing behavior using "set -f" and "nocaseglob" and "nullglob" options to 'shopt.' 16) In "Arrays" chapter: Fixed error in comment in "array-ops.sh" example. (Paulo Marcel Coelho Aragao and Emilio Conti both pointed this out.) Fixed error in comment in "array-strops.sh" example. (Thanks, Paulo Marcel Coelho Aragao.) Fixed misleading comment in "ex67.sh" example, and added comment about use of "@" and "*" in array notation being analogous to $@ and $*. (Thanks, Paulo Marcel Coelho Aragao.) Removed unnecessary instances of "declare" from "empty-array.sh" example. (Thanks, Paulo Marcel Coelho Aragao.) Simplified in-line example demonstrating loading of the contents of a file into an array. (Thanks, Paulo Marcel Coelho Aragao.) Added comments suggesting a simplification in "bubble.sh" example. (Thanks, Paulo Marcel Coelho Aragao.) 17) In "Contributed Scripts" appendix: Added Konstantin Riabitsev's "usb.sh" example. Fortunately, the script is GPL, which is compatible with the ABS Guide license. 18) In "Analyzing Scripts" section of "Exercises" appendix: Minor stylistic changes in commentary. 19) In "Copyright" appendix: Added links for Russian and Italian translations. 20) Moved the Revision History to the back of the book, into an appendix of its own. (I have had numerous requests to do this.) Version 2.2 'CRANBERRY' release, 11/01/03 Comments: Major release. Much new material added. 1) In "Text Processing Commands" of "External Commands and Filters" chapter: Fixed up listing of "gettext." (Thanks, Bruno Haible.) Added "msgfmt." Renamed "du.sh" example to "Du.sh" to avoid confusion with system 'du" command. (Thank you, Bill Gradwohl.) 2) In "Typing Variables" section of "Variables Revisited" chapter: At 'declare,' added example of arithmetic operations enabled with '-i' option. Fixed term heading to "-x var=$value." (Thank you, Bill Gradwohl.) 3) Modified "Localization" appendix, per suggestions by Bruno Haible. 4) In "Internal Variables" section of "Variables Revisited" chapter: Added '$PROMPT_COMMAND.' Fixed an error in "arglist.sh" example. Added Bjön Eriksson's "readpipe.sh" example. 5) In "Local Variables" section of "Functions" chapter: Modified note in example script in footnote 2. (Thanks, Zhao You Bing.) 6) Fixed up references to my own "yawl" package, to reflect the latest update. 7) In "Writing Scripts" section of "Exercises" appendix: In "Difficult" section, added "Testing Passwords" exercise . 8) In "Subshells" chapter: In in-line script example that tests whether variable is set, noted that this also tests whether that variable is present in the environment (exported). (Thank you, Mr. Fred.) 9) In "Comparison Operators" section of "Tests" chapter: Corrected typos in "str-test.sh" example. (Thank you, Bill Gradwohl.) 10) In "Internal Commands" chapter: Fixed a typo in "ex46.sh" example. (Thank you, Bill Gradwohl.) Fixed a typo in "ex33.sh" example, and implemented changes to explain what OPTIND does. (Thank you, Bill Gradwohl.) 11) In "Information and Statistics" subsection of "System and Administrative Commands" chapter: Substituted better example of 'sar' output. (Thank you, Sebastien Godard.) 12) In "Local Variables " section of "Functions" chapter: Fixed up "ex62.sh" example. (Thank you, Bill Gradwohl.) 13) In "Basic Commands" section of "External Commands" Chapter: Added to discussion of 'ln.' Fixed typo in in-line example listing at 'cat,tac.' (Thank you, Bill Gradwohl.) 14) In "Miscellaneous Commands" section of "External Commands" Chapter: Corrected "ex33a.sh" example. Noted that 'getopt' permits long options. (Thank you, Eric Levy.) 15) In "RANDOM" section of "Variables Revisited" chapter: Noted exception in "Jipe" method of generating random numbers within a given range. Added improved formula for generating randoms within a range. (Thank you, Bill Gradwohl.) Added "random-between.sh" example for generating randoms within a range. (Thank you, Bill Gradwohl.) 16) In "Arrays" chapter: Changed in-line example of miscellaneous array operations to an external shell script and enhanced it, per suggestions by Michael Zick. Added "array-strops.sh" example of using string manipulation operations on arrays. Added "array-assign.bash" script. Added "array-append.bash" script. (Thank you, Michael Zick.) 17) In "Special Characters" chapter: At "Control Characters," section, added Ctl-B, Ctl-I, Ctl-S, and Ctl-K listings. Fixed listing for Ctl-M (Thanks, Lee Maschmeyer.) Also added Lee Maschmeyer's in-line example. 18) In "Gotchas" chapter: At "Piping echo output . . . " inserted missing space. 19) In "Exit and Exit Status" chapter: Added material to discussion of "bare" exit. 20) Added "Where to Go For Help" section to "Endnotes" chapter. 21) In the "Sed and Awk Micro-primer" appendix: Added "nyal's" "letter-count.sh" script. 22) In "Contributed Scripts" appendix: Added Michael Zick's "protect_literal.sh" script. Added Michael Zick's "unprotect_literal.sh" script. Added Michael Zick's "basics-reviewed.bash" script. 23) In "Bibliography" section: Added 'Bash Navigator' listing. Added 'GNU Bash Reference Manual' listing (thanks, Brian Gough). 24) Miscellaneous cleanups on example scripts. Version 2.1 'HUCKLEBERRY' release, 09/14/03 1) In Appendix B, "Reference Cards: Fixups -- (thanks to errors brought to my attention by Heiner Steven). 2) In Appendix B, "Reference Cards: Added "Miscellaneous Construct" table. Added variable prefix matching to "Parameter Substitution" table. 3) In "Internal Variables" section of "Variables Revisited" chapter: Noted that "$*" must be quoted to differentiate it from "$@" variable, and added a case to "arglist.sh" example to demonstrate this. (Thanks, Heiner Steven.) 4) In "Command Substitution" chapter: Added note about the invocation of a subshell. Likewise added note in "setting variable to a file" in-line example. (Thanks, Paul Heffner.) Removed erroneous comment from in-line example of setting a variable to contents of a file. (Thanks, Anthony Richardson.) 5) In "Arrays" chapter: Added "script-array.sh" example. (Thanks, Chris Martin, for the inspiration.) 6) In "System Resources" subsection of "System and Administrative Commands": Fixed minor error ("while 1") in 'ulimit' illustrative script. (Thanks Emmanuel Chantreau) 7) In "Subshells" chapter: Added a paragraph of commentary concerning external commands and Bash builtins. 8) In "Special Characters" chapter: Elaborated example of ';' usage. 9) In "Gotchas" chapter: Added in-line example of problem caused by piping to a loop. (Thanks Anthony Richardson.) 10) In "System and Administrative Commands" chapter: Added more info to "sar" listing. 11) In "Writing Scripts" section of "Exercises" appendix: Added "Monitoring Processes" exercise. 12) In "Recursion" section of "Miscellany" chapter: Added Anthony Richardson's "usrmnt.sh" example. (Thanks!) 13) Slight modifications to certain example files for clarification. Version 2.0 'GOOSEBERRY' release, 08/24/03 Comments: In view of the cumulative changes in the last several updates, it's bumped up to a major version. This is now officially a "mature" project. 1) In "Manipulating Strings" section of "Variables Revisited" chapter: Added negative index substring extraction example (Thanks, Dan Jacobson). 2) In "Sed appendix": Changed title of second table, to make it less ambiguous. 3) Changed "Sunsite" address in two examples. 4) Made capitalization of example scripts more consistent. 5) In "Command Substitution" chapter: Fixed typo in backquotes discussion (Thanks, Jiri Beran). 6) In "Process Substitution" chapter: Added clarifying comment to SuSE script fragment (Thanks Ulrich Gayer). 7) In "Invoking the script" section of "Starting Off With a Sha-Bang" chapter: Corrected typo in discussion (" . . . not recommended is using sh <scriptname . . . ") (Thanks, Norman Megill.) 8) In "Quoting" chapter: Corrected typo in final example ("foor" --> "foo"). (Thanks, Norman Megill.) Noted that 'echo "\" invokes secondary prompt. 9) In "Here Document" chapter: Shuffled the order of a couple of examples. Added warning about closing 'limit string' starting in first character position on its line, with in-line example. (Also added a mention in "Gotchas" chapter. Added "script-generate.sh" example of generating program code by disabling parameter substitution within the body of a 'here document.' (Thanks, Albert Reiner, for the idea.) 10) In "Miscellaneous" subsection of "System and Administrative Commands": chapter: Added listing for "dialog" toolsets. 11) In "Assorted Tips" section of "Miscellany" chapter: Added discussion of "dialog" toolsets, with "dialog.sh" example. 12) In "Copyright" appendix: Updated notices. 13) Added "Reference Cards" appendix. Thank you, Aurelio Marinho Jargas, for giving me the inspiration. 14) In "Bibliography" section: Added LINUX JOURNAL article, "Scripting for X Productivity" listing. Added Jargas' entry for "Regular Expression wizard." 15) In "Loop Control" section of "Loops and Branches" chapter: Embellished "symlinks.sh" example with Jean Helou's alternative method. 16) Typo fixes supplied by Edward Scholtz (thanks!): "Special Variable Types" section of "Introduction to Variables" chapter "fairly simply way" --> "fairly simple way" "Quoting" chapter "advisable in enclose it" --> "advisable to enclose it" 17) In "Copyright" appendix: Added note about contributors rights. Added mention of Russian translation being underway. 18) Corrected several minor typos in the text and script examples. Version 1.9 [Cleanups & revisions] 'PERSIMMON' release, 06/21/03 1) In "Portabilities Issues" section of "Miscellany" chapter: Added URL for article about Caldera's release of UNIX source. [Yes, indeed, before Caldera reinvented itself as SCO, it had begun to Open Source the code to UNIX.] 2) In "Copyright" appendix: Added trademark notices. 3) In "Arrays" chapter: Added another initialization option to in-line example. Fixed error in comment in "q-function.sh" example. Added "embedded-arrays.sh" example of using indirect references with embedded arrays. (Thank you, Dennis Leeuw.) 4) In "Regular Expressions" chapter: Added mention of "anchors." 5) In "Assorted Tips" section of "Miscellany" chapter: Added in-line example of using "if-test" constructs to comment out code blocks. 6) In "cannon.sh" example: Added comment about firing cannon balls only at the upper right-hand corner. (Thanks, Emilio Conti, for making me think about this.) 7) In "String Manipulation" section of "Variables Revisited" chapter: Fixed two errors in comments of in-line substring replacement example. (Thanks, Emilio Conti.) 8) In "ex21.sh" example: Eliminated unnecessary variable. (Thanks, Emilio Conti.) 9) In "wstrings.sh" example: Eliminated unnecessary variable. (Thanks, Emilio Conti.) 10) In "Comparison Operations" section of "Tests" chapter: Fixed if ["$a" -gt "$b" ] Missing space! (Thanks, Thomas Treutner.) 11) In "Communications Commands" section of "External Commands" chapter: Moved "cu" to after "uucp," since it's part of the latter's command set. 12) In "Contributed Scripts" appendix: Corrected error in comment in "makedict.sh" script. 13) In "Copyright" appendix: Updates. 14) Various minor script updates. Version 1.8 [Cleanups & revisions] 'BREADFRUIT' release, 05/10/03 1) Revised "self-document.sh" to remove unnecessary 'cat.' 2) In "cvt.sh" example, quoted target file name and added exercise. 3) Updated Jordi Sanfeliu's e-mail address in "Credits" chapter and in "tree.sh" example script. 4) In "blot-out.sh" script, updated the Peter Gutmann URL. 5) In "Miscellaneous" subsection of "System and Administrative Commands" chapter: Added "watch" command. 6) In the introduction, in reason not to use shell scripts, Removed misleading reference to Open Source (thank you, Peter Lietz, for pointing this out). 7) In "Quoting" chapter: Added footnote about problem double quoting "!" and "\!". (Thanks, Wayne Pollock.) 8) In "Internal Commands" chapter: Added caution about 'cd //' problem. (Thanks, Wayne Pollock.) Added short example of "$!" usage. (Thanks, Jacques Lederer.) 9) In "Arrays" chapter: Replaced "empty-array.sh" with an extended version. Added note that Bash treats variables as arrays, even if not declared as such. Added example of nested arrays. Added example of copying and concatenating arrays. (All the above thanks to Michael Zick.) 10) In "Tests" chapter: Fixed up "Tests Constructs" section link (finally!). 11) In "Command Substitution" chapter: Added mention of $(<$file) construct. 12) In "Functions" chapter: Added material to nested functions in-line examples. 13) In the "Portability Issues" section of the "Miscellany" chapter: Added short list of Bash-specific features. 14) In "File and Archiving Commands" section of "External Commands" Chapter: Added "dos2unix" utility. 15) In "Gotchas" chapter: Added short in-line example of using an uninitialized variable. Added in-line example showing DOS-formatted script failing to run. 16) In "Contributed Scripts" appendix: Added Michael Zick's "directory-info.sh" script. 17) In "Bibliography" section: Updated "The UNIX CD Bookshelf" reference. Added Eric Pement's sed resources page. Removed outdated "Sed F.A.Q." reference. Updated Frisch entry. Updated Shelldorado and Giles Orr entries. 18) Updated sample .bashrc file (Appendix G). 19) A few minor error corrections and clean ups at various places in the text. Version 1.7 (minor update) 'COCONUT' release 01/05/03 1) In "Special Variable Types" section of "Introduction to Variables and Parameters" chapter: Added note about "$*" and "$@" special variables, and updated "ex17.sh" example to reflect this. 2) In "Manipulating Strings" subsection of "Variables Revisited" chapter: Added "paragraph-space.sh" example. 3) In "Loop Control" section of "Loops and Branches" chapter: Added "continue-n.example" to illustrate use of "continue N" construct. (Thank you, Albert Reiner.) 4) In "Internal Commands" chapter: Added section to "read-redir.sh" example to show setting "$IFS" within a loop. (Thanks, Dim Segebart.) Added Rory Winston's example of "eval" usage. 5) In "List Constructs" chapter: Deleted erroneous comment in "ex65.sh." (Thank you, Francisco de Jesus Orozco Ruiz.) 6) In "File Test" section of "Tests" chapter: Added "broken-link.sh" example. 7) In "Internal Variables" section of "Variables Revisited" chapter: Added comment on $PIPESTATUS. 8) In "RANDOM" section of "Variables Revisited" chapter: Added the 'jipe' techniques for generating random numbers within a specified range. Added "pick-card.sh" example. Thank you once more, jipe. 9) In "Miscellaneous Commands" section of "External Commands" Chapter: Amended discussion of "tee" command. 10) In "System and Administrative Commands" chapter: Expanded "ulimit" discussion to include "fork bomb" scenario. 11) In "Aliases" chapter: Slightly revised "alias.sh" example. 12) Various minor fixups on example scripts. Version 1.6 (minor update) 'POMEGRANATE' release 09/29/02 1) In "System and Administrative Commands" chapter: Added "nmap" entry, with in-line usage example. 2) In "Communications Commands" section of "External Commands" chapter: Revised "self-mailer.sh" example. 3) In "Miscellaneous Commands" section of "External Commands" Chapter: Added "objdump" entry, with usage example. 4) In "File and Archiving Commands" section of "External Commands" Chapter: Added "readlink" entry. 5) In "/dev and /proc" chapter: Added example of extracting information from a /proc file. 6) Moved Chapter 3, "Exit and Exit Status" ahead 3 positions, to make it Chapter 6. This makes the organization of the first part of book more logical. 7) In "List Constructs" chapter: Added discussion of using an "and list" to supply a default command-line argument. 8) In "Quoting" chapter: Rewrote "Of course, grep [Ff]irst *.txt would not work." This does work under Bash, and fails under tcsh. (Thanks, Simon Williams.) Added example of hexadecimal character assignment to "escaped.sh" example. (Thanks, Greg Keraunen.) 9) In "Special Variable Types" section of "Introduction to Variables and Parameters" chapter: Showed how to reference the last command-line parameter. 10) In "Internal Commands" chapter: Added cautionary note about setting and exporting a variable in a single operation (thanks, Greg Keraunen). Added use of '-n' option to "read" to detect keypress of arrow keys, with "arrow-detect.sh" example. (thanks, Sandro Magi). 11) In "Assorted Tips" section of "Miscellany" chapter: Added example of using "whatis" to test for an invoked command and do a workaround if necessary. 12) In "Colorizing Scripts" section of "Miscellany" chapter: Fixed typo in comment in "color-echo.sh" example. 13) In "Debugging" chapter: Added note about syntax error messages possibly ignoring comment lines when calculating the line number of the error. (Thanks, Keith Matthews) 14) Wrote a short introduction to "Part 4: Advanced Topics." 15) In "Writing Scripts" section of "Exercises" appendix: In "Intermediate" section", added "Mailing List" exercise. 16) In the "Sed and Awk Micro-primer" appendix: Added discussion and example of single-quoted 'sed' editing command not working. 17) In "Bibliography" section: Updated entry for "Sed F.A.Q." / "Do It With Sed." 18) Various minor fixups on example scripts. Version 1.5 (major update) 'PAPAYA' release 07/13/02 1) In "Basic Commands" section of "External Commands and Filters" Added "man, info" entry. At "ls," added comments to "ex40.sh" example. 2) In "File and Archiving Commands" section of "External Commands and Filters" section: Moved "shred" to "Utilities" subsection and did minor rewriting of entry. Fixed minor error in "de-rpm.sh" example. Added "mktemp" entry. Added "rpm" entry, with usage examples. Added "rpm2cpio" entry. 3) In "Math Commands" section of "External Commands" chapter: Split "bc" and "dc" into separate entries. At "bc", added "cannon.sh" example. 4) In "Miscellaneous Commands" section of "External Commands" Chapter: At "mcookie" entry, added "tempfile-name.sh" example. At "seq" entry, added section to "ex53.sh" example. Added "units" entry, with "unit-conversion.sh" example. Added "doexec" entry. More info at "pathchk" entry. 5) In "Communications Commands" section of "External Commands" chapter: Added usage example at "host" entry. Revised "finger" entry. Added "ipcalc" entry. Added "mailto" entry. Added "wget" entry. Added "lynx" (with "-dump" option) entry. More info at "nslookup." More info at "dig." More info at "traceroute." 6) In "Time/Date Commands" section of "External Commands" chapter: More info at "usleep" entry. 7) In "Terminal Control Commands" section of "External Commands" chapter: Added more options at "tput" entry. Added "infocmp" entry, with usage example. 8) In "File and Archive Commands" section of "External Commands" Chapter: Added info at "diff" entry. 9) In "Complex Commands" section of "External Commands" Chapter: At "find" entry, clarified introductory remarks, and added info. 10) In "Internal Commands and Builtins" chapter: At "source" entry, added "self-source.sh" example. At "shopt" entry, fixed up usage example. 11) In "Job Control Commands" section of "Internal Commands": Added comments to "self-destruct.sh" example. 12) In "Testing and Branching" subsection of "Loops and Branches" chapter, Improved "isalpha.sh" example (added integer test function). 13) In "System and Administrative Commands" chapter: Added "passwd" entry, with in-line illustrative script. Added "readelf" entry. Added "size" entry. More discussion in "Modules" subsection. Added usage example at "dmesg" entry. 14) In "Assorted Tips" section of "Miscellany" chapter: Added "Colorizing Scripts" section, with "ex30a.sh" and "color-echo.sh" examples. Added "agram.sh" example of iterated piping to a filter. 15) In "Optimizations" section of "Miscellany" chapter: Added "avoiding unnecessary commands." 16) In "Arrays" chapter: Added "poem.sh" example. 17) In "Regular Expressions" chapter: Clarifications and error corrections on "Extended Regular Expressions" section (thanks, Peter Tillier). 18) In "Tests" chapter: Added code to "arith-tests.sh" example. 19) In "Parameter Substitution" chapter: At "${parameter-default}", added usage when command-line parameters in a script are "missing." At "${paramter?err_msg}", added "usage-msg.sh" example. 20) In "Functions" chapter: Added info to "ex60.sh" example. 21) In "Gotchas" chapter: Added material to "badread.sh" example. 22) In "Special Characters" chapter: Added usage examples at "*" entry. 23) In "Variable Substitution" section of "Introduction to Variables" chapter: Added in-line example of using uninitialized variable in arithmetic operations. 24) In "Bash Variables are Untyped" section of "Introduction to Variables" chapter: Rewrote "int-or-string.sh" example. 25) Renamed "Oddities" section of "Miscellany" chapter to "Recursion", and moved it forward. 26) In "Starting off with a Sha-Bang" chapter: Added commentary and script snippet to footnote [2]. 27) Slight revision to introduction to the book. 28) In "Contributed Scripts" appendix: Added "soundex.sh" example. Fixed minor typo in lead-in to "obj-oriented.sh" example. 29) In "Writing Scripts" section of "Exercises" appendix: Added "Justification" exercise to "Intermediate" section. Added "Buffon's Needle" exercise to "Difficult" section. Added "Chasing Spammers" exercise to "Difficult" section. 30) In "Bibliography" section: Added Steve Parker entry. 31) Added Landon Noll epigraph to end of "Scripting With Style" chapter. 32) Various minor cleanups and additions to example scripts. Version 1.4 (minor update) 'MANGO' release 06/16/02 1) In "Special Characters" chapter: Added "<" and ">" ASCII comparison entry. Added "\<" and "\>" word boundary in a regular expression entry. Added "&>" to redirection characters. Added "history mechanism" comment to "!" entry. 2) In "Debugging" chapter: Added "missing-keyword.sh" example of error message, with note. Minor language clarification. 3) In "Tests" chapter: Added material to "ex11.sh" example. Changed "cmp a b >/dev/null" inline example to "cmp a b &>/dev/null (thanks Baris Cicek). 4) In "I/O" Redirection chapter: Added "&>filename" to redirection chart. 5) In "Of Zeros and Nulls" chapter: Added comment to "suppressing output" inline example. 6) In "External Commands and Filters" chapter: Moved "diff", "patch", "diff3", "sdiff", "cmp", and "comm" from "Text Processing Commands" section to "File and Archiving Commands" section, and created a "Comparison" subsection for them. Moved "ptx" from "Text Processing Commands" section to "File and Archiving Commands" section. Gave the sections descriptive subtitles. 7) In "Text Processing Commands" of "External Commands and Filters" chapter: Added tests to "file-comparison.sh" example. At "head", added "script-detector.sh" example. 8) In "Miscellaneous Commands" section of "External Commands" Chapter: Added "mcookie" entry. 9) In "Math Commands" section of "External Commands" chapter: At "bc/dc" entry, added "hexconvert.sh" and "factr.sh" (thanks, Michel Charpentier) examples of using "dc." 10) In "List Constructs" chapter: Minor rewriting of "ex65.sh" example. 11) In "Contributed Scripts" appendix: Added "blank-rename.sh" example. 12) In "Writing Scripts" section of "Exercises" appendix: Added detail to "Safe Delete" exercise and moved it to "Intermediate" subsection. Added "Automatically Decompressing Files" exercise ("Easy" section). Added "Lottery Numbers" exercise ("Easy" section). Added "Passwords" exercise ("Intermediate" section). Added "Fog Index" exercise ("Difficult" section). 13) In the "Security Issues Section" of the "Miscellany" chapter: Added 'Unix Scripting Malware' reference to the footnote. 14) In "Starting off with a Sha-Bang" chapter, Fixed typo in comment in "ex2.sh" example ('wtemp' --> 'wtmp') Thanks for pointing this out, Julien Reveret. 15) In "Internal Commands and Builtins" chapter: At "read" entry, added in-line example of using "cat" to pipe to a "read". 16) In "Optimizations" section of "Miscellany" chapter: Added text. 17) Numerous typos corrected from a list sent in by Andreas Abraham (thanks!). [Imagine that, I've been misspelling "Eratosthenes" since the 8th grade.] Version 1.3 'TANGERINE' release 06/02/02 1) In "Arrays" chapter: Revised the "bubble.sh" example script by splitting the array variable. 2) In "Here Documents" chapter: Clarified introduction. Added using a here document to comment out a block of code (thanks, Adam Lazur for pointing this out), with "commentblock.sh" example. Added a "self-documenting" script example ("self-document.sh"). Added using a here document to supply input to a function, with "here-function" illustrative example. 3) In "Contributed Scripts" appendix: Modified "life.sh" example to accept different startup file as a parameter at invocation. Added "makedict.sh" example. 4) In "Exercises" appendix: Added "sum matching numbers" exercise. 5) In "Oddities" section of "Miscellany" chapter: Added Rick Boivie's "pb.sh" script as a recursive script example. 6) In "Optimizations" section of "Miscellany" chapter: Editing of "loops" paragraph. Added cross-reference to "monthlypmt.sh" script. 7) In "Parameter Substitution" chapter: Fixed typos at "${var/#patt/replacement}" and "${var/#patt/replacement}" discussion (thank you, Dr. Claudia Neumann, for pointing this out). 8) In "Sed and Awk Mini-Primer" Added sed script cross-reference. 9) In "Basic Commands" section of "External Commands" Chapter: More info at "mv". 10) In "File and Archive Commands" section of "External Commands" Chapter: More info at "md5sum". Added "file-integrity.sh" example at "md5sum". At "tar", added various options and clarified commentary. More info at "bzip2". Added "unarc/unarj/unrar" entry. 11) In "Text Processing Commands" section of "External Commands" Chapter: Added footnote at "tr" explaining that only the GNU version recognizes character classes. 12) In "Complex Commands" section of "External Commands" Chapter: Added notes to example "ex45a.sh". Fixups in "ex45.sh" and "ex45a.sh". Corrected commentary on escaped parentheses grouping operator. 13) In "Time/Date Commands" section of "External Commands" chapter: Added ">> newfile" at "touch". 14) In "Math Commands" section of "External Commands" chapter: Added Rick Boivie's comments and improvements (2 sets) to "monthlypmt.sh" example script. 15) In "Miscellaneous Commands" section of "External Commands" chapter: Added "getopt", with "ex33a.sh" illustrative example. 16) In "Special Characters" chapter: Clarification and added material at "-" (hyphen), including option flag. Added mention of use as option flag at "+". Added short definition of a "filter." At ".", reorganized entry and added current working directory and parent directory (..). At "?", reorganized entry and added "test operator" meaning. At "$", added "end-of-line" regular expression meaning. At "[]", added array element and regular expression meanings. Added "$?" entry. Added "$$" entry. Added "^" entry. Added "||" entry. Added "&&" entry. 17) In "Internal Commands and Builtins" chapter: Partially rewrote and clarified the introduction to the chapter. Added brief discussion of what happens when 'read' lacks. an associated variable, with "read-novar.sh" example. At "set", added discussion of "--" option, with "set-pos.sh" example and added discussion of "set" with no options and arguments. At "exec", added "self-exec.sh" example. 18) In "Job Control Commands" section of "Internal Commands and Builtins" chapter: Added "self-destruct.sh" example at "kill." 19) In "Of Zeros and Nulls" chapter, added examples of using /dev/null. 20) In "Debugging" chapter, fixed up "online.sh" example to cope with changed requirements of newer Linux kernels. 21) In "Aliases" chapter, added comment to "alias.sh" example, per a suggestion by Steve Jacobson. 22) In "Gotchas" chapter: Added piping to a "read", with "badread.sh" example. Added note about GNU utilities in scripts. 23) In "I/O Redirection" chapter: Clarified language in chart. Added '>' as zero-length file truncation operator. Added "reassign-stdout.sh" and "upperconv.sh" examples at "exec". 24) In "String Manipulation" section of "Variables Revisited" chapter: Added instances in in-line examples. Added end-of-string operators for 'expr'. Small fixup in "underscore variable" inline example. 25) In "Regular Expressions" chapter: Added '\<...\>' word boundary markers. 26) In "Quoting" chapter: Fixed minor syntax error in "tar" example (thanks, Ian Barwick). 27) Expanded "Author's Note" section of "Endnotes" chapter. 28) Fixed minor typo in table in "Exit Codes With Special Meanings" appendix. 29) Added reference links to "environmental variables" explanation. 30) Fixed reference links to "startup files" section. 31) In "Miscellany" Chapter: Added "Security Issues" section. 32) In "Bibliography" section: Added Denning entry. Added Polya entry. Added "Shell Corner" entry. Added "UNIX Grymoire" entry. 33) In "Copyright" appendix: Clarified license terms with reference to "Open Publication License." 34) Various minor fixups and enhancements to example scripts. 35) Updated references to LDP site (changed from 'linuxdoc.org' to 'tldp.org'). Version 1.2 (major release) 03/31/02 1) In "Operators" subsection of "Operations and Related Topics" chapter: Fixed comment in in-line example (thanks, Marcus Bergöf). Added "gcd.sh" example at "%" (modulo) operator. 2) In "Numerical Constants" subsection of "Operations and Related Topics" chapter: Fixed up and enhanced "numbers.sh" example (thanks, Rich Bartell). 3) In "arithops.sh" example, fixed comment to refer to correct operation (thanks, Marcus Bergöf). 4) In "Command Substitution" chapter: Added excerpts from /etc/rc.d/rc.sysinit as examples of setting a variable to the contents of a file using "var=`cat filename` construction. Added "csubloop.sh" example of setting a variable from the output of a loop. 5) In "Basic Commands" section of "External Commands and Filters" chapter: Added info on "-f" option at "mv" and "rm". Added "-s" option at "cat". 6) In "Text Processing Commands" sect. of "External Commands and Filters" chapt.: Added more info for "nl". Rewrote "groff" as a separate entry, and added "col" and "tbl"/"eqn" as subentries. Added much more info on "tr". Added more options to "grep". 7) In "Complex Commands" section of "External Commands" chapter: Added more info at "xargs". Added caution when using "*" with "expr" in arithmetic operation. 8) In "Miscellaneous Commands" section of "External Commands" chapter: Added more info on "jot/seq". Added "Linux Journal" reference at "m4". 9) In "File and Archiving Commands" section of "External Commands and Filters" chapter: Added "mimencode/mmencode". More info on "cksum"/"md5sum". Added "wstrings.sh" example at "strings" entry. 10) In "Communications Commands" section of "External Commands" chapter: Added "mail", with "self-mailer.sh" illustrative example. 11) In "Time/Date Commands" section of "External Commands" chapter: Added discussion of "-u" option to "date". 12) In "Special Variable Types" section of "Introduction to Variables" chapter: Improved link to "bracket" notation. Added note that "shift" command also applies to function parameters. 13) In "Internal Variables" section of "Variables Revisited" chapter: Added info on "$@" special variable, with new in-line example. Corrected "$DIRSTACK" listing (thanks again, Nick Drage). At "$TMOUT", added "t-out.sh", another example of timed input (thanks, syngin seven). Added commentary to "am-i-root.sh" example. 14) Changed document subtitle. 15) In "Command Substitution" chapter: Corrected word-splitting example in "caution" (thanks, Tony Richardson). Added "stupid-script-tricks.sh" example of setting a variable to the contents of a binary file (which has no useful applications). 16) In "Internal Commands and Builtins" chapter: Clarified "ex43.sh" example (thanks, Tony Richardson). Clarified explanation and example of "echo" eating linefeeds in a command fed to it. More info on "keywords" topic. 17) In "Special Characters" chapter: Added in-line example of embedding Ctl-H's in a variable. More info on '-' as an option to certain commands. Added "background-loop.sh" example at "&" (run command in background). 18) In "Bash, version 2" chapter: Added "resistor-inventory.sh" example of database using indirect variable referencing. 19) Changed name of example "rot13_2.sh" to "rot14.sh" because otherwise SGML conversion seems to experience namespace confusion. 20) In "Quoting" chapter: Added header notes to "\" escape usage listing. Added in-line example on behavior of "\". Slight revisions to "escaped.sh" example. 21) In "Internal Variables" section of "Variables Revisited" Chapter: Added usage example for "$GROUPS". 22) In "Gotchas" chapter: Added mixing up integer and string comparison operators. 23) In "While Loops" subsection of "Loops and Branches" chapter: Added clarifying statement as to when "while loops" are used. Added "userlist.sh" example of command substitution in generating "[list]" in "for loop". 24) In "System and Administrative Commands" chapter: Added "rmmod". added "sudo". Added commentary on "debugfs". 25) In "Exercises" Appendix: Reorganization into two distinct subsections. Added a sample script to annotate. Added a script code snippet to fix up. Added a few more script writing problems, including the very difficult "Playfair Cipher". 26) Simplified "wf.sh" example. 27) In "Starting off with a Sha-Bang" chapter: Fixed typo in "ex2.sh" example script (thanks, David Kimbro for bringing this to my attention). 28) In "Arrays" chapter: Rewrote confusing language in introductory paragraph. Added "stackex.sh" example for emulating data structures. Added in-line example of loading an array with the contents of a text file. 29) In "Tests" chapter: Clarification of why semicolon needed when "if" and "then" are on same line. Added material to "ex10.sh" example. 30) In "Here Documents" chapter: Modified "ex69.sh" example, per message from Jess Thrysoee relaying to me clarification from Bram Moolenaar. 31) In "I/O Redirection" chapter: Fixed comment on in-line example on closing file descriptors. (Thanks, Matthieu Lucotte) Made the data file for redirection examples, "names.data", visible. 32) In "Assorted Tips" section of "Miscellany" chapter: Added repeated piping of the output of a filter back to that same filter. Added alternative method of having a function return a value to the body of the script, with "multiplication.sh" example showing how. Added method of having a function "return" multiple values, with illustrative "sum-product.sh" example. Added "tolower()" function to function library. Added methods of passing an array to a function, and returning an array from a function to the main body of a script (with example "array-function.sh"). 33) In "Contributed Scripts" appendix: Added "collatz.sh" example. Added "life.sh" example (Conway's "Game of Life"). 34) In "Exit Codes" appendix: Added footnote with more information about out of range exit codes (thanks for tweaking my curiosity about this, Akira Huang). 35) In "Sed Micro-Primer" appendix: Added use of backslash as newline. Added example of operation(s) over an address range. 36) In "Bibliography" section: Added Pickover entry. 37) Clarifications in "Copyright" appendix. 38) Various minor edits to various example scripts. Version 1.1 release (major release) 01/06/02 1) Fix up comments in "weirdvars.sh" example. 2) In "Variables" chapter, slight wording change in first paragraph. 3) Slight changes to "ex9.sh" example. 4) Added redirection as an alternative remedy to the script hang problem with background commands in "Job Control Commands" section of "Internal Commands" chapter. 5) In "Text Processing Commands" section of "External Commands" chapter: Added "-q" option at "grep", with in-line example. Added usage example for "cut". Much more information on "uniq -c", and added "wf.sh" example. 6) In "Functions" chapter: Added more info on oversize (> 256) return values. Modified "ex62.sh" example. Reorganized "Local Variables" section. Added note that before function call, all variables within functions are local, not just those explicitly declared as such. 7) Add section on "Shell Scripting Under Windows" to "Miscellany" chapter. 8) In "String Manipulation" section of "Variables Revisited" chapter: Bugfix in comment in "%%" substring removal example. Added "cvt.sh" example at "%%" substring removal discussion. Added subsection on using "awk" functionality for string manipulation, with added "substring-extraction.sh" example. 9) In "$RANDOM" section of "Variables Revisited" chapter: Removed superfluous "note" icon at beginning of section. Added example of using "awk" rand() function to generate random numbers. 10) In "Command Substitution" chapter: Added discussion and example of extending Bash toolset. Added footnote about what exactly constitutes a "command". 11) In "System and Administrative Commands" chapter: Added "lastlog" command. More info on "route" and "netstat". Fixed reference to "crond" at "logrotate". Added "tmpwatch". Added "sar". 12) In "Miscellaneous Commands" section of "External Commands" chapter, added more info and an example to "dd". 13) In "Math Commands" section of "External Commands" chapter: Added an alternative method of invoking 'bc', with "alt-bc.sh" example. Added using "awk" math commands, with "hypotenuse.sh" example. 14) In "Archiving Commands" section of "External Commands" chapter, added footnote to "tar". 15) In "Bibliography" section: Cleaned up cross reference to University of Alberta site. Added comp.unix.shell newsgroup reference. 16) Made corrections to "symlinks.sh" and "symlinks2.sh" examples, per Dominik 'Aeneas' Schnitzer. 17) In "Starting Off With a Sha-Bang" chapter, clarified footnote explaining "magic numbers", per Stanislav Brabec's suggestion. 18) In "I/O Redirection" chapter, added stdout redirection instance, with example. 19) In "Sed and Awk Micro-Primer" appendix: Added $filename to in-line examples. Fixup on "END" command block description. 20) Added semicolons as necessary to terminate commands in Perl examples. 21) Added "History Commands" appendix. Version 1.0 (stable!), released 10/14/01 1) Quoted "$LOGFILE" in in-line example in "Scripting With Style" subsection of "Miscellany" chapter. 2) Added missing "/" in first footnote in Chapter 2 (thanks, Stepan Kasal). 3) Additional comments for "primes.sh" contrib script. Fixup in "ex72.sh" contrib script. 4) In "Job Control Commands" section of "Internal Commands and Builtins" chapter: Additional comment for footnote to "enable -f". Additional material on "wait" (preventing script hang after background command). 5) Added "Oddities" section to "Miscellany" chapter. o Script calling itself recursively, with illustrative example ("recurse.sh"). o Moved "Shell Wrappers" section from "Starting Off With a Sha-Bang" chapter to "Miscellany" chapter. 6) In "Local Variables and Recursion" section of "Functions" chapter: Defined "recursion" in more detail. 7) Modified in-line example in "Special Variable Types" section of "Introduction to Variables and Parameters". Thanks, John Villalovos for bringing a side effect of parameter substitution to my attention. 8) In "System and Administrative Commands" chapter: Added "setserial". Added "MAKEDEV". Added "mkbootdisk". Added "tcpdump". Added "strip". Added "chkconfig". Added "hdparm". Added "badblocks". Added "lsdev". More info on "uname". Added "top" to "Job Control" subsection. Moved "mknod" to "Filesystem" subsection. Moved "ps" and "pstree" from "Internal and Builtin" job control commands to this chapter. 9) In "Arrays" chapter, added "unset" for removing array elements or an entire array. 10) Added "Exercises" appendix. 11) In "Special Characters" chapter: Added "EOF" as attribute of "Ctl-D" control character. Added "(( ))". Added "?". Added ";;". Added field separator usage for ":". Added info on pipes. 12) In "System Commands" chapter, changed "cron" to more technically correct "crond". 13) In "Globbing" section of "Regular Expressions" chapter, added examples of "echo" doing filename expansion. 14) In "Test Constructs" section of "Tests" chapter: Enhanced "arith-tests.sh" example. Added "(( "$a" < "$b" ))" and "(( "$a" > "$b" ))" constructs. Added "(( "$a" <= "$b" ))" and "(( "$a" >= "$b" ))" constructs. Added "Testing Your Knowledge of Tests" section. Added some material to "ex10.sh" example. 15) In "Complex Commands" section of "External Commands" chapter: Added material to "ex45.sh" example. Fixed error in description of "expr index $string" Rewrote part of "expr" discussion. Added "idelete.sh" example at "find" listing. 16) Added testing for condition with "assert" function in "Debugging" chapter. Illustrative example, "assert.sh". 17) Added prepending a line to an existing file to "Assorted Tips" section of "Miscellany" chapter. 18) Added "Bash Variables Are Untyped" section to "Variables" chapter. Example "int-or-string.sh". Slight modification of "ex9.sh" example. Added special case of signal variables to "naked" variables. 19) Moved "$?" and "$$" for "Positional Parameters" subsection of "Variables Revisited" chapter to newly created "Other Special Parameter" listing, along with "$-", "$!", and "$_". 20) In "Variables Revisited" chapter: Added "Manipulating Strings" section. Swatted a couple of bugs in the first couple of drafts of this section. Added "$GLOBIGNORE" and "$LC_CTYPE". Added "$BASH_VERSINFO[n]". Added "$PIPESTATUS". More info at non-builtin Bash variables. 21) In "Arrays" chapter, added "${array:position}" construct in-line example. 22) In "Time / Date" section of "External Commands" chapter: Rewrote and corrected part of "at" entry. Added "zdump". 23) In "Text Processing Commands" section of "External Commands" chapter: Added example for "cut", per idea of Oleg Philon. Added yet another usage example for "wc". Added "recode". Added "zdiff" at "diff" entry. Added "zcmp" at "cmp" entry. Slightly revised "sort" entry. Revisions on "grep" entry. Added notation about "agrep". 24) In "/dev and /proc" chapter: Reorganization into two separate sections. Oleg Philon suggested a simplification for the "connect-stat.sh" example. 25) In "Miscellaneous Commands" section of "External Commands: Added "banner". Added "m4", with "m4.sh" illustrative example. Added "make". Added "hexdump". 26) In "File and Archiving Commands" section of "External Commands: More info on "file" entry. Added "znew" note at "compress / uncompress" entry. Added "zip / unzip". Added "vdir". Added "shred". 27) In "Math Commands" section of "External Commands" Corrected "EBCDCIC" to "EBCDIC". Very embarrassing. 28) In "Regular Expression" chapter: Added "()" and "|" to extended REs. 29) In "Communications Commands" section of "External Commands" chapter: Added "cu". 30) In "Of Zeros and Nulls" chapter, added "ramdisk.sh" example. 31) In "Appendix B", fixed error stating that "Both sed and awk use the -e option..." Only sed does (whoops!). Thanks to Peter S Tillier for pointing this out. 32) Clarification of version 2 of Bash in "Bash, Version 2" and "Gotchas" chapters. 33) Slight change to "symlinks.sh" example script, as suggested by Dominik 'Aeneas' Schnitzer. 34) Added note to "numbers.sh" example, at the suggestion of Chiron. 35) Folded "Credits" chapter into "Endnotes" chapter, as a section. It's more logical that way. 36) Added "Preliminary Exercises" section to Chapter 2. 37) Added setting a variable to the contents of a file to "Command Substitution" chapter. 38) In Bibliography, added Rosenblatt listing. 39) In "Command Substitution" chapter, back quotes (`...`) erroneous shown as single quotes ('...'). Fixed. Thanks, David Lawyer. 40) Fixed ambiguity in conditional test in "rpm-check.sh" example, in "Special Characters" chapter. Also fixed "ex9.sh". Again, thank you, David Lawyer. 41) Fixed "for loop" references (links led to wrong places). 42) In "Testing and Branching" subsection of "Loops and Branches" chapter, added "match-string.sh" example. 43) In "Loops and Branches" chapter, added example of "for" loop with stdout redirected to a file. 44) In "Redirected Code Blocks" section" of "I/O Redirection" chapter, added "redir4a.sh" example, showing redirection of both "stdin" and "stdout" of loop. 45) In "Shell Wrapper" section of "Starting Off With a Sha-Bang" chapter, added "bashandperl.sh" example. 46) Revised the introduction to the book. 47) Last minute cleanups of various example scripts. 48) New .bashrc from Emmanuel Rouat. Version 0.5, released 09/03/01 1) Changed the name of this file from "NEWS" to Change.log" 2) Reorganized subsections of the huge "Tutorial" chapter into separate chapters. This is much more logical. 3) Divided main section of the book into four parts. First paragraph of chapter 1 moved to Part 1 introduction. 4) Fixups on id tags for various subsections (Jade does not like "anchors" nested in within certain tags). 5) In "Tools Used" section, fixed typo in "OpenJade" URL. 6) Changed chapter heading from "End Notes" to more grammatically correct "Endnotes". 7) In "Regular Expressions" chapter: Fixed typo ("or" -> "of"). Added subsection for POSIX character classes. 8) Enhancements to "ex73.sh" example. 9) In "File and Archiving Commands" section of "External Commands" chapter: Added "de-rpm.sh" example of using "cpio". Added "ar". Reorganized into subsections. 10) Added dedication. 11) Corrected comment in "weirdvars.sh" example. Thanks, Prahad V. 12) Cleanups on "ex2.sh", "ex39.sh", "ex41.sh", and "logevents.sh" examples. 13) In "I/O Redirection" chapter, added cross references to "de-rpm.sh" and "fifo.sh" examples. 14) In "System and Administrative Commands" chapter Added "strace". Added "hostid". Added "nm". Added "vmstat". Added "fdformat". Added "erase.sh" example at "stty". More info on lock files. Reorganization of entries into logical sections. 15) Moved "Parameter Substitution" section from "Introduction to Variables and Parameters" chapter to "Variables Revisited". This is a fairly advanced topic. 16) Moved "Variable Assignment" and "Special Variable Types" information from "Variables Revisited" chapter to "Introduction to Variables and Parameters". These are introductory topics. 17) In "Miscellaneous Commands" section of "External Commands" chapter: Added "blot-out.sh" example for "dd". Added footnote explaining "EBCDIC" at "dd" Added "run-parts". 18) Changed <itemizedlist> to <variablelist> in various places, since the Docbook stylesheet does strange things with the former. 19) In "Tests" chapter: Fixup in footnote in "File Test Operators" subsection. Added note that "&&", "||", "<", and ">" work within "[[ ]]" construct. Rewrote "<" and ">" entries in "Comparison Operations" section. 20) In "Internal Commands" chapter: Added "-r" option to "read". Added "-f" option to "enable". Extended "ex47.sh" example at "printf" with "sprintf" simulation. Added more info to "cd" ("-P" option and "cd -"). Added "fg" and "bg" (how did I manage to leave these out before?). Added "logout". Added optional argument that "wait" may take. Added "autoload". Added table of "Job Identifiers". Reorganized chapter into subsections. 21) In "Text Processing" section of "External Commands" chapter: Added "crypto-quote.sh" example for "tr". Added another usage example for "wc". Added "tsort". Added "iconv". Added "lex" and "yacc". 22) More info added in "Aliases" chapter. 23) In "Parameter Substitution" section of "Variables Revisited" chapter: Added usage examples on "${param+alt_value}" and "${param:+alt_value}" Added in-line usage examples for "${var#pattern}" and "${var##pattern}". Added "${!varprefix@}" matching. Added "${var/#patt/replacement}" and "${var/%patt/replacement}", with illustrative example ("var-match.sh"). 24) Dedicated section to "Globbing". Added usage examples. 25) In "Variables Revisited" chapter: Added usage example of "declare -i" in "Typing Variables" section. Added material to "am-i-root.sh" example. Correction: "typeset" and "declare" are builtins, not keywords. Added "declare" option ("var=$value"). 26) Added $ LC_COLLATE, $SHLVL, and $FUNCNAME to "Variables Revisited" chapter. Noted adding "export LC_COLLATE=C" to /etc/profile to restore customary behavior of bracket set filename globbing. 27) Made "bubble.sh" more pedantically correct by quoting params within tests. 28) In "Assorted Tips" section of "Miscellany" chapter: Added inline example of a definition and function library. Added special-purpose comment headers. 29) Added "About the Author" section to "Endnotes" chapter. 30) In "Operations" section of "Operations and Related Topics" chapter: Added "**" exponentiation operator. Added note that Bash integers are of type 32-bit signed long, with in-line example. Added comma linking operator. Fixed and enhanced "&&" and "||" entries. 31) In "Parameter Substitution" section of "Variables Revisited" chapter, added "${!varprefix*}" expansion. 32) In "Communications Commands" section of "External Commands" chapter, Added "whois". Added "ping". Added "finger". Added "vacation". Added "ftp". Added "telnet". Added "rsh". Added "rlogin". Added "ssh". Added footnote defining "daemon". Reorganized commands into subsections. 33) In "Complex Commands" section of "External Commands" chapter, added usage example of "expr $string :" operations. 34) Clean up example scripts, and made them more stylistically consistent. Fixed error in "ex22a.sh". Fixed error in "arith-tests.sh". 35) Fixed erroneous reference to "ex74.sh" in "Of Zeros and Nulls" chapter (should be "ex57.sh"). 36) Corrections and additions to "DOS Batch Files" appendix, sent in by Marc-Jano Knopp. 37) In "Functions" chapter, noted that 256 is the largest positive integer return value, and added "return-test.sh" illustrative example. Showed how to "evade" this restriction, with "max2.sh" example. 38) Branched off "function redirection" into a separate sub-subsection. 39) Added integer variable test to "Assorted Tests" section of "Miscellany" chapter. 40) Added "days-between.sh" example to "Contributed Scripts" appendix. 41) Added "using same name for a function and a variable" to "Gotchas" chapter. 42) In "Special Characters" chapter: Fixed "pipes" example to reflect GNU syntax of "tr" (thanks, Elias Assman). Added note to "dot" character that in another context, it can be part of a Regular Expression. Added "$", variable substitution. Added "&", run job in background. Added "%", modulo and pattern matching operator. Added "/", filename path separator and division operator. Added "=", assignment and string test operator. Added "+", arithmetic addition and Regular Expression operator. Added "~+", print working directory. Added "~-", print previous working directory. Added "control characters". Reordered listings. 43) In "Arrays" chapter, added comment to "bubble.sh" example. 44) Added portability note to "ex51.sh". 45) Removed redundant and partially incorrect "relational tests" subsection from "Operators" section of "Operations and Related Topics" chapter. 46) In "Basic Commands" section of "External Commands" chapter: More options to "ls". 47) Added "Portability Issues" section to "Miscellany" chapter. 48) In "Bibliography": Updated Rick Hohensee assembler link. Added Sheer book listing. 49) Added "Effective Awk Programming", to Bibliography. ====================================================================================== Version 0.4, released 07/09/01 Comments: Complete revision. The document is now the equivalent of a 300-page book. Changes from version 0.3: 1) Substituted Emmanuel Rouat's new, improved Linux-specific .bashrc file for the old one. 2) In "External Filters, Programs, and Commands" section: More info on "sleep". Added "usleep". More info on "diff", with note about using it to recursively compare directories. Added "diff3". Added "sdiff". Added "cmp". Added example using "cmp", and cross referenced it to "exit status". Added "hwclock/clock". Added "locate/slocate". Added "whatis", with example script. Added "whereis". Added "od". Added "unexpand". Added "install". Added "crypt". Added "write". Added "compress/uncompress". Added "gettext". Added "printenv". Added "tput". More info on "fold" (-s option). More info on "patch". More info on "join". More info on "tar". More info on "tr". More info on "dd". More info on "logger". More options for "cat". More options for "cp". Added cautionary note to "tar". Added --count and --invert-match options to "grep". Extra options and code snippets for "find". Using "echo" to feed a command sequence into a pipe and set a variable, with illustrative code snippets. Added subsection for "Terminal Control Commands" (tput, clear, reset, script). Added subsection for "Math Commands" (factor, bc/dc). 3) Moved subsection on "Here Documents" to right after "I/O Redirection" (much more logical). 4) Added more reasons not to use shell scripts. 5) Added info about the "widtools" (widget tools) package to "Assorted Tips" subsection of "Miscellany". 6) Corrected "Born-Again Shell" to "Bourne-Again Shell" (thanks to Jan Svenungson for pointing this out). 7) In "System and Administrative Commands" section: Added "dumpe2fs". Added "tune2fs". Added "fdisk". Added "mke2fs". Added "fsck", "e2fsck", and "debugfs". Added script using "fdisk" and "mke2fs". Added "df". Added "du". Added "mesg". Added tip. Added "procinfo". Added "ac" Added "last" Added "tset" Added "getty" and "agetty". Added "chown/chgrp". Added "useradd/userdel". Added "logrotate". Added "dump/restore". Added "stat". Added "rdist". Added "losetup". Added "lastcomm". Added "mkswap". Added "swapon/swapoff". Added "newgrp". More info on "chroot". More info on "netstat". More info on "ifconfig". More info on "route". More info and example added on "mount". Added note to "umount". Usage example on "lsmod". Removed inappropriate spacing in "wall" listing and added note. 8) In "Internal Commands" section: Added "pstree". Added "type". Added "help". Added footnote on "forking". More info on "kill". Added example to "unset". More options and info added to "read". 9) Additional clarification of "for" loops. 10) Added using C-like syntax in a "for" loop to "Loops" section, with illustrative example. Did the same with a "while" loop. Cross-references to examples in "Miscellany / Assorted Tips" section. 11) Added using command substitution to generate [list] in a "for" loop. Same for a "case" construct. Examples added. 12) In "Variables Revisited" section, added C-type variable manipulation, using the ((...)) construct [Chet Ramey's Easter Egg, actually borrowed from ksh93]. 13) In "Gotchas" section, Added scripts with DOS-type newlines. Added script invoked with "/bin/sh" maybe not fully Bash-compatible. 14) In "Files" section, added ~/.bash_logout. 15) In "Variables Revisited" section, Moved note about certain variables not internal to Bash to a more logical location. Added short note about using /dev/urandom to generate (useless) random numbers. Added $LINENO to internal variables. Added illustrative script ("am-i-root.sh") to "UID" discussion. Fixed "dubugging" typo. 16) In "Bibliography" section, Added four sites for example shell scripts. Added reference to Rick Hohensee's shell-scripted virtual machine + assembler. 17) Added "mail-format.sh" to "Contributed Scripts" appendix. 18) In "Tests" section: Clearer definition of what "test" actually means. Add info about "-g", "-u", and "-k" flags. Clarified examples of "integer tests" (used if [ "$a" XX "$b" ] to illustrate). 19) Fixed syntax error in "ex45.sh" (embarrassing). 20) Added piping the output of a "for" loop to a command. 21) Mention /usr/include/sysexits.h as an attempt at systematizing exit status numbers. 22) Added "string.sh", a "Contrib Script" by Noah Friedman. 23) Alphabetized listing of internal Bash variables in "Variables Revisited" section. It looks more professional now. 24) Added subsection on "Nested Loops" to "Loops" section. Added illustrative example script. 25) Added subsection on "Nested if/then Condition Tests" to "Tests" section. 26) In "Here Documents" section, Added - option. Added passing parameters to body of here document, with examples. Added disabling parameter replacement by quoting or escaping. 27) In "Special Characters" section, Added info on "-" redirection operator. Added quotes (""). Added strong quotes (''). Added escape (\). Added backticks (`). Added using ":" for comment line (not recommended). Added "*". Added "$*" and "$@". Piping the output of command(s) to a script. More info on "!" operator. Annotated Alan Cox's one-liner script. Added "_" (underscore). 28) Reorganized "Loops" section; created new subsection and reshuffled. 29) Added instance of "unset" to when a variable appears "naked" (without the $ prefix). Thanks to Florian Wisser for pointing this out. 30) Rewrote "Command Substitution" section (formerly named "Backticks"). Split off "Arithmetic Expansion" as a separate section, and added material. 31) Added "bc" and "dc" to "External Filters" section, with elegant illustrative script by Heiner Steven. Added more info on "bc", with "monthlypmt.sh" illustrative example. 32) Added new section on "/dev and /proc". Added illustrative examples. 33) Made a number of corrections and clarifications, as pointed out by Heiner Steven. Thanks! Some UNIX flavors take a 4-byte magic number... Too many script headers on one line in "magic number" example listing. Example "ex2.sh", added comment that "> filename" is equivalent to "cat /dev/null > filename". Example "ex2.sh", quoted parameter. Omitting [list] in a "for" loop assumes "$@", rather than "$*". Clarified that a "flag" acts as a semaphore, rather than as a signal. Added comment that {code block} does not launch a subshell to "Special Characters" section. At his suggestion, added a couple of more examples on "~" in "Special Characters" section. Added his "allprofs" script to "Subshells" section (with modifications by HOWTO author). Noted that some substitution operators come from ksh93. Noted that a line of code in a script ending in a pipe character does not require an escape to continue to the next line. Code snippet on how to redirect "read" through an entire file, line by line. Added note that "declare" is Bash-specific. Added code snippet explaining use of $IFS with "read" Added alternate example of redirected "while" loop to "I/O Redirection" section. 34) Added comments to "Subshells" section. 35) In "strip-comments.sh" example script, changed "=" to "-eq" (bugfix). 36) Changed all instances of "white space" to "whitespace" for consistency (picky, picky). 37) Added pitfalls of variables in a subshell with illustrative example to "Gotchas" section. 38) Added using Bash-specific functionality in a Bourne shell script on a generic UNIX machine to "Gotchas" section. 39) Added another example to "List Constructs" section. 40) Added using positional paramters > $9, using {bracket} notation (thanks, Philippe Martin). 41) Added -N and -t file tests to "Tests" section. 42) In "Arrays" section: Added "q-function.sh" (Hofstadter's Q-function) as an illustrative example. Added "twodim.sh" simulation of a two-dimensional array. 43) Added two new entries to "Bibliography" section. 44) Added more info in "Quoting" section. 45) Bugfix: removed an extraneous header from "source/dot" command in "Special Characters" section. 46) Added a caution about confusing REs with "globbing" to "Regular Expressions" section. 47) In "Loops" Section: Added filename "globbing" in for-loop [list]. Added "break N", breaking out of multiple loop levels. Added "continue N", continuing at a higher loop level. Added footnote to "Loop Control Commands" subsection noting that "break" and "continue" are shell builtins. 48) Removed commented-out SGML code for article header. That makes it official that this document is a book. 49) Added new appendix on "Converting DOS Batch Files to Shell Scripts". 50) Added "findstring.sh", illustrative example for generating [list] in a "for" loop with command substitution and for "strings" command in "External Filters, Programs, and Commands" section. 51) More info on "exit status". 52) Added appendix for "Exit Codes With Special Meanings". 53) Added "!" to "Special Characters" section. 54) Added "==" to "Tests" section. 55) Added a couple of examples and more explanation to "Regular Expressions" section. 56) Extra notes on $BASH_VERSION. 57) In "Functions" section: Added directing the stdin of a function, with illustrative example. Added footnote to "return" command, noting that it is a Bash builtin. 58) Added "[[ ]]" construct to "Tests" section. 59) In "bubble.sh", fixed spelling of "Zaire" and changed "Kashmir" to "Kenya" (it was pointed out that Kashmir is not a country). 60) Added "file-info.sh", illustrative example of a variable containing the [list] in a "for" loop. 61) Added a section on "Scripting With Style", stylistic guidelines. * Script and function headers added. * Descriptive names for variables added. 62) Added "copy-cd.sh", a script for copying data CDs, to "Contributed Scripts" appendix. 63) In "Loops" section, separated "Loop Control Commands" ("break" and "continue") into a separate subsection. 64) Added note to "Tests" section that after "if", "test" or test brackets not strictly necessary. Similarly, test brackets do not necessarily require an "if" when used with "list constructions". 65) Once more, checked all the examples for stylistic correctness. 66) In "Variables Revisited" section: Added "random-test.sh", testing the randomness of RANDOM. Added "seeding-random.sh", reseeding the RANDOM generator. 67) Reshuffled some commands into different subsections in "External Filters, Programs, and Commands" section. 68) Added "isalpha.sh" example to "case" constructs in "Loops" section. 69) Added inline example in "Regular Expressions" section. 70) Moved "ex50.sh" from "pr" to "fmt" in "External Filters, Programs, and Commands" section. 71) Added "du.sh" example to "tr" in "External Filters, Programs, and Commands" section. 72) Clarification on ${var#pattern}, ${var%pattern} variable substitution in "Variables" section, and added "patt-matching.sh" example to illustrate. 73) Clarifications on "ex14.sh" example. 74) In "Internal Commands and Builtins", fixed explanation on "getopts" and associated "ex33.sh" to make usage consistent with accepted usage. (Thanks, Ueli Strasser) 75) Fixed typos: ("suppress" --> "suppresses") in "Here Documents section. ("inderect" --> "indirect") in "Variables Revisited" section. "Option" left out in "type" discussion. 76) More on "%" (modulo) operator in "Operations" section. 77) Added "> &FD" and "n<>filename" to "I/O Redirection" section. 78) Fixed bug in "ex2.sh" example (removed "or-list"), and added cautionary not on "or lists". 79) More explanation on meaning of "keyword". Noted that "!" is a keyword. 80) Moved "printf" and "eval" from "External Commands" to "Internal Commands" section. 81) Fixed up some cross-reference links. 82) In "Sha-bang" section: Added footnote with self-deleting script example. Added footnote about invoking script with "sh scriptname" turning off Added footnote about invoking a script with "./scriptname". Bash-specific extensions. Minor cleanups. 83) Cleaned up "filename" referenced. Made references to "stdin" and "stdout" consistent (<filename>). 84) Added footnote about "dotfiles". 85) Noted that "logname" is not exact equivalent to "whoami", with example. Correction: "trap 2" changes to "trap '' 2" in "Debugging" section. Thank you, Nick Drage. 86) Fixed typos pointed out by Hyun Jin Chan. Typo in "ex13.sh". Typo in "ex41.sh". In "Here Documents" section, changed "feeding input into non-interactive programs" to "feeding input into interactive programs". 87) Added footnote about "magic numbers" used in the context hard-wired constants in "Scripting With Style" section. 88) Added "End Notes" chapter, which includes "Author's Note" and "Tool Used to Produce This Book". 89) Added footnote about shell script naming conventions to "Why Shell Programming?" section of Chapter 1. 90) Changed all <errorcode> tags to the more appropriate <returnvalue>. 91) Added info about Korean translation of the document to "Copyright" appendix. 92) Added "${#variable}" construct to "Parameter Substitution" subsection in "Introduction to Variables and Parameters" section, mentioning exceptional cases of "${#*}" and"${#@}". 93) Reorganized "I/O Redirection" section (subdivided into subsections). 94) Reorganized "Functions" section (subdivided into subsections). 95) Added example snippets to "Process Substitution" section. 96) Added Nick Drage's comments to "online.sh" in "Debugging" section. 97) Tidied up "Operations and Related Topics" section. 98) Fixed typos in "ex79.sh" ("suite" -> "suit"). 99) Fixed other minor typos in the document. 100) Stéphane Chazelas sent in long lists of corrections and suggestions. Bug fixes, improvements, and comments on "ex2.sh" example. Bug fixes and improvements to "ex3.sh" example. Improvement on "ex4.sh", "ex5.sh", and "ex14.sh" examples. Suggestion for "col-totaler.sh" example. Code snippet on use of "case" for parsing command-line args. In "brace expansion" discussion, pointed out that spaces permitted when quoted or escaped. Improved "ex8.sh" to read more than one line (more useful as an example). Resolve ambiguity about "-", which is not a Bash operator. Suggested workarounds for filenames starting with "-" used with "-" redirection operator. Added safer alternatives to "ex58.sh". In "Why Shell Programming?" section, modified footnote to state that user-written scripts with ".sh" extension should be Bourne shell compliant. In "Command Substitution" section: Added notes. Added explanation in code snippet on command output. Note that newline deletion may result from word splitting. Added example snippets of trailing newline deletion. In "Special Characters" section: Fixed typo at beginning of "#" (comment) listing. Added note about "#" not denoting a comment in certain constructs. "${parameter?err_msg}, ${parameter:?err_msg}" Added note that non-interactive script exits with code 127. Added note about escaping "#" in echo statements. Added caution about variable value starting with "-n". More on "~" expansion. Changed "noclobber" environmental variable (obsolete) to option. Added "array initialization" to "()" listing. Added notes to "brace expansion". Added notes and made corrections to "ex6.sh" example. Added note and example demonstrating that a code block in braces may run as a subshell. Clarification on "pipes". Note on Alan Cox's directory copy method. Noted that ":" is a shell builtin. Noted that ": >>" applies only to regular files. Fixed error about "code block" { ... }. Added note about variables defined within (...) not being visible to rest of script. Fixed error on "{}\" construct, and added note. Change to "uppercase.sh" in-line example. Added "{#array}" as string length of first element of array. Added cautionary note about reserved exit status codes to "Exit Status" section. In "Variables" section: Added comments and clarifications to "ex7.sh". Added comments and clarifications to "ex9.sh". Added info per his comments on the $'...' string expansion construct. In "Quoting" section: Added more examples of escaping a newline in variable assignment. Clarified and corrected info about quoting variables "echoed", with Added illustrative examples. Replaced flawed example snippet ("bash$ echo [Ff]irst") Fixed bug, changed ' to ` in referencing within double quotes. Clarified and corrected "toggling on" special meanings of characters by escaping. In "Tests" section: Added detailed explanation about "if/then" construct, "[", and "test". Added clarification about "[", "[[" , and "test". Added arithmetic tests using "(( ))". Added notes to "ex10.sh" example. Clarification on "ex12.sh", and moved it to "External Filters..." section. Pointed out that one should always quote a string being tested. Clarified what happens when erroneously putting a space in an assignment statement. Added example on using arithmetic operations (arithops.sh). Clarification and corrections on "-t" test option. Clarification on "-r" test option. Clarification on "-w" test option. Clarification on "-g" test option. Clarification on "-u" test option. Clarification on "-k" test option. Clarification on "-n" test option. Clarification on "str-test.sh" example. Clarification and example on "==". Clarification on pattern matching with "!=". Clarification on "&&" and "||" comparison operators. Fixup on "arith-tests.sh" example. Clarification and corrections on "ex14.sh" example. In "Operations" section: Fixed "=" in-line example. Fixed "+=" and "*=" example snippets. Fixed typo: 'if "Xstring1" = "Xstring2" ] is safer,'. Retitled subsections to avoid reader confusion. Added example snippet on using "&&" and "||" in an arithmetic context. Added note to "arith-ops.sh". Added note to "and-or.sh". Fixed typo (lost space) in in-line "&&" example. Clarified "numbers.sh" example. Clarification on "&&" and "||". In "Variables Revisited" section: More clarifications and example snippets + "ifs.sh" example for "$IFS". Clarified use of "$PATH" variable. Cleared up confusion on "$PPID". Cleared up confusion on "$@". Added "incompat.sh" and "ifs-empty.sh" examples on inconsistent "$*" and "$@" behavior. Plugged a possible hole in "wipedir.sh" example script and added comments. Added "timeout.sh", another example of timed input. Explanation (footnote) on environmental variables. Explanation (footnote) on parameter $0. Corrected "declare -f" listing. Clarification on "ind-ref.sh" example. Clarification on $SHELL variable. Clarification on $HOSTNAME variable. Added "col-totaler2.sh" as an example of indirect references. Fixed typo "that that". Fixup on "ex17.sh". Fixup on "ex20.sh". Added comment to "ex21.sh". In "Loops" section: Fixed error: semicolon *after* [list]. Additional clarification in "ex22a.sh" example. Quoted arguments in [list] in for-loop illustration. Removed reference to REs in filename globbing. Fixup and note added to "list-glob.sh" example. Added note to "bin-grep.sh" example. Added note to "ex24.sh" example. Correction on "ex26a.sh" example. In "case" constructs: Noted that variable quoting not mandatory. Corrected and clarified comment in command line parameter testing. Changed "regular expression" filtering to "globbing" filtering. Improved "isalpha.sh" example. In footnote, cleared up some confusion about builtins. Moved 'basename', 'dirname', and 'factor' from "Internal Commands" to "External Filters, Programs, and Commands" section. Minor clarification on "read-redir.sh" example. Alternatives added to "realname.sh" example. In "Internal Commands and Builtins" section: Corrections on "ps", "suspend", "command", and "builtin". Moved "echo", "cd", and "let" here from "External Commands" section. Note on "echo" deleting linefeeds in command output. Added in-line examples for "echo". Correction on "find" (-exec). Added "col-totaler3.sh" as an example of using "export" to pass a variable to an embedded awk script. Removed "stop" (how the heck did a "csh" command sneak in?). Removed "." from examples of builtins. Minor fixup on "ex33.sh" example. Added cautionary note on "eval". Added examples ("rot13_2.sh") to "eval". Added long note to "jobs" command clarifying difference between jobs and processes. Added in-line example on "printf". Clarified "keyword" definition. Fixed typos in "read" and "find" command subsections. In "External Filters, Programs, and Commands" section: Clarifications on "chmod" and "chattr". Added alternative method in "ex57.sh" example. Clarification on "ex42.sh" example. Clarification on "ex44.sh" example. Clarification on "ex45.sh" example. Option "-c" to "uniq" discussed. Correction on "cut". Clarification on "colrm". Clarification on "join". Clarification on "head", and added example "rnd.sh". Concise form of "lookup.sh". Clarification on "gs". Added notes on "wc" (and fixup of example). At "grep": Additional minor fixups. Note in "grp.sh" script. Added usage examples for "-c" and "-z" options. Added note on "time" about it becoming a reserved word. Clarification and corrections on "tr". Clarification in "ex49.sh" and "rot13.sh". Added alternative code to "lowercase.sh". Added note to "fmt" about Kamil Toman's "par" utility. Added note to "line-number.sh" script about '-ba' option to 'nl'. Clarification and fixup on "pr". Added note to "zcat". Added alternative code to "strip-comments.sh". Fixed "lp". Added two usage examples for "yes". Added altenative methods to "find" in-line example. Fixed format in "cat/tac" in-line example. Added long note to "xargs". Added note to "touch", and link from ":" in "Special Characters" section. Fixup on "zcat" in "gzip" subsection, and fixed typo there. At "dd": Added usage examples". Fixed comments "dd-keypress.sh". Fixed typo on "grep". Explanatory note on "-maxdepth" option for "grep". In "System Commands" section: Moved "shopt" to "Internal Commands and Builtins". More info on "who". Correction and clarification on "hostname". More info on "env". Added "lsof". Clarification on "pidof". Moved "exec" to "Internal Commands and Builtins" and made some corrections in the commentary. Using "stty" to detect keypress, with illustrative example. Fixup on "chgrp". Fixup on "nice". Fixup on "sync". Added "createfs" example to illustrate "losetup". At "stty", added long sidebar explaining canonical mode in terminals. Fixup and additional illustrations on example. Additional commentary on "ifconfig" code snippets. Clarifications in "Arithmetic Expansion" section. In "I/O Redirection" section: Added note to "redir1.sh" example. Added note to "redir2.sh" example. Clarifications and notes added on "redir2a.sh", "redir3.sh", "redir4.sh", and "redir5.sh" examples. Added ": >" file truncation note. Added examples (programlisting) of word splitting. Added example of newline deletion. Fixups (removed extraneous spaces in redirection operators in example snippets). Added alternative forms of operators that close file descriptors. Added note and code snippet to "Closing File Descriptors" subsection. Added "logevents.sh" example of using redirection operations in event logging. Added example snippet for "[j]<>filename". In "Gotchas" section: Fixed errors in using bad variable names. Stylistic notes added. Added note about attempting to use "-" as redirection operator. Added notes and in-line example snippets about mixing up "=" and "-eq". Correction on making script "suid". Corrections and explanatory notes in "Regular Expressions" section. Notes about "+" and curly brackets in "gawk". Note and example ("newline.sh") about using "." to match newlines. Footnote about matching dotfiles with globbing. In "Subshells" section: Fixup on in-line example. Added example of subshell redirection. Setting up a "dedicated environment" for a command group. Added comment to code snippet illustrating parallel processes. Added note about I/O redirection to subshells. In "Functions" section: Fix up and elaborate "ex60.sh" example. Example ("ref-params.sh") of passing reference parameters to functions. Comments and example on recursion. Note and example snippet on declaring functions before calling them. Note and example snippet on nested function. Note and example snippet on function declarations in unlikely places. Note and example snippet on using dedicated variables for return values. Note and example snipptets on an alternative method of redirecting the stdin of a function. In "List Constructs" section: Note and example snippets on operator precedence in compound statements. In "Arrays" section: Added notes to "ex67.sh". Added alternative implementation to "ex68.sh". Added notes and example snippet on ${xxx[@]} and ${xxx[*]} notation. Added notes to "twodim.sh" example. Added "{#array}" as string length of first element of array. Added "empty-array.sh" example. In "Files" section, clarification on "/etc/profile". In "Exit and Exit Status" section, added clarifying notes in in-line example. In "Here Documents" section: Added note to "ex71.sh". Fixup on "ex71c.sh". Added note and example on "anonymous here documents". Removed caution about pagers not working in a here document. Added note about temporary files used by here documents. In "Zeroes and Nulls" section, added note about ": >" alternate to "cat /dev/null >". In "Process Substitution" section: Fixed error in note about not leaving space between ">(command)". Changed "(command)>" to correct ">(command)". Added example snippets. In "Debugging" section: Added commentary after "test24, another buggy script". Correction on "exit" sending signal 0. Added note and example ("vartrace.sh") in trapping discussion. Notes added to "online.sh". In "Miscellany" section: Added using "[[ ]]" and "(( ))" in comparisons. Corrections in discussion of interactive shells, plus illustrative example. In "Contributed Scripts" appendix: Added "primes.sh" to demonstrate that arrays are not need to generate prime numbers. Added comments to "manview.sh" Added comment to "tree.sh" Added "obj-oriented.sh" example of object-oriented programming in a script. Fixed error in comment in "pw.sh" Notes on "string.sh". In "Sed and Awk Micro-Primer" section, corrections, clarifications, additions, and more examples. In "Sample .bashrc File" appendix, correction pointing out that only interactive shells read ".bashrc". In "Sha-Bang" section: Added note about the "#!" line being interpreted as a comment by the command interpreter. Added note about script needing read, as well as execute permission. Added note about starting a "README" file with "#!/bin/more". In "/dev and /proc" section: Added note that /dev/sndstat has been eliminated as of the 2.3 kernel. Clarification on virtual devices. Simplified code snippets illustrating "extracting data" from /proc files. Noted that /dev is not a filesystem. Added commentary to "pid-identifier.sh" example. Fixed error in footnote: entries in /dev do take up some space. In "Options" section: Clarified "-c" option. Added note to "-u" option. Fixed typo (--arg1arg2) on "--" (changed to "-- arg1 arg2") In "Converting DOS Batch Files" section: Removed unnecessary variable from "viewdata.sh" example. Fixups on tables of DOS batch file / shell script equivalents. In "Scripting With Style" section: Fixup on example script. Noted that "exit status" of a script is available to the parent process of that script, not necessarily the shell. Rewritten version of "example 3-2". Added "A Detailed Introduction to I/O Redirection" appendix. Added "Localization" appendix. Made corrections. ====================================================================================== Version 0.3, released 02/12/01 Comments: Another major improvement. The HOWTO is nearly book length, still evolving toward becoming a GUIDE. Changes from version 0.2: 1) Fixed: Renamed Example A-2 in Appendix A (Contributed Scripts appendix) to "encryptedpw". It had previously been named "manview", duplicating the title of Example A-1. 2) In Chapter 1, the reader is now advised to use the example scripts (something-or-other.sh), as an alternative to laboriously cutting-and-pasting from rendered HTML. 3) In "Special Characters" section, added brace expansion {xxx,yyy,zzz...}. 4) Deleted the erroneous statement that the "set -r" option cannot be invoked from within a script. 5) Added section for "restricted shells" with additional info. 6) Added a couple of script options. 7) Fixed minor bug in code snippet in "Interactive Scripts" section. 8) More info on interactive scripts. 9) Fixed an error confusing '$#' with '$*' in "Loops" section and in ex23.sh. 10) Added Antek Sawicki's random password script in contrib scripts. In "External Filters, Programs, and Commands" section: ------------------------------------------------------ 11) More accurately described the "{} \;" arguments to "find" command. Thanks to Jim Van Zandt for pointing this out. 12) Added note to "xargs" that "echo" is default command. Again thanks to Jim Van Zandt. 13) Fixed error claiming "diff" needs sorted files. Jim Van Zandt again. 14) Cleared up ambiguity about "colrm". 15) More info on "umask" and corrections. 16) Added "mkfifo". ------------------------------------------------------ 17) Added cross-reference on "&&". 18) Added cross-reference to embedded sed script. 19) Added example of embedded awk script (col-totaler.sh). 20) Fixed clumsy wording in sed and awk description. 21) Added "su" to "System and Administrative Commands" section. 22) Added Jim Van Zandt's "daily backup" example script to "Contrib-Scripts" appendix. 23) Enhanced example 66 (ex66.sh) on arrays with more methods of initializing array variables. 24) Corrected "Siever" entry in bibliography. 25) Added Jordi Sanfeliu's "tree" script to "Contrib-Scripts" appendix. 26) Added Robbins' "Bash Reference Card" to bibliography. 27) Added reference to Duarte's sed tutorial in bibliography. 28) Added "rn.sh", file rename utility to "Contrib-Scripts" appendix. 29) Added "initializing multiple variables on same line" to ex9.sh. 30) Fixed title on "ex52.sh". 31) Added a case when not to use shell scripts, in intro. 32) Added shell script as embedded command in another script, Tcl or wish script, etc. to "Miscellany / Assorted Tips" section. 33) Added download link for latest version of document to intro. 34) Added "id" to "System and Administrative Commands" section. 35) Added "stty" to "System and Administrative Commands" section. 36) Added "strip-comments.sh" example to illustrate "file" command, and "rot13.sh" example to "tr" command, in "External Filters" section. 37) Added "modular approach" sidebar to Chapter 2, section 1. 38) Added example cross-references to use of REs in scripts by sed, awk, and Perl. 39) More info and clarification on command substitution and arithmetic expansion in "Backticks" section. 40) Corrected "Bibliography" section entry for Ben Okopnik's introductory Bash scripting articles in "Linux Gazette". 41) Added "Bibliography" section entries for "Bash-Prompt HOWTO" and "Bash-Programming-Intro HOWTO". 42) Added $OLDPWD, $BASH_VERSION, $DIRSTACK, $HOSTNAME, $PPID, $MACHTYPE, $HOSTTYPE, $OSTYPE, $UID, $EUID, $SHELLOPTS, $IGNOREEOF, and $GROUPS to internal Bash variables in "Variables Revisited" section. 43) Added info on the "-" operator (may also be interpreted as "old working directory", depending on context). 44) Added collecting favorite definitions and functions into "library file" to "Miscellany / Assorted Tips" section. 45) Added cross reference from "dot" command to "source", later on in tutorial. 46) In "Special Characters" section, noted that a command may not follow a comment on the same line. 47) Added section on "Aliases", including two example scripts. 48) Added discussion of "for" loops with multiple parameters in each [list] element to "Loops Section". 49) Added discussion of "while" loops with multiple conditions to "Loops Section". 50) Added cross-reference to mention of "getopts" in "while loops" discussion. 51) Added cross-reference on "exec" in "System and Administrative Commands" section back to use of "exec" in "find" command sequence in "External Filters, Programs, and Commands" section. Added other cross-references in this section. 52) Added footnote about fd 5 being reserved to "I/O Redirection" section. 53) Additional discussion in "I/O Redirection" section. 54) Added using "exec" to redirect stdin to "I/O Redirection" section. 55) Added "redir1.sh", example of I/O redirection using "exec". 56) Added "redir2.sh", example of I/O redirected "while" loop. 57) Added "redir3.sh", example of I/O redirected "until" loop. 58) Added "redir4.sh", example of I/O redirected "for" loop. 59) Added "redir5.sh", example of I/O redirected "if/then" test. 60) Added "wipedir.sh" example to $PWD listing in "Variables Revisited" section. 61) More cross-references in "I/O Redirection" section. 62) Added "grp.sh", 'grep' emulation script, after 'grep' listing in "External Filters, Programs and Commands" section. 63) Added "nice", "arch", "users" , "logname", "dmesg", "groups", "hostname", and "pidof" to "System and Administrative Commands" section. 64) Added "bzip2", "sq", "rev", "strings", "pathchk" and references to "egrep", "fgrep" , "groff, gs, TeX", "column", "look", "ptx", "chattr", "cal", "nslookup", "traceroute", "dig", "rx/sx", "rz/sz", "uucp", and "sum, cksum, md5sum" to "External Filters, Programs and Commands" section. Also added illustrative examples for "column" and "look". 65) Added bibliography entries for GNU "gawk" reference manual and "groff" tutorial. Also for I/O reference on UAlberta site. 66) Added cross-references to script examples to "zcat" and "mv" commands" in "External Filters, Programs and Commands" section. 67) Clarification on [ -n $string ] string test operator. Added illustrative example (str-test.sh). 68) Added "lp" and related commands to "External Filters, Programs and Commands" section. 69) Added double-quoting variables to "Gotchas" section. 70) Added more xrefs to examples in "Variables Revisited" section. 71) Added "PS3" and "PS4" to "Variables Revisited" section. 72) Added enabling script options from #! header to "Options" section. 73) Added double backslash (\\) to "Quoting" section. 74) Added "Sed and Awk Micro-primer" appendix. 75) Fuller explanation of differences between "$*" and "$@" in "Variables Revisited" section. Also added example to illustrate this, "arglist.sh". 76) More cross-references to examples in "System and Administrative Commands" section. 77) Added more detail to description of $PATH, in "Variables Revisited" section. 78) Added more detail to "Files" section. 79) Added "command", "enable", , "builtin", "host", and "vrfy" to "Internal Commands and Builtins" section. 80) Moved "umask" from "External Filters, Programs, and Commands" to "System and Administrative Commands" section. 81) Rearranged the entries in "External Filters, Programs and Commands" in somewhat more logical order and subdivided the section into logical subsections. 82) Moved discussion of embedded Perl scripts from "System and Administrative Commands" section to "Shell Wrappers" subsection. 83) Added example .bashrc file, thanks to Emmanuel Rouat. 84) Many minor changes not listed above. ==================================================================== Version 0.2, released 10/30/00. Comments: This is a major improvement over 0.1. Changes from version 0.1: Bugfixes 1) fixed if [ cond1 && cond2 ] ==> if [ cond1 ] && [ cond2 ] if [ cond1 || cond2 ] ==> if [ cond1 ] || [ cond2 ] Added -a and -o options if [ cond1 -a cond2 ] if [ cond1 -o cond2 ] Added 'and-or.sh' as new example to illustrate && and ||. 2) Corrected ex6.sh, added $'s in front of {USER?} and {MAIL?}, and added additional explanatory material. 3) Noted that "-" is not a bash option. Other changes 4) ex55.sh: added note that 'killall' is Red Hat specific 5) Added to 'Gotchas': interchanging -eq and = starting variables with a digit 6) Substituted for Samuel Johnson quote at beginning: "...there are dark corners in the Bourne shell, and people use all of them." --Chet Ramey 7) Added reference to /usr/doc/initscripts-X.XX/sysconfig.txt just after ex. 3-52. 8) Added reference to 'nl' in "External Filters" section and illustrative example. 9) Added material to 'cat' listing. 10) Added: cd source-directory tar cf - . | (cd ../target-directory; tar xzf -) to Alan Cox example as an alternative. 11) Added material & example to {} 12) Added "Renaming file extensions" example to pattern matching section. 13) Added "Bash F.A.Q." and "sed F.A.Q." to references. 14) Added missing line in "Tests" section. 15) Revised the 'abstract'. 16) Added <revhistory> element. 17) Reorganized: Moved two examples placed erroneously in 'backticks' section to where they belong. 18) Fleshed out section on 'subshells'. Added 2 examples. 19) Rewrote text to first 'variables' section. 20) Added "rpm-check.sh" example to "code blocks" discussion. 21) Added "online.sh" example to "trap" discussion. 22) Expanded "I/O Redirection" section Definition of 'file descriptor' added. More on file descriptors 3 - 9. 23) Expanded "Regular Expression" section. 24) Added explanation of signals to "debugging" section. 25) Added SECONDS and REPLY to internal variables listing (plus illustrative examples). 26) Added 'ulimit' to administrative commands listing. 27) Added more information on 'trap' in 'Debugging' section. 28) Fixed erroneous '==' reference in 'Variables Revisited section. 29) Added 'jobs', 'ps', and 'nohup' to 'Administrative Commands' section. 30) Added additional entries to file tests in 'Tests' section. 31) Added additional entries and much more detail in 'Options' section. 32) More detail on 'grep'. 33) More detail on 'export'. 34) Added entries to file and string tests. 35) Added 'uptime' to 'System and Administrative Commands' section. 36) Added '~' to 'Special Characters' section. 37) Added material to 'Backquotes' section. 38) Added 'which' to 'External Filters and Commands' section. 39) More detail on parameters to functions. 40) More detail on arrays. 41) More detail on 'at'. 42) More detail on $RANDOM. Expanded example. 43) Added example script to demonstrate timed input. 44) Added 'Representation of Numerical Constants' subsection to 'Operations' section. 45) Added "eval var1=\$$var2" indirect reference notation to 'Variables Revisited' section. 46) Reorganized: Moved 'Parameter Substition' discussion from 'Special Characters' section to 'Variables' section. Added extra illustrative code snippets. 47) Added bubble sort example to 'Arrays' section. 48) Added %= operator to 'Operations' section. 49) Added reference to 'whoami' to 'System and Administrative Commands' section. 50) More detail and an additional example for 'Quoting' section. 51) Added info on using pattern match operator, ${var/patt/}, for deletion. 52) More detail on 'touch' and 'read' in 'External Filters'. 53) More detail on 'null' operator (:). 54) Some of the preexisting examples revised, with more material. 55) 'Miscellany' section added. subsection 'Interactive Scripts' subsection 'Optimizations' subsection 'Assorted Tips' 56) Contrib script section added. 4 scripts so far. 57) Expanded 'Credits' section. 58) Many other corrections, minor changes, and additions. ==================================================================== Version 0.1 released 14 June, 2000. |
Added CopyArray.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 | #! /bin/bash # CopyArray.sh # # This script written by Michael Zick. # Used here with permission. # How-To "Pass by Name & Return by Name" #+ or "Building your own assignment statement". CpArray_Mac() { # Assignment Command Statement Builder echo -n 'eval ' echo -n "$2" # Destination name echo -n '=( ${' echo -n "$1" # Source name echo -n '[@]} )' # That could all be a single command. # Matter of style only. } declare -f CopyArray # Function "Pointer" CopyArray=CpArray_Mac # Statement Builder Hype() { # Hype the array named $1. # (Splice it together with array containing "Really Rocks".) # Return in array named $2. local -a TMP local -a hype=( Really Rocks ) $($CopyArray $1 TMP) TMP=( ${TMP[@]} ${hype[@]} ) $($CopyArray TMP $2) } declare -a before=( Advanced Bash Scripting ) declare -a after echo "Array Before = ${before[@]}" Hype before after echo "Array After = ${after[@]}" # Too much hype? echo "What ${after[@]:3:2}?" declare -a modest=( ${after[@]:2:1} ${after[@]:3:2} ) # ---- substring extraction ---- echo "Array Modest = ${modest[@]}" # What happened to 'before' ? echo "Array Before = ${before[@]}" exit 0 |
Added Draw-box.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 | #!/bin/bash # Draw-box.sh: Drawing a box using ASCII characters. # Script by Stefano Palmeri, with minor editing by document author. # Minor edits suggested by Jim Angstadt. # Used in the ABS Guide with permission. ###################################################################### ### draw_box function doc ### # The "draw_box" function lets the user #+ draw a box in a terminal. # # Usage: draw_box ROW COLUMN HEIGHT WIDTH [COLOR] # ROW and COLUMN represent the position #+ of the upper left angle of the box you're going to draw. # ROW and COLUMN must be greater than 0 #+ and less than current terminal dimension. # HEIGHT is the number of rows of the box, and must be > 0. # HEIGHT + ROW must be <= than current terminal height. # WIDTH is the number of columns of the box and must be > 0. # WIDTH + COLUMN must be <= than current terminal width. # # E.g.: If your terminal dimension is 20x80, # draw_box 2 3 10 45 is good # draw_box 2 3 19 45 has bad HEIGHT value (19+2 > 20) # draw_box 2 3 18 78 has bad WIDTH value (78+3 > 80) # # COLOR is the color of the box frame. # This is the 5th argument and is optional. # 0=black 1=red 2=green 3=tan 4=blue 5=purple 6=cyan 7=white. # If you pass the function bad arguments, #+ it will just exit with code 65, #+ and no messages will be printed on stderr. # # Clear the terminal before you start to draw a box. # The clear command is not contained within the function. # This allows the user to draw multiple boxes, even overlapping ones. ### end of draw_box function doc ### ###################################################################### draw_box(){ #=============# HORZ="-" VERT="|" CORNER_CHAR="+" MINARGS=4 E_BADARGS=65 #=============# if [ $# -lt "$MINARGS" ]; then # If args are less than 4, exit. exit $E_BADARGS fi # Looking for non digit chars in arguments. # Probably it could be done better (exercise for the reader?). if echo $@ | tr -d [:blank:] | tr -d [:digit:] | grep . &> /dev/null; then exit $E_BADARGS fi BOX_HEIGHT=`expr $3 - 1` # -1 correction needed because angle char "+" BOX_WIDTH=`expr $4 - 1` #+ is a part of both box height and width. T_ROWS=`tput lines` # Define current terminal dimension T_COLS=`tput cols` #+ in rows and columns. if [ $1 -lt 1 ] || [ $1 -gt $T_ROWS ]; then # Start checking if arguments exit $E_BADARGS #+ are correct. fi if [ $2 -lt 1 ] || [ $2 -gt $T_COLS ]; then exit $E_BADARGS fi if [ `expr $1 + $BOX_HEIGHT + 1` -gt $T_ROWS ]; then exit $E_BADARGS fi if [ `expr $2 + $BOX_WIDTH + 1` -gt $T_COLS ]; then exit $E_BADARGS fi if [ $3 -lt 1 ] || [ $4 -lt 1 ]; then exit $E_BADARGS fi # End checking arguments. plot_char(){ # Function within a function. echo -e "\E[${1};${2}H"$3 } echo -ne "\E[3${5}m" # Set box frame color, if defined. # start drawing the box count=1 # Draw vertical lines using for (( r=$1; count<=$BOX_HEIGHT; r++)); do #+ plot_char function. plot_char $r $2 $VERT let count=count+1 done count=1 c=`expr $2 + $BOX_WIDTH` for (( r=$1; count<=$BOX_HEIGHT; r++)); do plot_char $r $c $VERT let count=count+1 done count=1 # Draw horizontal lines using for (( c=$2; count<=$BOX_WIDTH; c++)); do #+ plot_char function. plot_char $1 $c $HORZ let count=count+1 done count=1 r=`expr $1 + $BOX_HEIGHT` for (( c=$2; count<=$BOX_WIDTH; c++)); do plot_char $r $c $HORZ let count=count+1 done plot_char $1 $2 $CORNER_CHAR # Draw box angles. plot_char $1 `expr $2 + $BOX_WIDTH` $CORNER_CHAR plot_char `expr $1 + $BOX_HEIGHT` $2 $CORNER_CHAR plot_char `expr $1 + $BOX_HEIGHT` `expr $2 + $BOX_WIDTH` $CORNER_CHAR echo -ne "\E[0m" # Restore old colors. P_ROWS=`expr $T_ROWS - 1` # Put the prompt at bottom of the terminal. echo -e "\E[${P_ROWS};1H" } # Now, let's try drawing a box. clear # Clear the terminal. R=2 # Row C=3 # Column H=10 # Height W=45 # Width col=1 # Color (red) draw_box $R $C $H $W $col # Draw the box. exit 0 # Exercise: # -------- # Add the option of printing text within the drawn box. |
Added Du.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 | #!/bin/bash # Du.sh: DOS to UNIX text file converter. E_WRONGARGS=85 if [ -z "$1" ] then echo "Usage: `basename $0` filename-to-convert" exit $E_WRONGARGS fi NEWFILENAME=$1.unx CR='\015' # Carriage return. # 015 is octal ASCII code for CR. # Lines in a DOS text file end in CR-LF. # Lines in a UNIX text file end in LF only. tr -d $CR < $1 > $NEWFILENAME # Delete CR's and write to new file. echo "Original DOS text file is \"$1\"." echo "Converted UNIX text file is \"$NEWFILENAME\"." exit 0 # Exercise: # -------- # Change the above script to convert from UNIX to DOS. |
Added HTML/aboutauthor.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >About the Author</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Endnotes" HREF="endnotes.html"><LINK REL="PREVIOUS" TITLE="Endnotes" HREF="endnotes.html"><LINK REL="NEXT" TITLE="Where to Go For Help" HREF="wherehelp.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="endnotes.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 38. Endnotes</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="wherehelp.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="ABOUTAUTHOR" ></A >38.2. About the Author</H1 ><FONT COLOR="RED" >Who is this guy anyhow?</FONT ><P ><A NAME="NOCREDS" ></A >The author claims no credentials or special qualifications, <A NAME="AEN21292" HREF="#FTN.AEN21292" >[1]</A > other than a compulsion to write. <A NAME="AEN21295" HREF="#FTN.AEN21295" >[2]</A > </P ><P >This book is somewhat of a departure from his other major work, <A HREF="http://bash.deta.in/hmw60.zip" TARGET="_top" > HOW-2 Meet Women: The Shy Man's Guide to Relationships</A >. He has also written the <A HREF="http://tldp.org/HOWTO/Software-Building-HOWTO.html" TARGET="_top" >Software-Building HOWTO</A >. Of late, he has been trying his (heavy) hand at fiction: <A HREF="http://bash.deta.in/dave-dawson-over-berlin.epub" TARGET="_top" >Dave Dawson Over Berlin (First Installment)</A > <A HREF="http://bash.deta.in/dave-dawson-over-berlin.II.epub" TARGET="_top" >Dave Dawson Over Berlin (Second Installment)</A > and <A HREF="http://bash.deta.in/dave-dawson-over-berlin.III.epub" TARGET="_top" >Dave Dawson Over Berlin (Third Installment)</A > . He also has a few <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Instructables</I ></SPAN > (<A HREF="http://www.instructables.com/id/Arduino-Morse-Code-Shield/" TARGET="_top" >here</A >, <A HREF="http://www.instructables.com/id/Haywired-Hackduino/" TARGET="_top" >here</A >, <A HREF="http://www.instructables.com/id/Arduino-DIY-SD-Card-Logging-Shield/" TARGET="_top" >here</A >, <A HREF="http://www.instructables.com/id/Binguino-An-Arduino-based-Bingo-Number-Generato/" TARGET="_top" >here</A >, <A HREF="http://www.instructables.com/id/The-Raspberry-Pi-Lapdock-Connection/" TARGET="_top" >here</A >, <A HREF="http://www.instructables.com/id/The-Raspberry-Pi-Arduino-Connection/" TARGET="_top" >here</A >, and <A HREF="http://www.instructables.com/id/Switchable-Dual-Voltage-33v5v-Hacduino/" TARGET="_top" >here</A > to his (dis)credit.</P ><P >A Linux user since 1995 (Slackware 2.2, kernel 1.2.1), the author has emitted a few software truffles, including the <A HREF="http://ibiblio.org/pub/Linux/utils/file/cruft-0.2.tar.gz" TARGET="_top" >cruft</A > one-time pad encryption utility, the <A HREF="http://ibiblio.org/pub/Linux/apps/financial/mcalc-1.6.tar.gz" TARGET="_top" >mcalc</A > mortgage calculator, the <A HREF="http://ibiblio.org/pub/Linux/games/amusements/judge-1.0.tar.gz" TARGET="_top" >judge</A > Scrabble® adjudicator, the <A HREF="http://ibiblio.org/pub/Linux/libs/yawl-0.3.2.tar.gz" TARGET="_top" >yawl</A > word gaming list package, and the <A HREF="http://bash.deta.in/qky.README.html" TARGET="_top" >Quacky</A > anagramming gaming package. He got off to a rather shaky start in the computer game -- programming FORTRAN IV on a CDC 3800 (on paper coding pads, with occasional forays on a keypunch machine and a Friden Flexowriter) -- and is not the least bit nostalgic for those days.</P ><P >Living in an out-of-the-way community with wife and orange tabby, he cherishes human frailty, especially his own. <A NAME="AEN21318" HREF="#FTN.AEN21318" >[3]</A > </P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21292" HREF="aboutauthor.html#AEN21292" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >In fact, he has no credentials or special qualifications. He's a school dropout with no formal credentials or professional experience whatsoever. None. Zero. Nada. Aside from the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >ABS Guide</I ></SPAN >, his major claim to fame is a First Place in the sack race at the Colfax Elementary School Field Day in June, 1958.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21295" HREF="aboutauthor.html#AEN21295" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Those who can, do. Those who can't . . . get an MCSE.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21318" HREF="aboutauthor.html#AEN21318" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Sometimes it seems as if he has spent his entire life flouting conventional wisdom and defying the sonorous Voice of Authority: <SPAN CLASS="QUOTE" >"<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Hey, you can't do that!</I ></SPAN >"</SPAN ></P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="endnotes.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="wherehelp.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Endnotes</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="endnotes.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Where to Go For Help</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/aliases.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Aliases</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Recursion Without Local Variables" HREF="recurnolocvar.html"><LINK REL="NEXT" TITLE="List Constructs" HREF="list-cons.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="recurnolocvar.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="list-cons.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="ALIASES" ></A >Chapter 25. Aliases</H1 ><P ><A NAME="ALIASREF" ></A ></P ><P >A Bash <I CLASS="FIRSTTERM" >alias</I > is essentially nothing more than a keyboard shortcut, an abbreviation, a means of avoiding typing a long command sequence. If, for example, we include <B CLASS="COMMAND" >alias lm="ls -l | more"</B > in the <A HREF="sample-bashrc.html" ><TT CLASS="FILENAME" >~/.bashrc</TT > file</A >, then each <TT CLASS="USERINPUT" ><B >lm</B ></TT > <A NAME="AEN18669" HREF="#FTN.AEN18669" >[1]</A > typed at the command-line will automatically be replaced by a <B CLASS="COMMAND" >ls -l | more</B >. This can save a great deal of typing at the command-line and avoid having to remember complex combinations of commands and options. Setting <B CLASS="COMMAND" >alias rm="rm -i"</B > (interactive mode delete) may save a good deal of grief, since it can prevent inadvertently deleting important files.</P ><P >In a script, aliases have very limited usefulness. It would be nice if aliases could assume some of the functionality of the <B CLASS="COMMAND" >C</B > preprocessor, such as macro expansion, but unfortunately Bash does not expand arguments within the alias body. <A NAME="AEN18676" HREF="#FTN.AEN18676" >[2]</A > Moreover, a script fails to expand an alias itself within <SPAN CLASS="QUOTE" >"compound constructs,"</SPAN > such as <A HREF="tests.html#IFTHEN" >if/then</A > statements, loops, and functions. An added limitation is that an alias will not expand recursively. Almost invariably, whatever we would like an alias to do could be accomplished much more effectively with a <A HREF="functions.html#FUNCTIONREF" >function</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="AL" ></A ><P ><B >Example 25-1. Aliases within a script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # alias.sh 3 4 shopt -s expand_aliases 5 # Must set this option, else script will not expand aliases. 6 7 8 # First, some fun. 9 alias Jesse_James='echo "\"Alias Jesse James\" was a 1959 comedy starring Bob Hope."' 10 Jesse_James 11 12 echo; echo; echo; 13 14 alias ll="ls -l" 15 # May use either single (') or double (") quotes to define an alias. 16 17 echo "Trying aliased \"ll\":" 18 ll /usr/X11R6/bin/mk* #* Alias works. 19 20 echo 21 22 directory=/usr/X11R6/bin/ 23 prefix=mk* # See if wild card causes problems. 24 echo "Variables \"directory\" + \"prefix\" = $directory$prefix" 25 echo 26 27 alias lll="ls -l $directory$prefix" 28 29 echo "Trying aliased \"lll\":" 30 lll # Long listing of all files in /usr/X11R6/bin stating with mk. 31 # An alias can handle concatenated variables -- including wild card -- o.k. 32 33 34 35 36 TRUE=1 37 38 echo 39 40 if [ TRUE ] 41 then 42 alias rr="ls -l" 43 echo "Trying aliased \"rr\" within if/then statement:" 44 rr /usr/X11R6/bin/mk* #* Error message results! 45 # Aliases not expanded within compound statements. 46 echo "However, previously expanded alias still recognized:" 47 ll /usr/X11R6/bin/mk* 48 fi 49 50 echo 51 52 count=0 53 while [ $count -lt 3 ] 54 do 55 alias rrr="ls -l" 56 echo "Trying aliased \"rrr\" within \"while\" loop:" 57 rrr /usr/X11R6/bin/mk* #* Alias will not expand here either. 58 # alias.sh: line 57: rrr: command not found 59 let count+=1 60 done 61 62 echo; echo 63 64 alias xyz='cat $0' # Script lists itself. 65 # Note strong quotes. 66 xyz 67 # This seems to work, 68 #+ although the Bash documentation suggests that it shouldn't. 69 # 70 # However, as Steve Jacobson points out, 71 #+ the "$0" parameter expands immediately upon declaration of the alias. 72 73 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="UNALIASREF" ></A ></P ><P >The <B CLASS="COMMAND" >unalias</B > command removes a previously set <I CLASS="FIRSTTERM" >alias</I >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="UNAL" ></A ><P ><B >Example 25-2. <I CLASS="FIRSTTERM" >unalias</I >: Setting and unsetting an alias</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # unalias.sh 3 4 shopt -s expand_aliases # Enables alias expansion. 5 6 alias llm='ls -al | more' 7 llm 8 9 echo 10 11 unalias llm # Unset alias. 12 llm 13 # Error message results, since 'llm' no longer recognized. 14 15 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >./unalias.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 6 drwxrwxr-x 2 bozo bozo 3072 Feb 6 14:04 . drwxr-xr-x 40 bozo bozo 2048 Feb 6 14:04 .. -rwxr-xr-x 1 bozo bozo 199 Feb 6 14:04 unalias.sh ./unalias.sh: llm: command not found</TT ></PRE ></TD ></TR ></TABLE ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18669" HREF="aliases.html#AEN18669" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P > ... as the first word of a command string. Obviously, an alias is only meaningful at the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >beginning</I ></SPAN > of a command.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18676" HREF="aliases.html#AEN18676" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >However, aliases do seem to expand positional parameters.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="recurnolocvar.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="list-cons.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Recursion Without Local Variables</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >List Constructs</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/arithexp.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Arithmetic Expansion</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Beyond the Basics" HREF="part3.html"><LINK REL="PREVIOUS" TITLE="Command Substitution" HREF="commandsub.html"><LINK REL="NEXT" TITLE="Recess Time" HREF="recess-time.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="commandsub.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="recess-time.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="ARITHEXP" ></A >Chapter 13. Arithmetic Expansion</H1 ><P ><A NAME="ARITHEXPREF" ></A >Arithmetic expansion provides a powerful tool for performing (integer) arithmetic operations in scripts. Translating a string into a numerical expression is relatively straightforward using <I CLASS="FIRSTTERM" >backticks</I >, <I CLASS="FIRSTTERM" >double parentheses</I >, or <I CLASS="FIRSTTERM" >let</I >.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="ARITHEXPVAR1" ></A >Variations</B ></P ><DL ><DT >Arithmetic expansion with <A HREF="commandsub.html#BACKQUOTESREF" >backticks</A > (often used in conjunction with <A HREF="moreadv.html#EXPRREF" >expr</A >)</DT ><DD ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 z=`expr $z + 3` # The 'expr' command performs the expansion.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT >Arithmetic expansion with <A HREF="dblparens.html" >double parentheses</A >, and using <A HREF="internal.html#LETREF" >let</A ></DT ><DD ><P >The use of <I CLASS="FIRSTTERM" >backticks</I > (<I CLASS="FIRSTTERM" >backquotes</I >) in arithmetic expansion has been superseded by <I CLASS="FIRSTTERM" >double parentheses</I > -- <TT CLASS="USERINPUT" ><B >((...))</B ></TT > and <TT CLASS="USERINPUT" ><B >$((...))</B ></TT > -- and also by the very convenient <A HREF="internal.html#LETREF" >let</A > construction.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 z=$(($z+3)) 2 z=$((z+3)) # Also correct. 3 # Within double parentheses, 4 #+ parameter dereferencing 5 #+ is optional. 6 7 # $((EXPRESSION)) is arithmetic expansion. # Not to be confused with 8 #+ command substitution. 9 10 11 12 # You may also use operations within double parentheses without assignment. 13 14 n=0 15 echo "n = $n" # n = 0 16 17 (( n += 1 )) # Increment. 18 # (( $n += 1 )) is incorrect! 19 echo "n = $n" # n = 1 20 21 22 let z=z+3 23 let "z += 3" # Quotes permit the use of spaces in variable assignment. 24 # The 'let' operator actually performs arithmetic evaluation, 25 #+ rather than expansion.</PRE ></TD ></TR ></TABLE > </P ><P >Examples of arithmetic expansion in scripts: <OL TYPE="1" ><LI ><P ><A HREF="moreadv.html#EX45" >Example 16-9</A ></P ></LI ><LI ><P ><A HREF="loops.html#EX25" >Example 11-15</A ></P ></LI ><LI ><P ><A HREF="arrays.html#EX66" >Example 27-1</A ></P ></LI ><LI ><P ><A HREF="arrays.html#BUBBLE" >Example 27-11</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#TREE" >Example A-16</A ></P ></LI ></OL > </P ></DD ></DL ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="commandsub.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="recess-time.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Command Substitution</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part3.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Recess Time</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/arrays.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Arrays</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="List Constructs" HREF="list-cons.html"><LINK REL="NEXT" TITLE="Indirect References" HREF="ivr.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="list-cons.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="ivr.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="ARRAYS" ></A >Chapter 27. Arrays</H1 ><P ><A NAME="ARRAYREF" ></A ></P ><P >Newer versions of Bash support one-dimensional arrays. <A NAME="BRACKARRAY" ></A > Array elements may be initialized with the <TT CLASS="USERINPUT" ><B >variable[xx]</B ></TT > notation. Alternatively, a script may introduce the entire array by an explicit <TT CLASS="USERINPUT" ><B >declare -a variable</B ></TT > statement. To dereference (retrieve the contents of) an array element, use <I CLASS="FIRSTTERM" >curly bracket</I > notation, that is, <TT CLASS="USERINPUT" ><B >${element[xx]}</B ></TT >.</P ><P ><A NAME="ARRAYNOTATION" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX66" ></A ><P ><B >Example 27-1. Simple array usage</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 4 area[11]=23 5 area[13]=37 6 area[51]=UFOs 7 8 # Array members need not be consecutive or contiguous. 9 10 # Some members of the array can be left uninitialized. 11 # Gaps in the array are okay. 12 # In fact, arrays with sparse data ("sparse arrays") 13 #+ are useful in spreadsheet-processing software. 14 15 16 echo -n "area[11] = " 17 echo ${area[11]} # {curly brackets} needed. 18 19 echo -n "area[13] = " 20 echo ${area[13]} 21 22 echo "Contents of area[51] are ${area[51]}." 23 24 # Contents of uninitialized array variable print blank (null variable). 25 echo -n "area[43] = " 26 echo ${area[43]} 27 echo "(area[43] unassigned)" 28 29 echo 30 31 # Sum of two array variables assigned to third 32 area[5]=`expr ${area[11]} + ${area[13]}` 33 echo "area[5] = area[11] + area[13]" 34 echo -n "area[5] = " 35 echo ${area[5]} 36 37 area[6]=`expr ${area[11]} + ${area[51]}` 38 echo "area[6] = area[11] + area[51]" 39 echo -n "area[6] = " 40 echo ${area[6]} 41 # This fails because adding an integer to a string is not permitted. 42 43 echo; echo; echo 44 45 # ----------------------------------------------------------------- 46 # Another array, "area2". 47 # Another way of assigning array variables... 48 # array_name=( XXX YYY ZZZ ... ) 49 50 area2=( zero one two three four ) 51 52 echo -n "area2[0] = " 53 echo ${area2[0]} 54 # Aha, zero-based indexing (first element of array is [0], not [1]). 55 56 echo -n "area2[1] = " 57 echo ${area2[1]} # [1] is second element of array. 58 # ----------------------------------------------------------------- 59 60 echo; echo; echo 61 62 # ----------------------------------------------- 63 # Yet another array, "area3". 64 # Yet another way of assigning array variables... 65 # array_name=([xx]=XXX [yy]=YYY ...) 66 67 area3=([17]=seventeen [24]=twenty-four) 68 69 echo -n "area3[17] = " 70 echo ${area3[17]} 71 72 echo -n "area3[24] = " 73 echo ${area3[24]} 74 # ----------------------------------------------- 75 76 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="ARRAYINIT0" ></A ></P ><P >As we have seen, a convenient way of initializing an entire array is the <TT CLASS="VARNAME" >array=( element1 element2 ... elementN )</TT > notation.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 base64_charset=( {A..Z} {a..z} {0..9} + / = ) 2 # Using extended brace expansion 3 #+ to initialize the elements of the array. 4 # Excerpted from vladz's "base64.sh" script 5 #+ in the "Contributed Scripts" appendix.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="ARRAYOPSVARS" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN18812" ></A ><P >Bash permits array operations on variables, even if the variables are not explicitly declared as arrays.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 string=abcABC123ABCabc 2 echo ${string[@]} # abcABC123ABCabc 3 echo ${string[*]} # abcABC123ABCabc 4 echo ${string[0]} # abcABC123ABCabc 5 echo ${string[1]} # No output! 6 # Why? 7 echo ${#string[@]} # 1 8 # One element in the array. 9 # The string itself. 10 11 # Thank you, Michael Zick, for pointing this out.</PRE ></TD ></TR ></TABLE > Once again this demonstrates that <A HREF="untyped.html#BVUNTYPED" >Bash variables are untyped</A >. </P ></DIV ></TD ></TR ></TABLE ><DIV CLASS="EXAMPLE" ><HR><A NAME="POEM" ></A ><P ><B >Example 27-2. Formatting a poem</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # poem.sh: Pretty-prints one of the ABS Guide author's favorite poems. 3 4 # Lines of the poem (single stanza). 5 Line[1]="I do not know which to prefer," 6 Line[2]="The beauty of inflections" 7 Line[3]="Or the beauty of innuendoes," 8 Line[4]="The blackbird whistling" 9 Line[5]="Or just after." 10 # Note that quoting permits embedding whitespace. 11 12 # Attribution. 13 Attrib[1]=" Wallace Stevens" 14 Attrib[2]="\"Thirteen Ways of Looking at a Blackbird\"" 15 # This poem is in the Public Domain (copyright expired). 16 17 echo 18 19 tput bold # Bold print. 20 21 for index in 1 2 3 4 5 # Five lines. 22 do 23 printf " %s\n" "${Line[index]}" 24 done 25 26 for index in 1 2 # Two attribution lines. 27 do 28 printf " %s\n" "${Attrib[index]}" 29 done 30 31 tput sgr0 # Reset terminal. 32 # See 'tput' docs. 33 34 echo 35 36 exit 0 37 38 # Exercise: 39 # -------- 40 # Modify this script to pretty-print a poem from a text data file.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="ARRAYSYNTAX" ></A ></P ><P >Array variables have a syntax all their own, and even standard Bash commands and operators have special options adapted for array use.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ARRAYOPS" ></A ><P ><B >Example 27-3. Various array operations</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # array-ops.sh: More fun with arrays. 3 4 5 array=( zero one two three four five ) 6 # Element 0 1 2 3 4 5 7 8 echo ${array[0]} # zero 9 echo ${array:0} # zero 10 # Parameter expansion of first element, 11 #+ starting at position # 0 (1st character). 12 echo ${array:1} # ero 13 # Parameter expansion of first element, 14 #+ starting at position # 1 (2nd character). 15 16 echo "--------------" 17 18 echo ${#array[0]} # 4 19 # Length of first element of array. 20 echo ${#array} # 4 21 # Length of first element of array. 22 # (Alternate notation) 23 24 echo ${#array[1]} # 3 25 # Length of second element of array. 26 # Arrays in Bash have zero-based indexing. 27 28 echo ${#array[*]} # 6 29 # Number of elements in array. 30 echo ${#array[@]} # 6 31 # Number of elements in array. 32 33 echo "--------------" 34 35 array2=( [0]="first element" [1]="second element" [3]="fourth element" ) 36 # ^ ^ ^ ^ ^ ^ ^ ^ ^ 37 # Quoting permits embedding whitespace within individual array elements. 38 39 echo ${array2[0]} # first element 40 echo ${array2[1]} # second element 41 echo ${array2[2]} # 42 # Skipped in initialization, and therefore null. 43 echo ${array2[3]} # fourth element 44 echo ${#array2[0]} # 13 (length of first element) 45 echo ${#array2[*]} # 3 (number of elements in array) 46 47 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="ARRAYSTRINGOPS" ></A ></P ><P >Many of the standard <A HREF="manipulatingvars.html#STRINGMANIP" >string operations</A > work on arrays.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ARRAYSTROPS" ></A ><P ><B >Example 27-4. String operations on arrays</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # array-strops.sh: String operations on arrays. 3 4 # Script by Michael Zick. 5 # Used in ABS Guide with permission. 6 # Fixups: 05 May 08, 04 Aug 08. 7 8 # In general, any string operation using the ${name ... } notation 9 #+ can be applied to all string elements in an array, 10 #+ with the ${name[@] ... } or ${name[*] ...} notation. 11 12 13 arrayZ=( one two three four five five ) 14 15 echo 16 17 # Trailing Substring Extraction 18 echo ${arrayZ[@]:0} # one two three four five five 19 # ^ All elements. 20 21 echo ${arrayZ[@]:1} # two three four five five 22 # ^ All elements following element[0]. 23 24 echo ${arrayZ[@]:1:2} # two three 25 # ^ Only the two elements after element[0]. 26 27 echo "---------" 28 29 30 # Substring Removal 31 32 # Removes shortest match from front of string(s). 33 34 echo ${arrayZ[@]#f*r} # one two three five five 35 # ^ # Applied to all elements of the array. 36 # Matches "four" and removes it. 37 38 # Longest match from front of string(s) 39 echo ${arrayZ[@]##t*e} # one two four five five 40 # ^^ # Applied to all elements of the array. 41 # Matches "three" and removes it. 42 43 # Shortest match from back of string(s) 44 echo ${arrayZ[@]%h*e} # one two t four five five 45 # ^ # Applied to all elements of the array. 46 # Matches "hree" and removes it. 47 48 # Longest match from back of string(s) 49 echo ${arrayZ[@]%%t*e} # one two four five five 50 # ^^ # Applied to all elements of the array. 51 # Matches "three" and removes it. 52 53 echo "----------------------" 54 55 56 # Substring Replacement 57 58 # Replace first occurrence of substring with replacement. 59 echo ${arrayZ[@]/fiv/XYZ} # one two three four XYZe XYZe 60 # ^ # Applied to all elements of the array. 61 62 # Replace all occurrences of substring. 63 echo ${arrayZ[@]//iv/YY} # one two three four fYYe fYYe 64 # Applied to all elements of the array. 65 66 # Delete all occurrences of substring. 67 # Not specifing a replacement defaults to 'delete' ... 68 echo ${arrayZ[@]//fi/} # one two three four ve ve 69 # ^^ # Applied to all elements of the array. 70 71 # Replace front-end occurrences of substring. 72 echo ${arrayZ[@]/#fi/XY} # one two three four XYve XYve 73 # ^ # Applied to all elements of the array. 74 75 # Replace back-end occurrences of substring. 76 echo ${arrayZ[@]/%ve/ZZ} # one two three four fiZZ fiZZ 77 # ^ # Applied to all elements of the array. 78 79 echo ${arrayZ[@]/%o/XX} # one twXX three four five five 80 # ^ # Why? 81 82 echo "-----------------------------" 83 84 85 replacement() { 86 echo -n "!!!" 87 } 88 89 echo ${arrayZ[@]/%e/$(replacement)} 90 # ^ ^^^^^^^^^^^^^^ 91 # on!!! two thre!!! four fiv!!! fiv!!! 92 # The stdout of replacement() is the replacement string. 93 # Q.E.D: The replacement action is, in effect, an 'assignment.' 94 95 echo "------------------------------------" 96 97 # Accessing the "for-each": 98 echo ${arrayZ[@]//*/$(replacement optional_arguments)} 99 # ^^ ^^^^^^^^^^^^^ 100 # !!! !!! !!! !!! !!! !!! 101 102 # Now, if Bash would only pass the matched string 103 #+ to the function being called . . . 104 105 echo 106 107 exit 0 108 109 # Before reaching for a Big Hammer -- Perl, Python, or all the rest -- 110 # recall: 111 # $( ... ) is command substitution. 112 # A function runs as a sub-process. 113 # A function writes its output (if echo-ed) to stdout. 114 # Assignment, in conjunction with "echo" and command substitution, 115 #+ can read a function's stdout. 116 # The name[@] notation specifies (the equivalent of) a "for-each" 117 #+ operation. 118 # Bash is more powerful than you think!</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A HREF="commandsub.html#COMMANDSUBREF" >Command substitution</A > can construct the individual elements of an array.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SCRIPTARRAY" ></A ><P ><B >Example 27-5. Loading the contents of a script into an array</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # script-array.sh: Loads this script into an array. 3 # Inspired by an e-mail from Chris Martin (thanks!). 4 5 script_contents=( $(cat "$0") ) # Stores contents of this script ($0) 6 #+ in an array. 7 8 for element in $(seq 0 $((${#script_contents[@]} - 1))) 9 do # ${#script_contents[@]} 10 #+ gives number of elements in the array. 11 # 12 # Question: 13 # Why is seq 0 necessary? 14 # Try changing it to seq 1. 15 echo -n "${script_contents[$element]}" 16 # List each field of this script on a single line. 17 # echo -n "${script_contents[element]}" also works because of ${ ... }. 18 echo -n " -- " # Use " -- " as a field separator. 19 done 20 21 echo 22 23 exit 0 24 25 # Exercise: 26 # -------- 27 # Modify this script so it lists itself 28 #+ in its original format, 29 #+ complete with whitespace, line breaks, etc.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >In an array context, some Bash <A HREF="internal.html#BUILTINREF" >builtins</A > have a slightly altered meaning. <A NAME="ARRAYUNSET" ></A >For example, <A HREF="internal.html#UNSETREF" >unset</A > deletes array elements, or even an entire array.</P ><P ><A NAME="ARRAYSPECIALPROPS" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX67" ></A ><P ><B >Example 27-6. Some special properties of arrays</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 declare -a colors 4 # All subsequent commands in this script will treat 5 #+ the variable "colors" as an array. 6 7 echo "Enter your favorite colors (separated from each other by a space)." 8 9 read -a colors # Enter at least 3 colors to demonstrate features below. 10 # Special option to 'read' command, 11 #+ allowing assignment of elements in an array. 12 13 echo 14 15 element_count=${#colors[@]} 16 # Special syntax to extract number of elements in array. 17 # element_count=${#colors[*]} works also. 18 # 19 # The "@" variable allows word splitting within quotes 20 #+ (extracts variables separated by whitespace). 21 # 22 # This corresponds to the behavior of "$@" and "$*" 23 #+ in positional parameters. 24 25 index=0 26 27 while [ "$index" -lt "$element_count" ] 28 do # List all the elements in the array. 29 echo ${colors[$index]} 30 # ${colors[index]} also works because it's within ${ ... } brackets. 31 let "index = $index + 1" 32 # Or: 33 # ((index++)) 34 done 35 # Each array element listed on a separate line. 36 # If this is not desired, use echo -n "${colors[$index]} " 37 # 38 # Doing it with a "for" loop instead: 39 # for i in "${colors[@]}" 40 # do 41 # echo "$i" 42 # done 43 # (Thanks, S.C.) 44 45 echo 46 47 # Again, list all the elements in the array, but using a more elegant method. 48 echo ${colors[@]} # echo ${colors[*]} also works. 49 50 echo 51 52 # The "unset" command deletes elements of an array, or entire array. 53 unset colors[1] # Remove 2nd element of array. 54 # Same effect as colors[1]= 55 echo ${colors[@]} # List array again, missing 2nd element. 56 57 unset colors # Delete entire array. 58 # unset colors[*] and 59 #+ unset colors[@] also work. 60 echo; echo -n "Colors gone." 61 echo ${colors[@]} # List array again, now empty. 62 63 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="ARRAYNUMELEMENTS" ></A ></P ><P >As seen in the previous example, either <B CLASS="COMMAND" >${array_name[@]}</B > or <B CLASS="COMMAND" >${array_name[*]}</B > refers to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >all</I ></SPAN > the elements of the array. Similarly, to get a count of the number of elements in an array, use either <B CLASS="COMMAND" >${#array_name[@]}</B > or <B CLASS="COMMAND" >${#array_name[*]}</B >. <B CLASS="COMMAND" >${#array_name}</B > is the length (number of characters) of <B CLASS="COMMAND" >${array_name[0]}</B >, the first element of the array.</P ><P ><A NAME="EMPTYARRAY0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EMPTYARRAY" ></A ><P ><B >Example 27-7. Of empty arrays and empty elements</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # empty-array.sh 3 4 # Thanks to Stephane Chazelas for the original example, 5 #+ and to Michael Zick and Omair Eshkenazi, for extending it. 6 # And to Nathan Coulter for clarifications and corrections. 7 8 9 # An empty array is not the same as an array with empty elements. 10 11 array0=( first second third ) 12 array1=( '' ) # "array1" consists of one empty element. 13 array2=( ) # No elements . . . "array2" is empty. 14 array3=( ) # What about this array? 15 16 17 echo 18 ListArray() 19 { 20 echo 21 echo "Elements in array0: ${array0[@]}" 22 echo "Elements in array1: ${array1[@]}" 23 echo "Elements in array2: ${array2[@]}" 24 echo "Elements in array3: ${array3[@]}" 25 echo 26 echo "Length of first element in array0 = ${#array0}" 27 echo "Length of first element in array1 = ${#array1}" 28 echo "Length of first element in array2 = ${#array2}" 29 echo "Length of first element in array3 = ${#array3}" 30 echo 31 echo "Number of elements in array0 = ${#array0[*]}" # 3 32 echo "Number of elements in array1 = ${#array1[*]}" # 1 (Surprise!) 33 echo "Number of elements in array2 = ${#array2[*]}" # 0 34 echo "Number of elements in array3 = ${#array3[*]}" # 0 35 } 36 37 # =================================================================== 38 39 ListArray 40 41 # Try extending those arrays. 42 43 # Adding an element to an array. 44 array0=( "${array0[@]}" "new1" ) 45 array1=( "${array1[@]}" "new1" ) 46 array2=( "${array2[@]}" "new1" ) 47 array3=( "${array3[@]}" "new1" ) 48 49 ListArray 50 51 # or 52 array0[${#array0[*]}]="new2" 53 array1[${#array1[*]}]="new2" 54 array2[${#array2[*]}]="new2" 55 array3[${#array3[*]}]="new2" 56 57 ListArray 58 59 # When extended as above, arrays are 'stacks' ... 60 # Above is the 'push' ... 61 # The stack 'height' is: 62 height=${#array2[@]} 63 echo 64 echo "Stack height for array2 = $height" 65 66 # The 'pop' is: 67 unset array2[${#array2[@]}-1] # Arrays are zero-based, 68 height=${#array2[@]} #+ which means first element has index 0. 69 echo 70 echo "POP" 71 echo "New stack height for array2 = $height" 72 73 ListArray 74 75 # List only 2nd and 3rd elements of array0. 76 from=1 # Zero-based numbering. 77 to=2 78 array3=( ${array0[@]:1:2} ) 79 echo 80 echo "Elements in array3: ${array3[@]}" 81 82 # Works like a string (array of characters). 83 # Try some other "string" forms. 84 85 # Replacement: 86 array4=( ${array0[@]/second/2nd} ) 87 echo 88 echo "Elements in array4: ${array4[@]}" 89 90 # Replace all matching wildcarded string. 91 array5=( ${array0[@]//new?/old} ) 92 echo 93 echo "Elements in array5: ${array5[@]}" 94 95 # Just when you are getting the feel for this . . . 96 array6=( ${array0[@]#*new} ) 97 echo # This one might surprise you. 98 echo "Elements in array6: ${array6[@]}" 99 100 array7=( ${array0[@]#new1} ) 101 echo # After array6 this should not be a surprise. 102 echo "Elements in array7: ${array7[@]}" 103 104 # Which looks a lot like . . . 105 array8=( ${array0[@]/new1/} ) 106 echo 107 echo "Elements in array8: ${array8[@]}" 108 109 # So what can one say about this? 110 111 # The string operations are performed on 112 #+ each of the elements in var[@] in succession. 113 # Therefore : Bash supports string vector operations. 114 # If the result is a zero length string, 115 #+ that element disappears in the resulting assignment. 116 # However, if the expansion is in quotes, the null elements remain. 117 118 # Michael Zick: Question, are those strings hard or soft quotes? 119 # Nathan Coulter: There is no such thing as "soft quotes." 120 #! What's really happening is that 121 #!+ the pattern matching happens after 122 #!+ all the other expansions of [word] 123 #!+ in cases like ${parameter#word}. 124 125 126 zap='new*' 127 array9=( ${array0[@]/$zap/} ) 128 echo 129 echo "Number of elements in array9: ${#array9[@]}" 130 array9=( "${array0[@]/$zap/}" ) 131 echo "Elements in array9: ${array9[@]}" 132 # This time the null elements remain. 133 echo "Number of elements in array9: ${#array9[@]}" 134 135 136 # Just when you thought you were still in Kansas . . . 137 array10=( ${array0[@]#$zap} ) 138 echo 139 echo "Elements in array10: ${array10[@]}" 140 # But, the asterisk in zap won't be interpreted if quoted. 141 array10=( ${array0[@]#"$zap"} ) 142 echo 143 echo "Elements in array10: ${array10[@]}" 144 # Well, maybe we _are_ still in Kansas . . . 145 # (Revisions to above code block by Nathan Coulter.) 146 147 148 # Compare array7 with array10. 149 # Compare array8 with array9. 150 151 # Reiterating: No such thing as soft quotes! 152 # Nathan Coulter explains: 153 # Pattern matching of 'word' in ${parameter#word} is done after 154 #+ parameter expansion and *before* quote removal. 155 # In the normal case, pattern matching is done *after* quote removal. 156 157 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The relationship of <B CLASS="COMMAND" >${array_name[@]}</B > and <B CLASS="COMMAND" >${array_name[*]}</B > is analogous to that between <A HREF="variables2.html#APPREF" >$@ and $*</A >. This powerful array notation has a number of uses.</P ><P ><A NAME="COPYARRAY0" ></A ></P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Copying an array. 2 array2=( "${array1[@]}" ) 3 # or 4 array2="${array1[@]}" 5 # 6 # However, this fails with "sparse" arrays, 7 #+ arrays with holes (missing elements) in them, 8 #+ as Jochen DeSmet points out. 9 # ------------------------------------------ 10 array1[0]=0 11 # array1[1] not assigned 12 array1[2]=2 13 array2=( "${array1[@]}" ) # Copy it? 14 15 echo ${array2[0]} # 0 16 echo ${array2[2]} # (null), should be 2 17 # ------------------------------------------ 18 19 20 21 # Adding an element to an array. 22 array=( "${array[@]}" "new element" ) 23 # or 24 array[${#array[*]}]="new element" 25 26 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="ARRAYINITCS" ></A ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >array=( element1 element2 ... elementN )</B > initialization operation, with the help of <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A >, makes it possible to load the contents of a text file into an array.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 filename=sample_file 4 5 # cat sample_file 6 # 7 # 1 a b c 8 # 2 d e fg 9 10 11 declare -a array1 12 13 array1=( `cat "$filename"`) # Loads contents 14 # List file to stdout #+ of $filename into array1. 15 # 16 # array1=( `cat "$filename" | tr '\n' ' '`) 17 # change linefeeds in file to spaces. 18 # Not necessary because Bash does word splitting, 19 #+ changing linefeeds to spaces. 20 21 echo ${array1[@]} # List the array. 22 # 1 a b c 2 d e fg 23 # 24 # Each whitespace-separated "word" in the file 25 #+ has been assigned to an element of the array. 26 27 element_count=${#array1[*]} 28 echo $element_count # 8</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><P >Clever scripting makes it possible to add array operations.</P ><P ><A NAME="ARRAYASSIGN0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ARRAYASSIGN" ></A ><P ><B >Example 27-8. Initializing arrays</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /bin/bash 2 # array-assign.bash 3 4 # Array operations are Bash-specific, 5 #+ hence the ".bash" in the script name. 6 7 # Copyright (c) Michael S. Zick, 2003, All rights reserved. 8 # License: Unrestricted reuse in any form, for any purpose. 9 # Version: $ID$ 10 # 11 # Clarification and additional comments by William Park. 12 13 # Based on an example provided by Stephane Chazelas 14 #+ which appeared in an earlier version of the 15 #+ Advanced Bash Scripting Guide. 16 17 # Output format of the 'times' command: 18 # User CPU <space> System CPU 19 # User CPU of dead children <space> System CPU of dead children 20 21 # Bash has two versions of assigning all elements of an array 22 #+ to a new array variable. 23 # Both drop 'null reference' elements 24 #+ in Bash versions 2.04 and later. 25 # An additional array assignment that maintains the relationship of 26 #+ [subscript]=value for arrays may be added to newer versions. 27 28 # Constructs a large array using an internal command, 29 #+ but anything creating an array of several thousand elements 30 #+ will do just fine. 31 32 declare -a bigOne=( /dev/* ) # All the files in /dev . . . 33 echo 34 echo 'Conditions: Unquoted, default IFS, All-Elements-Of' 35 echo "Number of elements in array is ${#bigOne[@]}" 36 37 # set -vx 38 39 40 41 echo 42 echo '- - testing: =( ${array[@]} ) - -' 43 times 44 declare -a bigTwo=( ${bigOne[@]} ) 45 # Note parens: ^ ^ 46 times 47 48 49 echo 50 echo '- - testing: =${array[@]} - -' 51 times 52 declare -a bigThree=${bigOne[@]} 53 # No parentheses this time. 54 times 55 56 # Comparing the numbers shows that the second form, pointed out 57 #+ by Stephane Chazelas, is faster. 58 # 59 # As William Park explains: 60 #+ The bigTwo array assigned element by element (because of parentheses), 61 #+ whereas bigThree assigned as a single string. 62 # So, in essence, you have: 63 # bigTwo=( [0]="..." [1]="..." [2]="..." ... ) 64 # bigThree=( [0]="... ... ..." ) 65 # 66 # Verify this by: echo ${bigTwo[0]} 67 # echo ${bigThree[0]} 68 69 70 # I will continue to use the first form in my example descriptions 71 #+ because I think it is a better illustration of what is happening. 72 73 # The reusable portions of my examples will actual contain 74 #+ the second form where appropriate because of the speedup. 75 76 # MSZ: Sorry about that earlier oversight folks. 77 78 79 # Note: 80 # ---- 81 # The "declare -a" statements in lines 32 and 44 82 #+ are not strictly necessary, since it is implicit 83 #+ in the Array=( ... ) assignment form. 84 # However, eliminating these declarations slows down 85 #+ the execution of the following sections of the script. 86 # Try it, and see. 87 88 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Adding a superfluous <B CLASS="COMMAND" >declare -a</B > statement to an array declaration may speed up execution of subsequent operations on the array.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="ARRAYAPPEND0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="COPYARRAY" ></A ><P ><B >Example 27-9. Copying and concatenating arrays</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /bin/bash 2 # CopyArray.sh 3 # 4 # This script written by Michael Zick. 5 # Used here with permission. 6 7 # How-To "Pass by Name & Return by Name" 8 #+ or "Building your own assignment statement". 9 10 11 CpArray_Mac() { 12 13 # Assignment Command Statement Builder 14 15 echo -n 'eval ' 16 echo -n "$2" # Destination name 17 echo -n '=( ${' 18 echo -n "$1" # Source name 19 echo -n '[@]} )' 20 21 # That could all be a single command. 22 # Matter of style only. 23 } 24 25 declare -f CopyArray # Function "Pointer" 26 CopyArray=CpArray_Mac # Statement Builder 27 28 Hype() 29 { 30 31 # Hype the array named $1. 32 # (Splice it together with array containing "Really Rocks".) 33 # Return in array named $2. 34 35 local -a TMP 36 local -a hype=( Really Rocks ) 37 38 $($CopyArray $1 TMP) 39 TMP=( ${TMP[@]} ${hype[@]} ) 40 $($CopyArray TMP $2) 41 } 42 43 declare -a before=( Advanced Bash Scripting ) 44 declare -a after 45 46 echo "Array Before = ${before[@]}" 47 48 Hype before after 49 50 echo "Array After = ${after[@]}" 51 52 # Too much hype? 53 54 echo "What ${after[@]:3:2}?" 55 56 declare -a modest=( ${after[@]:2:1} ${after[@]:3:2} ) 57 # ---- substring extraction ---- 58 59 echo "Array Modest = ${modest[@]}" 60 61 # What happened to 'before' ? 62 63 echo "Array Before = ${before[@]}" 64 65 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ARRAYAPPEND" ></A ><P ><B >Example 27-10. More on concatenating arrays</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /bin/bash 2 # array-append.bash 3 4 # Copyright (c) Michael S. Zick, 2003, All rights reserved. 5 # License: Unrestricted reuse in any form, for any purpose. 6 # Version: $ID$ 7 # 8 # Slightly modified in formatting by M.C. 9 10 11 # Array operations are Bash-specific. 12 # Legacy UNIX /bin/sh lacks equivalents. 13 14 15 # Pipe the output of this script to 'more' 16 #+ so it doesn't scroll off the terminal. 17 # Or, redirect output to a file. 18 19 20 declare -a array1=( zero1 one1 two1 ) 21 # Subscript packed. 22 declare -a array2=( [0]=zero2 [2]=two2 [3]=three2 ) 23 # Subscript sparse -- [1] is not defined. 24 25 echo 26 echo '- Confirm that the array is really subscript sparse. -' 27 echo "Number of elements: 4" # Hard-coded for illustration. 28 for (( i = 0 ; i < 4 ; i++ )) 29 do 30 echo "Element [$i]: ${array2[$i]}" 31 done 32 # See also the more general code example in basics-reviewed.bash. 33 34 35 declare -a dest 36 37 # Combine (append) two arrays into a third array. 38 echo 39 echo 'Conditions: Unquoted, default IFS, All-Elements-Of operator' 40 echo '- Undefined elements not present, subscripts not maintained. -' 41 # # The undefined elements do not exist; they are not being dropped. 42 43 dest=( ${array1[@]} ${array2[@]} ) 44 # dest=${array1[@]}${array2[@]} # Strange results, possibly a bug. 45 46 # Now, list the result. 47 echo 48 echo '- - Testing Array Append - -' 49 cnt=${#dest[@]} 50 51 echo "Number of elements: $cnt" 52 for (( i = 0 ; i < cnt ; i++ )) 53 do 54 echo "Element [$i]: ${dest[$i]}" 55 done 56 57 # Assign an array to a single array element (twice). 58 dest[0]=${array1[@]} 59 dest[1]=${array2[@]} 60 61 # List the result. 62 echo 63 echo '- - Testing modified array - -' 64 cnt=${#dest[@]} 65 66 echo "Number of elements: $cnt" 67 for (( i = 0 ; i < cnt ; i++ )) 68 do 69 echo "Element [$i]: ${dest[$i]}" 70 done 71 72 # Examine the modified second element. 73 echo 74 echo '- - Reassign and list second element - -' 75 76 declare -a subArray=${dest[1]} 77 cnt=${#subArray[@]} 78 79 echo "Number of elements: $cnt" 80 for (( i = 0 ; i < cnt ; i++ )) 81 do 82 echo "Element [$i]: ${subArray[$i]}" 83 done 84 85 # The assignment of an entire array to a single element 86 #+ of another array using the '=${ ... }' array assignment 87 #+ has converted the array being assigned into a string, 88 #+ with the elements separated by a space (the first character of IFS). 89 90 # If the original elements didn't contain whitespace . . . 91 # If the original array isn't subscript sparse . . . 92 # Then we could get the original array structure back again. 93 94 # Restore from the modified second element. 95 echo 96 echo '- - Listing restored element - -' 97 98 declare -a subArray=( ${dest[1]} ) 99 cnt=${#subArray[@]} 100 101 echo "Number of elements: $cnt" 102 for (( i = 0 ; i < cnt ; i++ )) 103 do 104 echo "Element [$i]: ${subArray[$i]}" 105 done 106 echo '- - Do not depend on this behavior. - -' 107 echo '- - This behavior is subject to change - -' 108 echo '- - in versions of Bash newer than version 2.05b - -' 109 110 # MSZ: Sorry about any earlier confusion folks. 111 112 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >--</P ><P >Arrays permit deploying old familiar algorithms as shell scripts. Whether this is necessarily a good idea is left for the reader to decide.</P ><P ><A NAME="BUBBLESORT" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BUBBLE" ></A ><P ><B >Example 27-11. The Bubble Sort</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # bubble.sh: Bubble sort, of sorts. 3 4 # Recall the algorithm for a bubble sort. In this particular version... 5 6 # With each successive pass through the array to be sorted, 7 #+ compare two adjacent elements, and swap them if out of order. 8 # At the end of the first pass, the "heaviest" element has sunk to bottom. 9 # At the end of the second pass, the next "heaviest" one has sunk next to bottom. 10 # And so forth. 11 # This means that each successive pass needs to traverse less of the array. 12 # You will therefore notice a speeding up in the printing of the later passes. 13 14 15 exchange() 16 { 17 # Swaps two members of the array. 18 local temp=${Countries[$1]} # Temporary storage 19 #+ for element getting swapped out. 20 Countries[$1]=${Countries[$2]} 21 Countries[$2]=$temp 22 23 return 24 } 25 26 declare -a Countries # Declare array, 27 #+ optional here since it's initialized below. 28 29 # Is it permissable to split an array variable over multiple lines 30 #+ using an escape (\)? 31 # Yes. 32 33 Countries=(Netherlands Ukraine Zaire Turkey Russia Yemen Syria \ 34 Brazil Argentina Nicaragua Japan Mexico Venezuela Greece England \ 35 Israel Peru Canada Oman Denmark Wales France Kenya \ 36 Xanadu Qatar Liechtenstein Hungary) 37 38 # "Xanadu" is the mythical place where, according to Coleridge, 39 #+ Kubla Khan did a pleasure dome decree. 40 41 42 clear # Clear the screen to start with. 43 44 echo "0: ${Countries[*]}" # List entire array at pass 0. 45 46 number_of_elements=${#Countries[@]} 47 let "comparisons = $number_of_elements - 1" 48 49 count=1 # Pass number. 50 51 while [ "$comparisons" -gt 0 ] # Beginning of outer loop 52 do 53 54 index=0 # Reset index to start of array after each pass. 55 56 while [ "$index" -lt "$comparisons" ] # Beginning of inner loop 57 do 58 if [ ${Countries[$index]} \> ${Countries[`expr $index + 1`]} ] 59 # If out of order... 60 # Recalling that \> is ASCII comparison operator 61 #+ within single brackets. 62 63 # if [[ ${Countries[$index]} > ${Countries[`expr $index + 1`]} ]] 64 #+ also works. 65 then 66 exchange $index `expr $index + 1` # Swap. 67 fi 68 let "index += 1" # Or, index+=1 on Bash, ver. 3.1 or newer. 69 done # End of inner loop 70 71 # ---------------------------------------------------------------------- 72 # Paulo Marcel Coelho Aragao suggests for-loops as a simpler altenative. 73 # 74 # for (( last = $number_of_elements - 1 ; last > 0 ; last-- )) 75 ## Fix by C.Y. Hunt ^ (Thanks!) 76 # do 77 # for (( i = 0 ; i < last ; i++ )) 78 # do 79 # [[ "${Countries[$i]}" > "${Countries[$((i+1))]}" ]] \ 80 # && exchange $i $((i+1)) 81 # done 82 # done 83 # ---------------------------------------------------------------------- 84 85 86 let "comparisons -= 1" # Since "heaviest" element bubbles to bottom, 87 #+ we need do one less comparison each pass. 88 89 echo 90 echo "$count: ${Countries[@]}" # Print resultant array at end of each pass. 91 echo 92 let "count += 1" # Increment pass count. 93 94 done # End of outer loop 95 # All done. 96 97 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >--</P ><P ><A NAME="ARRAYNEST" ></A ></P ><P >Is it possible to nest arrays within arrays?</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # "Nested" array. 3 4 # Michael Zick provided this example, 5 #+ with corrections and clarifications by William Park. 6 7 AnArray=( $(ls --inode --ignore-backups --almost-all \ 8 --directory --full-time --color=none --time=status \ 9 --sort=time -l ${PWD} ) ) # Commands and options. 10 11 # Spaces are significant . . . and don't quote anything in the above. 12 13 SubArray=( ${AnArray[@]:11:1} ${AnArray[@]:6:5} ) 14 # This array has six elements: 15 #+ SubArray=( [0]=${AnArray[11]} [1]=${AnArray[6]} [2]=${AnArray[7]} 16 # [3]=${AnArray[8]} [4]=${AnArray[9]} [5]=${AnArray[10]} ) 17 # 18 # Arrays in Bash are (circularly) linked lists 19 #+ of type string (char *). 20 # So, this isn't actually a nested array, 21 #+ but it's functionally similar. 22 23 echo "Current directory and date of last status change:" 24 echo "${SubArray[@]}" 25 26 exit 0</PRE ></TD ></TR ></TABLE ></P ><P >--</P ><P >Embedded arrays in combination with <A HREF="bash2.html#VARREFNEW" >indirect references</A > create some fascinating possibilities</P ><P ><A NAME="ARRAYINDIR" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EMBARR" ></A ><P ><B >Example 27-12. Embedded arrays and indirect references</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # embedded-arrays.sh 3 # Embedded arrays and indirect references. 4 5 # This script by Dennis Leeuw. 6 # Used with permission. 7 # Modified by document author. 8 9 10 ARRAY1=( 11 VAR1_1=value11 12 VAR1_2=value12 13 VAR1_3=value13 14 ) 15 16 ARRAY2=( 17 VARIABLE="test" 18 STRING="VAR1=value1 VAR2=value2 VAR3=value3" 19 ARRAY21=${ARRAY1[*]} 20 ) # Embed ARRAY1 within this second array. 21 22 function print () { 23 OLD_IFS="$IFS" 24 IFS=$'\n' # To print each array element 25 #+ on a separate line. 26 TEST1="ARRAY2[*]" 27 local ${!TEST1} # See what happens if you delete this line. 28 # Indirect reference. 29 # This makes the components of $TEST1 30 #+ accessible to this function. 31 32 33 # Let's see what we've got so far. 34 echo 35 echo "\$TEST1 = $TEST1" # Just the name of the variable. 36 echo; echo 37 echo "{\$TEST1} = ${!TEST1}" # Contents of the variable. 38 # That's what an indirect 39 #+ reference does. 40 echo 41 echo "-------------------------------------------"; echo 42 echo 43 44 45 # Print variable 46 echo "Variable VARIABLE: $VARIABLE" 47 48 # Print a string element 49 IFS="$OLD_IFS" 50 TEST2="STRING[*]" 51 local ${!TEST2} # Indirect reference (as above). 52 echo "String element VAR2: $VAR2 from STRING" 53 54 # Print an array element 55 TEST2="ARRAY21[*]" 56 local ${!TEST2} # Indirect reference (as above). 57 echo "Array element VAR1_1: $VAR1_1 from ARRAY21" 58 } 59 60 print 61 echo 62 63 exit 0 64 65 # As the author of the script notes, 66 #+ "you can easily expand it to create named-hashes in bash." 67 # (Difficult) exercise for the reader: implement this.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >--</P ><P ><A NAME="PRIMES0" ></A ></P ><P >Arrays enable implementing a shell script version of the <I CLASS="FIRSTTERM" >Sieve of Eratosthenes</I >. Of course, a resource-intensive application of this nature should really be written in a compiled language, such as C. It runs excruciatingly slowly as a script.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX68" ></A ><P ><B >Example 27-13. The Sieve of Eratosthenes</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # sieve.sh (ex68.sh) 3 4 # Sieve of Eratosthenes 5 # Ancient algorithm for finding prime numbers. 6 7 # This runs a couple of orders of magnitude slower 8 #+ than the equivalent program written in C. 9 10 LOWER_LIMIT=1 # Starting with 1. 11 UPPER_LIMIT=1000 # Up to 1000. 12 # (You may set this higher . . . if you have time on your hands.) 13 14 PRIME=1 15 NON_PRIME=0 16 17 let SPLIT=UPPER_LIMIT/2 18 # Optimization: 19 # Need to test numbers only halfway to upper limit. Why? 20 21 22 declare -a Primes 23 # Primes[] is an array. 24 25 26 initialize () 27 { 28 # Initialize the array. 29 30 i=$LOWER_LIMIT 31 until [ "$i" -gt "$UPPER_LIMIT" ] 32 do 33 Primes[i]=$PRIME 34 let "i += 1" 35 done 36 # Assume all array members guilty (prime) 37 #+ until proven innocent. 38 } 39 40 print_primes () 41 { 42 # Print out the members of the Primes[] array tagged as prime. 43 44 i=$LOWER_LIMIT 45 46 until [ "$i" -gt "$UPPER_LIMIT" ] 47 do 48 49 if [ "${Primes[i]}" -eq "$PRIME" ] 50 then 51 printf "%8d" $i 52 # 8 spaces per number gives nice, even columns. 53 fi 54 55 let "i += 1" 56 57 done 58 59 } 60 61 sift () # Sift out the non-primes. 62 { 63 64 let i=$LOWER_LIMIT+1 65 # Let's start with 2. 66 67 until [ "$i" -gt "$UPPER_LIMIT" ] 68 do 69 70 if [ "${Primes[i]}" -eq "$PRIME" ] 71 # Don't bother sieving numbers already sieved (tagged as non-prime). 72 then 73 74 t=$i 75 76 while [ "$t" -le "$UPPER_LIMIT" ] 77 do 78 let "t += $i " 79 Primes[t]=$NON_PRIME 80 # Tag as non-prime all multiples. 81 done 82 83 fi 84 85 let "i += 1" 86 done 87 88 89 } 90 91 92 # ============================================== 93 # main () 94 # Invoke the functions sequentially. 95 initialize 96 sift 97 print_primes 98 # This is what they call structured programming. 99 # ============================================== 100 101 echo 102 103 exit 0 104 105 106 107 # -------------------------------------------------------- # 108 # Code below line will not execute, because of 'exit.' 109 110 # This improved version of the Sieve, by Stephane Chazelas, 111 #+ executes somewhat faster. 112 113 # Must invoke with command-line argument (limit of primes). 114 115 UPPER_LIMIT=$1 # From command-line. 116 let SPLIT=UPPER_LIMIT/2 # Halfway to max number. 117 118 Primes=( '' $(seq $UPPER_LIMIT) ) 119 120 i=1 121 until (( ( i += 1 ) > SPLIT )) # Need check only halfway. 122 do 123 if [[ -n ${Primes[i]} ]] 124 then 125 t=$i 126 until (( ( t += i ) > UPPER_LIMIT )) 127 do 128 Primes[t]= 129 done 130 fi 131 done 132 echo ${Primes[*]} 133 134 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX68A" ></A ><P ><B >Example 27-14. The Sieve of Eratosthenes, Optimized</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Optimized Sieve of Eratosthenes 3 # Script by Jared Martin, with very minor changes by ABS Guide author. 4 # Used in ABS Guide with permission (thanks!). 5 6 # Based on script in Advanced Bash Scripting Guide. 7 # http://tldp.org/LDP/abs/html/arrays.html#PRIMES0 (ex68.sh). 8 9 # http://www.cs.hmc.edu/~oneill/papers/Sieve-JFP.pdf (reference) 10 # Check results against http://primes.utm.edu/lists/small/1000.txt 11 12 # Necessary but not sufficient would be, e.g., 13 # (($(sieve 7919 | wc -w) == 1000)) && echo "7919 is the 1000th prime" 14 15 UPPER_LIMIT=${1:?"Need an upper limit of primes to search."} 16 17 Primes=( '' $(seq ${UPPER_LIMIT}) ) 18 19 typeset -i i t 20 Primes[i=1]='' # 1 is not a prime. 21 until (( ( i += 1 ) > (${UPPER_LIMIT}/i) )) # Need check only ith-way. 22 do # Why? 23 if ((${Primes[t=i*(i-1), i]})) 24 # Obscure, but instructive, use of arithmetic expansion in subscript. 25 then 26 until (( ( t += i ) > ${UPPER_LIMIT} )) 27 do Primes[t]=; done 28 fi 29 done 30 31 # echo ${Primes[*]} 32 echo # Change to original script for pretty-printing (80-col. display). 33 printf "%8d" ${Primes[*]} 34 echo; echo 35 36 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Compare these array-based prime number generators with alternatives that do not use arrays, <A HREF="contributed-scripts.html#PRIMES" >Example A-15</A >, and <A HREF="mathc.html#PRIMES2" >Example 16-46</A >.</P ><P >--</P ><P >Arrays lend themselves, to some extent, to emulating data structures for which Bash has no native support.</P ><P ><A NAME="STACKEX0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="STACKEX" ></A ><P ><B >Example 27-15. Emulating a push-down stack</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # stack.sh: push-down stack simulation 3 4 # Similar to the CPU stack, a push-down stack stores data items 5 #+ sequentially, but releases them in reverse order, last-in first-out. 6 7 8 BP=100 # Base Pointer of stack array. 9 # Begin at element 100. 10 11 SP=$BP # Stack Pointer. 12 # Initialize it to "base" (bottom) of stack. 13 14 Data= # Contents of stack location. 15 # Must use global variable, 16 #+ because of limitation on function return range. 17 18 19 # 100 Base pointer <-- Base Pointer 20 # 99 First data item 21 # 98 Second data item 22 # ... More data 23 # Last data item <-- Stack pointer 24 25 26 declare -a stack 27 28 29 push() # Push item on stack. 30 { 31 if [ -z "$1" ] # Nothing to push? 32 then 33 return 34 fi 35 36 let "SP -= 1" # Bump stack pointer. 37 stack[$SP]=$1 38 39 return 40 } 41 42 pop() # Pop item off stack. 43 { 44 Data= # Empty out data item. 45 46 if [ "$SP" -eq "$BP" ] # Stack empty? 47 then 48 return 49 fi # This also keeps SP from getting past 100, 50 #+ i.e., prevents a runaway stack. 51 52 Data=${stack[$SP]} 53 let "SP += 1" # Bump stack pointer. 54 return 55 } 56 57 status_report() # Find out what's happening. 58 { 59 echo "-------------------------------------" 60 echo "REPORT" 61 echo "Stack Pointer = $SP" 62 echo "Just popped \""$Data"\" off the stack." 63 echo "-------------------------------------" 64 echo 65 } 66 67 68 # ======================================================= 69 # Now, for some fun. 70 71 echo 72 73 # See if you can pop anything off empty stack. 74 pop 75 status_report 76 77 echo 78 79 push garbage 80 pop 81 status_report # Garbage in, garbage out. 82 83 value1=23; push $value1 84 value2=skidoo; push $value2 85 value3=LAST; push $value3 86 87 pop # LAST 88 status_report 89 pop # skidoo 90 status_report 91 pop # 23 92 status_report # Last-in, first-out! 93 94 # Notice how the stack pointer decrements with each push, 95 #+ and increments with each pop. 96 97 echo 98 99 exit 0 100 101 # ======================================================= 102 103 104 # Exercises: 105 # --------- 106 107 # 1) Modify the "push()" function to permit pushing 108 # + multiple element on the stack with a single function call. 109 110 # 2) Modify the "pop()" function to permit popping 111 # + multiple element from the stack with a single function call. 112 113 # 3) Add error checking to the critical functions. 114 # That is, return an error code, depending on 115 # + successful or unsuccessful completion of the operation, 116 # + and take appropriate action. 117 118 # 4) Using this script as a starting point, 119 # + write a stack-based 4-function calculator.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >--</P ><P >Fancy manipulation of array <SPAN CLASS="QUOTE" >"subscripts"</SPAN > may require intermediate variables. For projects involving this, again consider using a more powerful programming language, such as Perl or C.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="QFUNCTION" ></A ><P ><B >Example 27-16. Complex array application: <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Exploring a weird mathematical series</I ></SPAN ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Douglas Hofstadter's notorious "Q-series": 4 5 # Q(1) = Q(2) = 1 6 # Q(n) = Q(n - Q(n-1)) + Q(n - Q(n-2)), for n>2 7 8 # This is a "chaotic" integer series with strange 9 #+ and unpredictable behavior. 10 # The first 20 terms of the series are: 11 # 1 1 2 3 3 4 5 5 6 6 6 8 8 8 10 9 10 11 11 12 12 13 # See Hofstadter's book, _Goedel, Escher, Bach: An Eternal Golden Braid_, 14 #+ p. 137, ff. 15 16 17 LIMIT=100 # Number of terms to calculate. 18 LINEWIDTH=20 # Number of terms printed per line. 19 20 Q[1]=1 # First two terms of series are 1. 21 Q[2]=1 22 23 echo 24 echo "Q-series [$LIMIT terms]:" 25 echo -n "${Q[1]} " # Output first two terms. 26 echo -n "${Q[2]} " 27 28 for ((n=3; n <= $LIMIT; n++)) # C-like loop expression. 29 do # Q[n] = Q[n - Q[n-1]] + Q[n - Q[n-2]] for n>2 30 # Need to break the expression into intermediate terms, 31 #+ since Bash doesn't handle complex array arithmetic very well. 32 33 let "n1 = $n - 1" # n-1 34 let "n2 = $n - 2" # n-2 35 36 t0=`expr $n - ${Q[n1]}` # n - Q[n-1] 37 t1=`expr $n - ${Q[n2]}` # n - Q[n-2] 38 39 T0=${Q[t0]} # Q[n - Q[n-1]] 40 T1=${Q[t1]} # Q[n - Q[n-2]] 41 42 Q[n]=`expr $T0 + $T1` # Q[n - Q[n-1]] + Q[n - Q[n-2]] 43 echo -n "${Q[n]} " 44 45 if [ `expr $n % $LINEWIDTH` -eq 0 ] # Format output. 46 then # ^ modulo 47 echo # Break lines into neat chunks. 48 fi 49 50 done 51 52 echo 53 54 exit 0 55 56 # This is an iterative implementation of the Q-series. 57 # The more intuitive recursive implementation is left as an exercise. 58 # Warning: calculating this series recursively takes a VERY long time 59 #+ via a script. C/C++ would be orders of magnitude faster.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >--</P ><P ><A NAME="ARRAYMULTIDIM" ></A ></P ><P >Bash supports only one-dimensional arrays, though a little trickery permits simulating multi-dimensional ones.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="TWODIM" ></A ><P ><B >Example 27-17. Simulating a two-dimensional array, then tilting it</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # twodim.sh: Simulating a two-dimensional array. 3 4 # A one-dimensional array consists of a single row. 5 # A two-dimensional array stores rows sequentially. 6 7 Rows=5 8 Columns=5 9 # 5 X 5 Array. 10 11 declare -a alpha # char alpha [Rows] [Columns]; 12 # Unnecessary declaration. Why? 13 14 load_alpha () 15 { 16 local rc=0 17 local index 18 19 for i in A B C D E F G H I J K L M N O P Q R S T U V W X Y 20 do # Use different symbols if you like. 21 local row=`expr $rc / $Columns` 22 local column=`expr $rc % $Rows` 23 let "index = $row * $Rows + $column" 24 alpha[$index]=$i 25 # alpha[$row][$column] 26 let "rc += 1" 27 done 28 29 # Simpler would be 30 #+ declare -a alpha=( A B C D E F G H I J K L M N O P Q R S T U V W X Y ) 31 #+ but this somehow lacks the "flavor" of a two-dimensional array. 32 } 33 34 print_alpha () 35 { 36 local row=0 37 local index 38 39 echo 40 41 while [ "$row" -lt "$Rows" ] # Print out in "row major" order: 42 do #+ columns vary, 43 #+ while row (outer loop) remains the same. 44 local column=0 45 46 echo -n " " # Lines up "square" array with rotated one. 47 48 while [ "$column" -lt "$Columns" ] 49 do 50 let "index = $row * $Rows + $column" 51 echo -n "${alpha[index]} " # alpha[$row][$column] 52 let "column += 1" 53 done 54 55 let "row += 1" 56 echo 57 58 done 59 60 # The simpler equivalent is 61 # echo ${alpha[*]} | xargs -n $Columns 62 63 echo 64 } 65 66 filter () # Filter out negative array indices. 67 { 68 69 echo -n " " # Provides the tilt. 70 # Explain how. 71 72 if [[ "$1" -ge 0 && "$1" -lt "$Rows" && "$2" -ge 0 && "$2" -lt "$Columns" ]] 73 then 74 let "index = $1 * $Rows + $2" 75 # Now, print it rotated. 76 echo -n " ${alpha[index]}" 77 # alpha[$row][$column] 78 fi 79 80 } 81 82 83 84 85 rotate () # Rotate the array 45 degrees -- 86 { #+ "balance" it on its lower lefthand corner. 87 local row 88 local column 89 90 for (( row = Rows; row > -Rows; row-- )) 91 do # Step through the array backwards. Why? 92 93 for (( column = 0; column < Columns; column++ )) 94 do 95 96 if [ "$row" -ge 0 ] 97 then 98 let "t1 = $column - $row" 99 let "t2 = $column" 100 else 101 let "t1 = $column" 102 let "t2 = $column + $row" 103 fi 104 105 filter $t1 $t2 # Filter out negative array indices. 106 # What happens if you don't do this? 107 done 108 109 echo; echo 110 111 done 112 113 # Array rotation inspired by examples (pp. 143-146) in 114 #+ "Advanced C Programming on the IBM PC," by Herbert Mayer 115 #+ (see bibliography). 116 # This just goes to show that much of what can be done in C 117 #+ can also be done in shell scripting. 118 119 } 120 121 122 #--------------- Now, let the show begin. ------------# 123 load_alpha # Load the array. 124 print_alpha # Print it out. 125 rotate # Rotate it 45 degrees counterclockwise. 126 #-----------------------------------------------------# 127 128 exit 0 129 130 # This is a rather contrived, not to mention inelegant simulation. 131 132 # Exercises: 133 # --------- 134 # 1) Rewrite the array loading and printing functions 135 # in a more intuitive and less kludgy fashion. 136 # 137 # 2) Figure out how the array rotation functions work. 138 # Hint: think about the implications of backwards-indexing an array. 139 # 140 # 3) Rewrite this script to handle a non-square array, 141 # such as a 6 X 4 one. 142 # Try to minimize "distortion" when the array is rotated.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >A two-dimensional array is essentially equivalent to a one-dimensional one, but with additional addressing modes for referencing and manipulating the individual elements by <I CLASS="FIRSTTERM" >row</I > and <I CLASS="FIRSTTERM" >column</I > position.</P ><P >For an even more elaborate example of simulating a two-dimensional array, see <A HREF="contributed-scripts.html#LIFESLOW" >Example A-10</A >.</P ><P >--</P ><P >For more interesting scripts using arrays, see: <UL ><LI ><P ><A HREF="commandsub.html#AGRAM2" >Example 12-3</A ></P ></LI ><LI ><P ><A HREF="mathc.html#PRIMES2" >Example 16-46</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#HASHEX2" >Example A-22</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#HOMEWORK" >Example A-44</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#QKY" >Example A-41</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#NIM" >Example A-42</A ></P ></LI ></UL > </P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="list-cons.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="ivr.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >List Constructs</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Indirect References</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/asciitable.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >ASCII Table</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Copyright" HREF="copyright.html"><LINK REL="NEXT" TITLE="Index" HREF="xrefindex.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="copyright.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="xrefindex.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="ASCIITABLE" ></A >Appendix T. ASCII Table</H1 ><P >Traditionally, a book of this sort has an <A HREF="special-chars.html#ASCIIDEF" >ASCII</A > Table appendix. This book does not. Instead, here are several short scripts, each of which generates a complete ASCII table.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ASCIISH" ></A ><P ><B >Example T-1. A script that generates an ASCII table</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ascii.sh 3 # ver. 0.2, reldate 26 Aug 2008 4 # Patched by ABS Guide author. 5 6 # Original script by Sebastian Arming. 7 # Used with permission (thanks!). 8 9 exec >ASCII.txt # Save stdout to file, 10 #+ as in the example scripts 11 #+ reassign-stdout.sh and upperconv.sh. 12 13 MAXNUM=256 14 COLUMNS=5 15 OCT=8 16 OCTSQU=64 17 LITTLESPACE=-3 18 BIGSPACE=-5 19 20 i=1 # Decimal counter 21 o=1 # Octal counter 22 23 while [ "$i" -lt "$MAXNUM" ]; do # We don't have to count past 400 octal. 24 paddi=" $i" 25 echo -n "${paddi: $BIGSPACE} " # Column spacing. 26 paddo="00$o" 27 # echo -ne "\\${paddo: $LITTLESPACE}" # Original. 28 echo -ne "\\0${paddo: $LITTLESPACE}" # Fixup. 29 # ^ 30 echo -n " " 31 if (( i % $COLUMNS == 0)); then # New line. 32 echo 33 fi 34 ((i++, o++)) 35 # The octal notation for 8 is 10, and 64 decimal is 100 octal. 36 (( i % $OCT == 0)) && ((o+=2)) 37 (( i % $OCTSQU == 0)) && ((o+=20)) 38 done 39 40 exit $? 41 42 # Compare this script with the "pr-asc.sh" example. 43 # This one handles "unprintable" characters. 44 45 # Exercise: 46 # Rewrite this script to use decimal numbers, rather than octal.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ASCII2SH" ></A ><P ><B >Example T-2. Another ASCII table script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Script author: Joseph Steinhauser 3 # Lightly edited by ABS Guide author, but not commented. 4 # Used in ABS Guide with permission. 5 6 #------------------------------------------------------------------------- 7 #-- File: ascii.sh Print ASCII chart, base 10/8/16 (JETS-2012) 8 #------------------------------------------------------------------------- 9 #-- Usage: ascii [oct|dec|hex|help|8|10|16] 10 #-- 11 #-- This script prints out a summary of ASCII char codes from Zero to 127. 12 #-- Numeric values may be printed in Base10, Octal, or Hex. 13 #-- 14 #-- Format Based on: /usr/share/lib/pub/ascii with base-10 as default. 15 #-- For more detail, man ascii . . . 16 #------------------------------------------------------------------------- 17 18 [ -n "$BASH_VERSION" ] && shopt -s extglob 19 20 case "$1" in 21 oct|[Oo]?([Cc][Tt])|8) Obase=Octal; Numy=3o;; 22 hex|[Hh]?([Ee][Xx])|16|[Xx]) Obase=Hex; Numy=2X;; 23 help|?(-)[h?]) sed -n '2,/^[ ]*$/p' $0;exit;; 24 code|[Cc][Oo][Dd][Ee])sed -n '/case/,$p' $0;exit;; 25 *) Obase=Decimal 26 esac # CODE is actually shorter than the chart! 27 28 printf "\t\t## $Obase ASCII Chart ##\n\n"; FM1="|%0${Numy:-3d}"; LD=-1 29 30 AB="nul soh stx etx eot enq ack bel bs tab nl vt np cr so si dle" 31 AD="dc1 dc2 dc3 dc4 nak syn etb can em sub esc fs gs rs us sp" 32 33 for TOK in $AB $AD; do ABR[$((LD+=1))]=$TOK; done; 34 ABR[127]=del 35 36 IDX=0 37 while [ $IDX -le 127 ] && CHR="${ABR[$IDX]}" 38 do ((${#CHR}))&& FM2='%-3s'|| FM2=`printf '\\\\%o ' $IDX` 39 printf "$FM1 $FM2" "$IDX" $CHR; (( (IDX+=1)%8))||echo '|' 40 done 41 42 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ASCII3SH" ></A ><P ><B >Example T-3. A third ASCII table script, using <I CLASS="FIRSTTERM" >awk</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ASCII table script, using awk. 3 # Author: Joseph Steinhauser 4 # Used in ABS Guide with permission. 5 6 7 #------------------------------------------------------------------------- 8 #-- File: ascii Print ASCII chart, base 10/8/16 (JETS-2010) 9 #------------------------------------------------------------------------- 10 #-- Usage: ascii [oct|dec|hex|help|8|10|16] 11 #-- 12 #-- This script prints a summary of ASCII char codes from Zero to 127. 13 #-- Numeric values may be printed in Base10, Octal, or Hex (Base16). 14 #-- 15 #-- Format Based on: /usr/share/lib/pub/ascii with base-10 as default. 16 #-- For more detail, man ascii 17 #------------------------------------------------------------------------- 18 19 [ -n "$BASH_VERSION" ] && shopt -s extglob 20 21 case "$1" in 22 oct|[Oo]?([Cc][Tt])|8) Obase=Octal; Numy=3o;; 23 hex|[Hh]?([Ee][Xx])|16|[Xx]) Obase=Hex; Numy=2X;; 24 help|?(-)[h?]) sed -n '2,/^[ ]*$/p' $0;exit;; 25 code|[Cc][Oo][Dd][Ee])sed -n '/case/,$p' $0;exit;; 26 *) Obase=Decimal 27 esac 28 export Obase # CODE is actually shorter than the chart! 29 30 awk 'BEGIN{print "\n\t\t## "ENVIRON["Obase"]" ASCII Chart ##\n" 31 ab="soh,stx,etx,eot,enq,ack,bel,bs,tab,nl,vt,np,cr,so,si,dle," 32 ad="dc1,dc2,dc3,dc4,nak,syn,etb,can,em,sub,esc,fs,gs,rs,us,sp" 33 split(ab ad,abr,",");abr[0]="nul";abr[127]="del"; 34 fm1="|%0'"${Numy:- 4d}"' %-3s" 35 for(idx=0;idx<128;idx++){fmt=fm1 (++colz%8?"":"|\n") 36 printf(fmt,idx,(idx in abr)?abr[idx]:sprintf("%c",idx))} }' 37 38 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="copyright.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="xrefindex.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Copyright</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Index</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/assortedtips.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Assorted Tips</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Miscellany" HREF="miscellany.html"><LINK REL="PREVIOUS" TITLE="Optimizations" HREF="optimizations.html"><LINK REL="NEXT" TITLE="Security Issues" HREF="securityissues.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="optimizations.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 36. Miscellany</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="securityissues.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="ASSORTEDTIPS" ></A >36.7. Assorted Tips</H1 ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="AEN20460" ></A >36.7.1. Ideas for more powerful scripts</H2 ><UL ><LI ><P ><A NAME="PSEUDOCODEREF" ></A ></P ><P >You have a problem that you want to solve by writing a Bash script. Unfortunately, you don't know quite where to start. One method is to plunge right in and code those parts of the script that come easily, and write the hard parts as <I CLASS="FIRSTTERM" >pseudo-code</I >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 ARGCOUNT=1 # Need name as argument. 4 E_WRONGARGS=65 5 6 if [ number-of-arguments is-not-equal-to "$ARGCOUNT" ] 7 # ^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ 8 # Can't figure out how to code this . . . 9 #+ . . . so write it in pseudo-code. 10 11 then 12 echo "Usage: name-of-script name" 13 # ^^^^^^^^^^^^^^ More pseudo-code. 14 exit $E_WRONGARGS 15 fi 16 17 . . . 18 19 exit 0 20 21 22 # Later on, substitute working code for the pseudo-code. 23 24 # Line 6 becomes: 25 if [ $# -ne "$ARGCOUNT" ] 26 27 # Line 12 becomes: 28 echo "Usage: `basename $0` name"</PRE ></TD ></TR ></TABLE ></P ><P >For an example of using pseudo-code, see the <A HREF="writingscripts.html#NEWTONSQRT" >Square Root</A > exercise.</P ></LI ><LI ><P ><A NAME="TRACKINGSCR" ></A ></P ><P >To keep a record of which user scripts have run during a particular session or over a number of sessions, add the following lines to each script you want to keep track of. This will keep a continuing file record of the script names and invocation times. </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Append (>>) following to end of each script tracked. 2 3 whoami>> $SAVE_FILE # User invoking the script. 4 echo $0>> $SAVE_FILE # Script name. 5 date>> $SAVE_FILE # Date and time. 6 echo>> $SAVE_FILE # Blank line as separator. 7 8 # Of course, SAVE_FILE defined and exported as environmental variable in ~/.bashrc 9 #+ (something like ~/.scripts-run)</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="PREPENDREF" ></A ></P ><P >The <SPAN CLASS="TOKEN" >>></SPAN > operator <I CLASS="FIRSTTERM" >appends</I > lines to a file. What if you wish to <I CLASS="FIRSTTERM" >prepend</I > a line to an existing file, that is, to paste it in at the beginning?</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 file=data.txt 2 title="***This is the title line of data text file***" 3 4 echo $title | cat - $file >$file.new 5 # "cat -" concatenates stdout to $file. 6 # End result is 7 #+ to write a new file with $title appended at *beginning*.</PRE ></TD ></TR ></TABLE > </P ><P >This is a simplified variant of the <A HREF="here-docs.html#PREPENDEX" >Example 19-13</A > script given earlier. And, of course, <A HREF="sedawk.html#SEDREF" >sed</A > can also do this.</P ></LI ><LI ><P ><A NAME="SCRIPTASEMB" ></A ></P ><P >A shell script may act as an embedded command inside another shell script, a <I CLASS="FIRSTTERM" >Tcl</I > or <I CLASS="FIRSTTERM" >wish</I > script, or even a <A HREF="filearchiv.html#MAKEFILEREF" >Makefile</A >. It can be invoked as an external shell command in a C program using the <TT CLASS="REPLACEABLE" ><I >system()</I ></TT > call, i.e., <TT CLASS="REPLACEABLE" ><I >system("script_name");</I ></TT >.</P ></LI ><LI ><P ><A NAME="SETVAREMB" ></A ></P ><P >Setting a variable to the contents of an embedded <I CLASS="FIRSTTERM" >sed</I > or <I CLASS="FIRSTTERM" >awk</I > script increases the readability of the surrounding <A HREF="wrapper.html#SHWRAPPER" >shell wrapper</A >. See <A HREF="contributed-scripts.html#MAILFORMAT" >Example A-1</A > and <A HREF="internal.html#COLTOTALER3" >Example 15-20</A >.</P ></LI ><LI ><P ><A NAME="LIBROUTINES" ></A ></P ><P >Put together files containing your favorite and most useful definitions and functions. As necessary, <SPAN CLASS="QUOTE" >"include"</SPAN > one or more of these <SPAN CLASS="QUOTE" >"library files"</SPAN > in scripts with either the <A HREF="special-chars.html#DOTREF" >dot</A > (<B CLASS="COMMAND" >.</B >) or <A HREF="internal.html#SOURCEREF" >source</A > command.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # SCRIPT LIBRARY 2 # ------ ------- 3 4 # Note: 5 # No "#!" here. 6 # No "live code" either. 7 8 9 # Useful variable definitions 10 11 ROOT_UID=0 # Root has $UID 0. 12 E_NOTROOT=101 # Not root user error. 13 MAXRETVAL=255 # Maximum (positive) return value of a function. 14 SUCCESS=0 15 FAILURE=-1 16 17 18 19 # Functions 20 21 Usage () # "Usage:" message. 22 { 23 if [ -z "$1" ] # No arg passed. 24 then 25 msg=filename 26 else 27 msg=$@ 28 fi 29 30 echo "Usage: `basename $0` "$msg"" 31 } 32 33 34 Check_if_root () # Check if root running script. 35 { # From "ex39.sh" example. 36 if [ "$UID" -ne "$ROOT_UID" ] 37 then 38 echo "Must be root to run this script." 39 exit $E_NOTROOT 40 fi 41 } 42 43 44 CreateTempfileName () # Creates a "unique" temp filename. 45 { # From "ex51.sh" example. 46 prefix=temp 47 suffix=`eval date +%s` 48 Tempfilename=$prefix.$suffix 49 } 50 51 52 isalpha2 () # Tests whether *entire string* is alphabetic. 53 { # From "isalpha.sh" example. 54 [ $# -eq 1 ] || return $FAILURE 55 56 case $1 in 57 *[!a-zA-Z]*|"") return $FAILURE;; 58 *) return $SUCCESS;; 59 esac # Thanks, S.C. 60 } 61 62 63 abs () # Absolute value. 64 { # Caution: Max return value = 255. 65 E_ARGERR=-999999 66 67 if [ -z "$1" ] # Need arg passed. 68 then 69 return $E_ARGERR # Obvious error value returned. 70 fi 71 72 if [ "$1" -ge 0 ] # If non-negative, 73 then # 74 absval=$1 # stays as-is. 75 else # Otherwise, 76 let "absval = (( 0 - $1 ))" # change sign. 77 fi 78 79 return $absval 80 } 81 82 83 tolower () # Converts string(s) passed as argument(s) 84 { #+ to lowercase. 85 86 if [ -z "$1" ] # If no argument(s) passed, 87 then #+ send error message 88 echo "(null)" #+ (C-style void-pointer error message) 89 return #+ and return from function. 90 fi 91 92 echo "$@" | tr A-Z a-z 93 # Translate all passed arguments ($@). 94 95 return 96 97 # Use command substitution to set a variable to function output. 98 # For example: 99 # oldvar="A seT of miXed-caSe LEtTerS" 100 # newvar=`tolower "$oldvar"` 101 # echo "$newvar" # a set of mixed-case letters 102 # 103 # Exercise: Rewrite this function to change lowercase passed argument(s) 104 # to uppercase ... toupper() [easy]. 105 }</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="COMMENTH" ></A ></P ><P >Use special-purpose comment headers to increase clarity and legibility in scripts.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 ## Caution. 2 rm -rf *.zzy ## The "-rf" options to "rm" are very dangerous, 3 ##+ especially with wild cards. 4 5 #+ Line continuation. 6 # This is line 1 7 #+ of a multi-line comment, 8 #+ and this is the final line. 9 10 #* Note. 11 12 #o List item. 13 14 #> Another point of view. 15 while [ "$var1" != "end" ] #> while test "$var1" != "end"</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P ><A NAME="PROGBAR" ></A ></P ><P >Dotan Barak contributes template code for a <I CLASS="FIRSTTERM" >progress bar</I > in a script.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="PROGRESSBAR" ></A ><P ><B >Example 36-17. A Progress Bar</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # progress-bar.sh 3 4 # Author: Dotan Barak (very minor revisions by ABS Guide author). 5 # Used in ABS Guide with permission (thanks!). 6 7 8 BAR_WIDTH=50 9 BAR_CHAR_START="[" 10 BAR_CHAR_END="]" 11 BAR_CHAR_EMPTY="." 12 BAR_CHAR_FULL="=" 13 BRACKET_CHARS=2 14 LIMIT=100 15 16 print_progress_bar() 17 { 18 # Calculate how many characters will be full. 19 let "full_limit = ((($1 - $BRACKET_CHARS) * $2) / $LIMIT)" 20 21 # Calculate how many characters will be empty. 22 let "empty_limit = ($1 - $BRACKET_CHARS) - ${full_limit}" 23 24 # Prepare the bar. 25 bar_line="${BAR_CHAR_START}" 26 for ((j=0; j<full_limit; j++)); do 27 bar_line="${bar_line}${BAR_CHAR_FULL}" 28 done 29 30 for ((j=0; j<empty_limit; j++)); do 31 bar_line="${bar_line}${BAR_CHAR_EMPTY}" 32 done 33 34 bar_line="${bar_line}${BAR_CHAR_END}" 35 36 printf "%3d%% %s" $2 ${bar_line} 37 } 38 39 # Here is a sample of code that uses it. 40 MAX_PERCENT=100 41 for ((i=0; i<=MAX_PERCENT; i++)); do 42 # 43 usleep 10000 44 # ... Or run some other commands ... 45 # 46 print_progress_bar ${BAR_WIDTH} ${i} 47 echo -en "\r" 48 done 49 50 echo "" 51 52 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ></LI ><LI ><P ><A NAME="COMOUTBL" ></A ></P ><P >A particularly clever use of <A HREF="tests.html#TESTCONSTRUCTS1" >if-test</A > constructs is for comment blocks.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 COMMENT_BLOCK= 4 # Try setting the above variable to some value 5 #+ for an unpleasant surprise. 6 7 if [ $COMMENT_BLOCK ]; then 8 9 Comment block -- 10 ================================= 11 This is a comment line. 12 This is another comment line. 13 This is yet another comment line. 14 ================================= 15 16 echo "This will not echo." 17 18 Comment blocks are error-free! Whee! 19 20 fi 21 22 echo "No more comments, please." 23 24 exit 0</PRE ></TD ></TR ></TABLE > </P ><P >Compare this with <A HREF="here-docs.html#CBLOCK1" >using here documents to comment out code blocks</A >.</P ></LI ><LI ><P ><A NAME="INTPARAM" ></A ></P ><P >Using the <A HREF="variables2.html#XSTATVARREF" >$? exit status variable</A >, a script may test if a parameter contains only digits, so it can be treated as an integer.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 SUCCESS=0 4 E_BADINPUT=85 5 6 test "$1" -ne 0 -o "$1" -eq 0 2>/dev/null 7 # An integer is either equal to 0 or not equal to 0. 8 # 2>/dev/null suppresses error message. 9 10 if [ $? -ne "$SUCCESS" ] 11 then 12 echo "Usage: `basename $0` integer-input" 13 exit $E_BADINPUT 14 fi 15 16 let "sum = $1 + 25" # Would give error if $1 not integer. 17 echo "Sum = $sum" 18 19 # Any variable, not just a command-line parameter, can be tested this way. 20 21 exit 0</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="RVT" ></A >The 0 - 255 range for function return values is a severe limitation. Global variables and other workarounds are often problematic. An alternative method for a function to communicate a value back to the main body of the script is to have the function write to <TT CLASS="FILENAME" >stdout</TT > (usually with <A HREF="internal.html#ECHOREF" >echo</A >) the <SPAN CLASS="QUOTE" >"return value,"</SPAN > and assign this to a variable. This is actually a variant of <A HREF="commandsub.html#COMMANDSUBREF" >command substitution.</A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="MULTIPLICATION" ></A ><P ><B >Example 36-18. Return value trickery</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # multiplication.sh 3 4 multiply () # Multiplies params passed. 5 { # Will accept a variable number of args. 6 7 local product=1 8 9 until [ -z "$1" ] # Until uses up arguments passed... 10 do 11 let "product *= $1" 12 shift 13 done 14 15 echo $product # Will not echo to stdout, 16 } #+ since this will be assigned to a variable. 17 18 mult1=15383; mult2=25211 19 val1=`multiply $mult1 $mult2` 20 # Assigns stdout (echo) of function to the variable val1. 21 echo "$mult1 X $mult2 = $val1" # 387820813 22 23 mult1=25; mult2=5; mult3=20 24 val2=`multiply $mult1 $mult2 $mult3` 25 echo "$mult1 X $mult2 X $mult3 = $val2" # 2500 26 27 mult1=188; mult2=37; mult3=25; mult4=47 28 val3=`multiply $mult1 $mult2 $mult3 $mult4` 29 echo "$mult1 X $mult2 X $mult3 X $mult4 = $val3" # 8173300 30 31 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The same technique also works for alphanumeric strings. This means that a function can <SPAN CLASS="QUOTE" >"return"</SPAN > a non-numeric value.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 capitalize_ichar () # Capitalizes initial character 2 { #+ of argument string(s) passed. 3 4 string0="$@" # Accepts multiple arguments. 5 6 firstchar=${string0:0:1} # First character. 7 string1=${string0:1} # Rest of string(s). 8 9 FirstChar=`echo "$firstchar" | tr a-z A-Z` 10 # Capitalize first character. 11 12 echo "$FirstChar$string1" # Output to stdout. 13 14 } 15 16 newstring=`capitalize_ichar "every sentence should start with a capital letter."` 17 echo "$newstring" # Every sentence should start with a capital letter.</PRE ></TD ></TR ></TABLE > </P ><P >It is even possible for a function to <SPAN CLASS="QUOTE" >"return"</SPAN > multiple values with this method.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SUMPRODUCT" ></A ><P ><B >Example 36-19. Even more return value trickery</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # sum-product.sh 3 # A function may "return" more than one value. 4 5 sum_and_product () # Calculates both sum and product of passed args. 6 { 7 echo $(( $1 + $2 )) $(( $1 * $2 )) 8 # Echoes to stdout each calculated value, separated by space. 9 } 10 11 echo 12 echo "Enter first number " 13 read first 14 15 echo 16 echo "Enter second number " 17 read second 18 echo 19 20 retval=`sum_and_product $first $second` # Assigns output of function. 21 sum=`echo "$retval" | awk '{print $1}'` # Assigns first field. 22 product=`echo "$retval" | awk '{print $2}'` # Assigns second field. 23 24 echo "$first + $second = $sum" 25 echo "$first * $second = $product" 26 echo 27 28 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="RVTCAUTION" ></A >There can be only <B CLASS="COMMAND" >one</B > <I CLASS="FIRSTTERM" >echo</I > statement in the function for this to work. If you alter the previous example:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 sum_and_product () 2 { 3 echo "This is the sum_and_product function." # This messes things up! 4 echo $(( $1 + $2 )) $(( $1 * $2 )) 5 } 6 ... 7 retval=`sum_and_product $first $second` # Assigns output of function. 8 # Now, this will not work correctly.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></LI ><LI ><P ><A NAME="PASSARRAY" ></A ></P ><P >Next in our bag of tricks are techniques for passing an <A HREF="arrays.html#ARRAYREF" >array</A > to a <A HREF="functions.html#FUNCTIONREF" >function</A >, then <SPAN CLASS="QUOTE" >"returning"</SPAN > an array back to the main body of the script.</P ><P >Passing an array involves loading the space-separated elements of the array into a variable with <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A >. <A NAME="RETARRAY" ></A >Getting an array back as the <SPAN CLASS="QUOTE" >"return value"</SPAN > from a function uses the previously mentioned strategem of <A HREF="internal.html#ECHOREF" >echoing</A > the array in the function, then invoking command substitution and the <B CLASS="COMMAND" >( ... )</B > operator to assign it to an array.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ARRFUNC" ></A ><P ><B >Example 36-20. Passing and returning arrays</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # array-function.sh: Passing an array to a function and ... 3 # "returning" an array from a function 4 5 6 Pass_Array () 7 { 8 local passed_array # Local variable! 9 passed_array=( `echo "$1"` ) 10 echo "${passed_array[@]}" 11 # List all the elements of the new array 12 #+ declared and set within the function. 13 } 14 15 16 original_array=( element1 element2 element3 element4 element5 ) 17 18 echo 19 echo "original_array = ${original_array[@]}" 20 # List all elements of original array. 21 22 23 # This is the trick that permits passing an array to a function. 24 # ********************************** 25 argument=`echo ${original_array[@]}` 26 # ********************************** 27 # Pack a variable 28 #+ with all the space-separated elements of the original array. 29 # 30 # Attempting to just pass the array itself will not work. 31 32 33 # This is the trick that allows grabbing an array as a "return value". 34 # ***************************************** 35 returned_array=( `Pass_Array "$argument"` ) 36 # ***************************************** 37 # Assign 'echoed' output of function to array variable. 38 39 echo "returned_array = ${returned_array[@]}" 40 41 echo "=============================================================" 42 43 # Now, try it again, 44 #+ attempting to access (list) the array from outside the function. 45 Pass_Array "$argument" 46 47 # The function itself lists the array, but ... 48 #+ accessing the array from outside the function is forbidden. 49 echo "Passed array (within function) = ${passed_array[@]}" 50 # NULL VALUE since the array is a variable local to the function. 51 52 echo 53 54 ############################################ 55 56 # And here is an even more explicit example: 57 58 ret_array () 59 { 60 for element in {11..20} 61 do 62 echo "$element " # Echo individual elements 63 done #+ of what will be assembled into an array. 64 } 65 66 arr=( $(ret_array) ) # Assemble into array. 67 68 echo "Capturing array \"arr\" from function ret_array () ..." 69 echo "Third element of array \"arr\" is ${arr[2]}." # 13 (zero-indexed) 70 echo -n "Entire array is: " 71 echo ${arr[@]} # 11 12 13 14 15 16 17 18 19 20 72 73 echo 74 75 exit 0 76 77 # Nathan Coulter points out that passing arrays with elements containing 78 #+ whitespace breaks this example.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >For a more elaborate example of passing arrays to functions, see <A HREF="contributed-scripts.html#LIFESLOW" >Example A-10</A >.</P ></LI ><LI ><P ><A NAME="CSTYLE" ></A ></P ><P >Using the <A HREF="dblparens.html" >double-parentheses construct</A >, it is possible to use C-style syntax for setting and incrementing/decrementing variables and in <A HREF="loops.html#FORLOOPREF1" >for</A > and <A HREF="loops.html#WHILELOOPREF" >while</A > loops. See <A HREF="loops.html#FORLOOPC" >Example 11-13</A > and <A HREF="loops.html#WHLOOPC" >Example 11-18</A >.</P ></LI ><LI ><P ><A NAME="SETPUM" ></A ></P ><P >Setting the <A HREF="variables2.html#PATHREF" >path</A > and <A HREF="system.html#UMASKREF" >umask</A > at the beginning of a script makes it more <A HREF="portabilityissues.html" >portable</A > -- more likely to run on a <SPAN CLASS="QUOTE" >"foreign"</SPAN > machine whose user may have bollixed up the <TT CLASS="VARNAME" >$PATH</TT > and <B CLASS="COMMAND" >umask</B >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 PATH=/bin:/usr/bin:/usr/local/bin ; export PATH 3 umask 022 # Files that the script creates will have 755 permission. 4 5 # Thanks to Ian D. Allen, for this tip.</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P ><A NAME="FILTEROUTP" ></A ></P ><P >A useful scripting technique is to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >repeatedly</I ></SPAN > feed the output of a filter (by piping) back to the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >same filter</I ></SPAN >, but with a different set of arguments and/or options. Especially suitable for this are <A HREF="textproc.html#TRREF" >tr</A > and <A HREF="textproc.html#GREPREF" >grep</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # From "wstrings.sh" example. 2 3 wlist=`strings "$1" | tr A-Z a-z | tr '[:space:]' Z | \ 4 tr -cs '[:alpha:]' Z | tr -s '\173-\377' Z | tr Z ' '`</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="AGRAM" ></A ><P ><B >Example 36-21. Fun with anagrams</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # agram.sh: Playing games with anagrams. 3 4 # Find anagrams of... 5 LETTERSET=etaoinshrdlu 6 FILTER='.......' # How many letters minimum? 7 # 1234567 8 9 anagram "$LETTERSET" | # Find all anagrams of the letterset... 10 grep "$FILTER" | # With at least 7 letters, 11 grep '^is' | # starting with 'is' 12 grep -v 's$' | # no plurals 13 grep -v 'ed$' # no past tense verbs 14 # Possible to add many combinations of conditions and filters. 15 16 # Uses "anagram" utility 17 #+ that is part of the author's "yawl" word list package. 18 # http://ibiblio.org/pub/Linux/libs/yawl-0.3.2.tar.gz 19 # http://bash.deta.in/yawl-0.3.2.tar.gz 20 21 exit 0 # End of code. 22 23 24 bash$ sh agram.sh 25 islander 26 isolate 27 isolead 28 isotheral 29 30 31 32 # Exercises: 33 # --------- 34 # Modify this script to take the LETTERSET as a command-line parameter. 35 # Parameterize the filters in lines 11 - 13 (as with $FILTER), 36 #+ so that they can be specified by passing arguments to a function. 37 38 # For a slightly different approach to anagramming, 39 #+ see the agram2.sh script.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="procref1.html#CONSTAT" >Example 29-4</A >, <A HREF="textproc.html#CRYPTOQUOTE" >Example 16-25</A >, and <A HREF="contributed-scripts.html#SOUNDEX" >Example A-9</A >.</P ></LI ><LI ><P ><A NAME="COMMBLAHD" ></A ></P ><P >Use <SPAN CLASS="QUOTE" >"<A HREF="here-docs.html#ANONHEREDOC0" >anonymous here documents</A >"</SPAN > to comment out blocks of code, to save having to individually comment out each line with a <SPAN CLASS="TOKEN" >#</SPAN >. See <A HREF="here-docs.html#COMMENTBLOCK" >Example 19-11</A >.</P ></LI ><LI ><P ><A NAME="WHATISREF3" ></A ></P ><P >Running a script on a machine that relies on a command that might not be installed is dangerous. Use <A HREF="filearchiv.html#WHATISREF" >whatis</A > to avoid potential problems with this.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 CMD=command1 # First choice. 2 PlanB=command2 # Fallback option. 3 4 command_test=$(whatis "$CMD" | grep 'nothing appropriate') 5 # If 'command1' not found on system , 'whatis' will return 6 #+ "command1: nothing appropriate." 7 # 8 # A safer alternative is: 9 # command_test=$(whereis "$CMD" | grep \/) 10 # But then the sense of the following test would have to be reversed, 11 #+ since the $command_test variable holds content only if 12 #+ the $CMD exists on the system. 13 # (Thanks, bojster.) 14 15 16 if [[ -z "$command_test" ]] # Check whether command present. 17 then 18 $CMD option1 option2 # Run command1 with options. 19 else # Otherwise, 20 $PlanB #+ run command2. 21 fi</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="IFGREPFIX" ></A ></P ><P >An <A HREF="tests.html#IFGREPREF" >if-grep test</A > may not return expected results in an error case, when text is output to <TT CLASS="FILENAME" >stderr</TT >, rather that <TT CLASS="FILENAME" >stdout</TT >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if ls -l nonexistent_filename | grep -q 'No such file or directory' 2 then echo "File \"nonexistent_filename\" does not exist." 3 fi</PRE ></TD ></TR ></TABLE ></P ><P ><A HREF="io-redirection.html#IOREDIRREF" >Redirecting</A > <TT CLASS="FILENAME" >stderr</TT > to <TT CLASS="FILENAME" >stdout</TT > fixes this. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if ls -l nonexistent_filename 2>&1 | grep -q 'No such file or directory' 2 # ^^^^ 3 then echo "File \"nonexistent_filename\" does not exist." 4 fi 5 6 # Thanks, Chris Martin, for pointing this out.</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P ><A NAME="SUBSHTMP" ></A > If you absolutely must access a subshell variable outside the subshell, here's a way to do it. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 TMPFILE=tmpfile # Create a temp file to store the variable. 2 3 ( # Inside the subshell ... 4 inner_variable=Inner 5 echo $inner_variable 6 echo $inner_variable >>$TMPFILE # Append to temp file. 7 ) 8 9 # Outside the subshell ... 10 11 echo; echo "-----"; echo 12 echo $inner_variable # Null, as expected. 13 echo "-----"; echo 14 15 # Now ... 16 read inner_variable <$TMPFILE # Read back shell variable. 17 rm -f "$TMPFILE" # Get rid of temp file. 18 echo "$inner_variable" # It's an ugly kludge, but it works.</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="RUNPARTSREF2" ></A ></P ><P >The <A HREF="extmisc.html#RUNPARTSREF" >run-parts</A > command is handy for running a set of command scripts in a particular sequence, especially in combination with <A HREF="system.html#CRONREF" >cron</A > or <A HREF="timedate.html#ATREF" >at</A >.</P ></LI ><LI ><P ><A NAME="RCSREF" ></A ></P ><P >For doing multiple revisions on a complex script, use the <I CLASS="FIRSTTERM" >rcs</I > Revision Control System package.</P ><P > Among other benefits of this is automatically updated ID header tags. The <B CLASS="COMMAND" >co</B > command in <I CLASS="FIRSTTERM" >rcs</I > does a parameter replacement of certain reserved key words, for example, replacing <TT CLASS="PARAMETER" ><I ># $Id$</I ></TT > in a script with something like: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # $Id: hello-world.sh,v 1.1 2004/10/16 02:43:05 bozo Exp $</PRE ></TD ></TR ></TABLE ></P ></LI ></UL ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="AEN20679" ></A >36.7.2. Widgets</H2 ><P ><A NAME="WIDGETREF" ></A ></P ><P >It would be nice to be able to invoke X-Windows widgets from a shell script. There happen to exist several packages that purport to do so, namely <I CLASS="FIRSTTERM" >Xscript</I >, <I CLASS="FIRSTTERM" >Xmenu</I >, and <I CLASS="FIRSTTERM" >widtools</I >. The first two of these no longer seem to be maintained. Fortunately, it is still possible to obtain <I CLASS="FIRSTTERM" >widtools</I > <A HREF="http://www.batse.msfc.nasa.gov/~mallozzi/home/software/xforms/src/widtools-2.0.tgz" TARGET="_top" >here</A >. </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <I CLASS="FIRSTTERM" >widtools</I > (widget tools) package requires the <I CLASS="FIRSTTERM" >XForms</I > library to be installed. Additionally, the <A HREF="filearchiv.html#MAKEFILEREF" >Makefile</A > needs some judicious editing before the package will build on a typical Linux system. Finally, three of the six widgets offered do not work (and, in fact, segfault).</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="DIALOGREF" ></A ></P ><P >The <I CLASS="FIRSTTERM" >dialog</I > family of tools offers a method of calling <SPAN CLASS="QUOTE" >"dialog"</SPAN > widgets from a shell script. The original <I CLASS="FIRSTTERM" >dialog</I > utility works in a text console, but its successors, <I CLASS="FIRSTTERM" >gdialog</I >, <I CLASS="FIRSTTERM" >Xdialog</I >, and <I CLASS="FIRSTTERM" >kdialog</I > use X-Windows-based widget sets.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="DIALOG" ></A ><P ><B >Example 36-22. Widgets invoked from a shell script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # dialog.sh: Using 'gdialog' widgets. 3 4 # Must have 'gdialog' installed on your system to run this script. 5 # Or, you can replace all instance of 'gdialog' below with 'kdialog' ... 6 # Version 1.1 (corrected 04/05/05) 7 8 # This script was inspired by the following article. 9 # "Scripting for X Productivity," by Marco Fioretti, 10 # LINUX JOURNAL, Issue 113, September 2003, pp. 86-9. 11 # Thank you, all you good people at LJ. 12 13 14 # Input error in dialog box. 15 E_INPUT=85 16 # Dimensions of display, input widgets. 17 HEIGHT=50 18 WIDTH=60 19 20 # Output file name (constructed out of script name). 21 OUTFILE=$0.output 22 23 # Display this script in a text widget. 24 gdialog --title "Displaying: $0" --textbox $0 $HEIGHT $WIDTH 25 26 27 28 # Now, we'll try saving input in a file. 29 echo -n "VARIABLE=" > $OUTFILE 30 gdialog --title "User Input" --inputbox "Enter variable, please:" \ 31 $HEIGHT $WIDTH 2>> $OUTFILE 32 33 34 if [ "$?" -eq 0 ] 35 # It's good practice to check exit status. 36 then 37 echo "Executed \"dialog box\" without errors." 38 else 39 echo "Error(s) in \"dialog box\" execution." 40 # Or, clicked on "Cancel", instead of "OK" button. 41 rm $OUTFILE 42 exit $E_INPUT 43 fi 44 45 46 47 # Now, we'll retrieve and display the saved variable. 48 . $OUTFILE # 'Source' the saved file. 49 echo "The variable input in the \"input box\" was: "$VARIABLE"" 50 51 52 rm $OUTFILE # Clean up by removing the temp file. 53 # Some applications may need to retain this file. 54 55 exit $? 56 57 # Exercise: Rewrite this script using the 'zenity' widget set.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="XMESSAGEREF2" ></A > The <A HREF="extmisc.html#XMESSAGEREF" >xmessage</A > command is a simple method of popping up a message/query window. For example: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 xmessage Fatal error in script! -button exit</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="ZENITYREF2" ></A > The latest entry in the widget sweepstakes is <A HREF="extmisc.html#ZENITYREF" >zenity</A >. This utility pops up <I CLASS="FIRSTTERM" >GTK+</I > dialog widgets-and-windows, and it works very nicely within a script. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 get_info () 2 { 3 zenity --entry # Pops up query window . . . 4 #+ and prints user entry to stdout. 5 6 # Also try the --calendar and --scale options. 7 } 8 9 answer=$( get_info ) # Capture stdout in $answer variable. 10 11 echo "User entered: "$answer""</PRE ></TD ></TR ></TABLE > </P ><P >For other methods of scripting with widgets, try <I CLASS="FIRSTTERM" >Tk</I > or <I CLASS="FIRSTTERM" >wish</I > (<I CLASS="FIRSTTERM" >Tcl</I > derivatives), <I CLASS="FIRSTTERM" >PerlTk</I > (<I CLASS="FIRSTTERM" >Perl</I > with <I CLASS="FIRSTTERM" >Tk</I > extensions), <I CLASS="FIRSTTERM" >tksh</I > (<I CLASS="FIRSTTERM" >ksh</I > with <I CLASS="FIRSTTERM" >Tk</I > extensions), <I CLASS="FIRSTTERM" >XForms4Perl</I > (<I CLASS="FIRSTTERM" >Perl</I > with <I CLASS="FIRSTTERM" >XForms</I > extensions), <I CLASS="FIRSTTERM" >Gtk-Perl</I > (<I CLASS="FIRSTTERM" >Perl</I > with <I CLASS="FIRSTTERM" >Gtk</I > extensions), or <I CLASS="FIRSTTERM" >PyQt</I > (<I CLASS="FIRSTTERM" >Python</I > with <I CLASS="FIRSTTERM" >Qt</I > extensions).</P ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="optimizations.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="securityissues.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Optimizations</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Security Issues</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/awk.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Awk</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="A Sed and Awk Micro-Primer" HREF="sedawk.html"><LINK REL="PREVIOUS" TITLE="A Sed and Awk Micro-Primer" HREF="sedawk.html"><LINK REL="NEXT" TITLE="Parsing and Managing Pathnames" HREF="pathmanagement.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="sedawk.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Appendix C. A Sed and Awk Micro-Primer</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="pathmanagement.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="AWK" ></A >C.2. Awk</H1 ><P ><A NAME="AWKREF" ></A ></P ><P ><I CLASS="FIRSTTERM" >Awk</I > <A NAME="AEN23443" HREF="#FTN.AEN23443" >[1]</A > is a full-featured text processing language with a syntax reminiscent of <I CLASS="FIRSTTERM" >C</I >. While it possesses an extensive set of operators and capabilities, we will cover only a few of these here - the ones most useful in shell scripts.</P ><P >Awk breaks each line of input passed to it into <A NAME="FIELDREF2" ></A > <A HREF="special-chars.html#FIELDREF" >fields</A >. By default, a field is a string of consecutive characters delimited by <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A >, though there are options for changing this. Awk parses and operates on each separate field. This makes it ideal for handling structured text files -- especially tables -- data organized into consistent chunks, such as rows and columns.</P ><P ><A HREF="variables.html#SNGLQUO" >Strong quoting</A > and <A HREF="special-chars.html#CODEBLOCKREF" >curly brackets</A > enclose blocks of awk code within a shell script.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # $1 is field #1, $2 is field #2, etc. 2 3 echo one two | awk '{print $1}' 4 # one 5 6 echo one two | awk '{print $2}' 7 # two 8 9 # But what is field #0 ($0)? 10 echo one two | awk '{print $0}' 11 # one two 12 # All the fields! 13 14 15 awk '{print $3}' $filename 16 # Prints field #3 of file $filename to stdout. 17 18 awk '{print $1 $5 $6}' $filename 19 # Prints fields #1, #5, and #6 of file $filename. 20 21 awk '{print $0}' $filename 22 # Prints the entire file! 23 # Same effect as: cat $filename . . . or . . . sed '' $filename</PRE ></TD ></TR ></TABLE ></P ><P >We have just seen the awk <I CLASS="FIRSTTERM" >print</I > command in action. The only other feature of awk we need to deal with here is variables. Awk handles variables similarly to shell scripts, though a bit more flexibly.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 { total += ${column_number} }</PRE ></TD ></TR ></TABLE > This adds the value of <TT CLASS="PARAMETER" ><I >column_number</I ></TT > to the running total of <TT CLASS="PARAMETER" ><I >total</I ></TT >>. Finally, to print <SPAN CLASS="QUOTE" >"total"</SPAN >, there is an <B CLASS="COMMAND" >END</B > command block, executed after the script has processed all its input. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 END { print total }</PRE ></TD ></TR ></TABLE ></P ><P >Corresponding to the <B CLASS="COMMAND" >END</B >, there is a <B CLASS="COMMAND" >BEGIN</B >, for a code block to be performed before awk starts processing its input.</P ><P >The following example illustrates how <B CLASS="COMMAND" >awk</B > can add text-parsing tools to a shell script.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="LETTERCOUNT2" ></A ><P ><B >Example C-1. Counting Letter Occurrences</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /bin/sh 2 # letter-count2.sh: Counting letter occurrences in a text file. 3 # 4 # Script by nyal [nyal@voila.fr]. 5 # Used in ABS Guide with permission. 6 # Recommented and reformatted by ABS Guide author. 7 # Version 1.1: Modified to work with gawk 3.1.3. 8 # (Will still work with earlier versions.) 9 10 11 INIT_TAB_AWK="" 12 # Parameter to initialize awk script. 13 count_case=0 14 FILE_PARSE=$1 15 16 E_PARAMERR=85 17 18 usage() 19 { 20 echo "Usage: letter-count.sh file letters" 2>&1 21 # For example: ./letter-count2.sh filename.txt a b c 22 exit $E_PARAMERR # Too few arguments passed to script. 23 } 24 25 if [ ! -f "$1" ] ; then 26 echo "$1: No such file." 2>&1 27 usage # Print usage message and exit. 28 fi 29 30 if [ -z "$2" ] ; then 31 echo "$2: No letters specified." 2>&1 32 usage 33 fi 34 35 shift # Letters specified. 36 for letter in `echo $@` # For each one . . . 37 do 38 INIT_TAB_AWK="$INIT_TAB_AWK tab_search[${count_case}] = \ 39 \"$letter\"; final_tab[${count_case}] = 0; " 40 # Pass as parameter to awk script below. 41 count_case=`expr $count_case + 1` 42 done 43 44 # DEBUG: 45 # echo $INIT_TAB_AWK; 46 47 cat $FILE_PARSE | 48 # Pipe the target file to the following awk script. 49 50 # --------------------------------------------------------------------- 51 # Earlier version of script: 52 # awk -v tab_search=0 -v final_tab=0 -v tab=0 -v \ 53 # nb_letter=0 -v chara=0 -v chara2=0 \ 54 55 awk \ 56 "BEGIN { $INIT_TAB_AWK } \ 57 { split(\$0, tab, \"\"); \ 58 for (chara in tab) \ 59 { for (chara2 in tab_search) \ 60 { if (tab_search[chara2] == tab[chara]) { final_tab[chara2]++ } } } } \ 61 END { for (chara in final_tab) \ 62 { print tab_search[chara] \" => \" final_tab[chara] } }" 63 # --------------------------------------------------------------------- 64 # Nothing all that complicated, just . . . 65 #+ for-loops, if-tests, and a couple of specialized functions. 66 67 exit $? 68 69 # Compare this script to letter-count.sh.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >For simpler examples of awk within shell scripts, see: <OL TYPE="1" ><LI ><P ><A HREF="internal.html#EX44" >Example 15-14</A ></P ></LI ><LI ><P ><A HREF="redircb.html#REDIR4" >Example 20-8</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#STRIPC" >Example 16-32</A ></P ></LI ><LI ><P ><A HREF="wrapper.html#COLTOTALER" >Example 36-5</A ></P ></LI ><LI ><P ><A HREF="ivr.html#COLTOTALER2" >Example 28-2</A ></P ></LI ><LI ><P ><A HREF="internal.html#COLTOTALER3" >Example 15-20</A ></P ></LI ><LI ><P ><A HREF="procref1.html#PIDID" >Example 29-3</A ></P ></LI ><LI ><P ><A HREF="procref1.html#CONSTAT" >Example 29-4</A ></P ></LI ><LI ><P ><A HREF="loops.html#FILEINFO" >Example 11-3</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#BLOTOUT" >Example 16-61</A ></P ></LI ><LI ><P ><A HREF="randomvar.html#SEEDINGRANDOM" >Example 9-16</A ></P ></LI ><LI ><P ><A HREF="moreadv.html#IDELETE" >Example 16-4</A ></P ></LI ><LI ><P ><A HREF="manipulatingvars.html#SUBSTRINGEX" >Example 10-6</A ></P ></LI ><LI ><P ><A HREF="assortedtips.html#SUMPRODUCT" >Example 36-19</A ></P ></LI ><LI ><P ><A HREF="loops.html#USERLIST" >Example 11-9</A ></P ></LI ><LI ><P ><A HREF="wrapper.html#PRASC" >Example 36-4</A ></P ></LI ><LI ><P ><A HREF="mathc.html#HYPOT" >Example 16-53</A ></P ></LI ><LI ><P ><A HREF="asciitable.html#ASCII3SH" >Example T-3</A ></P ></LI ></OL > </P ><P >That's all the awk we'll cover here, folks, but there's lots more to learn. See the appropriate references in the <A HREF="biblio.html" ><I >Bibliography</I ></A >.</P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN23443" HREF="awk.html#AEN23443" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Its name derives from the initials of its authors, <B CLASS="COMMAND" >A</B >ho, <B CLASS="COMMAND" >W</B >einberg, and <B CLASS="COMMAND" >K</B >ernighan.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="sedawk.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="pathmanagement.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >A Sed and Awk Micro-Primer</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="sedawk.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Parsing and Managing Pathnames</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/bash-options.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Bash Command-Line Options</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Command-Line Options" HREF="command-line-options.html"><LINK REL="PREVIOUS" TITLE="Command-Line Options" HREF="command-line-options.html"><LINK REL="NEXT" TITLE=" Important Files" HREF="files.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="command-line-options.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Appendix G. Command-Line Options</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="files.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="BASH-OPTIONS" ></A >G.2. Bash Command-Line Options</H1 ><P ><A NAME="CLOPTS" ></A ></P ><P ><I CLASS="FIRSTTERM" >Bash</I > itself has a number of command-line options. Here are some of the more useful ones.</P ><UL ><LI ><P ><TT CLASS="OPTION" >-c</TT ></P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Read commands from the following string and assign any arguments to the <A HREF="variables2.html#POSPARAMREF" >positional parameters</A >.</I ></SPAN ></P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >bash -c 'set a b c d; IFS="+-;"; echo "$*"'</B ></TT > <TT CLASS="COMPUTEROUTPUT" >a+b+c+d</TT > </PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><TT CLASS="OPTION" >-r</TT ></P ><P ><TT CLASS="OPTION" >--restricted</TT ></P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Runs the shell, or a script, in <A HREF="restricted-sh.html#RESTRICTEDSHREF" >restricted mode</A >.</I ></SPAN ></P ></LI ><LI ><P ><TT CLASS="OPTION" >--posix</TT ></P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Forces Bash to conform to <A HREF="sha-bang.html#POSIX2REF" >POSIX</A > mode.</I ></SPAN ></P ></LI ><LI ><P ><TT CLASS="OPTION" >--version</TT ></P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Display Bash version information and exit.</I ></SPAN ></P ></LI ><LI ><P ><TT CLASS="OPTION" >--</TT ></P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >End of options. Anything further on the command line is an argument, not an option.</I ></SPAN ></P ></LI ></UL ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="command-line-options.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="files.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Command-Line Options</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="command-line-options.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Important Files</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/bash2.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Bash, versions 2, 3, and 4</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Shell Scripting Under Windows" HREF="winscript.html"><LINK REL="NEXT" TITLE="Bash, version 3" HREF="bashver3.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="winscript.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="bashver3.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="BASH2" ></A >Chapter 37. Bash, versions 2, 3, and 4</H1 ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="BASHVER2" ></A >37.1. Bash, version 2</H1 ><P ><A NAME="BASH2REF" ></A ></P ><P > The current version of <I CLASS="FIRSTTERM" >Bash</I >, the one you have running on your machine, is most likely version 2.xx.yy, 3.xx.yy, or 4.xx.yy. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $BASH_VERSION</B ></TT > <TT CLASS="COMPUTEROUTPUT" >3.2.25(1)-release</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The version 2 update of the classic Bash scripting language added array variables, string and parameter expansion, and a better method of indirect variable references, among other features.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX77" ></A ><P ><B >Example 37-1. String expansion</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # String expansion. 4 # Introduced with version 2 of Bash. 5 6 # Strings of the form $'xxx' 7 #+ have the standard escaped characters interpreted. 8 9 echo $'Ringing bell 3 times \a \a \a' 10 # May only ring once with certain terminals. 11 # Or ... 12 # May not ring at all, depending on terminal settings. 13 echo $'Three form feeds \f \f \f' 14 echo $'10 newlines \n\n\n\n\n\n\n\n\n\n' 15 echo $'\102\141\163\150' 16 # B a s h 17 # Octal equivalent of characters. 18 19 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="VARREFNEW" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX78" ></A ><P ><B >Example 37-2. Indirect variable references - the new way</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Indirect variable referencing. 4 # This has a few of the attributes of references in C++. 5 6 7 a=letter_of_alphabet 8 letter_of_alphabet=z 9 10 echo "a = $a" # Direct reference. 11 12 echo "Now a = ${!a}" # Indirect reference. 13 # The ${!variable} notation is more intuitive than the old 14 #+ eval var1=\$$var2 15 16 echo 17 18 t=table_cell_3 19 table_cell_3=24 20 echo "t = ${!t}" # t = 24 21 table_cell_3=387 22 echo "Value of t changed to ${!t}" # 387 23 # No 'eval' necessary. 24 25 # This is useful for referencing members of an array or table, 26 #+ or for simulating a multi-dimensional array. 27 # An indexing option (analogous to pointer arithmetic) 28 #+ would have been nice. Sigh. 29 30 exit 0 31 32 # See also, ind-ref.sh example.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="RESISTOR" ></A ><P ><B >Example 37-3. Simple database application, using indirect variable referencing</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # resistor-inventory.sh 3 # Simple database / table-lookup application. 4 5 # ============================================================== # 6 # Data 7 8 B1723_value=470 # Ohms 9 B1723_powerdissip=.25 # Watts 10 B1723_colorcode="yellow-violet-brown" # Color bands 11 B1723_loc=173 # Where they are 12 B1723_inventory=78 # How many 13 14 B1724_value=1000 15 B1724_powerdissip=.25 16 B1724_colorcode="brown-black-red" 17 B1724_loc=24N 18 B1724_inventory=243 19 20 B1725_value=10000 21 B1725_powerdissip=.125 22 B1725_colorcode="brown-black-orange" 23 B1725_loc=24N 24 B1725_inventory=89 25 26 # ============================================================== # 27 28 29 echo 30 31 PS3='Enter catalog number: ' 32 33 echo 34 35 select catalog_number in "B1723" "B1724" "B1725" 36 do 37 Inv=${catalog_number}_inventory 38 Val=${catalog_number}_value 39 Pdissip=${catalog_number}_powerdissip 40 Loc=${catalog_number}_loc 41 Ccode=${catalog_number}_colorcode 42 43 echo 44 echo "Catalog number $catalog_number:" 45 # Now, retrieve value, using indirect referencing. 46 echo "There are ${!Inv} of [${!Val} ohm / ${!Pdissip} watt]\ 47 resistors in stock." # ^ ^ 48 # As of Bash 4.2, you can replace "ohm" with \u2126 (using echo -e). 49 echo "These are located in bin # ${!Loc}." 50 echo "Their color code is \"${!Ccode}\"." 51 52 break 53 done 54 55 echo; echo 56 57 # Exercises: 58 # --------- 59 # 1) Rewrite this script to read its data from an external file. 60 # 2) Rewrite this script to use arrays, 61 #+ rather than indirect variable referencing. 62 # Which method is more straightforward and intuitive? 63 # Which method is easier to code? 64 65 66 # Notes: 67 # ----- 68 # Shell scripts are inappropriate for anything except the most simple 69 #+ database applications, and even then it involves workarounds and kludges. 70 # Much better is to use a language with native support for data structures, 71 #+ such as C++ or Java (or even Perl). 72 73 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="CARDS" ></A ><P ><B >Example 37-4. Using arrays and other miscellaneous trickery to deal four random hands from a deck of cards</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # cards.sh 3 4 # Deals four random hands from a deck of cards. 5 6 UNPICKED=0 7 PICKED=1 8 9 DUPE_CARD=99 10 11 LOWER_LIMIT=0 12 UPPER_LIMIT=51 13 CARDS_IN_SUIT=13 14 CARDS=52 15 16 declare -a Deck 17 declare -a Suits 18 declare -a Cards 19 # It would have been easier to implement and more intuitive 20 #+ with a single, 3-dimensional array. 21 # Perhaps a future version of Bash will support multidimensional arrays. 22 23 24 initialize_Deck () 25 { 26 i=$LOWER_LIMIT 27 until [ "$i" -gt $UPPER_LIMIT ] 28 do 29 Deck[i]=$UNPICKED # Set each card of "Deck" as unpicked. 30 let "i += 1" 31 done 32 echo 33 } 34 35 initialize_Suits () 36 { 37 Suits[0]=C #Clubs 38 Suits[1]=D #Diamonds 39 Suits[2]=H #Hearts 40 Suits[3]=S #Spades 41 } 42 43 initialize_Cards () 44 { 45 Cards=(2 3 4 5 6 7 8 9 10 J Q K A) 46 # Alternate method of initializing an array. 47 } 48 49 pick_a_card () 50 { 51 card_number=$RANDOM 52 let "card_number %= $CARDS" # Restrict range to 0 - 51, i.e., 52 cards. 53 if [ "${Deck[card_number]}" -eq $UNPICKED ] 54 then 55 Deck[card_number]=$PICKED 56 return $card_number 57 else 58 return $DUPE_CARD 59 fi 60 } 61 62 parse_card () 63 { 64 number=$1 65 let "suit_number = number / CARDS_IN_SUIT" 66 suit=${Suits[suit_number]} 67 echo -n "$suit-" 68 let "card_no = number % CARDS_IN_SUIT" 69 Card=${Cards[card_no]} 70 printf %-4s $Card 71 # Print cards in neat columns. 72 } 73 74 seed_random () # Seed random number generator. 75 { # What happens if you don't do this? 76 seed=`eval date +%s` 77 let "seed %= 32766" 78 RANDOM=$seed 79 } # Consider other methods of seeding the random number generator. 80 81 deal_cards () 82 { 83 echo 84 85 cards_picked=0 86 while [ "$cards_picked" -le $UPPER_LIMIT ] 87 do 88 pick_a_card 89 t=$? 90 91 if [ "$t" -ne $DUPE_CARD ] 92 then 93 parse_card $t 94 95 u=$cards_picked+1 96 # Change back to 1-based indexing, temporarily. Why? 97 let "u %= $CARDS_IN_SUIT" 98 if [ "$u" -eq 0 ] # Nested if/then condition test. 99 then 100 echo 101 echo 102 fi # Each hand set apart with a blank line. 103 104 let "cards_picked += 1" 105 fi 106 done 107 108 echo 109 110 return 0 111 } 112 113 114 # Structured programming: 115 # Entire program logic modularized in functions. 116 117 #=============== 118 seed_random 119 initialize_Deck 120 initialize_Suits 121 initialize_Cards 122 deal_cards 123 #=============== 124 125 exit 126 127 128 129 # Exercise 1: 130 # Add comments to thoroughly document this script. 131 132 # Exercise 2: 133 # Add a routine (function) to print out each hand sorted in suits. 134 # You may add other bells and whistles if you like. 135 136 # Exercise 3: 137 # Simplify and streamline the logic of the script.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="winscript.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="bashver3.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Shell Scripting Under Windows</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Bash, version 3</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/bashver3.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Bash, version 3</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Bash, versions 2, 3, and 4" HREF="bash2.html"><LINK REL="PREVIOUS" TITLE="Bash, versions 2, 3, and 4" HREF="bash2.html"><LINK REL="NEXT" TITLE="Bash, version 4" HREF="bashver4.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="bash2.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 37. Bash, versions 2, 3, and 4</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="bashver4.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="BASHVER3" ></A >37.2. Bash, version 3</H1 ><P ><A NAME="BASH3REF" ></A ></P ><P >On July 27, 2004, Chet Ramey released version 3 of Bash. This update fixed quite a number of bugs and added new features.</P ><P >Some of the more important added features: <UL ><LI ><P ><A NAME="BRACEEXPREF3" ></A ></P ><P >A new, more generalized <B CLASS="COMMAND" >{a..z}</B > <A HREF="special-chars.html#BRACEEXPREF" >brace expansion</A > operator.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 for i in {1..10} 4 # Simpler and more straightforward than 5 #+ for i in $(seq 10) 6 do 7 echo -n "$i " 8 done 9 10 echo 11 12 # 1 2 3 4 5 6 7 8 9 10 13 14 15 16 # Or just . . . 17 18 echo {a..z} # a b c d e f g h i j k l m n o p q r s t u v w x y z 19 echo {e..m} # e f g h i j k l m 20 echo {z..a} # z y x w v u t s r q p o n m l k j i h g f e d c b a 21 # Works backwards, too. 22 echo {25..30} # 25 26 27 28 29 30 23 echo {3..-2} # 3 2 1 0 -1 -2 24 echo {X..d} # X Y Z [ ] ^ _ ` a b c d 25 # Shows (some of) the ASCII characters between Z and a, 26 #+ but don't rely on this type of behavior because . . . 27 echo {]..a} # {]..a} 28 # Why? 29 30 31 # You can tack on prefixes and suffixes. 32 echo "Number #"{1..4}, "..." 33 # Number #1, Number #2, Number #3, Number #4, ... 34 35 36 # You can concatenate brace-expansion sets. 37 echo {1..3}{x..z}" +" "..." 38 # 1x + 1y + 1z + 2x + 2y + 2z + 3x + 3y + 3z + ... 39 # Generates an algebraic expression. 40 # This could be used to find permutations. 41 42 # You can nest brace-expansion sets. 43 echo {{a..c},{1..3}} 44 # a b c 1 2 3 45 # The "comma operator" splices together strings. 46 47 # ########## ######### ############ ########### ######### ############### 48 # Unfortunately, brace expansion does not lend itself to parameterization. 49 var1=1 50 var2=5 51 echo {$var1..$var2} # {1..5} 52 53 54 # Yet, as Emiliano G. points out, using "eval" overcomes this limitation. 55 56 start=0 57 end=10 58 for index in $(eval echo {$start..$end}) 59 do 60 echo -n "$index " # 0 1 2 3 4 5 6 7 8 9 10 61 done 62 63 echo</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P >The <B CLASS="COMMAND" >${!array[@]}</B > operator, which expands to all the indices of a given <A HREF="arrays.html#ARRAYREF" >array</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 Array=(element-zero element-one element-two element-three) 4 5 echo ${Array[0]} # element-zero 6 # First element of array. 7 8 echo ${!Array[@]} # 0 1 2 3 9 # All the indices of Array. 10 11 for i in ${!Array[@]} 12 do 13 echo ${Array[i]} # element-zero 14 # element-one 15 # element-two 16 # element-three 17 # 18 # All the elements in Array. 19 done</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P ><A NAME="REGEXMATCHREF" ></A ></P ><P >The <B CLASS="COMMAND" >=~</B > <A HREF="regexp.html#REGEXREF" >Regular Expression</A > matching operator within a <A HREF="tests.html#DBLBRACKETS" >double brackets</A > test expression. (Perl has a similar operator.)</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 variable="This is a fine mess." 4 5 echo "$variable" 6 7 # Regex matching with =~ operator within [[ double brackets ]]. 8 if [[ "$variable" =~ T.........fin*es* ]] 9 # NOTE: As of version 3.2 of Bash, expression to match no longer quoted. 10 then 11 echo "match found" 12 # match found 13 fi</PRE ></TD ></TR ></TABLE ></P ><P >Or, more usefully:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 input=$1 4 5 6 if [[ "$input" =~ "[0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9]" ]] 7 # ^ NOTE: Quoting not necessary, as of version 3.2 of Bash. 8 # NNN-NN-NNNN (where each N is a digit). 9 then 10 echo "Social Security number." 11 # Process SSN. 12 else 13 echo "Not a Social Security number!" 14 # Or, ask for corrected input. 15 fi</PRE ></TD ></TR ></TABLE ></P ><P >For additional examples of using the <B CLASS="COMMAND" >=~</B > operator, see <A HREF="contributed-scripts.html#WHX" >Example A-29</A >, <A HREF="here-docs.html#MAILBOXGREP" >Example 19-14</A >, <A HREF="contributed-scripts.html#FINDSPLIT" >Example A-35</A >, and <A HREF="contributed-scripts.html#TOHTML" >Example A-24</A >.</P ></LI ><LI ><P ><A NAME="PIPEFAILREF" ></A ></P ><P >The new <TT CLASS="OPTION" >set -o pipefail</TT > option is useful for debugging <A HREF="special-chars.html#PIPEREF" >pipes</A >. If this option is set, then the <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of a pipe is the exit status of the last command in the pipe to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >fail</I ></SPAN > (return a non-zero value), rather than the actual final command in the pipe.</P ><P >See <A HREF="communications.html#FC4UPD" >Example 16-43</A >.</P ></LI ></UL > </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The update to version 3 of Bash breaks a few scripts that worked under earlier versions. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Test critical legacy scripts to make sure they still work!</I ></SPAN ></P ><P >As it happens, a couple of the scripts in the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Advanced Bash Scripting Guide</I ></SPAN > had to be fixed up (see <A HREF="variables2.html#TOUT" >Example 9-4</A >, for instance).</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="AEN20956" ></A >37.2.1. Bash, version 3.1</H2 ><P >The version 3.1 update of Bash introduces a number of bugfixes and a few minor changes.</P ><UL ><LI ><P >The <SPAN CLASS="TOKEN" >+=</SPAN > operator is now permitted in in places where previously only the <SPAN CLASS="TOKEN" >=</SPAN > assignment operator was recognized.</P ><P ><A NAME="PLUSEQSTR" ></A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 a=1 2 echo $a # 1 3 4 a+=5 # Won't work under versions of Bash earlier than 3.1. 5 echo $a # 15 6 7 a+=Hello 8 echo $a # 15Hello</PRE ></TD ></TR ></TABLE > </P ><P >Here, <SPAN CLASS="TOKEN" >+=</SPAN > functions as a <I CLASS="FIRSTTERM" >string concatenation</I > operator. Note that its behavior in this particular context is different than within a <A HREF="internal.html#LETREF" >let</A > construct.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 a=1 2 echo $a # 1 3 4 let a+=5 # Integer arithmetic, rather than string concatenation. 5 echo $a # 6 6 7 let a+=Hello # Doesn't "add" anything to a. 8 echo $a # 6</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="PATHAPPEND" ></A >Jeffrey Haemer points out that this concatenation operator can be quite useful. In this instance, we append a directory to the <TT CLASS="VARNAME" >$PATH</TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $PATH</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/usr/bin:/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >PATH+=:/opt/bin</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $PATH</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/usr/bin:/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/opt/bin</TT > </PRE ></TD ></TR ></TABLE > </P ></LI ></UL ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="AEN20987" ></A >37.2.2. Bash, version 3.2</H2 ><P >This is pretty much a bugfix update.</P ><UL ><LI ><P >In <A HREF="parameter-substitution.html#PSGLOB" ><I CLASS="FIRSTTERM" >global</I > parameter substitutions</A >, the pattern no longer anchors at the start of the string.</P ></LI ><LI ><P >The <TT CLASS="OPTION" >--wordexp</TT > option disables <A HREF="process-sub.html#PROCESSSUBREF" >process substitution</A >.</P ></LI ><LI ><P >The <B CLASS="COMMAND" >=~</B > <A HREF="bashver3.html#REGEXMATCHREF" >Regular Expression match operator</A > no longer requires <A HREF="quoting.html#QUOTINGREF" >quoting</A > of the <I CLASS="FIRSTTERM" >pattern</I > within <A HREF="tests.html#DBLBRACKETS" >[[ ... ]]</A >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >In fact, quoting in this context is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > advisable as it may cause <I CLASS="FIRSTTERM" >regex</I > evaluation to fail. Chet Ramey states in the <A HREF="biblio.html#BASHFAQ" >Bash FAQ</A > that quoting explicitly disables regex evaluation. See also the <A HREF="https://bugs.launchpad.net/ubuntu-website/+bug/109931" TARGET="_top" > Ubuntu Bug List</A > and <A HREF="http://en.wikinerds.org/index.php/Bash_syntax_and_semantics" TARGET="_top" > Wikinerds on Bash syntax</A >.</P ><P >Setting <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >shopt -s compat31</I ></SPAN > in a script causes reversion to the original behavior.</P ></TD ></TR ></TABLE ></DIV ></LI ></UL ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="bash2.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="bashver4.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Bash, versions 2, 3, and 4</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="bash2.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Bash, version 4</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/bashver4.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Bash, version 4</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Bash, versions 2, 3, and 4" HREF="bash2.html"><LINK REL="PREVIOUS" TITLE="Bash, version 3" HREF="bashver3.html"><LINK REL="NEXT" TITLE="Endnotes" HREF="endnotes.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="bashver3.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 37. Bash, versions 2, 3, and 4</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="endnotes.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="BASHVER4" ></A >37.3. Bash, version 4</H1 ><P ><A NAME="BASH4REF" ></A ></P ><P >Chet Ramey announced Version 4 of Bash on the 20th of February, 2009. This release has a number of significant new features, as well as some important bugfixes.</P ><P >Among the new goodies:</P ><UL ><LI ><P ><A NAME="ASSOCARR" ></A >Associative arrays. <A NAME="AEN21025" HREF="#FTN.AEN21025" >[1]</A > </P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN21029" ></A ><P >An <I CLASS="FIRSTTERM" >associative</I > array can be thought of as a set of two linked arrays -- one holding the <I CLASS="FIRSTTERM" >data</I >, and the other the <I CLASS="FIRSTTERM" >keys</I > that index the individual elements of the <I CLASS="FIRSTTERM" >data</I > array.</P ></DIV ></TD ></TR ></TABLE ><DIV CLASS="EXAMPLE" ><HR><A NAME="FETCHADDRESS" ></A ><P ><B >Example 37-5. A simple address database</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 # fetch_address.sh 3 4 declare -A address 5 # -A option declares associative array. 6 7 address[Charles]="414 W. 10th Ave., Baltimore, MD 21236" 8 address[John]="202 E. 3rd St., New York, NY 10009" 9 address[Wilma]="1854 Vermont Ave, Los Angeles, CA 90023" 10 11 12 echo "Charles's address is ${address[Charles]}." 13 # Charles's address is 414 W. 10th Ave., Baltimore, MD 21236. 14 echo "Wilma's address is ${address[Wilma]}." 15 # Wilma's address is 1854 Vermont Ave, Los Angeles, CA 90023. 16 echo "John's address is ${address[John]}." 17 # John's address is 202 E. 3rd St., New York, NY 10009. 18 19 echo 20 21 echo "${!address[*]}" # The array indices ... 22 # Charles John Wilma</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="FETCHADDRESS2" ></A ><P ><B >Example 37-6. A somewhat more elaborate address database</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 # fetch_address-2.sh 3 # A more elaborate version of fetch_address.sh. 4 5 SUCCESS=0 6 E_DB=99 # Error code for missing entry. 7 8 declare -A address 9 # -A option declares associative array. 10 11 12 store_address () 13 { 14 address[$1]="$2" 15 return $? 16 } 17 18 19 fetch_address () 20 { 21 if [[ -z "${address[$1]}" ]] 22 then 23 echo "$1's address is not in database." 24 return $E_DB 25 fi 26 27 echo "$1's address is ${address[$1]}." 28 return $? 29 } 30 31 32 store_address "Lucas Fayne" "414 W. 13th Ave., Baltimore, MD 21236" 33 store_address "Arvid Boyce" "202 E. 3rd St., New York, NY 10009" 34 store_address "Velma Winston" "1854 Vermont Ave, Los Angeles, CA 90023" 35 # Exercise: 36 # Rewrite the above store_address calls to read data from a file, 37 #+ then assign field 1 to name, field 2 to address in the array. 38 # Each line in the file would have a format corresponding to the above. 39 # Use a while-read loop to read from file, sed or awk to parse the fields. 40 41 fetch_address "Lucas Fayne" 42 # Lucas Fayne's address is 414 W. 13th Ave., Baltimore, MD 21236. 43 fetch_address "Velma Winston" 44 # Velma Winston's address is 1854 Vermont Ave, Los Angeles, CA 90023. 45 fetch_address "Arvid Boyce" 46 # Arvid Boyce's address is 202 E. 3rd St., New York, NY 10009. 47 fetch_address "Bozo Bozeman" 48 # Bozo Bozeman's address is not in database. 49 50 exit $? # In this case, exit code = 99, since that is function return.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See <A HREF="contributed-scripts.html#SAMORSE" >Example A-53</A > for an interesting usage of an <I CLASS="FIRSTTERM" >associative array</I >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Elements of the <I CLASS="FIRSTTERM" >index</I > array may include embedded <A HREF="special-chars.html#WHITESPACEREF" >space characters</A >, or even leading and/or trailing space characters. However, index array elements containing <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >only</I ></SPAN > <I CLASS="FIRSTTERM" >whitespace</I > are <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > permitted.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 address[ ]="Blank" # Error!</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></LI ><LI ><P ><A NAME="NCTERM" ></A >Enhancements to the <A HREF="testbranch.html#CASEESAC1" >case</A > construct: the <TT CLASS="REPLACEABLE" ><I >;;&</I ></TT > and <TT CLASS="REPLACEABLE" ><I >;&</I ></TT > terminators.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="CASE4" ></A ><P ><B >Example 37-7. Testing characters</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 3 test_char () 4 { 5 case "$1" in 6 [[:print:]] ) echo "$1 is a printable character.";;& # | 7 # The ;;& terminator continues to the next pattern test. | 8 [[:alnum:]] ) echo "$1 is an alpha/numeric character.";;& # v 9 [[:alpha:]] ) echo "$1 is an alphabetic character.";;& # v 10 [[:lower:]] ) echo "$1 is a lowercase alphabetic character.";;& 11 [[:digit:]] ) echo "$1 is an numeric character.";& # | 12 # The ;& terminator executes the next statement ... # | 13 %%%@@@@@ ) echo "********************************";; # v 14 # ^^^^^^^^ ... even with a dummy pattern. 15 esac 16 } 17 18 echo 19 20 test_char 3 21 # 3 is a printable character. 22 # 3 is an alpha/numeric character. 23 # 3 is an numeric character. 24 # ******************************** 25 echo 26 27 test_char m 28 # m is a printable character. 29 # m is an alpha/numeric character. 30 # m is an alphabetic character. 31 # m is a lowercase alphabetic character. 32 echo 33 34 test_char / 35 # / is a printable character. 36 37 echo 38 39 # The ;;& terminator can save complex if/then conditions. 40 # The ;& is somewhat less useful.</PRE ></TD ></TR ></TABLE ><HR></DIV ></LI ><LI ><P ><A NAME="COPROCREF" ></A >The new <B CLASS="COMMAND" >coproc</B > builtin enables two parallel <A HREF="special-chars.html#PROCESSREF" >processes</A > to communicate and interact. As Chet Ramey states in the <A HREF="biblio.html#BASHFAQ" >Bash FAQ</A > <A NAME="AEN21068" HREF="#FTN.AEN21068" >[2]</A > , ver. 4.01: </P ><A NAME="AEN21070" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" ><P CLASS="LITERALLAYOUT" > There is a new 'coproc' reserved word that specifies a coprocess:<br> an asynchronous command run with two pipes connected to the creating<br> shell. Coprocs can be named. The input and output file descriptors<br> and the PID of the coprocess are available to the calling shell in<br> variables with coproc-specific names.<br> <br> George Dimitriu explains,<br> "... coproc ... is a feature used in Bash process substitution,<br> which now is made publicly available."<br> This means it can be explicitly invoked in a script, rather than<br> just being a behind-the-scenes mechanism used by Bash.<br> </P ></BLOCKQUOTE ><P >Coprocesses use <I CLASS="FIRSTTERM" >file descriptors</I >. <A HREF="io-redirection.html#FDREF2" >File descriptors enable processes and pipes to communicate</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 # A coprocess communicates with a while-read loop. 3 4 5 coproc { cat mx_data.txt; sleep 2; } 6 # ^^^^^^^ 7 # Try running this without "sleep 2" and see what happens. 8 9 while read -u ${COPROC[0]} line # ${COPROC[0]} is the 10 do #+ file descriptor of the coprocess. 11 echo "$line" | sed -e 's/line/NOT-ORIGINAL-TEXT/' 12 done 13 14 kill $COPROC_PID # No longer need the coprocess, 15 #+ so kill its PID.</PRE ></TD ></TR ></TABLE ></P ><P >But, be careful!</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 3 echo; echo 4 a=aaa 5 b=bbb 6 c=ccc 7 8 coproc echo "one two three" 9 while read -u ${COPROC[0]} a b c; # Note that this loop 10 do #+ runs in a subshell. 11 echo "Inside while-read loop: "; 12 echo "a = $a"; echo "b = $b"; echo "c = $c" 13 echo "coproc file descriptor: ${COPROC[0]}" 14 done 15 16 # a = one 17 # b = two 18 # c = three 19 # So far, so good, but ... 20 21 echo "-----------------" 22 echo "Outside while-read loop: " 23 echo "a = $a" # a = 24 echo "b = $b" # b = 25 echo "c = $c" # c = 26 echo "coproc file descriptor: ${COPROC[0]}" 27 echo 28 # The coproc is still running, but ... 29 #+ it still doesn't enable the parent process 30 #+ to "inherit" variables from the child process, the while-read loop. 31 32 # Compare this to the "badread.sh" script.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The coprocess is <I CLASS="FIRSTTERM" >asynchronous</I >, and this might cause a problem. It may terminate before another process has finished communicating with it.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 3 coproc cpname { for i in {0..10}; do echo "index = $i"; done; } 4 # ^^^^^^ This is a *named* coprocess. 5 read -u ${cpname[0]} 6 echo $REPLY # index = 0 7 echo ${COPROC[0]} #+ No output ... the coprocess timed out 8 # after the first loop iteration. 9 10 11 12 # However, George Dimitriu has a partial fix. 13 14 coproc cpname { for i in {0..10}; do echo "index = $i"; done; sleep 1; 15 echo hi > myo; cat - >> myo; } 16 # ^^^^^ This is a *named* coprocess. 17 18 echo "I am main"$'\04' >&${cpname[1]} 19 myfd=${cpname[0]} 20 echo myfd=$myfd 21 22 ### while read -u $myfd 23 ### do 24 ### echo $REPLY; 25 ### done 26 27 echo $cpname_PID 28 29 # Run this with and without the commented-out while-loop, and it is 30 #+ apparent that each process, the executing shell and the coprocess, 31 #+ waits for the other to finish writing in its own write-enabled pipe.</PRE ></TD ></TR ></TABLE ></TD ></TR ></TABLE ></DIV ></LI ><LI ><P ><A NAME="MAPFILEREF" ></A >The new <B CLASS="COMMAND" >mapfile</B > builtin makes it possible to load an array with the contents of a text file without using a loop or <A HREF="arrays.html#ARRAYINITCS" >command substitution</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 3 mapfile Arr1 < $0 4 # Same result as Arr1=( $(cat $0) ) 5 echo "${Arr1[@]}" # Copies this entire script out to stdout. 6 7 echo "--"; echo 8 9 # But, not the same as read -a !!! 10 read -a Arr2 < $0 11 echo "${Arr2[@]}" # Reads only first line of script into the array. 12 13 exit</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P >The <A HREF="internal.html#READREF" >read</A > builtin got a minor facelift. The <TT CLASS="OPTION" >-t</TT > <A HREF="internal.html#READTIMED" >timeout</A > option now accepts (decimal) fractional values <A NAME="AEN21096" HREF="#FTN.AEN21096" >[3]</A > and the <TT CLASS="OPTION" >-i</TT > option permits preloading the edit buffer. <A NAME="AEN21101" HREF="#FTN.AEN21101" >[4]</A > Unfortunately, these enhancements are still a work in progress and not (yet) usable in scripts.</P ></LI ><LI ><P ><A NAME="CASEMODPARAMSUB" ></A > <A HREF="parameter-substitution.html#PARAMSUBREF" >Parameter substitution</A > gets <I CLASS="FIRSTTERM" >case-modification</I > operators.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 3 var=veryMixedUpVariable 4 echo ${var} # veryMixedUpVariable 5 echo ${var^} # VeryMixedUpVariable 6 # * First char --> uppercase. 7 echo ${var^^} # VERYMIXEDUPVARIABLE 8 # ** All chars --> uppercase. 9 echo ${var,} # veryMixedUpVariable 10 # * First char --> lowercase. 11 echo ${var,,} # verymixedupvariable 12 # ** All chars --> lowercase.</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P ><A NAME="DECLARECASEMOD" ></A ></P ><P >The <A HREF="declareref.html" >declare</A > builtin now accepts the <TT CLASS="OPTION" >-l</TT > <I CLASS="FIRSTTERM" >lowercase</I > and <TT CLASS="OPTION" >-c</TT > <I CLASS="FIRSTTERM" >capitalize</I > options.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 3 declare -l var1 # Will change to lowercase 4 var1=MixedCaseVARIABLE 5 echo "$var1" # mixedcasevariable 6 # Same effect as echo $var1 | tr A-Z a-z 7 8 declare -c var2 # Changes only initial char to uppercase. 9 var2=originally_lowercase 10 echo "$var2" # Originally_lowercase 11 # NOT the same effect as echo $var2 | tr a-z A-Z</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P ><A NAME="BRACEEXPREF4" ></A > <A HREF="special-chars.html#BRACEEXPREF" >Brace expansion</A > has more options.</P ><P ><I CLASS="FIRSTTERM" >Increment/decrement</I >, specified in the final term within braces.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 3 echo {40..60..2} 4 # 40 42 44 46 48 50 52 54 56 58 60 5 # All the even numbers, between 40 and 60. 6 7 echo {60..40..2} 8 # 60 58 56 54 52 50 48 46 44 42 40 9 # All the even numbers, between 40 and 60, counting backwards. 10 # In effect, a decrement. 11 echo {60..40..-2} 12 # The same output. The minus sign is not necessary. 13 14 # But, what about letters and symbols? 15 echo {X..d} 16 # X Y Z [ ] ^ _ ` a b c d 17 # Does not echo the \ which escapes a space.</PRE ></TD ></TR ></TABLE ></P ><P ><I CLASS="FIRSTTERM" >Zero-padding</I >, specified in the first term within braces, prefixes each term in the output with the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >same number</I ></SPAN > of zeroes.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash4$ </TT ><TT CLASS="USERINPUT" ><B >echo {010..15}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >010 011 012 013 014 015</TT > <TT CLASS="PROMPT" >bash4$ </TT ><TT CLASS="USERINPUT" ><B >echo {000..10}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >000 001 002 003 004 005 006 007 008 009 010</TT > </PRE ></TD ></TR ></TABLE ></LI ><LI ><P ><A NAME="SUBSTREXTREF4" ></A ></P ><P ><A HREF="bashver4.html#SUBSTREXTREF4" ><I CLASS="FIRSTTERM" >Substring extraction</I > on <I CLASS="FIRSTTERM" >positional parameters</I ></A > now starts with <A HREF="othertypesv.html#SCRNAMEPARAM" >$0</A > as the <I CLASS="FIRSTTERM" >zero-index</I >. (This corrects an inconsistency in the treatment of positional parameters.)</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # show-params.bash 3 # Requires version 4+ of Bash. 4 5 # Invoke this scripts with at least one positional parameter. 6 7 E_BADPARAMS=99 8 9 if [ -z "$1" ] 10 then 11 echo "Usage $0 param1 ..." 12 exit $E_BADPARAMS 13 fi 14 15 echo ${@:0} 16 17 # bash3 show-params.bash4 one two three 18 # one two three 19 20 # bash4 show-params.bash4 one two three 21 # show-params.bash4 one two three 22 23 # $0 $1 $2 $3</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P ><A NAME="GLOBSTARREF" ></A >The new <SPAN CLASS="TOKEN" >**</SPAN > <A HREF="globbingref.html" >globbing</A > operator matches filenames and directories <A HREF="localvar.html#RECURSIONREF0" >recursively</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 # filelist.bash4 3 4 shopt -s globstar # Must enable globstar, otherwise ** doesn't work. 5 # The globstar shell option is new to version 4 of Bash. 6 7 echo "Using *"; echo 8 for filename in * 9 do 10 echo "$filename" 11 done # Lists only files in current directory ($PWD). 12 13 echo; echo "--------------"; echo 14 15 echo "Using **" 16 for filename in ** 17 do 18 echo "$filename" 19 done # Lists complete file tree, recursively. 20 21 exit 22 23 Using * 24 25 allmyfiles 26 filelist.bash4 27 28 -------------- 29 30 Using ** 31 32 allmyfiles 33 allmyfiles/file.index.txt 34 allmyfiles/my_music 35 allmyfiles/my_music/me-singing-60s-folksongs.ogg 36 allmyfiles/my_music/me-singing-opera.ogg 37 allmyfiles/my_music/piano-lesson.1.ogg 38 allmyfiles/my_pictures 39 allmyfiles/my_pictures/at-beach-with-Jade.png 40 allmyfiles/my_pictures/picnic-with-Melissa.png 41 filelist.bash4</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P >The new <A HREF="variables2.html#BASHPIDREF" >$BASHPID</A > internal variable.</P ></LI ><LI ><P ><A NAME="CNFH" ></A ></P ><P >There is a new <A HREF="internal.html#BUILTINREF" >builtin</A > error-handling function named <B CLASS="COMMAND" >command_not_found_handle</B >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 3 command_not_found_handle () 4 { # Accepts implicit parameters. 5 echo "The following command is not valid: \""$1\""" 6 echo "With the following argument(s): \""$2\"" \""$3\""" # $4, $5 ... 7 } # $1, $2, etc. are not explicitly passed to the function. 8 9 bad_command arg1 arg2 10 11 # The following command is not valid: "bad_command" 12 # With the following argument(s): "arg1" "arg2"</PRE ></TD ></TR ></TABLE ></P ></LI ></UL ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN21170" ></A ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Editorial comment</I ></SPAN ></P ><P >Associative arrays? Coprocesses? Whatever happened to the lean and mean Bash we have come to know and love? Could it be suffering from (horrors!) <SPAN CLASS="QUOTE" >"feature creep"</SPAN >? Or perhaps even Korn shell envy?</P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Note to Chet Ramey:</I ></SPAN > Please add only <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >essential</I ></SPAN > features in future Bash releases -- perhaps <I CLASS="FIRSTTERM" >for-each</I > loops and support for multi-dimensional arrays. <A NAME="AEN21179" HREF="#FTN.AEN21179" >[5]</A > Most Bash users won't need, won't use, and likely won't greatly appreciate complex <SPAN CLASS="QUOTE" >"features"</SPAN > like built-in debuggers, Perl interfaces, and bolt-on rocket boosters.</P ></DIV ></TD ></TR ></TABLE ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="AEN21183" ></A >37.3.1. Bash, version 4.1</H2 ><P ><A NAME="BASH41" ></A >Version 4.1 of Bash, released in May, 2010, was primarily a bugfix update.</P ><UL ><LI ><P >The <A HREF="internal.html#PRINTFREF" >printf</A > command now accepts a <TT CLASS="OPTION" >-v</TT > option for setting <A HREF="arrays.html#ARRAYREF" >array</A > indices.</P ></LI ><LI ><P >Within <A HREF="tests.html#DBLBRACKETS" >double brackets</A >, the <B CLASS="COMMAND" >></B > and <B CLASS="COMMAND" ><</B > string comparison operators now conform to the <A HREF="localization.html#LOCALEREF" >locale</A >. Since the locale setting may affect the sorting order of string expressions, this has side-effects on comparison tests within <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >[[ ... ]]</I ></SPAN > expressions.</P ></LI ><LI ><P >The <A HREF="internal.html#READREF" >read</A > builtin now takes a <TT CLASS="OPTION" >-N</TT > option (<I CLASS="FIRSTTERM" >read -N chars</I >), which causes the <I CLASS="FIRSTTERM" >read</I > to terminate after <I CLASS="FIRSTTERM" >chars</I > characters.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="READN" ></A ><P ><B >Example 37-8. Reading N characters</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Requires Bash version -ge 4.1 ... 3 4 num_chars=61 5 6 read -N $num_chars var < $0 # Read first 61 characters of script! 7 echo "$var" 8 exit 9 10 ####### Output of Script ####### 11 12 #!/bin/bash 13 # Requires Bash version -ge 4.1 ... 14 15 num_chars=61</PRE ></TD ></TR ></TABLE ><HR></DIV ></LI ><LI ><P ><A HREF="here-docs.html#HEREDOCREF" >Here documents</A > embedded in <A HREF="varassignment.html#COMMANDSUBREF0" > <TT CLASS="USERINPUT" ><B >$( ... )</B ></TT > command substitution</A > constructs may terminate with a simple <B CLASS="COMMAND" >)</B >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="HERECOMMSUB" ></A ><P ><B >Example 37-9. Using a <I CLASS="FIRSTTERM" >here document</I > to set a variable</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # here-commsub.sh 3 # Requires Bash version -ge 4.1 ... 4 5 multi_line_var=$( cat <<ENDxxx 6 ------------------------------ 7 This is line 1 of the variable 8 This is line 2 of the variable 9 This is line 3 of the variable 10 ------------------------------ 11 ENDxxx) 12 13 # Rather than what Bash 4.0 requires: 14 #+ that the terminating limit string and 15 #+ the terminating close-parenthesis be on separate lines. 16 17 # ENDxxx 18 # ) 19 20 21 echo "$multi_line_var" 22 23 # Bash still emits a warning, though. 24 # warning: here-document at line 10 delimited 25 #+ by end-of-file (wanted `ENDxxx')</PRE ></TD ></TR ></TABLE ><HR></DIV ></LI ></UL ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="AEN21220" ></A >37.3.2. Bash, version 4.2</H2 ><P ><A NAME="BASH42" ></A >Version 4.2 of Bash, released in February, 2011, contains a number of new features and enhancements, in addition to bugfixes.</P ><UL ><LI ><P >Bash now supports the the <TT CLASS="REPLACEABLE" ><I >\u</I ></TT > and <TT CLASS="REPLACEABLE" ><I >\U</I ></TT > <I CLASS="FIRSTTERM" >Unicode</I > escape.</P ><P ><A NAME="UNICODEREF" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN21232" ></A ><P >Unicode is a cross-platform standard for encoding into numerical values letters and graphic symbols. This permits representing and displaying characters in foreign alphabets and unusual fonts.</P ></DIV ></TD ></TR ></TABLE ><P ><A NAME="UNICODEREF2" ></A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo -e '\u2630' # Horizontal triple bar character. 2 # Equivalent to the more roundabout: 3 echo -e "\xE2\x98\xB0" 4 # Recognized by earlier Bash versions. 5 6 echo -e '\u220F' # PI (Greek letter and mathematical symbol) 7 echo -e '\u0416' # Capital "ZHE" (Cyrillic letter) 8 echo -e '\u2708' # Airplane (Dingbat font) symbol 9 echo -e '\u2622' # Radioactivity trefoil 10 11 echo -e "The amplifier circuit requires a 100 \u2126 pull-up resistor." 12 13 14 unicode_var='\u2640' 15 echo -e $unicode_var # Female symbol 16 printf "$unicode_var \n" # Female symbol, with newline 17 18 19 # And for something a bit more elaborate . . . 20 21 # We can store Unicode symbols in an associative array, 22 #+ then retrieve them by name. 23 # Run this in a gnome-terminal or a terminal with a large, bold font 24 #+ for better legibility. 25 26 declare -A symbol # Associative array. 27 28 symbol[script_E]='\u2130' 29 symbol[script_F]='\u2131' 30 symbol[script_J]='\u2110' 31 symbol[script_M]='\u2133' 32 symbol[Rx]='\u211E' 33 symbol[TEL]='\u2121' 34 symbol[FAX]='\u213B' 35 symbol[care_of]='\u2105' 36 symbol[account]='\u2100' 37 symbol[trademark]='\u2122' 38 39 40 echo -ne "${symbol[script_E]} " 41 echo -ne "${symbol[script_F]} " 42 echo -ne "${symbol[script_J]} " 43 echo -ne "${symbol[script_M]} " 44 echo -ne "${symbol[Rx]} " 45 echo -ne "${symbol[TEL]} " 46 echo -ne "${symbol[FAX]} " 47 echo -ne "${symbol[care_of]} " 48 echo -ne "${symbol[account]} " 49 echo -ne "${symbol[trademark]} " 50 echo</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The above example uses the <A HREF="escapingsection.html#STRQ" ><B CLASS="COMMAND" >$' ... '</B ></A > <I CLASS="FIRSTTERM" >string-expansion</I > construct.</P ></TD ></TR ></TABLE ></DIV ></LI ><LI ><P ><A NAME="LASTPIPEREF" ></A ></P ><P >When the <TT CLASS="REPLACEABLE" ><I >lastpipe</I ></TT > shell option is set, the last command in a <A HREF="special-chars.html#PIPEREF" >pipe</A > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >doesn't run in a subshell</I ></SPAN >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="LASTPIPEOPT" ></A ><P ><B >Example 37-10. Piping input to a <A HREF="internal.html#READREF" >read</A ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # lastpipe-option.sh 3 4 line='' # Null value. 5 echo "\$line = "$line"" # $line = 6 7 echo 8 9 shopt -s lastpipe # Error on Bash version -lt 4.2. 10 echo "Exit status of attempting to set \"lastpipe\" option is $?" 11 # 1 if Bash version -lt 4.2, 0 otherwise. 12 13 echo 14 15 head -1 $0 | read line # Pipe the first line of the script to read. 16 # ^^^^^^^^^ Not in a subshell!!! 17 18 echo "\$line = "$line"" 19 # Older Bash releases $line = 20 # Bash version 4.2 $line = #!/bin/bash</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >This option offers possible <SPAN CLASS="QUOTE" >"fixups"</SPAN > for these example scripts: <A HREF="gotchas.html#BADREAD" >Example 34-3</A > and <A HREF="internal.html#READPIPE" >Example 15-8</A >.</P ></LI ><LI ><P >Negative <A HREF="arrays.html#ARRAYREF" >array</A > indices permit counting backwards from the end of an array.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="NEGARRAY" ></A ><P ><B >Example 37-11. Negative array indices</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # neg-array.sh 3 # Requires Bash, version -ge 4.2. 4 5 array=( zero one two three four five ) # Six-element array. 6 # 0 1 2 3 4 5 7 # -6 -5 -4 -3 -2 -1 8 9 # Negative array indices now permitted. 10 echo ${array[-1]} # five 11 echo ${array[-2]} # four 12 # ... 13 echo ${array[-6]} # zero 14 # Negative array indices count backward from the last element+1. 15 16 # But, you cannot index past the beginning of the array. 17 echo ${array[-7]} # array: bad array subscript 18 19 20 # So, what is this new feature good for? 21 22 echo "The last element in the array is "${array[-1]}"" 23 # Which is quite a bit more straightforward than: 24 echo "The last element in the array is "${array[${#array[*]}-1]}"" 25 echo 26 27 # And ... 28 29 index=0 30 let "neg_element_count = 0 - ${#array[*]}" 31 # Number of elements, converted to a negative number. 32 33 while [ $index -gt $neg_element_count ]; do 34 ((index--)); echo -n "${array[index]} " 35 done # Lists the elements in the array, backwards. 36 # We have just simulated the "tac" command on this array. 37 38 echo 39 40 # See also neg-offset.sh.</PRE ></TD ></TR ></TABLE ><HR></DIV ></LI ><LI ><P ><A HREF="manipulatingvars.html#SUBSTREXTR01" >Substring extraction</A > uses a negative <I CLASS="FIRSTTERM" >length</I > parameter to specify an offset from the <I CLASS="FIRSTTERM" >end</I > of the target string.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="NEGOFFSET" ></A ><P ><B >Example 37-12. Negative parameter in string-extraction construct</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Bash, version -ge 4.2 3 # Negative length-index in substring extraction. 4 # Important: It changes the interpretation of this construct! 5 6 stringZ=abcABC123ABCabc 7 8 echo ${stringZ} # abcABC123ABCabc 9 # Position within string: 0123456789..... 10 echo ${stringZ:2:3} # cAB 11 # Count 2 chars forward from string beginning, and extract 3 chars. 12 # ${string:position:length} 13 14 # So far, nothing new, but now ... 15 16 # abcABC123ABCabc 17 # Position within string: 0123....6543210 18 echo ${stringZ:3:-6} # ABC123 19 # ^ 20 # Index 3 chars forward from beginning and 6 chars backward from end, 21 #+ and extract everything in between. 22 # ${string:offset-from-front:offset-from-end} 23 # When the "length" parameter is negative, 24 #+ it serves as an offset-from-end parameter. 25 26 # See also neg-array.sh.</PRE ></TD ></TR ></TABLE ><HR></DIV ></LI ></UL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21025" HREF="bashver4.html#AEN21025" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >To be more specific, Bash 4+ has <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >limited</I ></SPAN > support for associative arrays. It's a bare-bones implementation, and it lacks the much of the functionality of such arrays in other programming languages. Note, however, that <A HREF="optimizations.html#ASSOCARRTST" >associative arrays in Bash seem to execute faster and more efficiently than numerically-indexed arrays</A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21068" HREF="bashver4.html#AEN21068" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Copyright 1995-2009 by Chester Ramey.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21096" HREF="bashver4.html#AEN21096" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This only works with <A HREF="special-chars.html#PIPEREF" >pipes</A > and certain other <I CLASS="FIRSTTERM" >special</I > files.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21101" HREF="bashver4.html#AEN21101" >[4]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >But only in conjunction with <A HREF="internal.html#READLINEREF" >readline</A >, i.e., from the command-line.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21179" HREF="bashver4.html#AEN21179" >[5]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >And while you're at it, consider fixing the notorious <A HREF="internal.html#PIPEREADREF0" >piped read</A > problem.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="bashver3.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="endnotes.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Bash, version 3</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="bash2.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Endnotes</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/biblio.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Bibliography</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Disclaimer" HREF="disclaimer.html"><LINK REL="NEXT" TITLE="Contributed Scripts" HREF="contributed-scripts.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="BIBLIOGRAPHY" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="disclaimer.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="contributed-scripts.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><A NAME="BIBLIO" ></A ><H1 ><A NAME="BIBLIO" ></A >Bibliography</H1 ><A NAME="BIBLIOREF" ></A ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Those who do not understand UNIX are condemned to reinvent it, poorly.</I ></P ><P ><I >--Henry Spencer</I ></P ><P ><I ><A NAME="DENNINGREF" ></A ></I ></P ></I ></TD ></TR ></TABLE ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21461" ></A ><P ><SPAN CLASS="EDITOR" >Edited by Peter Denning</SPAN >, <I >Computers Under Attack: Intruders, Worms, and Viruses</I >, ACM Press, 1990, 0-201-53067-8.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >This compendium contains a couple of articles on shell script viruses.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21475" ></A ><P ><SPAN CLASS="AUTHOR" >Ken Burtch</SPAN >, <I ><A HREF="http://www.samspublishing.com/title/0672326426" TARGET="_top" >Linux Shell Scripting with Bash</A ></I >, 1st edition, Sams Publishing (Pearson), 2004, 0672326426.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P > Covers much of the same material as the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >ABS Guide</I ></SPAN >, though in a different style.</P ><P >*</P ><P ><A NAME="DGSEDREF" ></A ></P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21494" ></A ><P ><SPAN CLASS="AUTHOR" >Daniel Goldman</SPAN >, <I ><A HREF="http://www.sed-book.com/" TARGET="_top" >Definitive Guide to Sed</A ></I >, 1st edition, 2013.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P > This ebook is an excellent introduction to <I CLASS="FIRSTTERM" >sed</I >. Rather than being a conversion from a printed volume, it was specifically designed and formatted for viewing on an ebook reader. Well-written, informative, and useful as a reference as well as a tutorial. Highly recommended.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21508" ></A ><P ><SPAN CLASS="AUTHOR" >Dale Dougherty </SPAN ><SPAN CLASS="AUTHOR" >and Arnold Robbins</SPAN >, <I >Sed and Awk</I >, 2nd edition, O'Reilly and Associates, 1997, 1-156592-225-5.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P > Unfolding the full power of shell scripting requires at least a passing familiarity with <A HREF="sedawk.html#SEDREF" ><I CLASS="FIRSTTERM" >sed</I > and <I CLASS="FIRSTTERM" >awk</I ></A >. This is the classic tutorial. It includes an excellent introduction to <I CLASS="FIRSTTERM" >Regular Expressions</I >. Recommended.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21530" ></A ><P ><SPAN CLASS="AUTHOR" >Jeffrey Friedl</SPAN >, <I >Mastering Regular Expressions</I >, O'Reilly and Associates, 2002, 0-596-00289-0.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Still the best all-around reference on <A HREF="regexp.html#REGEXREF" >Regular Expressions</A >.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21545" ></A ><P ><SPAN CLASS="AUTHOR" >Aeleen Frisch</SPAN >, <I >Essential System Administration</I >, 3rd edition, O'Reilly and Associates, 2002, 0-596-00343-9.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >This excellent manual provides a decent introduction to shell scripting from a sys admin point of view. It includes comprehensive explanations of the startup and initialization scripts in a UNIX system.</P ><P >*</P ><P ><A NAME="KOCHANREF" ></A ></P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21562" ></A ><P ><SPAN CLASS="AUTHOR" >Stephen Kochan </SPAN ><SPAN CLASS="AUTHOR" >and Patrick Wood</SPAN >, <I >Unix Shell Programming</I >, Hayden, 1990, 067248448X.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Still considered a standard reference, though somewhat dated, and a bit <SPAN CLASS="QUOTE" >"wooden"</SPAN > stylistically speaking. <A NAME="AEN21579" HREF="#FTN.AEN21579" >[1]</A > In fact, this book was the <I CLASS="FIRSTTERM" >ABS Guide</I > author's first exposure to UNIX shell scripting, lo these many years ago.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21583" ></A ><P ><SPAN CLASS="AUTHOR" >Neil Matthew </SPAN ><SPAN CLASS="AUTHOR" >and Richard Stones</SPAN >, <I >Beginning Linux Programming</I >, Wrox Press, 1996, 1874416680.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Surprisingly good in-depth coverage of various programming languages available for Linux, including a fairly strong chapter on shell scripting.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="MAYERREF" ></A ><P ><SPAN CLASS="AUTHOR" >Herbert Mayer</SPAN >, <I >Advanced C Programming on the IBM PC</I >, Windcrest Books, 1989, 0830693637.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Excellent coverage of algorithms and general programming practices. Highly recommended, but unfortunately out of print.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21614" ></A ><P ><SPAN CLASS="AUTHOR" >David Medinets</SPAN >, <I >Unix Shell Programming Tools</I >, McGraw-Hill, 1999, 0070397333.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Pretty good treatment of shell scripting, with examples, and a short intro to Tcl and Perl.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21628" ></A ><P ><SPAN CLASS="AUTHOR" >Cameron Newham </SPAN ><SPAN CLASS="AUTHOR" >and Bill Rosenblatt</SPAN >, <I >Learning the Bash Shell</I >, 2nd edition, O'Reilly and Associates, 1998, 1-56592-347-2.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >This is a valiant effort at a decent shell primer, but sadly deficient in its coverage of writing scripts and lacking sufficient examples.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21646" ></A ><P ><SPAN CLASS="AUTHOR" >Anatole Olczak</SPAN >, <I >Bourne Shell Quick Reference Guide</I >, ASP, Inc., 1991, 093573922X.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >A very handy pocket reference, despite lacking coverage of Bash-specific features.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21660" ></A ><P ><SPAN CLASS="AUTHOR" >Jerry Peek, </SPAN ><SPAN CLASS="AUTHOR" >Tim O'Reilly, </SPAN ><SPAN CLASS="AUTHOR" >and Mike Loukides</SPAN >, <I >Unix Power Tools</I >, 3rd edition, O'Reilly and Associates, Random House, 2002, 0-596-00330-7.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Contains a couple of sections of very informative in-depth articles on shell programming, but falls short of being a self-teaching manual. It reproduces much of the <A HREF="regexp.html#REGEXREF" >Regular Expressions</A > tutorial from the Dougherty and Robbins book, above. The comprehensive coverage of UNIX commands makes this book worthy of a place on your bookshelf.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21684" ></A ><P ><SPAN CLASS="AUTHOR" >Clifford Pickover</SPAN >, <I >Computers, Pattern, Chaos, and Beauty</I >, St. Martin's Press, 1990, 0-312-04123-3.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >A treasure trove of ideas and recipes for computer-based exploration of mathematical oddities.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21698" ></A ><P ><SPAN CLASS="AUTHOR" >George Polya</SPAN >, <I >How To Solve It</I >, Princeton University Press, 1973, 0-691-02356-5.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The classic tutorial on problem-solving methods (algorithms), with special emphasis on how to teach them.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21712" ></A ><P ><SPAN CLASS="AUTHOR" >Chet Ramey </SPAN ><SPAN CLASS="AUTHOR" >and Brian Fox</SPAN >, <I ><A HREF="http://www.network-theory.co.uk/bash/manual/" TARGET="_top" >The GNU Bash Reference Manual</A ></I >, Network Theory Ltd, 2003, 0-9541617-7-7.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >This manual is the definitive reference for GNU Bash. The authors of this manual, Chet Ramey and Brian Fox, are the original developers of GNU Bash. For each copy sold, the publisher donates $1 to the Free Software Foundation.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21730" ></A ><P ><SPAN CLASS="AUTHOR" >Arnold Robbins</SPAN >, <I >Bash Reference Card</I >, SSC, 1998, 1-58731-010-5.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Excellent Bash pocket reference (don't leave home without it, especially if you're a sysadmin). A bargain at $4.95, but unfortunately no longer available for free download.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21744" ></A ><P ><SPAN CLASS="AUTHOR" >Arnold Robbins</SPAN >, <I >Effective Awk Programming</I >, Free Software Foundation / O'Reilly and Associates, 2000, 1-882114-26-4.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The absolute best <A HREF="awk.html#AWKREF" >awk</A > tutorial and reference. The free electronic version of this book is part of the <I CLASS="FIRSTTERM" >awk</I > documentation, and printed copies of the latest version are available from O'Reilly and Associates.</P ><P >This book served as an inspiration for the author of the <I CLASS="FIRSTTERM" >ABS Guide</I >.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21762" ></A ><P ><SPAN CLASS="AUTHOR" >Bill Rosenblatt</SPAN >, <I >Learning the Korn Shell</I >, O'Reilly and Associates, 1993, 1-56592-054-6.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><A NAME="KORNSHELLREF" ></A >This well-written book contains some excellent pointers on shell scripting in general.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21777" ></A ><P ><SPAN CLASS="AUTHOR" >Paul Sheer</SPAN >, <I >LINUX: Rute User's Tutorial and Exposition</I >, 1st edition, , 2002, 0-13-033351-4.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Very detailed and readable introduction to Linux system administration.</P ><P >The book is available in print, or <A HREF="http://burks.brighton.ac.uk/burks/linux/rute/rute.htm" TARGET="_top" >on-line</A >.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21794" ></A ><P ><SPAN CLASS="AUTHOR" >Ellen Siever </SPAN ><SPAN CLASS="AUTHOR" >and the staff of O'Reilly and Associates</SPAN >, <I >Linux in a Nutshell</I >, 2nd edition, O'Reilly and Associates, 1999, 1-56592-585-8.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The all-around best Linux command reference. It even has a Bash section.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21811" ></A ><P ><SPAN CLASS="AUTHOR" >Dave Taylor</SPAN >, <I >Wicked Cool Shell Scripts: 101 Scripts for Linux, Mac OS X, and Unix Systems</I >, 1st edition, No Starch Press, 2004, 1-59327-012-7.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Pretty much what the title promises . . .</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21826" ></A ><P ><I >The UNIX CD Bookshelf</I >, 3rd edition, O'Reilly and Associates, 2003, 0-596-00392-7.</P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >An array of seven UNIX books on CD ROM, including <I CLASS="CITETITLE" >UNIX Power Tools</I >, <I CLASS="CITETITLE" >Sed and Awk</I >, and <I CLASS="CITETITLE" >Learning the Korn Shell</I >. A complete set of all the UNIX references and tutorials you would ever need at about $130. Buy this one, even if it means going into debt and not paying the rent.</P ><P >Update: Seems to have somehow fallen out of print. Ah, well. You can still buy the dead-tree editions of these books.</P ><P >*</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21841" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The O'Reilly books on Perl. (Actually, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >any</I ></SPAN > O'Reilly books.)</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21845" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >* * *</P ><P ><B CLASS="COMMAND" >Other Resources</B ></P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21850" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Fioretti, Marco, <SPAN CLASS="QUOTE" >"Scripting for X Productivity,"</SPAN > <A HREF="linuxjournal.com" TARGET="_top" ><I CLASS="CITETITLE" >Linux Journal</I ></A >, Issue 113, September, 2003, pp. 86-9.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21856" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Ben Okopnik's well-written <I CLASS="CITETITLE" >introductory Bash scripting</I > articles in issues 53, 54, 55, 57, and 59 of the <A HREF="http://www.linuxgazette.net" TARGET="_top" ><I CLASS="CITETITLE" >Linux Gazette</I ></A >, and his explanation of <SPAN CLASS="QUOTE" >"The Deep, Dark Secrets of Bash"</SPAN > in issue 56.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21863" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Chet Ramey's <I CLASS="CITETITLE" >Bash - The GNU Shell</I >, a two-part series published in issues 3 and 4 of the <A HREF="http://www.linuxjournal.com" TARGET="_top" ><I CLASS="CITETITLE" >Linux Journal</I ></A >, July-August 1994.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21869" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Mike G's <A HREF="http://www.tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html" TARGET="_top" >Bash-Programming-Intro HOWTO</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21873" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Richard's <A HREF="http://www.injunea.demon.co.uk/index.htm" TARGET="_top" >Unix Scripting Universe</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21877" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><A NAME="BASHFAQ" ></A >Chet Ramey's <A HREF="http://tiswww.case.edu/php/chet/bash/FAQ" TARGET="_top" >Bash FAQ</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21882" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><A HREF="http://wooledge.org:8000/BashFAQ" TARGET="_top" > Greg's WIKI: Bash FAQ</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21886" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Example shell scripts at <A HREF="http://alge.anart.no/linux/scripts/" TARGET="_top" >Lucc's Shell Scripts </A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21890" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Example shell scripts at <A HREF="http://www.shelldorado.com" TARGET="_top" >SHELLdorado </A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21894" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Example shell scripts at <A HREF="http://www.splode.com/~friedman/software/scripts/src/" TARGET="_top" >Noah Friedman's script site</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21898" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><A HREF="http://bashcookbook.com/bashinfo/" TARGET="_top" >Examples</A > from the <I CLASS="CITETITLE" >The Bash Scripting Cookbook</I >, by Albing, Vossen, and Newham.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21903" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Example shell scripts at <A HREF="http://www.zazzybob.com" TARGET="_top" >zazzybob</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21907" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Steve Parker's <A HREF="http://steve-parker.org/sh/sh.shtml" TARGET="_top" >Shell Programming Stuff</A >. In fact, all of his shell scripting books are highly recommended. See also Steve's <A HREF="http://nixshell.wordpress.com/2011/07/13/arcade-games-written-in-a-shell-script/" TARGET="_top" >Arcade Games written in a shell script</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21912" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >An excellent collection of Bash scripting tips, tricks, and resources at the <A HREF="http://www.bash-hackers.org/wiki.doku.php" TARGET="_top" >Bash Hackers Wiki</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21916" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Giles Orr's <A HREF="http://www.tldp.org/HOWTO/Bash-Prompt-HOWTO/" TARGET="_top" >Bash-Prompt HOWTO</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21920" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The <A HREF="http://www.pixelbeat.org/cmdline.html" TARGET="_top" ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Pixelbeat</I ></SPAN > command-line reference</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21925" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Very nice <B CLASS="COMMAND" >sed</B >, <B CLASS="COMMAND" >awk</B >, and regular expression tutorials at <A HREF="http://www.grymoire.com/Unix/index.html" TARGET="_top" >The UNIX Grymoire</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21931" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The GNU <A HREF="http://www.gnu.org/software/sed/manual/" TARGET="_top" >sed</A > and <A HREF="http://www.gnu.org/software/gawk/manual/" TARGET="_top" > gawk</A > manuals. As you recall, <A HREF="regexp.html#GNUGAWK" >gawk</A > is the enhanced GNU version of <B CLASS="COMMAND" >awk</B >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21938" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Many interesting sed scripts at the <A HREF="http://sed.sourceforge.net/grabbag/" TARGET="_top" > seder's grab bag</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21942" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Tips and tricks at <A HREF="http://linuxreviews.org" TARGET="_top" > Linux Reviews</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21946" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Trent Fisher's <A HREF="http://www.cs.pdx.edu/~trent/gnu/groff/groff.html" TARGET="_top" >groff tutorial</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21950" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >David Wheeler's <A HREF="http://www.dwheeler.com/essays/filenames-in-shell.html" TARGET="_top" >Filenames in Shell</A > essay.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21954" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><SPAN CLASS="QUOTE" >"Shelltris"</SPAN > and <SPAN CLASS="QUOTE" >"shellitaire"</SPAN > at <A HREF="http://www.shellscriptgames.com" TARGET="_top" >Shell Script Games</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21960" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >YongYe's wonderfully complex <A HREF="http://bash.deta.in/Tetris_Game.sh" TARGET="_top" >Tetris game script</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21964" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Mark Komarinski's <A HREF="http://www.tldp.org/HOWTO/Printing-Usage-HOWTO.html" TARGET="_top" >Printing-Usage HOWTO</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21968" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><A HREF="http://www.linux-usb.org/USB-guide/book1.html" TARGET="_top" >The Linux USB subsystem</A > (helpful in writing scripts affecting USB peripherals).</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21972" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >There is some nice material on <A HREF="io-redirection.html#IOREDIRREF" >I/O redirection</A > in <A HREF="http://sunsite.ualberta.ca/Documentation/Gnu/textutils-2.0/html_chapter/textutils_10.html" TARGET="_top" > chapter 10 of the textutils documentation</A > at the <A HREF="http://sunsite.ualberta.ca/Documentation" TARGET="_top" > University of Alberta site</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21978" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><A HREF="mailto:humbubba@smarty.smart.net" TARGET="_top" >Rick Hohensee</A > has written the <I CLASS="FIRSTTERM" >osimpa</I > i386 assembler entirely as Bash scripts.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21983" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><I CLASS="FIRSTTERM" >dgatwood</I > has a very nice <A HREF="http://www.shellscriptgames.com/" TARGET="_top" > shell script games</A > site, featuring a Tetris® clone and solitaire.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21988" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Aurelio Marinho Jargas has written a <A HREF="http://txt2regex.sf.net" TARGET="_top" >Regular expression wizard</A >. He has also written an informative <A HREF="http://guia-er.sf.net" TARGET="_top" >book</A > on Regular Expressions, in Portuguese.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21993" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><A HREF="mailto:brtompkins@comcast.net" TARGET="_top" >Ben Tomkins</A > has created the <A HREF="http://bashnavigator.sourceforge.net" TARGET="_top" > Bash Navigator</A > directory management tool.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN21998" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><A HREF="mailto:opengeometry@yahoo.ca" TARGET="_top" >William Park</A > has been working on a project to incorporate certain <I CLASS="FIRSTTERM" >Awk</I > and <I CLASS="FIRSTTERM" >Python</I > features into Bash. Among these is a <I CLASS="FIRSTTERM" >gdbm</I > interface. He has released <I CLASS="FIRSTTERM" >bashdiff</I > on <A HREF="http://freshmeat.net" TARGET="_top" >Freshmeat.net</A >. He has an <A HREF="http://linuxgazette.net/108/park.html" TARGET="_top" >article</A > in the November, 2004 issue of the <A HREF="http://www.linuxgazette.net" TARGET="_top" ><I CLASS="CITETITLE" >Linux Gazette</I ></A > on adding string functions to Bash, with a <A HREF="http://linuxgazette.net/109/park.html" TARGET="_top" >followup article</A > in the December issue, and <A HREF="http://linuxgazette.net/110/park.htm" TARGET="_top" >yet another</A > in the January, 2005 issue.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22012" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Peter Knowles has written an <A HREF="http://booklistgensh.peterknowles.com/" TARGET="_top" >elaborate Bash script</A > that generates a book list on the <A HREF="http://www.dottocomu.com/b/archives/002571.html" TARGET="_top" >Sony Librie</A > e-book reader. This useful tool facilitates loading non-DRM user content on the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Librie</I ></SPAN > (and the newer <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >PRS-xxx-series</I ></SPAN > devices).</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22019" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Tim Waugh's <A HREF="http://cyberelk.net/tim/xmlto/" TARGET="_top" >xmlto</A > is an elaborate Bash script for converting Docbook XML documents to other formats.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22023" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Philip Patterson's <A HREF="http://www.gossiplabs.org" TARGET="_top" >logforbash</A > logging/debugging script.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22027" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><A HREF="http://auctiongallery.sourceforge.net" TARGET="_top" >AuctionGallery</A >, an application for eBay <SPAN CLASS="QUOTE" >"power sellers"</SPAN > coded in Bash.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22032" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Of historical interest are Colin Needham's <I CLASS="FIRSTTERM" >original International Movie Database (IMDB) reader polling scripts</I >, which nicely illustrate the use of <A HREF="awk.html#AWKREF" >awk</A > for string parsing. Unfortunately, the URL link is broken.</P ><P >---</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22038" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Fritz Mehner has written a <A HREF="http://vim.sourceforge.net/scripts/script.php?script_id=365" TARGET="_top" >bash-support plugin</A > for the <I CLASS="FIRSTTERM" >vim</I > text editor. He has also also come up with his own <A HREF="http://lug.fh-swf.de/vim/vim-bash/StyleGuideShell.en.pdf" TARGET="_top" >stylesheet for Bash</A >. Compare it with the <A HREF="scrstyle.html#UNOFFICIALST" >ABS Guide Unofficial Stylesheet</A >.</P ><P >---</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22046" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Penguin Pete</I ></SPAN > has quite a number of shell scripting tips and hints on <A HREF="http://www.penguinpetes.com" TARGET="_top" >his superb site</A >. Highly recommended.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22051" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The excellent <I CLASS="CITETITLE" > Bash Reference Manual</I >, by Chet Ramey and Brian Fox, distributed as part of the <I CLASS="FIRSTTERM" >bash-2-doc</I > package (available as an <A HREF="filearchiv.html#RPMREF" >rpm</A >). See especially the instructive example scripts in this package.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22057" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >John Lion's classic, <A HREF="http://www.lemis.com/grog/Documentation/Lions/index.html" TARGET="_top" > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >A Commentary on the Sixth Edition UNIX Operating System</I ></SPAN ></A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22062" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The <A HREF="news:comp.unix.shell" TARGET="_top" >comp.os.unix.shell</A > newsgroup.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22066" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P ><A NAME="DDLINK" ></A ></P ><P >The <A HREF="http://www.linuxquestions.org/questions/showthread.php?t=362506" TARGET="_top" ><I CLASS="FIRSTTERM" >dd</I > thread</A > on <A HREF="http://www.linuxquestions.org" TARGET="_top" >Linux Questions</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22074" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The <A HREF="http://www.newsville.com/cgi-bin/getfaq?file=comp.unix.shell/comp.unix.shell_FAQ_-_Answers_to_Frequently_Asked_Questions" TARGET="_top" >comp.os.unix.shell FAQ</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22078" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >Assorted comp.os.unix <A HREF="http://www.faqs.org/faqs/by-newsgroup/comp/comp.unix.shell.html" TARGET="_top" > FAQs</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22082" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The <A HREF="http://en.wikipedia.org/wiki/Dc_(Unix)" TARGET="_top" ><I CLASS="FIRSTTERM" >Wikipedia</I > article</A > covering <A HREF="mathc.html#DCREF" >dc</A >.</P ></DIV ></DIV ></DIV ><DIV CLASS="BIBLIOENTRY" ><A NAME="AEN22088" ></A ><P ></P ><DIV CLASS="BIBLIOENTRYBLOCK" STYLE="margin-left=0.5in" ><DIV CLASS="ABSTRACT" ><P >The <A HREF="external.html#MANREF" >manpages</A > for <B CLASS="COMMAND" >bash</B > and <B CLASS="COMMAND" >bash2</B >, <B CLASS="COMMAND" >date</B >, <B CLASS="COMMAND" >expect</B >, <B CLASS="COMMAND" >expr</B >, <B CLASS="COMMAND" >find</B >, <B CLASS="COMMAND" >grep</B >, <B CLASS="COMMAND" >gzip</B >, <B CLASS="COMMAND" >ln</B >, <B CLASS="COMMAND" >patch</B >, <B CLASS="COMMAND" >tar</B >, <B CLASS="COMMAND" >tr</B >, <B CLASS="COMMAND" >bc</B >, <B CLASS="COMMAND" >xargs</B >. The <I CLASS="FIRSTTERM" >texinfo</I > documentation on <B CLASS="COMMAND" >bash</B >, <B CLASS="COMMAND" >dd</B >, <B CLASS="COMMAND" >m4</B >, <B CLASS="COMMAND" >gawk</B >, and <B CLASS="COMMAND" >sed</B >.</P ></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21579" HREF="biblio.html#AEN21579" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >It was hard to resist the obvious pun. No slight intended, since the book is a pretty decent introduction to the basic concepts of shell scripting.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="disclaimer.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="contributed-scripts.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Disclaimer</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Contributed Scripts</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/colorizing.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Colorizing Scripts</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Miscellany" HREF="miscellany.html"><LINK REL="PREVIOUS" TITLE="Recursion: a script calling itself" HREF="recursionsct.html"><LINK REL="NEXT" TITLE="Optimizations" HREF="optimizations.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="recursionsct.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 36. Miscellany</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="optimizations.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="COLORIZING" ></A >36.5. <SPAN CLASS="QUOTE" >"Colorizing"</SPAN > Scripts</H1 ><P ><A NAME="COLORIZINGREF" ></A ></P ><P >The ANSI <A NAME="AEN20259" HREF="#FTN.AEN20259" >[1]</A > escape sequences set screen attributes, such as bold text, and color of foreground and background. <A HREF="dosbatch.html#DOSBATCH1" >DOS batch files</A > commonly used ANSI escape codes for <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >color</I ></SPAN > output, and so can Bash scripts.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX30A" ></A ><P ><B >Example 36-13. A <SPAN CLASS="QUOTE" >"colorized"</SPAN > address database</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ex30a.sh: "Colorized" version of ex30.sh. 3 # Crude address database 4 5 6 clear # Clear the screen. 7 8 echo -n " " 9 echo -e '\E[37;44m'"\033[1mContact List\033[0m" 10 # White on blue background 11 echo; echo 12 echo -e "\033[1mChoose one of the following persons:\033[0m" 13 # Bold 14 tput sgr0 # Reset attributes. 15 echo "(Enter only the first letter of name.)" 16 echo 17 echo -en '\E[47;34m'"\033[1mE\033[0m" # Blue 18 tput sgr0 # Reset colors to "normal." 19 echo "vans, Roland" # "[E]vans, Roland" 20 echo -en '\E[47;35m'"\033[1mJ\033[0m" # Magenta 21 tput sgr0 22 echo "ambalaya, Mildred" 23 echo -en '\E[47;32m'"\033[1mS\033[0m" # Green 24 tput sgr0 25 echo "mith, Julie" 26 echo -en '\E[47;31m'"\033[1mZ\033[0m" # Red 27 tput sgr0 28 echo "ane, Morris" 29 echo 30 31 read person 32 33 case "$person" in 34 # Note variable is quoted. 35 36 "E" | "e" ) 37 # Accept upper or lowercase input. 38 echo 39 echo "Roland Evans" 40 echo "4321 Flash Dr." 41 echo "Hardscrabble, CO 80753" 42 echo "(303) 734-9874" 43 echo "(303) 734-9892 fax" 44 echo "revans@zzy.net" 45 echo "Business partner & old friend" 46 ;; 47 48 "J" | "j" ) 49 echo 50 echo "Mildred Jambalaya" 51 echo "249 E. 7th St., Apt. 19" 52 echo "New York, NY 10009" 53 echo "(212) 533-2814" 54 echo "(212) 533-9972 fax" 55 echo "milliej@loisaida.com" 56 echo "Girlfriend" 57 echo "Birthday: Feb. 11" 58 ;; 59 60 # Add info for Smith & Zane later. 61 62 * ) 63 # Default option. 64 # Empty input (hitting RETURN) fits here, too. 65 echo 66 echo "Not yet in database." 67 ;; 68 69 esac 70 71 tput sgr0 # Reset colors to "normal." 72 73 echo 74 75 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="DRAW-BOX" ></A ><P ><B >Example 36-14. Drawing a box</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Draw-box.sh: Drawing a box using ASCII characters. 3 4 # Script by Stefano Palmeri, with minor editing by document author. 5 # Minor edits suggested by Jim Angstadt. 6 # Used in the ABS Guide with permission. 7 8 9 ###################################################################### 10 ### draw_box function doc ### 11 12 # The "draw_box" function lets the user 13 #+ draw a box in a terminal. 14 # 15 # Usage: draw_box ROW COLUMN HEIGHT WIDTH [COLOR] 16 # ROW and COLUMN represent the position 17 #+ of the upper left angle of the box you're going to draw. 18 # ROW and COLUMN must be greater than 0 19 #+ and less than current terminal dimension. 20 # HEIGHT is the number of rows of the box, and must be > 0. 21 # HEIGHT + ROW must be <= than current terminal height. 22 # WIDTH is the number of columns of the box and must be > 0. 23 # WIDTH + COLUMN must be <= than current terminal width. 24 # 25 # E.g.: If your terminal dimension is 20x80, 26 # draw_box 2 3 10 45 is good 27 # draw_box 2 3 19 45 has bad HEIGHT value (19+2 > 20) 28 # draw_box 2 3 18 78 has bad WIDTH value (78+3 > 80) 29 # 30 # COLOR is the color of the box frame. 31 # This is the 5th argument and is optional. 32 # 0=black 1=red 2=green 3=tan 4=blue 5=purple 6=cyan 7=white. 33 # If you pass the function bad arguments, 34 #+ it will just exit with code 65, 35 #+ and no messages will be printed on stderr. 36 # 37 # Clear the terminal before you start to draw a box. 38 # The clear command is not contained within the function. 39 # This allows the user to draw multiple boxes, even overlapping ones. 40 41 ### end of draw_box function doc ### 42 ###################################################################### 43 44 draw_box(){ 45 46 #=============# 47 HORZ="-" 48 VERT="|" 49 CORNER_CHAR="+" 50 51 MINARGS=4 52 E_BADARGS=65 53 #=============# 54 55 56 if [ $# -lt "$MINARGS" ]; then # If args are less than 4, exit. 57 exit $E_BADARGS 58 fi 59 60 # Looking for non digit chars in arguments. 61 # Probably it could be done better (exercise for the reader?). 62 if echo $@ | tr -d [:blank:] | tr -d [:digit:] | grep . &> /dev/null; then 63 exit $E_BADARGS 64 fi 65 66 BOX_HEIGHT=`expr $3 - 1` # -1 correction needed because angle char "+" 67 BOX_WIDTH=`expr $4 - 1` #+ is a part of both box height and width. 68 T_ROWS=`tput lines` # Define current terminal dimension 69 T_COLS=`tput cols` #+ in rows and columns. 70 71 if [ $1 -lt 1 ] || [ $1 -gt $T_ROWS ]; then # Start checking if arguments 72 exit $E_BADARGS #+ are correct. 73 fi 74 if [ $2 -lt 1 ] || [ $2 -gt $T_COLS ]; then 75 exit $E_BADARGS 76 fi 77 if [ `expr $1 + $BOX_HEIGHT + 1` -gt $T_ROWS ]; then 78 exit $E_BADARGS 79 fi 80 if [ `expr $2 + $BOX_WIDTH + 1` -gt $T_COLS ]; then 81 exit $E_BADARGS 82 fi 83 if [ $3 -lt 1 ] || [ $4 -lt 1 ]; then 84 exit $E_BADARGS 85 fi # End checking arguments. 86 87 plot_char(){ # Function within a function. 88 echo -e "\E[${1};${2}H"$3 89 } 90 91 echo -ne "\E[3${5}m" # Set box frame color, if defined. 92 93 # start drawing the box 94 95 count=1 # Draw vertical lines using 96 for (( r=$1; count<=$BOX_HEIGHT; r++)); do #+ plot_char function. 97 plot_char $r $2 $VERT 98 let count=count+1 99 done 100 101 count=1 102 c=`expr $2 + $BOX_WIDTH` 103 for (( r=$1; count<=$BOX_HEIGHT; r++)); do 104 plot_char $r $c $VERT 105 let count=count+1 106 done 107 108 count=1 # Draw horizontal lines using 109 for (( c=$2; count<=$BOX_WIDTH; c++)); do #+ plot_char function. 110 plot_char $1 $c $HORZ 111 let count=count+1 112 done 113 114 count=1 115 r=`expr $1 + $BOX_HEIGHT` 116 for (( c=$2; count<=$BOX_WIDTH; c++)); do 117 plot_char $r $c $HORZ 118 let count=count+1 119 done 120 121 plot_char $1 $2 $CORNER_CHAR # Draw box angles. 122 plot_char $1 `expr $2 + $BOX_WIDTH` $CORNER_CHAR 123 plot_char `expr $1 + $BOX_HEIGHT` $2 $CORNER_CHAR 124 plot_char `expr $1 + $BOX_HEIGHT` `expr $2 + $BOX_WIDTH` $CORNER_CHAR 125 126 echo -ne "\E[0m" # Restore old colors. 127 128 P_ROWS=`expr $T_ROWS - 1` # Put the prompt at bottom of the terminal. 129 130 echo -e "\E[${P_ROWS};1H" 131 } 132 133 134 # Now, let's try drawing a box. 135 clear # Clear the terminal. 136 R=2 # Row 137 C=3 # Column 138 H=10 # Height 139 W=45 # Width 140 col=1 # Color (red) 141 draw_box $R $C $H $W $col # Draw the box. 142 143 exit 0 144 145 # Exercise: 146 # -------- 147 # Add the option of printing text within the drawn box.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The simplest, and perhaps most useful ANSI escape sequence is bold text, <B CLASS="COMMAND" >\033[1m ... \033[0m</B >. The <SPAN CLASS="TOKEN" >\033</SPAN > represents an <A HREF="escapingsection.html#ESCP" >escape</A >, the <SPAN CLASS="QUOTE" >"[1"</SPAN > turns on the bold attribute, while the <SPAN CLASS="QUOTE" >"[0"</SPAN > switches it off. The <SPAN CLASS="QUOTE" >"m"</SPAN > terminates each term of the escape sequence. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo -e "\033[1mThis is bold text.\033[0m"</B ></TT > </PRE ></TD ></TR ></TABLE > </P ><P >A similar escape sequence switches on the underline attribute (on an <I CLASS="FIRSTTERM" >rxvt</I > and an <I CLASS="FIRSTTERM" >aterm</I >). <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo -e "\033[4mThis is underlined text.\033[0m"</B ></TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >With an <B CLASS="COMMAND" >echo</B >, the <TT CLASS="OPTION" >-e</TT > option enables the escape sequences.</P ></TD ></TR ></TABLE ></DIV ><P >Other escape sequences change the text and/or background color.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo -e '\E[34;47mThis prints in blue.'; tput sgr0</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo -e '\E[33;44m'"yellow text on blue background"; tput sgr0</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo -e '\E[1;33;44m'"BOLD yellow text on blue background"; tput sgr0</B ></TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It's usually advisable to set the <I CLASS="FIRSTTERM" >bold</I > attribute for light-colored foreground text.</P ></TD ></TR ></TABLE ></DIV ><P >The <B CLASS="COMMAND" >tput sgr0</B > restores the terminal settings to normal. Omitting this lets all subsequent output from that particular terminal remain blue.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Since <B CLASS="COMMAND" >tput sgr0</B > fails to restore terminal settings under certain circumstances, <B CLASS="COMMAND" >echo -ne \E[0m</B > may be a better choice.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="COLORIZTEMPL" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN20311" ></A ><P >Use the following template for writing colored text on a colored background.</P ><P > <TT CLASS="USERINPUT" ><B >echo -e '\E[COLOR1;COLOR2mSome text goes here.'</B ></TT > </P ><P >The <SPAN CLASS="QUOTE" >"\E["</SPAN > begins the escape sequence. The semicolon-separated numbers <SPAN CLASS="QUOTE" >"COLOR1"</SPAN > and <SPAN CLASS="QUOTE" >"COLOR2"</SPAN > specify a foreground and a background color, according to the table below. (The order of the numbers does not matter, since the foreground and background numbers fall in non-overlapping ranges.) The <SPAN CLASS="QUOTE" >"m"</SPAN > terminates the escape sequence, and the text begins immediately after that.</P ><P >Note also that <A HREF="variables.html#SNGLQUO" >single quotes</A > enclose the remainder of the command sequence following the <B CLASS="COMMAND" >echo -e</B >.</P ></DIV ></TD ></TR ></TABLE ><P >The numbers in the following table work for an <I CLASS="FIRSTTERM" >rxvt</I > terminal. Results may vary for other terminal emulators.</P ><P ><A NAME="COLORIZTABLE" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN20327" ></A ><P ><B >Table 36-1. Numbers representing colors in Escape Sequences</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Color</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Foreground</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Background</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >black</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >30</TD ><TD ALIGN="LEFT" VALIGN="TOP" >40</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >red</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >31</TD ><TD ALIGN="LEFT" VALIGN="TOP" >41</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >green</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >32</TD ><TD ALIGN="LEFT" VALIGN="TOP" >42</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >yellow</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >33</TD ><TD ALIGN="LEFT" VALIGN="TOP" >43</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >blue</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >34</TD ><TD ALIGN="LEFT" VALIGN="TOP" >44</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >magenta</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >35</TD ><TD ALIGN="LEFT" VALIGN="TOP" >45</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >cyan</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >36</TD ><TD ALIGN="LEFT" VALIGN="TOP" >46</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >white</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >37</TD ><TD ALIGN="LEFT" VALIGN="TOP" >47</TD ></TR ></TBODY ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="COLORECHO" ></A ><P ><B >Example 36-15. Echoing colored text</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # color-echo.sh: Echoing text messages in color. 3 4 # Modify this script for your own purposes. 5 # It's easier than hand-coding color. 6 7 black='\E[30;47m' 8 red='\E[31;47m' 9 green='\E[32;47m' 10 yellow='\E[33;47m' 11 blue='\E[34;47m' 12 magenta='\E[35;47m' 13 cyan='\E[36;47m' 14 white='\E[37;47m' 15 16 17 alias Reset="tput sgr0" # Reset text attributes to normal 18 #+ without clearing screen. 19 20 21 cecho () # Color-echo. 22 # Argument $1 = message 23 # Argument $2 = color 24 { 25 local default_msg="No message passed." 26 # Doesn't really need to be a local variable. 27 28 message=${1:-$default_msg} # Defaults to default message. 29 color=${2:-$black} # Defaults to black, if not specified. 30 31 echo -e "$color" 32 echo "$message" 33 Reset # Reset to normal. 34 35 return 36 } 37 38 39 # Now, let's try it out. 40 # ---------------------------------------------------- 41 cecho "Feeling blue..." $blue 42 cecho "Magenta looks more like purple." $magenta 43 cecho "Green with envy." $green 44 cecho "Seeing red?" $red 45 cecho "Cyan, more familiarly known as aqua." $cyan 46 cecho "No color passed (defaults to black)." 47 # Missing $color argument. 48 cecho "\"Empty\" color passed (defaults to black)." "" 49 # Empty $color argument. 50 cecho 51 # Missing $message and $color arguments. 52 cecho "" "" 53 # Empty $message and $color arguments. 54 # ---------------------------------------------------- 55 56 echo 57 58 exit 0 59 60 # Exercises: 61 # --------- 62 # 1) Add the "bold" attribute to the 'cecho ()' function. 63 # 2) Add options for colored backgrounds.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="HORSERACEREF" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="HORSERACE" ></A ><P ><B >Example 36-16. A <SPAN CLASS="QUOTE" >"horserace"</SPAN > game</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # horserace.sh: Very simple horserace simulation. 3 # Author: Stefano Palmeri 4 # Used with permission. 5 6 ################################################################ 7 # Goals of the script: 8 # playing with escape sequences and terminal colors. 9 # 10 # Exercise: 11 # Edit the script to make it run less randomly, 12 #+ set up a fake betting shop . . . 13 # Um . . . um . . . it's starting to remind me of a movie . . . 14 # 15 # The script gives each horse a random handicap. 16 # The odds are calculated upon horse handicap 17 #+ and are expressed in European(?) style. 18 # E.g., odds=3.75 means that if you bet $1 and win, 19 #+ you receive $3.75. 20 # 21 # The script has been tested with a GNU/Linux OS, 22 #+ using xterm and rxvt, and konsole. 23 # On a machine with an AMD 900 MHz processor, 24 #+ the average race time is 75 seconds. 25 # On faster computers the race time would be lower. 26 # So, if you want more suspense, reset the USLEEP_ARG variable. 27 # 28 # Script by Stefano Palmeri. 29 ################################################################ 30 31 E_RUNERR=65 32 33 # Check if md5sum and bc are installed. 34 if ! which bc &> /dev/null; then 35 echo bc is not installed. 36 echo "Can\'t run . . . " 37 exit $E_RUNERR 38 fi 39 if ! which md5sum &> /dev/null; then 40 echo md5sum is not installed. 41 echo "Can\'t run . . . " 42 exit $E_RUNERR 43 fi 44 45 # Set the following variable to slow down script execution. 46 # It will be passed as the argument for usleep (man usleep) 47 #+ and is expressed in microseconds (500000 = half a second). 48 USLEEP_ARG=0 49 50 # Clean up the temp directory, restore terminal cursor and 51 #+ terminal colors -- if script interrupted by Ctl-C. 52 trap 'echo -en "\E[?25h"; echo -en "\E[0m"; stty echo;\ 53 tput cup 20 0; rm -fr $HORSE_RACE_TMP_DIR' TERM EXIT 54 # See the chapter on debugging for an explanation of 'trap.' 55 56 # Set a unique (paranoid) name for the temp directory the script needs. 57 HORSE_RACE_TMP_DIR=$HOME/.horserace-`date +%s`-`head -c10 /dev/urandom \ 58 | md5sum | head -c30` 59 60 # Create the temp directory and move right in. 61 mkdir $HORSE_RACE_TMP_DIR 62 cd $HORSE_RACE_TMP_DIR 63 64 65 # This function moves the cursor to line $1 column $2 and then prints $3. 66 # E.g.: "move_and_echo 5 10 linux" is equivalent to 67 #+ "tput cup 4 9; echo linux", but with one command instead of two. 68 # Note: "tput cup" defines 0 0 the upper left angle of the terminal, 69 #+ echo defines 1 1 the upper left angle of the terminal. 70 move_and_echo() { 71 echo -ne "\E[${1};${2}H""$3" 72 } 73 74 # Function to generate a pseudo-random number between 1 and 9. 75 random_1_9 () 76 { 77 head -c10 /dev/urandom | md5sum | tr -d [a-z] | tr -d 0 | cut -c1 78 } 79 80 # Two functions that simulate "movement," when drawing the horses. 81 draw_horse_one() { 82 echo -n " "//$MOVE_HORSE// 83 } 84 draw_horse_two(){ 85 echo -n " "\\\\$MOVE_HORSE\\\\ 86 } 87 88 89 # Define current terminal dimension. 90 N_COLS=`tput cols` 91 N_LINES=`tput lines` 92 93 # Need at least a 20-LINES X 80-COLUMNS terminal. Check it. 94 if [ $N_COLS -lt 80 ] || [ $N_LINES -lt 20 ]; then 95 echo "`basename $0` needs a 80-cols X 20-lines terminal." 96 echo "Your terminal is ${N_COLS}-cols X ${N_LINES}-lines." 97 exit $E_RUNERR 98 fi 99 100 101 # Start drawing the race field. 102 103 # Need a string of 80 chars. See below. 104 BLANK80=`seq -s "" 100 | head -c80` 105 106 clear 107 108 # Set foreground and background colors to white. 109 echo -ne '\E[37;47m' 110 111 # Move the cursor on the upper left angle of the terminal. 112 tput cup 0 0 113 114 # Draw six white lines. 115 for n in `seq 5`; do 116 echo $BLANK80 # Use the 80 chars string to colorize the terminal. 117 done 118 119 # Sets foreground color to black. 120 echo -ne '\E[30m' 121 122 move_and_echo 3 1 "START 1" 123 move_and_echo 3 75 FINISH 124 move_and_echo 1 5 "|" 125 move_and_echo 1 80 "|" 126 move_and_echo 2 5 "|" 127 move_and_echo 2 80 "|" 128 move_and_echo 4 5 "| 2" 129 move_and_echo 4 80 "|" 130 move_and_echo 5 5 "V 3" 131 move_and_echo 5 80 "V" 132 133 # Set foreground color to red. 134 echo -ne '\E[31m' 135 136 # Some ASCII art. 137 move_and_echo 1 8 "..@@@..@@@@@...@@@@@.@...@..@@@@..." 138 move_and_echo 2 8 ".@...@...@.......@...@...@.@......." 139 move_and_echo 3 8 ".@@@@@...@.......@...@@@@@.@@@@...." 140 move_and_echo 4 8 ".@...@...@.......@...@...@.@......." 141 move_and_echo 5 8 ".@...@...@.......@...@...@..@@@@..." 142 move_and_echo 1 43 "@@@@...@@@...@@@@..@@@@..@@@@." 143 move_and_echo 2 43 "@...@.@...@.@.....@.....@....." 144 move_and_echo 3 43 "@@@@..@@@@@.@.....@@@@...@@@.." 145 move_and_echo 4 43 "@..@..@...@.@.....@.........@." 146 move_and_echo 5 43 "@...@.@...@..@@@@..@@@@.@@@@.." 147 148 149 # Set foreground and background colors to green. 150 echo -ne '\E[32;42m' 151 152 # Draw eleven green lines. 153 tput cup 5 0 154 for n in `seq 11`; do 155 echo $BLANK80 156 done 157 158 # Set foreground color to black. 159 echo -ne '\E[30m' 160 tput cup 5 0 161 162 # Draw the fences. 163 echo "++++++++++++++++++++++++++++++++++++++\ 164 ++++++++++++++++++++++++++++++++++++++++++" 165 166 tput cup 15 0 167 echo "++++++++++++++++++++++++++++++++++++++\ 168 ++++++++++++++++++++++++++++++++++++++++++" 169 170 # Set foreground and background colors to white. 171 echo -ne '\E[37;47m' 172 173 # Draw three white lines. 174 for n in `seq 3`; do 175 echo $BLANK80 176 done 177 178 # Set foreground color to black. 179 echo -ne '\E[30m' 180 181 # Create 9 files to stores handicaps. 182 for n in `seq 10 7 68`; do 183 touch $n 184 done 185 186 # Set the first type of "horse" the script will draw. 187 HORSE_TYPE=2 188 189 # Create position-file and odds-file for every "horse". 190 #+ In these files, store the current position of the horse, 191 #+ the type and the odds. 192 for HN in `seq 9`; do 193 touch horse_${HN}_position 194 touch odds_${HN} 195 echo \-1 > horse_${HN}_position 196 echo $HORSE_TYPE >> horse_${HN}_position 197 # Define a random handicap for horse. 198 HANDICAP=`random_1_9` 199 # Check if the random_1_9 function returned a good value. 200 while ! echo $HANDICAP | grep [1-9] &> /dev/null; do 201 HANDICAP=`random_1_9` 202 done 203 # Define last handicap position for horse. 204 LHP=`expr $HANDICAP \* 7 + 3` 205 for FILE in `seq 10 7 $LHP`; do 206 echo $HN >> $FILE 207 done 208 209 # Calculate odds. 210 case $HANDICAP in 211 1) ODDS=`echo $HANDICAP \* 0.25 + 1.25 | bc` 212 echo $ODDS > odds_${HN} 213 ;; 214 2 | 3) ODDS=`echo $HANDICAP \* 0.40 + 1.25 | bc` 215 echo $ODDS > odds_${HN} 216 ;; 217 4 | 5 | 6) ODDS=`echo $HANDICAP \* 0.55 + 1.25 | bc` 218 echo $ODDS > odds_${HN} 219 ;; 220 7 | 8) ODDS=`echo $HANDICAP \* 0.75 + 1.25 | bc` 221 echo $ODDS > odds_${HN} 222 ;; 223 9) ODDS=`echo $HANDICAP \* 0.90 + 1.25 | bc` 224 echo $ODDS > odds_${HN} 225 esac 226 227 228 done 229 230 231 # Print odds. 232 print_odds() { 233 tput cup 6 0 234 echo -ne '\E[30;42m' 235 for HN in `seq 9`; do 236 echo "#$HN odds->" `cat odds_${HN}` 237 done 238 } 239 240 # Draw the horses at starting line. 241 draw_horses() { 242 tput cup 6 0 243 echo -ne '\E[30;42m' 244 for HN in `seq 9`; do 245 echo /\\$HN/\\" " 246 done 247 } 248 249 print_odds 250 251 echo -ne '\E[47m' 252 # Wait for a enter key press to start the race. 253 # The escape sequence '\E[?25l' disables the cursor. 254 tput cup 17 0 255 echo -e '\E[?25l'Press [enter] key to start the race... 256 read -s 257 258 # Disable normal echoing in the terminal. 259 # This avoids key presses that might "contaminate" the screen 260 #+ during the race. 261 stty -echo 262 263 # -------------------------------------------------------- 264 # Start the race. 265 266 draw_horses 267 echo -ne '\E[37;47m' 268 move_and_echo 18 1 $BLANK80 269 echo -ne '\E[30m' 270 move_and_echo 18 1 Starting... 271 sleep 1 272 273 # Set the column of the finish line. 274 WINNING_POS=74 275 276 # Define the time the race started. 277 START_TIME=`date +%s` 278 279 # COL variable needed by following "while" construct. 280 COL=0 281 282 while [ $COL -lt $WINNING_POS ]; do 283 284 MOVE_HORSE=0 285 286 # Check if the random_1_9 function has returned a good value. 287 while ! echo $MOVE_HORSE | grep [1-9] &> /dev/null; do 288 MOVE_HORSE=`random_1_9` 289 done 290 291 # Define old type and position of the "randomized horse". 292 HORSE_TYPE=`cat horse_${MOVE_HORSE}_position | tail -n 1` 293 COL=$(expr `cat horse_${MOVE_HORSE}_position | head -n 1`) 294 295 ADD_POS=1 296 # Check if the current position is an handicap position. 297 if seq 10 7 68 | grep -w $COL &> /dev/null; then 298 if grep -w $MOVE_HORSE $COL &> /dev/null; then 299 ADD_POS=0 300 grep -v -w $MOVE_HORSE $COL > ${COL}_new 301 rm -f $COL 302 mv -f ${COL}_new $COL 303 else ADD_POS=1 304 fi 305 else ADD_POS=1 306 fi 307 COL=`expr $COL + $ADD_POS` 308 echo $COL > horse_${MOVE_HORSE}_position # Store new position. 309 310 # Choose the type of horse to draw. 311 case $HORSE_TYPE in 312 1) HORSE_TYPE=2; DRAW_HORSE=draw_horse_two 313 ;; 314 2) HORSE_TYPE=1; DRAW_HORSE=draw_horse_one 315 esac 316 echo $HORSE_TYPE >> horse_${MOVE_HORSE}_position 317 # Store current type. 318 319 # Set foreground color to black and background to green. 320 echo -ne '\E[30;42m' 321 322 # Move the cursor to new horse position. 323 tput cup `expr $MOVE_HORSE + 5` \ 324 `cat horse_${MOVE_HORSE}_position | head -n 1` 325 326 # Draw the horse. 327 $DRAW_HORSE 328 usleep $USLEEP_ARG 329 330 # When all horses have gone beyond field line 15, reprint odds. 331 touch fieldline15 332 if [ $COL = 15 ]; then 333 echo $MOVE_HORSE >> fieldline15 334 fi 335 if [ `wc -l fieldline15 | cut -f1 -d " "` = 9 ]; then 336 print_odds 337 : > fieldline15 338 fi 339 340 # Define the leading horse. 341 HIGHEST_POS=`cat *position | sort -n | tail -1` 342 343 # Set background color to white. 344 echo -ne '\E[47m' 345 tput cup 17 0 346 echo -n Current leader: `grep -w $HIGHEST_POS *position | cut -c7`\ 347 " " 348 349 done 350 351 # Define the time the race finished. 352 FINISH_TIME=`date +%s` 353 354 # Set background color to green and enable blinking text. 355 echo -ne '\E[30;42m' 356 echo -en '\E[5m' 357 358 # Make the winning horse blink. 359 tput cup `expr $MOVE_HORSE + 5` \ 360 `cat horse_${MOVE_HORSE}_position | head -n 1` 361 $DRAW_HORSE 362 363 # Disable blinking text. 364 echo -en '\E[25m' 365 366 # Set foreground and background color to white. 367 echo -ne '\E[37;47m' 368 move_and_echo 18 1 $BLANK80 369 370 # Set foreground color to black. 371 echo -ne '\E[30m' 372 373 # Make winner blink. 374 tput cup 17 0 375 echo -e "\E[5mWINNER: $MOVE_HORSE\E[25m"" Odds: `cat odds_${MOVE_HORSE}`"\ 376 " Race time: `expr $FINISH_TIME - $START_TIME` secs" 377 378 # Restore cursor and old colors. 379 echo -en "\E[?25h" 380 echo -en "\E[0m" 381 382 # Restore echoing. 383 stty echo 384 385 # Remove race temp directory. 386 rm -rf $HORSE_RACE_TMP_DIR 387 388 tput cup 19 0 389 390 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="contributed-scripts.html#HASHEXAMPLE" >Example A-21</A >, <A HREF="contributed-scripts.html#HOMEWORK" >Example A-44</A >, <A HREF="contributed-scripts.html#SHOWALLC" >Example A-52</A >, and <A HREF="contributed-scripts.html#PETALS" >Example A-40</A >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >There is, however, a major problem with all this. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >ANSI escape sequences are emphatically <A HREF="portabilityissues.html" >non-portable</A >.</I ></SPAN > What works fine on some terminal emulators (or the console) may work differently, or not at all, on others. A <SPAN CLASS="QUOTE" >"colorized"</SPAN > script that looks stunning on the script author's machine may produce unreadable output on someone else's. This somewhat compromises the usefulness of colorizing scripts, and possibly relegates this technique to the status of a gimmick. Colorized scripts are probably inappropriate in a commercial setting, i.e., your supervisor might disapprove.</P ></TD ></TR ></TABLE ></DIV ><P >Alister's <A HREF="http://code.google.com/p/ansi-color/" TARGET="_top" > ansi-color</A > utility (based on <A HREF="http://bash.deta.in/color-1.1.tar.gz" TARGET="_top" >Moshe Jacobson's color utility</A > considerably simplifies using ANSI escape sequences. It substitutes a clean and logical syntax for the clumsy constructs just discussed.</P ><P >Henry/teikedvl has likewise created a utility (<A HREF="http://scriptechocolor.sourceforge.net/" TARGET="_top" >http://scriptechocolor.sourceforge.net/</A >) to simplify creation of colorized scripts.</P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN20259" HREF="colorizing.html#AEN20259" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><SPAN CLASS="ACRONYM" >ANSI</SPAN > is, of course, the acronym for the American National Standards Institute. This august body establishes and maintains various technical and industrial standards.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="recursionsct.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="optimizations.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Recursion: a script calling itself</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Optimizations</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/command-line-options.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Command-Line Options</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="A Detailed Introduction to I/O and I/O Redirection" HREF="ioredirintro.html"><LINK REL="NEXT" TITLE="Bash Command-Line Options" HREF="bash-options.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="ioredirintro.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="bash-options.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="COMMAND-LINE-OPTIONS" ></A >Appendix G. Command-Line Options</H1 ><P >Many executables, whether binaries or script files, accept options to modify their run-time behavior. For example: from the command-line, typing <B CLASS="COMMAND" >command -o</B > would invoke <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >command</I ></SPAN >, with option <TT CLASS="OPTION" >o</TT >.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="STANDARD-OPTIONS" ></A >G.1. Standard Command-Line Options</H1 ><P >Over time, there has evolved a loose standard for the meanings of command-line option flags. The GNU utilities conform more closely to this <SPAN CLASS="QUOTE" >"standard"</SPAN > than older UNIX utilities.</P ><P >Traditionally, UNIX command-line options consist of a dash, followed by one or more lowercase letters. The GNU utilities added a double-dash, followed by a complete word or compound word.</P ><P >The two most widely-accepted options are:</P ><UL ><LI ><P ><TT CLASS="OPTION" >-h</TT ></P ><P ><TT CLASS="OPTION" >--help</TT ></P ><P ><I CLASS="FIRSTTERM" >Help</I >: Give usage message and exit.</P ></LI ><LI ><P ><TT CLASS="OPTION" >-v</TT ></P ><P ><TT CLASS="OPTION" >--version</TT ></P ><P ><I CLASS="FIRSTTERM" >Version</I >: Show program version and exit.</P ></LI ></UL ><P >Other common options are:</P ><UL ><LI ><P ><TT CLASS="OPTION" >-a</TT ></P ><P ><TT CLASS="OPTION" >--all</TT ></P ><P ><I CLASS="FIRSTTERM" >All</I >: show <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >all</I ></SPAN > information or operate on <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >all</I ></SPAN > arguments.</P ></LI ><LI ><P ><TT CLASS="OPTION" >-l</TT ></P ><P ><TT CLASS="OPTION" >--list</TT ></P ><P ><I CLASS="FIRSTTERM" >List</I >: list files or arguments without taking other action.</P ></LI ><LI ><P ><TT CLASS="OPTION" >-o</TT ></P ><P ><I CLASS="FIRSTTERM" >Output</I > filename</P ></LI ><LI ><P ><TT CLASS="OPTION" >-q</TT ></P ><P ><TT CLASS="OPTION" >--quiet</TT ></P ><P ><I CLASS="FIRSTTERM" >Quiet</I >: suppress <TT CLASS="FILENAME" >stdout</TT >.</P ></LI ><LI ><P ><TT CLASS="OPTION" >-r</TT ></P ><P ><TT CLASS="OPTION" >-R</TT ></P ><P ><TT CLASS="OPTION" >--recursive</TT ></P ><P ><I CLASS="FIRSTTERM" >Recursive</I >: Operate recursively (down directory tree).</P ></LI ><LI ><P ><TT CLASS="OPTION" >-v</TT ></P ><P ><TT CLASS="OPTION" >--verbose</TT ></P ><P ><I CLASS="FIRSTTERM" >Verbose</I >: output additional information to <TT CLASS="FILENAME" >stdout</TT > or <TT CLASS="FILENAME" >stderr</TT >.</P ></LI ><LI ><P ><TT CLASS="OPTION" >-z</TT ></P ><P ><TT CLASS="OPTION" >--compress</TT ></P ><P ><I CLASS="FIRSTTERM" >Compress</I >: apply compression (usually <A HREF="filearchiv.html#GZIPREF" >gzip</A >).</P ></LI ></UL ><P >However:</P ><UL ><LI ><P >In <B CLASS="COMMAND" >tar</B > and <B CLASS="COMMAND" >gawk</B >:</P ><P ><TT CLASS="OPTION" >-f</TT ></P ><P ><TT CLASS="OPTION" >--file</TT ></P ><P ><I CLASS="FIRSTTERM" >File</I >: filename follows.</P ></LI ><LI ><P >In <B CLASS="COMMAND" >cp</B >, <B CLASS="COMMAND" >mv</B >, <B CLASS="COMMAND" >rm</B >:</P ><P ><TT CLASS="OPTION" >-f</TT ></P ><P ><TT CLASS="OPTION" >--force</TT ></P ><P ><I CLASS="FIRSTTERM" >Force</I >: force overwrite of target file(s).</P ></LI ></UL ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Many UNIX and Linux utilities deviate from this <SPAN CLASS="QUOTE" >"standard,"</SPAN > so it is dangerous to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >assume</I ></SPAN > that a given option will behave in a standard way. Always check the man page for the command in question when in doubt.</P ></TD ></TR ></TABLE ></DIV ><P >A complete table of recommended options for the GNU utilities is available at <A HREF="http://www.gnu.org/prep/standards/" TARGET="_top" >the GNU standards page</A >.</P ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="ioredirintro.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="bash-options.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >A Detailed Introduction to I/O and I/O Redirection</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Bash Command-Line Options</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/commandsub.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Command Substitution</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Beyond the Basics" HREF="part3.html"><LINK REL="PREVIOUS" TITLE="Testing and Branching" HREF="testbranch.html"><LINK REL="NEXT" TITLE="Arithmetic Expansion" HREF="arithexp.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="testbranch.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="arithexp.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="COMMANDSUB" ></A >Chapter 12. Command Substitution</H1 ><P > <A NAME="COMMANDSUBREF" ></A ><B CLASS="COMMAND" >Command substitution</B > reassigns the output of a command <A NAME="AEN7205" HREF="#FTN.AEN7205" >[1]</A > or even multiple commands; it literally plugs the command output into another context. <A NAME="AEN7211" HREF="#FTN.AEN7211" >[2]</A > </P ><P ><A NAME="BACKQUOTESREF" ></A >The classic form of command substitution uses <I CLASS="FIRSTTERM" >backquotes</I > (`...`). Commands within backquotes (backticks) generate command-line text. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 script_name=`basename $0` 2 echo "The name of this script is $script_name."</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="FORMALPARA" ><P ><B >The output of commands can be used as arguments to another command, to set a variable, and even for generating the argument list in a <A HREF="loops.html#FORLOOPREF1" >for</A > loop. </B ></P ></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 rm `cat filename` # <SPAN CLASS="QUOTE" >"filename"</SPAN > contains a list of files to delete. 2 # 3 # S. C. points out that "arg list too long" error might result. 4 # Better is xargs rm -- < filename 5 # ( -- covers those cases where <SPAN CLASS="QUOTE" >"filename"</SPAN > begins with a <SPAN CLASS="QUOTE" >"-"</SPAN > ) 6 7 textfile_listing=`ls *.txt` 8 # Variable contains names of all *.txt files in current working directory. 9 echo $textfile_listing 10 11 textfile_listing2=$(ls *.txt) # The alternative form of command substitution. 12 echo $textfile_listing2 13 # Same result. 14 15 # A possible problem with putting a list of files into a single string 16 # is that a newline may creep in. 17 # 18 # A safer way to assign a list of files to a parameter is with an array. 19 # shopt -s nullglob # If no match, filename expands to nothing. 20 # textfile_listing=( *.txt ) 21 # 22 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="CSSUBSH" ></A >Command substitution invokes a <A HREF="subshells.html#SUBSHELLSREF" >subshell</A >.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="CSWS" ></A >Command substitution may result in <A HREF="quoting.html#WSPLITREF" >word splitting</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 COMMAND `echo a b` # 2 args: a and b 2 3 COMMAND "`echo a b`" # 1 arg: "a b" 4 5 COMMAND `echo` # no arg 6 7 COMMAND "`echo`" # one empty arg 8 9 10 # Thanks, S.C.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="CSTRNL" ></A ></P ><P >Even when there is no word splitting, command substitution can remove trailing newlines. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # cd "`pwd`" # This should always work. 2 # However... 3 4 mkdir 'dir with trailing newline 5 ' 6 7 cd 'dir with trailing newline 8 ' 9 10 cd "`pwd`" # Error message: 11 # bash: cd: /tmp/file with trailing newline: No such file or directory 12 13 cd "$PWD" # Works fine. 14 15 16 17 18 19 old_tty_setting=$(stty -g) # Save old terminal setting. 20 echo "Hit a key " 21 stty -icanon -echo # Disable "canonical" mode for terminal. 22 # Also, disable *local* echo. 23 key=$(dd bs=1 count=1 2> /dev/null) # Using 'dd' to get a keypress. 24 stty "$old_tty_setting" # Restore old setting. 25 echo "You hit ${#key} key." # ${#variable} = number of characters in $variable 26 # 27 # Hit any key except RETURN, and the output is "You hit 1 key." 28 # Hit RETURN, and it's "You hit 0 key." 29 # The newline gets eaten in the command substitution. 30 31 #Code snippet by Stéphane Chazelas.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Using <B CLASS="COMMAND" >echo</B > to output an <I CLASS="FIRSTTERM" >unquoted</I > variable set with command substitution removes trailing newlines characters from the output of the reassigned command(s). This can cause unpleasant surprises. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 dir_listing=`ls -l` 2 echo $dir_listing # unquoted 3 4 # Expecting a nicely ordered directory listing. 5 6 # However, what you get is: 7 # total 3 -rw-rw-r-- 1 bozo bozo 30 May 13 17:15 1.txt -rw-rw-r-- 1 bozo 8 # bozo 51 May 15 20:57 t2.sh -rwxr-xr-x 1 bozo bozo 217 Mar 5 21:13 wi.sh 9 10 # The newlines disappeared. 11 12 13 echo "$dir_listing" # quoted 14 # -rw-rw-r-- 1 bozo 30 May 13 17:15 1.txt 15 # -rw-rw-r-- 1 bozo 51 May 15 20:57 t2.sh 16 # -rwxr-xr-x 1 bozo 217 Mar 5 21:13 wi.sh</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><P >Command substitution even permits setting a variable to the contents of a file, using either <A HREF="io-redirection.html#IOREDIRREF" >redirection</A > or the <A HREF="external.html#CATREF" >cat</A > command.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 variable1=`<file1` # Set "variable1" to contents of "file1". 2 variable2=`cat file2` # Set "variable2" to contents of "file2". 3 # This, however, forks a new process, 4 #+ so the line of code executes slower than the above version. 5 6 # Note that the variables may contain embedded whitespace, 7 #+ or even (horrors), control characters. 8 9 # It is not necessary to explicitly assign a variable. 10 echo "` <$0`" # Echoes the script itself to stdout.</PRE ></TD ></TR ></TABLE > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Excerpts from system file, /etc/rc.d/rc.sysinit 2 #+ (on a Red Hat Linux installation) 3 4 5 if [ -f /fsckoptions ]; then 6 fsckoptions=`cat /fsckoptions` 7 ... 8 fi 9 # 10 # 11 if [ -e "/proc/ide/${disk[$device]}/media" ] ; then 12 hdmedia=`cat /proc/ide/${disk[$device]}/media` 13 ... 14 fi 15 # 16 # 17 if [ ! -n "`uname -r | grep -- "-"`" ]; then 18 ktag="`cat /proc/version`" 19 ... 20 fi 21 # 22 # 23 if [ $usb = "1" ]; then 24 sleep 5 25 mouseoutput=`cat /proc/bus/usb/devices 2>/dev/null|grep -E "^I.*Cls=03.*Prot=02"` 26 kbdoutput=`cat /proc/bus/usb/devices 2>/dev/null|grep -E "^I.*Cls=03.*Prot=01"` 27 ... 28 fi</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Do not set a variable to the contents of a <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >long</I ></SPAN > text file unless you have a very good reason for doing so. Do not set a variable to the contents of a <I CLASS="FIRSTTERM" >binary</I > file, even as a joke.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="STUPSCR" ></A ><P ><B >Example 12-1. Stupid script tricks</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # stupid-script-tricks.sh: Don't try this at home, folks. 3 # From "Stupid Script Tricks," Volume I. 4 5 exit 99 ### Comment out this line if you dare. 6 7 dangerous_variable=`cat /boot/vmlinuz` # The compressed Linux kernel itself. 8 9 echo "string-length of \$dangerous_variable = ${#dangerous_variable}" 10 # string-length of $dangerous_variable = 794151 11 # (Newer kernels are bigger.) 12 # Does not give same count as 'wc -c /boot/vmlinuz'. 13 14 # echo "$dangerous_variable" 15 # Don't try this! It would hang the script. 16 17 18 # The document author is aware of no useful applications for 19 #+ setting a variable to the contents of a binary file. 20 21 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Notice that a <I CLASS="FIRSTTERM" >buffer overrun</I > does not occur. This is one instance where an interpreted language, such as Bash, provides more protection from programmer mistakes than a compiled language.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="CSVL" ></A ></P ><P >Command substitution permits setting a variable to the output of a <A HREF="loops.html#FORLOOPREF1" >loop</A >. The key to this is grabbing the output of an <A HREF="internal.html#ECHOREF" >echo</A > command within the loop.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="CSUBLOOP" ></A ><P ><B >Example 12-2. Generating a variable from a loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # csubloop.sh: Setting a variable to the output of a loop. 3 4 variable1=`for i in 1 2 3 4 5 5 do 6 echo -n "$i" # The 'echo' command is critical 7 done` #+ to command substitution here. 8 9 echo "variable1 = $variable1" # variable1 = 12345 10 11 12 i=0 13 variable2=`while [ "$i" -lt 10 ] 14 do 15 echo -n "$i" # Again, the necessary 'echo'. 16 let "i += 1" # Increment. 17 done` 18 19 echo "variable2 = $variable2" # variable2 = 0123456789 20 21 # Demonstrates that it's possible to embed a loop 22 #+ inside a variable declaration. 23 24 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="CSTOOLSET" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN7273" ></A ><P >Command substitution makes it possible to extend the toolset available to Bash. It is simply a matter of writing a program or script that outputs to <TT CLASS="FILENAME" >stdout</TT > (like a well-behaved UNIX tool should) and assigning that output to a variable.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #include <stdio.h> 2 3 /* "Hello, world." C program */ 4 5 int main() 6 { 7 printf( "Hello, world.\n" ); 8 return (0); 9 }</PRE ></TD ></TR ></TABLE > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >gcc -o hello hello.c</B ></TT > </PRE ></TD ></TR ></TABLE > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # hello.sh 3 4 greeting=`./hello` 5 echo $greeting</PRE ></TD ></TR ></TABLE > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >sh hello.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Hello, world.</TT > </PRE ></TD ></TR ></TABLE > </P ></DIV ></TD ></TR ></TABLE ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="CSPARENS" ></A >The <B CLASS="COMMAND" >$(...)</B > form has superseded backticks for command substitution.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 output=$(sed -n /"$1"/p $file) # From "grp.sh" example. 2 3 # Setting a variable to the contents of a text file. 4 File_contents1=$(cat $file1) 5 File_contents2=$(<$file2) # Bash permits this also.</PRE ></TD ></TR ></TABLE ></P ><P >The <B CLASS="COMMAND" >$(...)</B > form of command substitution treats a double backslash in a different way than <B CLASS="COMMAND" >`...`</B >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo `echo \\`</B ></TT > <TT CLASS="COMPUTEROUTPUT" ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $(echo \\)</B ></TT > <TT CLASS="COMPUTEROUTPUT" >\</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="CSNEST" ></A ></P ><P >The <B CLASS="COMMAND" >$(...)</B > form of command substitution permits nesting. <A NAME="AEN7308" HREF="#FTN.AEN7308" >[3]</A > </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 word_count=$( wc -w $(echo * | awk '{print $8}') )</PRE ></TD ></TR ></TABLE > </P ><P >Or, for something a bit more elaborate . . .</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="AGRAM2" ></A ><P ><B >Example 12-3. Finding anagrams</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # agram2.sh 3 # Example of nested command substitution. 4 5 # Uses "anagram" utility 6 #+ that is part of the author's "yawl" word list package. 7 # http://ibiblio.org/pub/Linux/libs/yawl-0.3.2.tar.gz 8 # http://bash.deta.in/yawl-0.3.2.tar.gz 9 10 E_NOARGS=86 11 E_BADARG=87 12 MINLEN=7 13 14 if [ -z "$1" ] 15 then 16 echo "Usage $0 LETTERSET" 17 exit $E_NOARGS # Script needs a command-line argument. 18 elif [ ${#1} -lt $MINLEN ] 19 then 20 echo "Argument must have at least $MINLEN letters." 21 exit $E_BADARG 22 fi 23 24 25 26 FILTER='.......' # Must have at least 7 letters. 27 # 1234567 28 Anagrams=( $(echo $(anagram $1 | grep $FILTER) ) ) 29 # $( $( nested command sub. ) ) 30 # ( array assignment ) 31 32 echo 33 echo "${#Anagrams[*]} 7+ letter anagrams found" 34 echo 35 echo ${Anagrams[0]} # First anagram. 36 echo ${Anagrams[1]} # Second anagram. 37 # Etc. 38 39 # echo "${Anagrams[*]}" # To list all the anagrams in a single line . . . 40 41 # Look ahead to the Arrays chapter for enlightenment on 42 #+ what's going on here. 43 44 # See also the agram.sh script for an exercise in anagram finding. 45 46 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ></TD ></TR ></TABLE ></DIV ><P >Examples of command substitution in shell scripts: <OL TYPE="1" ><LI ><P ><A HREF="loops.html#BINGREP" >Example 11-8</A ></P ></LI ><LI ><P ><A HREF="testbranch.html#CASECMD" >Example 11-27</A ></P ></LI ><LI ><P ><A HREF="randomvar.html#SEEDINGRANDOM" >Example 9-16</A ></P ></LI ><LI ><P ><A HREF="moreadv.html#EX57" >Example 16-3</A ></P ></LI ><LI ><P ><A HREF="textproc.html#LOWERCASE" >Example 16-22</A ></P ></LI ><LI ><P ><A HREF="textproc.html#GRP" >Example 16-17</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#EX53" >Example 16-54</A ></P ></LI ><LI ><P ><A HREF="loops.html#EX24" >Example 11-14</A ></P ></LI ><LI ><P ><A HREF="loops.html#SYMLINKS" >Example 11-11</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#STRIPC" >Example 16-32</A ></P ></LI ><LI ><P ><A HREF="redircb.html#REDIR4" >Example 20-8</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#TREE" >Example A-16</A ></P ></LI ><LI ><P ><A HREF="procref1.html#PIDID" >Example 29-3</A ></P ></LI ><LI ><P ><A HREF="mathc.html#MONTHLYPMT" >Example 16-47</A ></P ></LI ><LI ><P ><A HREF="mathc.html#BASE" >Example 16-48</A ></P ></LI ><LI ><P ><A HREF="mathc.html#ALTBC" >Example 16-49</A ></P ></LI ></OL > </P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN7205" HREF="commandsub.html#AEN7205" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >For purposes of <I CLASS="FIRSTTERM" >command substitution</I >, a <B CLASS="COMMAND" >command</B > may be an external system command, an internal scripting <A HREF="internal.html#BUILTINREF" >builtin</A >, or even <A HREF="assortedtips.html#RVT" >a script function</A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN7211" HREF="commandsub.html#AEN7211" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >In a more technically correct sense, <I CLASS="FIRSTTERM" >command substitution</I > extracts the <TT CLASS="FILENAME" >stdout</TT > of a command, then assigns it to a variable using the <SPAN CLASS="TOKEN" >=</SPAN > operator.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN7308" HREF="commandsub.html#AEN7308" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P > In fact, nesting with backticks is also possible, but only by escaping the inner backticks, as John Default points out. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 word_count=` wc -w \`echo * | awk '{print $8}'\` `</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="testbranch.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="arithexp.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Testing and Branching</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part3.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Arithmetic Expansion</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/common/caution.png.
cannot compute difference between binary files
Added HTML/common/important.png.
cannot compute difference between binary files
Added HTML/common/logotp3.png.
cannot compute difference between binary files
Added HTML/common/note.png.
cannot compute difference between binary files
Added HTML/common/tip.png.
cannot compute difference between binary files
Added HTML/common/warning.png.
cannot compute difference between binary files
Added HTML/communications.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Communications Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="External Filters, Programs and Commands" HREF="external.html"><LINK REL="PREVIOUS" TITLE="File and Archiving Commands" HREF="filearchiv.html"><LINK REL="NEXT" TITLE="Terminal Control Commands" HREF="terminalccmds.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="filearchiv.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 16. External Filters, Programs and Commands</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="terminalccmds.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="COMMUNICATIONS" ></A >16.6. Communications Commands</H1 ><P >Certain of the following commands find use in network data transfer and analysis, as well as in <A HREF="writingscripts.html#CSPAMMERS" >chasing spammers</A >.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="COMMUNINFO1" ></A >Information and Statistics</B ></P ><DL ><DT ><A NAME="HOSTREF" ></A ><B CLASS="COMMAND" >host</B ></DT ><DD ><P >Searches for information about an Internet host by name or IP address, using DNS.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >host surfacemail.com</B ></TT > <TT CLASS="COMPUTEROUTPUT" >surfacemail.com. has address 202.92.42.236</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="IPCALCREF" ></A ><B CLASS="COMMAND" >ipcalc</B ></DT ><DD ><P >Displays IP information for a host. With the <TT CLASS="OPTION" >-h</TT > option, <B CLASS="COMMAND" >ipcalc</B > does a reverse DNS lookup, finding the name of the host (server) from the IP address.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ipcalc -h 202.92.42.236</B ></TT > <TT CLASS="COMPUTEROUTPUT" >HOSTNAME=surfacemail.com</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="NSLOOKUPREF" ></A ><B CLASS="COMMAND" >nslookup</B ></DT ><DD ><P >Do an Internet <SPAN CLASS="QUOTE" >"name server lookup"</SPAN > on a host by IP address. This is essentially equivalent to <B CLASS="COMMAND" >ipcalc -h</B > or <B CLASS="COMMAND" >dig -x </B >. The command may be run either interactively or noninteractively, i.e., from within a script.</P ><P >The <B CLASS="COMMAND" >nslookup</B > command has allegedly been <SPAN CLASS="QUOTE" >"deprecated,"</SPAN > but it is still useful.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >nslookup -sil 66.97.104.180</B ></TT > <TT CLASS="COMPUTEROUTPUT" >nslookup kuhleersparnis.ch Server: 135.116.137.2 Address: 135.116.137.2#53 Non-authoritative answer: Name: kuhleersparnis.ch</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="DIGREF" ></A ><B CLASS="COMMAND" >dig</B ></DT ><DD ><P ><B CLASS="COMMAND" >D</B >omain <B CLASS="COMMAND" >I</B >nformation <B CLASS="COMMAND" >G</B >roper. Similar to <B CLASS="COMMAND" >nslookup</B >, <I CLASS="FIRSTTERM" >dig</I > does an Internet <I CLASS="FIRSTTERM" >name server lookup</I > on a host. May be run from the command-line or from within a script.</P ><P >Some interesting options to <I CLASS="FIRSTTERM" >dig</I > are <TT CLASS="OPTION" >+time=N</TT > for setting a query timeout to <TT CLASS="PARAMETER" ><I >N</I ></TT > seconds, <TT CLASS="OPTION" >+nofail</TT > for continuing to query servers until a reply is received, and <TT CLASS="OPTION" >-x</TT > for doing a reverse address lookup.</P ><P >Compare the output of <B CLASS="COMMAND" >dig -x</B > with <B CLASS="COMMAND" >ipcalc -h</B > and <B CLASS="COMMAND" >nslookup</B >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >dig -x 81.9.6.2</B ></TT > <TT CLASS="COMPUTEROUTPUT" >;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 11649 ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0 ;; QUESTION SECTION: ;2.6.9.81.in-addr.arpa. IN PTR ;; AUTHORITY SECTION: 6.9.81.in-addr.arpa. 3600 IN SOA ns.eltel.net. noc.eltel.net. 2002031705 900 600 86400 3600 ;; Query time: 537 msec ;; SERVER: 135.116.137.2#53(135.116.137.2) ;; WHEN: Wed Jun 26 08:35:24 2002 ;; MSG SIZE rcvd: 91</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="SPAMLOOKUP_0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SPAMLOOKUP" ></A ><P ><B >Example 16-40. Finding out where to report a spammer</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # spam-lookup.sh: Look up abuse contact to report a spammer. 3 # Thanks, Michael Zick. 4 5 # Check for command-line arg. 6 ARGCOUNT=1 7 E_WRONGARGS=85 8 if [ $# -ne "$ARGCOUNT" ] 9 then 10 echo "Usage: `basename $0` domain-name" 11 exit $E_WRONGARGS 12 fi 13 14 15 dig +short $1.contacts.abuse.net -c in -t txt 16 # Also try: 17 # dig +nssearch $1 18 # Tries to find "authoritative name servers" and display SOA records. 19 20 # The following also works: 21 # whois -h whois.abuse.net $1 22 # ^^ ^^^^^^^^^^^^^^^ Specify host. 23 # Can even lookup multiple spammers with this, i.e." 24 # whois -h whois.abuse.net $spamdomain1 $spamdomain2 . . . 25 26 27 # Exercise: 28 # -------- 29 # Expand the functionality of this script 30 #+ so that it automatically e-mails a notification 31 #+ to the responsible ISP's contact address(es). 32 # Hint: use the "mail" command. 33 34 exit $? 35 36 # spam-lookup.sh chinatietong.com 37 # A known spam domain. 38 39 # "crnet_mgr@chinatietong.com" 40 # "crnet_tec@chinatietong.com" 41 # "postmaster@chinatietong.com" 42 43 44 # For a more elaborate version of this script, 45 #+ see the SpamViz home page, http://www.spamviz.net/index.html.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="ISSPAMMER_0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ISSPAMMER" ></A ><P ><B >Example 16-41. Analyzing a spam domain</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /bin/bash 2 # is-spammer.sh: Identifying spam domains 3 4 # $Id: is-spammer, v 1.4 2004/09/01 19:37:52 mszick Exp $ 5 # Above line is RCS ID info. 6 # 7 # This is a simplified version of the "is_spammer.bash 8 #+ script in the Contributed Scripts appendix. 9 10 # is-spammer <domain.name> 11 12 # Uses an external program: 'dig' 13 # Tested with version: 9.2.4rc5 14 15 # Uses functions. 16 # Uses IFS to parse strings by assignment into arrays. 17 # And even does something useful: checks e-mail blacklists. 18 19 # Use the domain.name(s) from the text body: 20 # http://www.good_stuff.spammer.biz/just_ignore_everything_else 21 # ^^^^^^^^^^^ 22 # Or the domain.name(s) from any e-mail address: 23 # Really_Good_Offer@spammer.biz 24 # 25 # as the only argument to this script. 26 #(PS: have your Inet connection running) 27 # 28 # So, to invoke this script in the above two instances: 29 # is-spammer.sh spammer.biz 30 31 32 # Whitespace == :Space:Tab:Line Feed:Carriage Return: 33 WSP_IFS=$'\x20'$'\x09'$'\x0A'$'\x0D' 34 35 # No Whitespace == Line Feed:Carriage Return 36 No_WSP=$'\x0A'$'\x0D' 37 38 # Field separator for dotted decimal ip addresses 39 ADR_IFS=${No_WSP}'.' 40 41 # Get the dns text resource record. 42 # get_txt <error_code> <list_query> 43 get_txt() { 44 45 # Parse $1 by assignment at the dots. 46 local -a dns 47 IFS=$ADR_IFS 48 dns=( $1 ) 49 IFS=$WSP_IFS 50 if [ "${dns[0]}" == '127' ] 51 then 52 # See if there is a reason. 53 echo $(dig +short $2 -t txt) 54 fi 55 } 56 57 # Get the dns address resource record. 58 # chk_adr <rev_dns> <list_server> 59 chk_adr() { 60 local reply 61 local server 62 local reason 63 64 server=${1}${2} 65 reply=$( dig +short ${server} ) 66 67 # If reply might be an error code . . . 68 if [ ${#reply} -gt 6 ] 69 then 70 reason=$(get_txt ${reply} ${server} ) 71 reason=${reason:-${reply}} 72 fi 73 echo ${reason:-' not blacklisted.'} 74 } 75 76 # Need to get the IP address from the name. 77 echo 'Get address of: '$1 78 ip_adr=$(dig +short $1) 79 dns_reply=${ip_adr:-' no answer '} 80 echo ' Found address: '${dns_reply} 81 82 # A valid reply is at least 4 digits plus 3 dots. 83 if [ ${#ip_adr} -gt 6 ] 84 then 85 echo 86 declare query 87 88 # Parse by assignment at the dots. 89 declare -a dns 90 IFS=$ADR_IFS 91 dns=( ${ip_adr} ) 92 IFS=$WSP_IFS 93 94 # Reorder octets into dns query order. 95 rev_dns="${dns[3]}"'.'"${dns[2]}"'.'"${dns[1]}"'.'"${dns[0]}"'.' 96 97 # See: http://www.spamhaus.org (Conservative, well maintained) 98 echo -n 'spamhaus.org says: ' 99 echo $(chk_adr ${rev_dns} 'sbl-xbl.spamhaus.org') 100 101 # See: http://ordb.org (Open mail relays) 102 echo -n ' ordb.org says: ' 103 echo $(chk_adr ${rev_dns} 'relays.ordb.org') 104 105 # See: http://www.spamcop.net/ (You can report spammers here) 106 echo -n ' spamcop.net says: ' 107 echo $(chk_adr ${rev_dns} 'bl.spamcop.net') 108 109 # # # other blacklist operations # # # 110 111 # See: http://cbl.abuseat.org. 112 echo -n ' abuseat.org says: ' 113 echo $(chk_adr ${rev_dns} 'cbl.abuseat.org') 114 115 # See: http://dsbl.org/usage (Various mail relays) 116 echo 117 echo 'Distributed Server Listings' 118 echo -n ' list.dsbl.org says: ' 119 echo $(chk_adr ${rev_dns} 'list.dsbl.org') 120 121 echo -n ' multihop.dsbl.org says: ' 122 echo $(chk_adr ${rev_dns} 'multihop.dsbl.org') 123 124 echo -n 'unconfirmed.dsbl.org says: ' 125 echo $(chk_adr ${rev_dns} 'unconfirmed.dsbl.org') 126 127 else 128 echo 129 echo 'Could not use that address.' 130 fi 131 132 exit 0 133 134 # Exercises: 135 # -------- 136 137 # 1) Check arguments to script, 138 # and exit with appropriate error message if necessary. 139 140 # 2) Check if on-line at invocation of script, 141 # and exit with appropriate error message if necessary. 142 143 # 3) Substitute generic variables for "hard-coded" BHL domains. 144 145 # 4) Set a time-out for the script using the "+time=" option 146 to the 'dig' command.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >For a much more elaborate version of the above script, see <A HREF="contributed-scripts.html#ISSPAMMER2" >Example A-28</A >.</P ></DD ><DT ><A NAME="TRACEROUTEREF" ></A ><B CLASS="COMMAND" >traceroute</B ></DT ><DD ><P >Trace the route taken by packets sent to a remote host. This command works within a LAN, WAN, or over the Internet. The remote host may be specified by an IP address. The output of this command may be filtered by <A HREF="textproc.html#GREPREF" >grep</A > or <A HREF="sedawk.html#SEDREF" >sed</A > in a pipe.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >traceroute 81.9.6.2</B ></TT > <TT CLASS="COMPUTEROUTPUT" >traceroute to 81.9.6.2 (81.9.6.2), 30 hops max, 38 byte packets 1 tc43.xjbnnbrb.com (136.30.178.8) 191.303 ms 179.400 ms 179.767 ms 2 or0.xjbnnbrb.com (136.30.178.1) 179.536 ms 179.534 ms 169.685 ms 3 192.168.11.101 (192.168.11.101) 189.471 ms 189.556 ms * ...</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="PINGREF" ></A ><B CLASS="COMMAND" >ping</B ></DT ><DD ><P >Broadcast an <TT CLASS="REPLACEABLE" ><I >ICMP ECHO_REQUEST</I ></TT > packet to another machine, either on a local or remote network. This is a diagnostic tool for testing network connections, and it should be used with caution.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ping localhost</B ></TT > <TT CLASS="COMPUTEROUTPUT" >PING localhost.localdomain (127.0.0.1) from 127.0.0.1 : 56(84) bytes of data. 64 bytes from localhost.localdomain (127.0.0.1): icmp_seq=0 ttl=255 time=709 usec 64 bytes from localhost.localdomain (127.0.0.1): icmp_seq=1 ttl=255 time=286 usec --- localhost.localdomain ping statistics --- 2 packets transmitted, 2 packets received, 0% packet loss round-trip min/avg/max/mdev = 0.286/0.497/0.709/0.212 ms</TT > </PRE ></TD ></TR ></TABLE > </P ><P >A successful <I CLASS="FIRSTTERM" >ping</I > returns an <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of <SPAN CLASS="ERRORCODE" >0</SPAN >. This can be tested for in a script.</P ><P ><A NAME="PING0" ></A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 HNAME=news-15.net # Notorious spammer. 2 # HNAME=$HOST # Debug: test for localhost. 3 count=2 # Send only two pings. 4 5 if [[ `ping -c $count "$HNAME"` ]] 6 then 7 echo ""$HNAME" still up and broadcasting spam your way." 8 else 9 echo ""$HNAME" seems to be down. Pity." 10 fi</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="WHOISREF" ></A ><B CLASS="COMMAND" >whois</B ></DT ><DD ><P >Perform a DNS (Domain Name System) lookup. The <TT CLASS="OPTION" >-h</TT > option permits specifying which particular <I CLASS="FIRSTTERM" >whois</I > server to query. See <A HREF="othertypesv.html#EX18" >Example 4-6</A > and <A HREF="communications.html#SPAMLOOKUP" >Example 16-40</A >.</P ></DD ><DT ><A NAME="FINGERREF" ></A ><B CLASS="COMMAND" >finger</B ></DT ><DD ><P >Retrieve information about users on a network. Optionally, this command can display a user's <TT CLASS="FILENAME" >~/.plan</TT >, <TT CLASS="FILENAME" >~/.project</TT >, and <TT CLASS="FILENAME" >~/.forward</TT > files, if present.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >finger</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Login Name Tty Idle Login Time Office Office Phone bozo Bozo Bozeman tty1 8 Jun 25 16:59 (:0) bozo Bozo Bozeman ttyp0 Jun 25 16:59 (:0.0) bozo Bozo Bozeman ttyp1 Jun 25 17:07 (:0.0)</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >finger bozo</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Login: bozo Name: Bozo Bozeman Directory: /home/bozo Shell: /bin/bash Office: 2355 Clown St., 543-1234 On since Fri Aug 31 20:13 (MST) on tty1 1 hour 38 minutes idle On since Fri Aug 31 20:13 (MST) on pts/0 12 seconds idle On since Fri Aug 31 20:13 (MST) on pts/1 On since Fri Aug 31 20:31 (MST) on pts/2 1 hour 16 minutes idle Mail last read Tue Jul 3 10:08 2007 (MST) No Plan.</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Out of security considerations, many networks disable <B CLASS="COMMAND" >finger</B > and its associated daemon. <A NAME="AEN13320" HREF="#FTN.AEN13320" >[1]</A > </P ></DD ><DT ><A NAME="CHFNREF" ></A ><B CLASS="COMMAND" >chfn</B ></DT ><DD ><P >Change information disclosed by the <B CLASS="COMMAND" >finger</B > command.</P ></DD ><DT ><A NAME="VRFYREF" ></A ><B CLASS="COMMAND" >vrfy</B ></DT ><DD ><P >Verify an Internet e-mail address.</P ><P >This command seems to be missing from newer Linux distros.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="COMMREMOTE1" ></A >Remote Host Access</B ></P ><DL ><DT ><A NAME="RXREF" ></A ><B CLASS="COMMAND" >sx</B >, <B CLASS="COMMAND" >rx</B ></DT ><DD ><P >The <B CLASS="COMMAND" >sx</B > and <B CLASS="COMMAND" >rx</B > command set serves to transfer files to and from a remote host using the <I CLASS="FIRSTTERM" >xmodem</I > protocol. These are generally part of a communications package, such as <B CLASS="COMMAND" >minicom</B >.</P ></DD ><DT ><A NAME="RZREF" ></A ><B CLASS="COMMAND" >sz</B >, <B CLASS="COMMAND" >rz</B ></DT ><DD ><P >The <B CLASS="COMMAND" >sz</B > and <B CLASS="COMMAND" >rz</B > command set serves to transfer files to and from a remote host using the <I CLASS="FIRSTTERM" >zmodem</I > protocol. <I CLASS="FIRSTTERM" >Zmodem</I > has certain advantages over <I CLASS="FIRSTTERM" >xmodem</I >, such as faster transmission rate and resumption of interrupted file transfers. Like <B CLASS="COMMAND" >sx</B > and <B CLASS="COMMAND" >rx</B >, these are generally part of a communications package.</P ></DD ><DT ><A NAME="FTPREF" ></A ><B CLASS="COMMAND" >ftp</B ></DT ><DD ><P >Utility and protocol for uploading / downloading files to or from a remote host. An ftp session can be automated in a script (see <A HREF="here-docs.html#EX72" >Example 19-6</A > and <A HREF="contributed-scripts.html#ENCRYPTEDPW" >Example A-4</A >).</P ></DD ><DT ><A NAME="UUCPREF" ></A ><B CLASS="COMMAND" >uucp</B >, <A NAME="UUXREF" ></A ><B CLASS="COMMAND" >uux</B >, <A NAME="CUREF" ></A ><B CLASS="COMMAND" >cu</B ></DT ><DD ><P ><B CLASS="COMMAND" >uucp</B >: <I CLASS="FIRSTTERM" >UNIX to UNIX copy</I >. This is a communications package for transferring files between UNIX servers. A shell script is an effective way to handle a <B CLASS="COMMAND" >uucp</B > command sequence.</P ><P >Since the advent of the Internet and e-mail, <B CLASS="COMMAND" >uucp</B > seems to have faded into obscurity, but it still exists and remains perfectly workable in situations where an Internet connection is not available or appropriate. The advantage of <B CLASS="COMMAND" >uucp</B > is that it is fault-tolerant, so even if there is a service interruption the copy operation will resume where it left off when the connection is restored.</P ><P >---</P ><P ><B CLASS="COMMAND" >uux</B >: <I CLASS="FIRSTTERM" >UNIX to UNIX execute</I >. Execute a command on a remote system. This command is part of the <B CLASS="COMMAND" >uucp</B > package.</P ><P >---</P ><P ><B CLASS="COMMAND" >cu</B >: <B CLASS="COMMAND" >C</B >all <B CLASS="COMMAND" >U</B >p a remote system and connect as a simple terminal. It is a sort of dumbed-down version of <A HREF="communications.html#TELNETREF" >telnet</A >. This command is part of the <B CLASS="COMMAND" >uucp</B > package.</P ></DD ><DT ><A NAME="TELNETREF" ></A ><B CLASS="COMMAND" >telnet</B ></DT ><DD ><P >Utility and protocol for connecting to a remote host.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <I CLASS="FIRSTTERM" >telnet</I > protocol contains security holes and should therefore probably be avoided. Its use within a shell script is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > recommended.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="WGETREF" ></A ><B CLASS="COMMAND" >wget</B ></DT ><DD ><P >The <B CLASS="COMMAND" >wget</B > utility <I CLASS="FIRSTTERM" >noninteractively</I > retrieves or downloads files from a Web or ftp site. It works well in a script.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 wget -p http://www.xyz23.com/file01.html 2 # The -p or --page-requisite option causes wget to fetch all files 3 #+ required to display the specified page. 4 5 wget -r ftp://ftp.xyz24.net/~bozo/project_files/ -O $SAVEFILE 6 # The -r option recursively follows and retrieves all links 7 #+ on the specified site. 8 9 wget -c ftp://ftp.xyz25.net/bozofiles/filename.tar.bz2 10 # The -c option lets wget resume an interrupted download. 11 # This works with ftp servers and many HTTP sites.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="QUOTEFETCH" ></A ><P ><B >Example 16-42. Getting a stock quote</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # quote-fetch.sh: Download a stock quote. 3 4 5 E_NOPARAMS=86 6 7 if [ -z "$1" ] # Must specify a stock (symbol) to fetch. 8 then echo "Usage: `basename $0` stock-symbol" 9 exit $E_NOPARAMS 10 fi 11 12 stock_symbol=$1 13 14 file_suffix=.html 15 # Fetches an HTML file, so name it appropriately. 16 URL='http://finance.yahoo.com/q?s=' 17 # Yahoo finance board, with stock query suffix. 18 19 # ----------------------------------------------------------- 20 wget -O ${stock_symbol}${file_suffix} "${URL}${stock_symbol}" 21 # ----------------------------------------------------------- 22 23 24 # To look up stuff on http://search.yahoo.com: 25 # ----------------------------------------------------------- 26 # URL="http://search.yahoo.com/search?fr=ush-news&p=${query}" 27 # wget -O "$savefilename" "${URL}" 28 # ----------------------------------------------------------- 29 # Saves a list of relevant URLs. 30 31 exit $? 32 33 # Exercises: 34 # --------- 35 # 36 # 1) Add a test to ensure the user running the script is on-line. 37 # (Hint: parse the output of 'ps -ax' for "ppp" or "connect." 38 # 39 # 2) Modify this script to fetch the local weather report, 40 #+ taking the user's zip code as an argument.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="contributed-scripts.html#WGETTER2" >Example A-30</A > and <A HREF="contributed-scripts.html#BASHPODDER" >Example A-31</A >.</P ></DD ><DT ><A NAME="LYNXREF" ></A ><B CLASS="COMMAND" >lynx</B ></DT ><DD ><P >The <B CLASS="COMMAND" >lynx</B > Web and file browser can be used inside a script (with the <TT CLASS="OPTION" >-dump</TT > option) to retrieve a file from a Web or ftp site noninteractively.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 lynx -dump http://www.xyz23.com/file01.html >$SAVEFILE</PRE ></TD ></TR ></TABLE > </P ><P >With the <TT CLASS="OPTION" >-traversal</TT > option, <B CLASS="COMMAND" >lynx</B > starts at the HTTP URL specified as an argument, then <SPAN CLASS="QUOTE" >"crawls"</SPAN > through all links located on that particular server. Used together with the <TT CLASS="OPTION" >-crawl</TT > option, outputs page text to a log file.</P ></DD ><DT ><A NAME="RLOGINREF" ></A ><B CLASS="COMMAND" >rlogin</B ></DT ><DD ><P ><TT CLASS="REPLACEABLE" ><I >Remote login</I ></TT >, initates a session on a remote host. This command has security issues, so use <A HREF="communications.html#SSHREF" >ssh</A > instead.</P ></DD ><DT ><A NAME="RSHREF" ></A ><B CLASS="COMMAND" >rsh</B ></DT ><DD ><P ><TT CLASS="REPLACEABLE" ><I >Remote shell</I ></TT >, executes command(s) on a remote host. This has security issues, so use <B CLASS="COMMAND" >ssh</B > instead.</P ></DD ><DT ><A NAME="RCPREF" ></A ><B CLASS="COMMAND" >rcp</B ></DT ><DD ><P ><TT CLASS="REPLACEABLE" ><I >Remote copy</I ></TT >, copies files between two different networked machines.</P ></DD ><DT ><A NAME="RSYNCREF" ></A ><B CLASS="COMMAND" >rsync</B ></DT ><DD ><P ><TT CLASS="REPLACEABLE" ><I >Remote synchronize</I ></TT >, updates (synchronizes) files between two different networked machines.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >rsync -a ~/sourcedir/*txt /node1/subdirectory/</B ></TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="FC4UPD" ></A ><P ><B >Example 16-43. Updating FC4</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # fc4upd.sh 3 4 # Script author: Frank Wang. 5 # Slight stylistic modifications by ABS Guide author. 6 # Used in ABS Guide with permission. 7 8 9 # Download Fedora Core 4 update from mirror site using rsync. 10 # Should also work for newer Fedora Cores -- 5, 6, . . . 11 # Only download latest package if multiple versions exist, 12 #+ to save space. 13 14 URL=rsync://distro.ibiblio.org/fedora-linux-core/updates/ 15 # URL=rsync://ftp.kddilabs.jp/fedora/core/updates/ 16 # URL=rsync://rsync.planetmirror.com/fedora-linux-core/updates/ 17 18 DEST=${1:-/var/www/html/fedora/updates/} 19 LOG=/tmp/repo-update-$(/bin/date +%Y-%m-%d).txt 20 PID_FILE=/var/run/${0##*/}.pid 21 22 E_RETURN=85 # Something unexpected happened. 23 24 25 # General rsync options 26 # -r: recursive download 27 # -t: reserve time 28 # -v: verbose 29 30 OPTS="-rtv --delete-excluded --delete-after --partial" 31 32 # rsync include pattern 33 # Leading slash causes absolute path name match. 34 INCLUDE=( 35 "/4/i386/kde-i18n-Chinese*" 36 # ^ ^ 37 # Quoting is necessary to prevent globbing. 38 ) 39 40 41 # rsync exclude pattern 42 # Temporarily comment out unwanted pkgs using "#" . . . 43 EXCLUDE=( 44 /1 45 /2 46 /3 47 /testing 48 /4/SRPMS 49 /4/ppc 50 /4/x86_64 51 /4/i386/debug 52 "/4/i386/kde-i18n-*" 53 "/4/i386/openoffice.org-langpack-*" 54 "/4/i386/*i586.rpm" 55 "/4/i386/GFS-*" 56 "/4/i386/cman-*" 57 "/4/i386/dlm-*" 58 "/4/i386/gnbd-*" 59 "/4/i386/kernel-smp*" 60 # "/4/i386/kernel-xen*" 61 # "/4/i386/xen-*" 62 ) 63 64 65 init () { 66 # Let pipe command return possible rsync error, e.g., stalled network. 67 set -o pipefail # Newly introduced in Bash, version 3. 68 69 TMP=${TMPDIR:-/tmp}/${0##*/}.$$ # Store refined download list. 70 trap "{ 71 rm -f $TMP 2>/dev/null 72 }" EXIT # Clear temporary file on exit. 73 } 74 75 76 check_pid () { 77 # Check if process exists. 78 if [ -s "$PID_FILE" ]; then 79 echo "PID file exists. Checking ..." 80 PID=$(/bin/egrep -o "^[[:digit:]]+" $PID_FILE) 81 if /bin/ps --pid $PID &>/dev/null; then 82 echo "Process $PID found. ${0##*/} seems to be running!" 83 /usr/bin/logger -t ${0##*/} \ 84 "Process $PID found. ${0##*/} seems to be running!" 85 exit $E_RETURN 86 fi 87 echo "Process $PID not found. Start new process . . ." 88 fi 89 } 90 91 92 # Set overall file update range starting from root or $URL, 93 #+ according to above patterns. 94 set_range () { 95 include= 96 exclude= 97 for p in "${INCLUDE[@]}"; do 98 include="$include --include \"$p\"" 99 done 100 101 for p in "${EXCLUDE[@]}"; do 102 exclude="$exclude --exclude \"$p\"" 103 done 104 } 105 106 107 # Retrieve and refine rsync update list. 108 get_list () { 109 echo $$ > $PID_FILE || { 110 echo "Can't write to pid file $PID_FILE" 111 exit $E_RETURN 112 } 113 114 echo -n "Retrieving and refining update list . . ." 115 116 # Retrieve list -- 'eval' is needed to run rsync as a single command. 117 # $3 and $4 is the date and time of file creation. 118 # $5 is the full package name. 119 previous= 120 pre_file= 121 pre_date=0 122 eval /bin/nice /usr/bin/rsync \ 123 -r $include $exclude $URL | \ 124 egrep '^dr.x|^-r' | \ 125 awk '{print $3, $4, $5}' | \ 126 sort -k3 | \ 127 { while read line; do 128 # Get seconds since epoch, to filter out obsolete pkgs. 129 cur_date=$(date -d "$(echo $line | awk '{print $1, $2}')" +%s) 130 # echo $cur_date 131 132 # Get file name. 133 cur_file=$(echo $line | awk '{print $3}') 134 # echo $cur_file 135 136 # Get rpm pkg name from file name, if possible. 137 if [[ $cur_file == *rpm ]]; then 138 pkg_name=$(echo $cur_file | sed -r -e \ 139 's/(^([^_-]+[_-])+)[[:digit:]]+\..*[_-].*$/\1/') 140 else 141 pkg_name= 142 fi 143 # echo $pkg_name 144 145 if [ -z "$pkg_name" ]; then # If not a rpm file, 146 echo $cur_file >> $TMP #+ then append to download list. 147 elif [ "$pkg_name" != "$previous" ]; then # A new pkg found. 148 echo $pre_file >> $TMP # Output latest file. 149 previous=$pkg_name # Save current. 150 pre_date=$cur_date 151 pre_file=$cur_file 152 elif [ "$cur_date" -gt "$pre_date" ]; then 153 # If same pkg, but newer, 154 pre_date=$cur_date #+ then update latest pointer. 155 pre_file=$cur_file 156 fi 157 done 158 echo $pre_file >> $TMP # TMP contains ALL 159 #+ of refined list now. 160 # echo "subshell=$BASH_SUBSHELL" 161 162 } # Bracket required here to let final "echo $pre_file >> $TMP" 163 # Remained in the same subshell ( 1 ) with the entire loop. 164 165 RET=$? # Get return code of the pipe command. 166 167 [ "$RET" -ne 0 ] && { 168 echo "List retrieving failed with code $RET" 169 exit $E_RETURN 170 } 171 172 echo "done"; echo 173 } 174 175 # Real rsync download part. 176 get_file () { 177 178 echo "Downloading..." 179 /bin/nice /usr/bin/rsync \ 180 $OPTS \ 181 --filter "merge,+/ $TMP" \ 182 --exclude '*' \ 183 $URL $DEST \ 184 | /usr/bin/tee $LOG 185 186 RET=$? 187 188 # --filter merge,+/ is crucial for the intention. 189 # + modifier means include and / means absolute path. 190 # Then sorted list in $TMP will contain ascending dir name and 191 #+ prevent the following --exclude '*' from "shortcutting the circuit." 192 193 echo "Done" 194 195 rm -f $PID_FILE 2>/dev/null 196 197 return $RET 198 } 199 200 # ------- 201 # Main 202 init 203 check_pid 204 set_range 205 get_list 206 get_file 207 RET=$? 208 # ------- 209 210 if [ "$RET" -eq 0 ]; then 211 /usr/bin/logger -t ${0##*/} "Fedora update mirrored successfully." 212 else 213 /usr/bin/logger -t ${0##*/} \ 214 "Fedora update mirrored with failure code: $RET" 215 fi 216 217 exit $RET</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="contributed-scripts.html#NIGHTLYBACKUP" >Example A-32</A >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Using <A HREF="communications.html#RCPREF" >rcp</A >, <A HREF="communications.html#RSYNCREF" >rsync</A >, and similar utilities with security implications in a shell script may not be advisable. Consider, instead, using <B CLASS="COMMAND" >ssh</B >, <A HREF="communications.html#SCPREF" >scp</A >, or an <B CLASS="COMMAND" >expect</B > script.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SSHREF" ></A ><B CLASS="COMMAND" >ssh</B ></DT ><DD ><P ><TT CLASS="REPLACEABLE" ><I >Secure shell</I ></TT >, logs onto a remote host and executes commands there. This secure replacement for <B CLASS="COMMAND" >telnet</B >, <B CLASS="COMMAND" >rlogin</B >, <B CLASS="COMMAND" >rcp</B >, and <B CLASS="COMMAND" >rsh</B > uses identity authentication and encryption. See its <A HREF="external.html#MANREF" >manpage</A > for details.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="REMOTE" ></A ><P ><B >Example 16-44. Using <I CLASS="FIRSTTERM" >ssh</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # remote.bash: Using ssh. 3 4 # This example by Michael Zick. 5 # Used with permission. 6 7 8 # Presumptions: 9 # ------------ 10 # fd-2 isn't being captured ( '2>/dev/null' ). 11 # ssh/sshd presumes stderr ('2') will display to user. 12 # 13 # sshd is running on your machine. 14 # For any 'standard' distribution, it probably is, 15 #+ and without any funky ssh-keygen having been done. 16 17 # Try ssh to your machine from the command-line: 18 # 19 # $ ssh $HOSTNAME 20 # Without extra set-up you'll be asked for your password. 21 # enter password 22 # when done, $ exit 23 # 24 # Did that work? If so, you're ready for more fun. 25 26 # Try ssh to your machine as 'root': 27 # 28 # $ ssh -l root $HOSTNAME 29 # When asked for password, enter root's, not yours. 30 # Last login: Tue Aug 10 20:25:49 2004 from localhost.localdomain 31 # Enter 'exit' when done. 32 33 # The above gives you an interactive shell. 34 # It is possible for sshd to be set up in a 'single command' mode, 35 #+ but that is beyond the scope of this example. 36 # The only thing to note is that the following will work in 37 #+ 'single command' mode. 38 39 40 # A basic, write stdout (local) command. 41 42 ls -l 43 44 # Now the same basic command on a remote machine. 45 # Pass a different 'USERNAME' 'HOSTNAME' if desired: 46 USER=${USERNAME:-$(whoami)} 47 HOST=${HOSTNAME:-$(hostname)} 48 49 # Now excute the above command-line on the remote host, 50 #+ with all transmissions encrypted. 51 52 ssh -l ${USER} ${HOST} " ls -l " 53 54 # The expected result is a listing of your username's home 55 #+ directory on the remote machine. 56 # To see any difference, run this script from somewhere 57 #+ other than your home directory. 58 59 # In other words, the Bash command is passed as a quoted line 60 #+ to the remote shell, which executes it on the remote machine. 61 # In this case, sshd does ' bash -c "ls -l" ' on your behalf. 62 63 # For information on topics such as not having to enter a 64 #+ password/passphrase for every command-line, see 65 #+ man ssh 66 #+ man ssh-keygen 67 #+ man sshd_config. 68 69 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Within a loop, <B CLASS="COMMAND" >ssh</B > may cause unexpected behavior. According to a <A HREF="http://groups-beta.google.com/group/comp.unix.shell/msg/dcb446b5fff7d230" TARGET="_top" > Usenet post</A > in the comp.unix shell archives, <B CLASS="COMMAND" >ssh</B > inherits the loop's <TT CLASS="FILENAME" >stdin</TT >. To remedy this, pass <B CLASS="COMMAND" >ssh</B > either the <TT CLASS="OPTION" >-n</TT > or <TT CLASS="OPTION" >-f</TT > option.</P ><P >Thanks, Jason Bechtel, for pointing this out.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SCPREF" ></A ><B CLASS="COMMAND" >scp</B ></DT ><DD ><P ><TT CLASS="REPLACEABLE" ><I >Secure copy</I ></TT >, similar in function to <B CLASS="COMMAND" >rcp</B >, copies files between two different networked machines, but does so using authentication, and with a security level similar to <B CLASS="COMMAND" >ssh</B >.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="COMMLOCAL1" ></A >Local Network</B ></P ><DL ><DT ><A NAME="WRITEREF" ></A ><B CLASS="COMMAND" >write</B ></DT ><DD ><P >This is a utility for terminal-to-terminal communication. It allows sending lines from your terminal (console or <I CLASS="FIRSTTERM" >xterm</I >) to that of another user. The <A HREF="system.html#MESGREF" >mesg</A > command may, of course, be used to disable write access to a terminal</P ><P >Since <B CLASS="COMMAND" >write</B > is interactive, it would not normally find use in a script.</P ></DD ><DT ><A NAME="NETCONFIGREF" ></A ><B CLASS="COMMAND" >netconfig</B ></DT ><DD ><P >A command-line utility for configuring a network adapter (using <I CLASS="FIRSTTERM" >DHCP</I >). This command is native to Red Hat centric Linux distros.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="COMMMAIL1" ></A >Mail</B ></P ><DL ><DT ><B CLASS="COMMAND" >mail</B ></DT ><DD ><P >Send or read e-mail messages.</P ><P >This stripped-down command-line mail client works fine as a command embedded in a script.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SELFMAILER" ></A ><P ><B >Example 16-45. A script that mails itself</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/sh 2 # self-mailer.sh: Self-mailing script 3 4 adr=${1:-`whoami`} # Default to current user, if not specified. 5 # Typing 'self-mailer.sh wiseguy@superdupergenius.com' 6 #+ sends this script to that addressee. 7 # Just 'self-mailer.sh' (no argument) sends the script 8 #+ to the person invoking it, for example, bozo@localhost.localdomain. 9 # 10 # For more on the ${parameter:-default} construct, 11 #+ see the "Parameter Substitution" section 12 #+ of the "Variables Revisited" chapter. 13 14 # ============================================================================ 15 cat $0 | mail -s "Script \"`basename $0`\" has mailed itself to you." "$adr" 16 # ============================================================================ 17 18 # -------------------------------------------- 19 # Greetings from the self-mailing script. 20 # A mischievous person has run this script, 21 #+ which has caused it to mail itself to you. 22 # Apparently, some people have nothing better 23 #+ to do with their time. 24 # -------------------------------------------- 25 26 echo "At `date`, script \"`basename $0`\" mailed to "$adr"." 27 28 exit 0 29 30 # Note that the "mailx" command (in "send" mode) may be substituted 31 #+ for "mail" ... but with somewhat different options.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="MAILTOREF" ></A ><B CLASS="COMMAND" >mailto</B ></DT ><DD ><P >Similar to the <B CLASS="COMMAND" >mail</B > command, <B CLASS="COMMAND" >mailto</B > sends e-mail messages from the command-line or in a script. However, <B CLASS="COMMAND" >mailto</B > also permits sending MIME (multimedia) messages.</P ></DD ><DT ><A NAME="MAILSTATSREF" ></A ><B CLASS="COMMAND" >mailstats</B ></DT ><DD ><P >Show <I CLASS="FIRSTTERM" >mail statistics</I >. This command may be invoked only by <I CLASS="FIRSTTERM" >root</I >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >mailstats</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Statistics from Tue Jan 1 20:32:08 2008 M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis msgsqur Mailer 4 1682 24118K 0 0K 0 0 0 esmtp 9 212 640K 1894 25131K 0 0 0 local ===================================================================== T 1894 24758K 1894 25131K 0 0 0 C 414 0</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="VACATIONREF" ></A ><B CLASS="COMMAND" >vacation</B ></DT ><DD ><P >This utility automatically replies to e-mails that the intended recipient is on vacation and temporarily unavailable. It runs on a network, in conjunction with <B CLASS="COMMAND" >sendmail</B >, and is not applicable to a dial-up POPmail account.</P ></DD ></DL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN13320" HREF="communications.html#AEN13320" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="DAEMONREF" ></A ></P ><P >A <I CLASS="FIRSTTERM" >daemon</I > is a background process not attached to a terminal session. Daemons perform designated services either at specified times or explicitly triggered by certain events.</P ><P >The word <SPAN CLASS="QUOTE" >"daemon"</SPAN > means ghost in Greek, and there is certainly something mysterious, almost supernatural, about the way UNIX daemons wander about behind the scenes, silently carrying out their appointed tasks.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="filearchiv.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="terminalccmds.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >File and Archiving Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="external.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Terminal Control Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/comparison-ops.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Other Comparison Operators</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Tests" HREF="tests.html"><LINK REL="PREVIOUS" TITLE="File test operators" HREF="fto.html"><LINK REL="NEXT" TITLE="Nested if/then Condition Tests" HREF="nestedifthen.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="fto.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 7. Tests</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="nestedifthen.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="COMPARISON-OPS" ></A >7.3. Other Comparison Operators</H1 ><P >A <I CLASS="FIRSTTERM" >binary</I > comparison operator compares two variables or quantities. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Note that integer and string comparison use a different set of operators.</I ></SPAN ></P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="ICOMPARISON1" ></A >integer comparison</B ></P ><DL ><DT ><A NAME="EQUALREF" ></A ><SPAN CLASS="TOKEN" >-eq</SPAN ></DT ><DD ><P >is equal to</P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" -eq "$b" ]</B ></TT ></P ></DD ><DT ><A NAME="NEQUALREF" ></A ><SPAN CLASS="TOKEN" >-ne</SPAN ></DT ><DD ><P >is not equal to</P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" -ne "$b" ]</B ></TT ></P ></DD ><DT ><A NAME="GT0REF" ></A ><SPAN CLASS="TOKEN" >-gt</SPAN ></DT ><DD ><P >is greater than</P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" -gt "$b" ]</B ></TT ></P ></DD ><DT ><A NAME="GE0REF" ></A ><SPAN CLASS="TOKEN" >-ge</SPAN ></DT ><DD ><P >is greater than or equal to</P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" -ge "$b" ]</B ></TT ></P ></DD ><DT ><A NAME="LT0REF" ></A ><SPAN CLASS="TOKEN" >-lt</SPAN ></DT ><DD ><P >is less than</P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" -lt "$b" ]</B ></TT ></P ></DD ><DT ><A NAME="LE0REF" ></A ><SPAN CLASS="TOKEN" >-le</SPAN ></DT ><DD ><P >is less than or equal to</P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" -le "$b" ]</B ></TT ></P ></DD ><DT ><A NAME="INTLT" ></A ><SPAN CLASS="TOKEN" ><</SPAN ></DT ><DD ><P >is less than (within <A HREF="dblparens.html" >double parentheses</A >)</P ><P ><TT CLASS="USERINPUT" ><B >(("$a" < "$b"))</B ></TT ></P ></DD ><DT ><A NAME="LTEQ" ></A ><SPAN CLASS="TOKEN" ><=</SPAN ></DT ><DD ><P >is less than or equal to (within double parentheses)</P ><P ><TT CLASS="USERINPUT" ><B >(("$a" <= "$b"))</B ></TT ></P ></DD ><DT ><A NAME="INTGT" ></A ><SPAN CLASS="TOKEN" >></SPAN ></DT ><DD ><P >is greater than (within double parentheses)</P ><P ><TT CLASS="USERINPUT" ><B >(("$a" > "$b"))</B ></TT ></P ></DD ><DT ><A NAME="GTEQ" ></A ><SPAN CLASS="TOKEN" >>=</SPAN ></DT ><DD ><P >is greater than or equal to (within double parentheses)</P ><P ><TT CLASS="USERINPUT" ><B >(("$a" >= "$b"))</B ></TT ></P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="SCOMPARISON1" ></A >string comparison</B ></P ><DL ><DT ><SPAN CLASS="TOKEN" >=</SPAN ></DT ><DD ><P ><A NAME="EQUALSIGNREF" ></A ></P ><P >is equal to</P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" = "$b" ]</B ></TT ></P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Note the <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A > framing the <B CLASS="COMMAND" >=</B >.</P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a"="$b" ]</B ></TT > is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > equivalent to the above.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SCOMPARISON2" ></A ><SPAN CLASS="TOKEN" >==</SPAN ></DT ><DD ><P >is equal to</P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" == "$b" ]</B ></TT ></P ><P >This is a synonym for <SPAN CLASS="TOKEN" >=</SPAN >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P > The <SPAN CLASS="TOKEN" >==</SPAN > comparison operator behaves differently within a <A HREF="tests.html#DBLBRACKETS" >double-brackets</A > test than within single brackets. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 [[ $a == z* ]] # True if $a starts with an "z" (pattern matching). 2 [[ $a == "z*" ]] # True if $a is equal to z* (literal matching). 3 4 [ $a == z* ] # File globbing and word splitting take place. 5 [ "$a" == "z*" ] # True if $a is equal to z* (literal matching). 6 7 # Thanks, Stéphane Chazelas</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="NOTEQUAL" ></A ><SPAN CLASS="TOKEN" >!=</SPAN ></DT ><DD ><P >is not equal to</P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" != "$b" ]</B ></TT ></P ><P >This operator uses pattern matching within a <A HREF="tests.html#DBLBRACKETS" >[[ ... ]]</A > construct.</P ></DD ><DT ><A NAME="LTREF" ></A ><SPAN CLASS="TOKEN" ><</SPAN ></DT ><DD ><P >is less than, in <A HREF="special-chars.html#ASCIIDEF" >ASCII</A > alphabetical order</P ><P ><TT CLASS="USERINPUT" ><B >if [[ "$a" < "$b" ]]</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" \< "$b" ]</B ></TT ></P ><P >Note that the <SPAN CLASS="QUOTE" >"<"</SPAN > needs to be <A HREF="escapingsection.html#ESCP" >escaped</A > within a <TT CLASS="USERINPUT" ><B >[ ]</B ></TT > construct.</P ></DD ><DT ><A NAME="GTREF" ></A ><SPAN CLASS="TOKEN" >></SPAN ></DT ><DD ><P >is greater than, in ASCII alphabetical order</P ><P ><TT CLASS="USERINPUT" ><B >if [[ "$a" > "$b" ]]</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >if [ "$a" \> "$b" ]</B ></TT ></P ><P >Note that the <SPAN CLASS="QUOTE" >">"</SPAN > needs to be escaped within a <TT CLASS="USERINPUT" ><B >[ ]</B ></TT > construct.</P ><P >See <A HREF="arrays.html#BUBBLE" >Example 27-11</A > for an application of this comparison operator.</P ></DD ><DT ><A NAME="STRINGNULL" ></A ><SPAN CLASS="TOKEN" >-z</SPAN ></DT ><DD ><P >string is <I CLASS="FIRSTTERM" >null</I >, that is, has zero length</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 String='' # Zero-length ("null") string variable. 2 3 if [ -z "$String" ] 4 then 5 echo "\$String is null." 6 else 7 echo "\$String is NOT null." 8 fi # $String is null.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="STRINGNOTNULL" ></A ><SPAN CLASS="TOKEN" >-n</SPAN ></DT ><DD ><P >string is not <I CLASS="FIRSTTERM" >null.</I ></P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="USERINPUT" ><B >-n</B ></TT > test requires that the string be quoted within the test brackets. Using an unquoted string with <I CLASS="FIRSTTERM" >! -z</I >, or even just the unquoted string alone within test brackets (see <A HREF="comparison-ops.html#STRTEST" >Example 7-6</A >) normally works, however, this is an unsafe practice. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Always</I ></SPAN > quote a tested string. <A NAME="AEN3669" HREF="#FTN.AEN3669" >[1]</A > </P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX13" ></A ><P ><B >Example 7-5. Arithmetic and string comparisons</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 a=4 4 b=5 5 6 # Here "a" and "b" can be treated either as integers or strings. 7 # There is some blurring between the arithmetic and string comparisons, 8 #+ since Bash variables are not strongly typed. 9 10 # Bash permits integer operations and comparisons on variables 11 #+ whose value consists of all-integer characters. 12 # Caution advised, however. 13 14 echo 15 16 if [ "$a" -ne "$b" ] 17 then 18 echo "$a is not equal to $b" 19 echo "(arithmetic comparison)" 20 fi 21 22 echo 23 24 if [ "$a" != "$b" ] 25 then 26 echo "$a is not equal to $b." 27 echo "(string comparison)" 28 # "4" != "5" 29 # ASCII 52 != ASCII 53 30 fi 31 32 # In this particular instance, both "-ne" and "!=" work. 33 34 echo 35 36 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="STRTEST" ></A ><P ><B >Example 7-6. Testing whether a string is <I CLASS="FIRSTTERM" >null</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # str-test.sh: Testing null strings and unquoted strings, 3 #+ but not strings and sealing wax, not to mention cabbages and kings . . . 4 5 # Using if [ ... ] 6 7 # If a string has not been initialized, it has no defined value. 8 # This state is called "null" (not the same as zero!). 9 10 if [ -n $string1 ] # string1 has not been declared or initialized. 11 then 12 echo "String \"string1\" is not null." 13 else 14 echo "String \"string1\" is null." 15 fi # Wrong result. 16 # Shows $string1 as not null, although it was not initialized. 17 18 echo 19 20 # Let's try it again. 21 22 if [ -n "$string1" ] # This time, $string1 is quoted. 23 then 24 echo "String \"string1\" is not null." 25 else 26 echo "String \"string1\" is null." 27 fi # Quote strings within test brackets! 28 29 echo 30 31 if [ $string1 ] # This time, $string1 stands naked. 32 then 33 echo "String \"string1\" is not null." 34 else 35 echo "String \"string1\" is null." 36 fi # This works fine. 37 # The [ ... ] test operator alone detects whether the string is null. 38 # However it is good practice to quote it (if [ "$string1" ]). 39 # 40 # As Stephane Chazelas points out, 41 # if [ $string1 ] has one argument, "]" 42 # if [ "$string1" ] has two arguments, the empty "$string1" and "]" 43 44 45 echo 46 47 48 string1=initialized 49 50 if [ $string1 ] # Again, $string1 stands unquoted. 51 then 52 echo "String \"string1\" is not null." 53 else 54 echo "String \"string1\" is null." 55 fi # Again, gives correct result. 56 # Still, it is better to quote it ("$string1"), because . . . 57 58 59 string1="a = b" 60 61 if [ $string1 ] # Again, $string1 stands unquoted. 62 then 63 echo "String \"string1\" is not null." 64 else 65 echo "String \"string1\" is null." 66 fi # Not quoting "$string1" now gives wrong result! 67 68 exit 0 # Thank you, also, Florian Wisser, for the "heads-up".</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX14" ></A ><P ><B >Example 7-7. <I CLASS="FIRSTTERM" >zmore</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # zmore 3 4 # View gzipped files with 'more' filter. 5 6 E_NOARGS=85 7 E_NOTFOUND=86 8 E_NOTGZIP=87 9 10 if [ $# -eq 0 ] # same effect as: if [ -z "$1" ] 11 # $1 can exist, but be empty: zmore "" arg2 arg3 12 then 13 echo "Usage: `basename $0` filename" >&2 14 # Error message to stderr. 15 exit $E_NOARGS 16 # Returns 85 as exit status of script (error code). 17 fi 18 19 filename=$1 20 21 if [ ! -f "$filename" ] # Quoting $filename allows for possible spaces. 22 then 23 echo "File $filename not found!" >&2 # Error message to stderr. 24 exit $E_NOTFOUND 25 fi 26 27 if [ ${filename##*.} != "gz" ] 28 # Using bracket in variable substitution. 29 then 30 echo "File $1 is not a gzipped file!" 31 exit $E_NOTGZIP 32 fi 33 34 zcat $1 | more 35 36 # Uses the 'more' filter. 37 # May substitute 'less' if desired. 38 39 exit $? # Script returns exit status of pipe. 40 # Actually "exit $?" is unnecessary, as the script will, in any case, 41 #+ return the exit status of the last command executed.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="CCOMPARISON1" ></A >compound comparison</B ></P ><DL ><DT ><A NAME="COMPOUNDAND" ></A ><SPAN CLASS="TOKEN" >-a</SPAN ></DT ><DD ><P >logical and</P ><P ><TT CLASS="REPLACEABLE" ><I >exp1 -a exp2</I ></TT > returns true if <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >both</I ></SPAN > exp1 and exp2 are true.</P ></DD ><DT ><A NAME="COMPOUNDOR" ></A ><SPAN CLASS="TOKEN" >-o</SPAN ></DT ><DD ><P >logical or </P ><P ><TT CLASS="REPLACEABLE" ><I >exp1 -o exp2</I ></TT > returns true if either exp1 <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >or</I ></SPAN > exp2 is true.</P ></DD ></DL ></DIV ><P > These are similar to the Bash comparison operators <B CLASS="COMMAND" >&&</B > and <B CLASS="COMMAND" >||</B >, used within <A HREF="tests.html#DBLBRACKETS" >double brackets</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 [[ condition1 && condition2 ]]</PRE ></TD ></TR ></TABLE > </P ><P > The <B CLASS="COMMAND" >-o</B > and <B CLASS="COMMAND" >-a</B > operators work with the <A HREF="tests.html#TTESTREF" >test</A > command or occur within single test brackets. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ "$expr1" -a "$expr2" ] 2 then 3 echo "Both expr1 and expr2 are true." 4 else 5 echo "Either expr1 or expr2 is false." 6 fi</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >But, as <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >rihad</I ></SPAN > points out: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 [ 1 -eq 1 ] && [ -n "`echo true 1>&2`" ] # true 2 [ 1 -eq 2 ] && [ -n "`echo true 1>&2`" ] # (no output) 3 # ^^^^^^^ False condition. So far, everything as expected. 4 5 # However ... 6 [ 1 -eq 2 -a -n "`echo true 1>&2`" ] # true 7 # ^^^^^^^ False condition. So, why "true" output? 8 9 # Is it because both condition clauses within brackets evaluate? 10 [[ 1 -eq 2 && -n "`echo true 1>&2`" ]] # (no output) 11 # No, that's not it. 12 13 # Apparently && and || "short-circuit" while -a and -o do not.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><P >Refer to <A HREF="operations.html#ANDOR" >Example 8-3</A >, <A HREF="arrays.html#TWODIM" >Example 27-17</A >, and <A HREF="contributed-scripts.html#WHX" >Example A-29</A > to see compound comparison operators in action.</P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN3669" HREF="comparison-ops.html#AEN3669" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >As S.C. points out, in a compound test, even quoting the string variable might not suffice. <TT CLASS="USERINPUT" ><B >[ -n "$string" -o "$a" = "$b" ]</B ></TT > may cause an error with some versions of Bash if <TT CLASS="VARNAME" >$string</TT > is empty. The safe way is to append an extra character to possibly empty variables, <TT CLASS="USERINPUT" ><B >[ "x$string" != x -o "x$a" = "x$b" ]</B ></TT > (the <SPAN CLASS="QUOTE" >"x's"</SPAN > cancel out).</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="fto.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="nestedifthen.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >File test operators</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="tests.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Nested <TT CLASS="REPLACEABLE" ><I >if/then</I ></TT > Condition Tests</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/contributed-scripts.html.
more than 10,000 changes
Added HTML/copyright.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Copyright</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="To Do List" HREF="todolist.html"><LINK REL="NEXT" TITLE="ASCII Table" HREF="asciitable.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="todolist.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="asciitable.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="COPYRIGHT" ></A >Appendix S. Copyright</H1 ><P >The <I CLASS="CITETITLE" >Advanced Bash Scripting Guide</I > is herewith granted to the PUBLIC DOMAIN. This has the following implications and consequences. </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 A. All previous releases of the Advanced Bash Scripting Guide 2 are as well granted to the Public Domain. 3 4 A1. All printed editions, whether authorized by the author or not, 5 are as well granted to the Public Domain. This legally overrides 6 any stated intention or wishes of the publishers. Any statement 7 of copyright is void and invalid. 8 THERE ARE NO EXCEPTIONS TO THIS. 9 10 A2. Any release of the Advanced Bash Scripting Guide, whether in 11 electronic or print form is granted to the Public Domain by the 12 express directive of the author and previous copyright holder, Mendel 13 Cooper. No other person(s) or entities have ever held a valid copyright. 14 15 B. As a Public Domain document, unlimited copying and distribution rights 16 are granted. There can be NO restrictions. If anyone has published or will 17 in the future publish an original or modified version of this document, 18 then only additional original material may be copyrighted. The core 19 work will remain in the Public Domain.</PRE ></TD ></TR ></TABLE ></P ><P >By law, distributors and publishers (including on-line publishers) are prohibited from imposing any conditions, strictures, or provisions on this document, any previous versions, or any derivative versions. The author asserts that he has <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > entered into any contractual obligations that would alter the foregoing declarations.</P ><P >Essentially, you may freely distribute this book or any derivative thereof in electronic or printed form. If you have previously purchased or are in possession of a printed copy of a current or previous edition, you have the LEGAL RIGHT to copy and/or redistribute it, regardless of any copyright notice. Any copyright notice is void.</P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Additionally, the author wishes to state his intention that:</I ></SPAN ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 If you copy or distribute this book, kindly DO NOT 2 use the materials within, or any portion thereof, in a patent or copyright 3 lawsuit against the Open Source community, its developers, its 4 distributors, or against any of its associated software or documentation 5 including, but not limited to, the Linux kernel, Open Office, Samba, 6 and Wine. Kindly DO NOT use any of the materials within 7 this book in testimony or depositions as a plaintiff's "expert witness" in 8 any lawsuit against the Open Source community, any of its developers, its 9 distributors, or any of its associated software or documentation.</PRE ></TD ></TR ></TABLE ></P ><P >A Public Domain license essentially does not restrict ANY legitimate distribution or use of this book. The author especially encourages its (royalty-free!) use for classroom and instructional purposes.</P ><P > To date, limited print rights (Lulu edition) have been granted to one individual and to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >no one else</I ></SPAN >. Neither that individual nor Lulu holds or ever has held a valid copyright.</P ><DIV CLASS="WARNING" ><TABLE CLASS="WARNING" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/warning.png" HSPACE="5" ALT="Warning"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It has come to the attention of the author that <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >unauthorized</I ></SPAN > electronic and print editions of this book are being sold commercially on <SPAN CLASS="TRADEMARK" >itunes</SPAN >®, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >amazon.com</I ></SPAN > and elsewhere. These are illegal and pirated editions produced without the author's permission, and readers of this book are strongly urged not to purchase them. In fact, these pirated editions are now legal, but necessarily fall into the Public Domain, and any copyright notices contained within them are invalid and void.</P ></TD ></TR ></TABLE ></DIV ><P >The author produced this book in a manner consistent with the spirit of the <A HREF="http://www.tldp.org/manifesto.html" TARGET="_top" >LDP Manifesto</A >.</P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN25689" ></A ><P >Linux is a trademark registered to Linus Torvalds.</P ><P >Fedora is a trademark registered to Red Hat.</P ><P >Unix and UNIX are trademarks registered to the Open Group.</P ><P >MS Windows is a trademark registered to the Microsoft Corp.</P ><P >Solaris is a trademark registered to Oracle, Inc.</P ><P >OSX is a trademark registered to Apple, Inc.</P ><P >Yahoo is a trademark registered to Yahoo, Inc.</P ><P >Pentium is a trademark registered to Intel, Inc.</P ><P >Thinkpad is a trademark registered to Lenovo, Inc.</P ><P >Scrabble is a trademark registered to Hasbro, Inc.</P ><P >Librie, PRS-500, and PRS-505 are trademarks registered to Sony, Inc.</P ><P >All other commercial trademarks mentioned in the body of this work are registered to their respective owners.</P ></DIV ></TD ></TR ></TABLE ><P >Hyun Jin Cha has done a <A HREF="http://kldp.org/HOWTO/html/Adv-Bash-Scr-HOWTO/index.html" TARGET="_top" >Korean translation</A > of version 1.0.11 of this book. Spanish, Portuguese, <A HREF="http://abs.traduc.org/" TARGET="_top" >French</A >, German, <A HREF="http://it.tldp.org/guide/abs/index.html" TARGET="_top" >Italian</A >, <A HREF="http://gazette.linux.ru.net/rus/articles/index-abs-guide.html" TARGET="_top" >Russian</A >, <A HREF="http://premekvihan.net/bash" TARGET="_top" >Czech</A >, <A HREF="http://www.linuxsir.org/bbs/showthread.php?t=256887" TARGET="_top" >Chinese</A >, Indonesian, Dutch, Romanian, Bulgarian, and Turkish translations are also available or in progress. If you wish to translate this document into another language, please feel free to do so, subject to the terms stated above. The author wishes to be notified of such efforts.</P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN25709" ></A ><P >Those generous readers desiring to make a donation to the author may contribute a small amount via Paypal to my e-mail address, <TT CLASS="EMAIL" ><<A HREF="mailto:thegrendel.abs@gmail.com" >thegrendel.abs@gmail.com</A >></TT >. (An <TT CLASS="USERINPUT" ><B >Honor Roll of Supporters</B ></TT > is given at the beginning of the <A HREF="http://bash.deta.in/Change.log" TARGET="_top" >Change Log</A >.) This is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > a requirement. The <I CLASS="FIRSTTERM" >ABS Guide</I > is a free and freely distributed document for the use and enjoyment of the Linux community. However, in these difficult times, showing support for voluntary projects and especially to authors of limited means is more critically important than ever.</P ></DIV ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="todolist.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="asciitable.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >To Do List</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >ASCII Table</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/credits.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Credits</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Endnotes" HREF="endnotes.html"><LINK REL="PREVIOUS" TITLE="Tools Used to Produce This Book" HREF="toolsused.html"><LINK REL="NEXT" TITLE="Disclaimer" HREF="disclaimer.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="toolsused.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 38. Endnotes</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="disclaimer.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="CREDITS" ></A >38.5. Credits</H1 ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Community participation made this project possible.</I ></SPAN > The author gratefully acknowledges that writing this book would have been unthinkable without help and feedback from all you people out there.</P ><P ><A HREF="mailto:feloy@free.fr" TARGET="_top" >Philippe Martin</A > translated the first version (0.1) of this document into DocBook/SGML. While not on the job at a small French company as a software developer, he enjoys working on GNU/Linux documentation and software, reading literature, playing music, and, for his peace of mind, making merry with friends. You may run across him somewhere in France or in the Basque Country, or you can email him at <A HREF="mailto:feloy@free.fr" TARGET="_top" >feloy@free.fr</A >.</P ><P >Philippe Martin also pointed out that positional parameters past $9 are possible using {bracket} notation. (See <A HREF="othertypesv.html#EX17" >Example 4-5</A >).</P ><P ><A HREF="mailto:stephane_chazelas@yahoo.fr" TARGET="_top" >Stéphane Chazelas</A > sent a long list of corrections, additions, and example scripts. More than a contributor, he had, in effect, for a while taken on the role of <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >co-editor</I ></SPAN > for this document. <I CLASS="FOREIGNPHRASE" >Merci beaucoup!</I ></P ><P >Paulo Marcel Coelho Aragao offered many corrections, both major and minor, and contributed quite a number of helpful suggestions.</P ><P >I would like to especially thank <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Patrick Callahan</I ></SPAN >, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Mike Novak</I ></SPAN >, and <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Pal Domokos</I ></SPAN > for catching bugs, pointing out ambiguities, and for suggesting clarifications and changes in the preliminary version (0.1) of this document. Their lively discussion of shell scripting and general documentation issues inspired me to try to make this document more readable.</P ><P >I'm grateful to Jim Van Zandt for pointing out errors and omissions in version 0.2 of this document. He also contributed an instructive <A HREF="contributed-scripts.html#ZFIFO" >example script</A >.</P ><P >Many thanks to <A HREF="mailto:mikaku@fiwix.org" TARGET="_top" >Jordi Sanfeliu</A > for giving permission to use his fine tree script (<A HREF="contributed-scripts.html#TREE" >Example A-16</A >), and to Rick Boivie for revising it.</P ><P >Likewise, thanks to <A HREF="mailto:charpov@cs.unh.edu" TARGET="_top" >Michel Charpentier</A > for permission to use his <A HREF="mathc.html#DCREF" >dc</A > factoring script (<A HREF="mathc.html#FACTR" >Example 16-52</A >).</P ><P >Kudos to <A HREF="mailto:friedman@prep.ai.mit.edu" TARGET="_top" >Noah Friedman</A > for permission to use his string function script (<A HREF="contributed-scripts.html#STRING" >Example A-18</A >).</P ><P ><A HREF="mailto:emmanuel.rouat@wanadoo.fr" TARGET="_top" >Emmanuel Rouat</A > suggested corrections and additions on <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A >, <A HREF="aliases.html#ALIASREF" >aliases</A >, and <A HREF="pathmanagement.html" >path management</A >. He also contributed a very nice sample <TT CLASS="FILENAME" >.bashrc</TT > file (<A HREF="sample-bashrc.html" >Appendix M</A >).</P ><P ><A HREF="mailto:heiner.steven@odn.de" TARGET="_top" >Heiner Steven</A > kindly gave permission to use his base conversion script, <A HREF="mathc.html#BASE" >Example 16-48</A >. He also made a number of corrections and many helpful suggestions. Special thanks.</P ><P >Rick Boivie contributed the delightfully recursive <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >pb.sh</I ></SPAN > script (<A HREF="recursionsct.html#PBOOK" >Example 36-11</A >), revised the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >tree.sh</I ></SPAN > script (<A HREF="contributed-scripts.html#TREE" >Example A-16</A >), and suggested performance improvements for the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >monthlypmt.sh</I ></SPAN > script (<A HREF="mathc.html#MONTHLYPMT" >Example 16-47</A >).</P ><P >Florian Wisser enlightened me on some of the fine points of testing strings (see <A HREF="comparison-ops.html#STRTEST" >Example 7-6</A >), and on other matters.</P ><P >Oleg Philon sent suggestions concerning <A HREF="textproc.html#CUTREF" >cut</A > and <A HREF="system.html#PIDOFREF" >pidof</A >.</P ><P >Michael Zick extended the <A HREF="arrays.html#EMPTYARRAY" >empty array</A > example to demonstrate some surprising array properties. He also contributed the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >isspammer</I ></SPAN > scripts (<A HREF="communications.html#ISSPAMMER" >Example 16-41</A > and <A HREF="contributed-scripts.html#ISSPAMMER2" >Example A-28</A >).</P ><P >Marc-Jano Knopp sent corrections and clarifications on DOS batch files.</P ><P >Hyun Jin Cha found several typos in the document in the process of doing a Korean translation. Thanks for pointing these out.</P ><P >Andreas Abraham sent in a long list of typographical errors and other corrections. Special thanks!</P ><P >Others contributing scripts, making helpful suggestions, and pointing out errors were Gabor Kiss, Leopold Toetsch, Peter Tillier, Marcus Berglof, Tony Richardson, Nick Drage (script ideas!), Rich Bartell, Jess Thrysoee, Adam Lazur, Bram Moolenaar, Baris Cicek, Greg Keraunen, Keith Matthews, Sandro Magi, Albert Reiner, Dim Segebart, Rory Winston, Lee Bigelow, Wayne Pollock, <SPAN CLASS="QUOTE" >"jipe,"</SPAN > <SPAN CLASS="QUOTE" >"bojster,"</SPAN > <SPAN CLASS="QUOTE" >"nyal,"</SPAN > <SPAN CLASS="QUOTE" >"Hobbit,"</SPAN > <SPAN CLASS="QUOTE" >"Ender,"</SPAN > <SPAN CLASS="QUOTE" >"Little Monster"</SPAN > (Alexis), <SPAN CLASS="QUOTE" >"Mark,"</SPAN > <SPAN CLASS="QUOTE" >"Patsie,"</SPAN > <SPAN CLASS="QUOTE" >"vladz,"</SPAN > Peggy Russell, Emilio Conti, Ian. D. Allen, Hans-Joerg Diers, Arun Giridhar, Dennis Leeuw, Dan Jacobson, Aurelio Marinho Jargas, Edward Scholtz, Jean Helou, Chris Martin, Lee Maschmeyer, Bruno Haible, Wilbert Berendsen, Sebastien Godard, Bjön Eriksson, John MacDonald, John Lange, Joshua Tschida, Troy Engel, Manfred Schwarb, Amit Singh, Bill Gradwohl, E. Choroba, David Lombard, Jason Parker, Steve Parker, Bruce W. Clare, William Park, Vernia Damiano, Mihai Maties, Mark Alexander, Jeremy Impson, Ken Fuchs, Jared Martin, Frank Wang, Sylvain Fourmanoit, Matthew Sage, Matthew Walker, Kenny Stauffer, Filip Moritz, Andrzej Stefanski, Daniel Albers, Jeffrey Haemer, Stefano Palmeri, Nils Radtke, Sigurd Solaas, Serghey Rodin, Jeroen Domburg, Alfredo Pironti, Phil Braham, Bruno de Oliveira Schneider, Stefano Falsetto, Chris Morgan, Walter Dnes, Linc Fessenden, Michael Iatrou, Pharis Monalo, Jesse Gough, Fabian Kreutz, Mark Norman, Harald Koenig, Dan Stromberg, Peter Knowles, Francisco Lobo, Mariusz Gniazdowski, Sebastian Arming, Chetankumar Phulpagare, Benno Schulenberg, Tedman Eng, Jochen DeSmet, Juan Nicolas Ruiz, Oliver Beckstein, Achmed Darwish, Dotan Barak, Richard Neill, Albert Siersema, Omair Eshkenazi, Geoff Lee, Graham Ewart, JuanJo Ciarlante, Cliff Bamford, Nathan Coulter, Ramses Rodriguez Martinez, Evgeniy Ivanov, Craig Barnes, George Dimitriu, Kevin LeBlanc, Antonio Macchi, Tomas Pospisek, David Wheeler, Erik Brandsberg, YongYe, Andreas Kühne, Pádraig Brady, Joseph Steinhauser, and David Lawyer (himself an author of four HOWTOs).</P ><P >My gratitude to <A HREF="mailto:chet@po.cwru.edu" TARGET="_top" >Chet Ramey</A > and Brian Fox for writing <I CLASS="FIRSTTERM" >Bash</I >, and building into it elegant and powerful scripting capabilities rivaling those of <I CLASS="FIRSTTERM" >ksh</I >.</P ><P >Very special thanks to the hard-working volunteers at the <A HREF="http://www.tldp.org" TARGET="_top" >Linux Documentation Project</A >. The LDP hosts a repository of Linux knowledge and lore, and has, to a great extent, enabled the publication of this book.</P ><P >Thanks and appreciation to IBM, Red Hat, Google, the <A HREF="http://www.fsf.org" TARGET="_top" >Free Software Foundation</A >, and all the good people fighting the good fight to keep Open Source software free and open.</P ><P >Belated thanks to my fourth grade teacher, Miss Spencer, for emotional support and for convincing me that maybe, just maybe I wasn't a total loss.</P ><P >Thanks most of all to my wife, Anita, for her encouragement, inspiration, and emotional support.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="toolsused.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="disclaimer.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Tools Used to Produce This Book</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="endnotes.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Disclaimer</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/dblparens.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >The Double-Parentheses Construct</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Operations and Related Topics" HREF="operations.html"><LINK REL="PREVIOUS" TITLE="Numerical Constants" HREF="numerical-constants.html"><LINK REL="NEXT" TITLE="Operator Precedence" HREF="opprecedence.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="numerical-constants.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 8. Operations and Related Topics</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="opprecedence.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="DBLPARENS" ></A >8.3. The Double-Parentheses Construct</H1 ><P ><A NAME="DBLPARENSREF" ></A ></P ><P >Similar to the <A HREF="internal.html#LETREF" >let</A > command, the <B CLASS="COMMAND" >(( ... ))</B > construct permits arithmetic expansion and evaluation. In its simplest form, <TT CLASS="USERINPUT" ><B >a=$(( 5 + 3 ))</B ></TT > would set <TT CLASS="USERINPUT" ><B >a</B ></TT > to <TT CLASS="USERINPUT" ><B >5 + 3</B ></TT >, or <TT CLASS="USERINPUT" ><B >8</B ></TT >. However, this double-parentheses construct is also a mechanism for allowing C-style manipulation of variables in Bash, for example, <TT CLASS="VARNAME" >(( var++ ))</TT >.</P ><P ><A NAME="PLUSPLUSREF" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="CVARS" ></A ><P ><B >Example 8-5. C-style manipulation of variables</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # c-vars.sh 3 # Manipulating a variable, C-style, using the (( ... )) construct. 4 5 6 echo 7 8 (( a = 23 )) # Setting a value, C-style, 9 #+ with spaces on both sides of the "=". 10 echo "a (initial value) = $a" # 23 11 12 (( a++ )) # Post-increment 'a', C-style. 13 echo "a (after a++) = $a" # 24 14 15 (( a-- )) # Post-decrement 'a', C-style. 16 echo "a (after a--) = $a" # 23 17 18 19 (( ++a )) # Pre-increment 'a', C-style. 20 echo "a (after ++a) = $a" # 24 21 22 (( --a )) # Pre-decrement 'a', C-style. 23 echo "a (after --a) = $a" # 23 24 25 echo 26 27 ######################################################## 28 # Note that, as in C, pre- and post-decrement operators 29 #+ have different side-effects. 30 31 n=1; let --n && echo "True" || echo "False" # False 32 n=1; let n-- && echo "True" || echo "False" # True 33 34 # Thanks, Jeroen Domburg. 35 ######################################################## 36 37 echo 38 39 (( t = a<45?7:11 )) # C-style trinary operator. 40 # ^ ^ ^ 41 echo "If a < 45, then t = 7, else t = 11." # a = 23 42 echo "t = $t " # t = 7 43 44 echo 45 46 47 # ----------------- 48 # Easter Egg alert! 49 # ----------------- 50 # Chet Ramey seems to have snuck a bunch of undocumented C-style 51 #+ constructs into Bash (actually adapted from ksh, pretty much). 52 # In the Bash docs, Ramey calls (( ... )) shell arithmetic, 53 #+ but it goes far beyond that. 54 # Sorry, Chet, the secret is out. 55 56 # See also "for" and "while" loops using the (( ... )) construct. 57 58 # These work only with version 2.04 or later of Bash. 59 60 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="loops.html#FORLOOPC" >Example 11-13</A > and <A HREF="numerical-constants.html#NUMBERS" >Example 8-4</A >.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="numerical-constants.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="opprecedence.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Numerical Constants</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="operations.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Operator Precedence</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/debugging.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Debugging</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Of Zeros and Nulls" HREF="zeros.html"><LINK REL="NEXT" TITLE="Options" HREF="options.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="zeros.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="options.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="DEBUGGING" ></A >Chapter 32. Debugging</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.</I ></P ><P ><I >--Brian Kernighan</I ></P ></I ></TD ></TR ></TABLE ><P >The Bash shell contains no built-in debugger, and only bare-bones debugging-specific commands and constructs. Syntax errors or outright typos in the script generate cryptic error messages that are often of no help in debugging a non-functional script.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX74" ></A ><P ><B >Example 32-1. A buggy script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ex74.sh 3 4 # This is a buggy script. 5 # Where, oh where is the error? 6 7 a=37 8 9 if [$a -gt 27 ] 10 then 11 echo $a 12 fi 13 14 exit $? # 0! Why?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Output from script: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >./ex74.sh: [37: command not found</TT ></PRE ></TD ></TR ></TABLE > What's wrong with the above script? Hint: after the <I CLASS="FIRSTTERM" >if</I >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="MISSINGKEYWORD" ></A ><P ><B >Example 32-2. Missing <A HREF="internal.html#KEYWORDREF" >keyword</A ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # missing-keyword.sh 3 # What error message will this script generate? And why? 4 5 for a in 1 2 3 6 do 7 echo "$a" 8 # done # Required keyword 'done' commented out in line 8. 9 10 exit 0 # Will not exit here! 11 12 # === # 13 14 # From command line, after script terminates: 15 echo $? # 2</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Output from script: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >missing-keyword.sh: line 10: syntax error: unexpected end of file</TT > </PRE ></TD ></TR ></TABLE > Note that the error message does <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > necessarily reference the line in which the error occurs, but the line where the Bash interpreter finally becomes aware of the error. </P ><P >Error messages may disregard comment lines in a script when reporting the line number of a syntax error.</P ><P >What if the script executes, but does not work as expected? This is the all too familiar logic error.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX75" ></A ><P ><B >Example 32-3. <I CLASS="FIRSTTERM" >test24</I >: another buggy script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # This script is supposed to delete all filenames in current directory 4 #+ containing embedded spaces. 5 # It doesn't work. 6 # Why not? 7 8 9 badname=`ls | grep ' '` 10 11 # Try this: 12 # echo "$badname" 13 14 rm "$badname" 15 16 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Try to find out what's wrong with <A HREF="debugging.html#EX75" >Example 32-3</A > by uncommenting the <TT CLASS="USERINPUT" ><B >echo "$badname"</B ></TT > line. Echo statements are useful for seeing whether what you expect is actually what you get.</P ><P >In this particular case, <TT CLASS="USERINPUT" ><B >rm "$badname"</B ></TT > will not give the desired results because <TT CLASS="VARNAME" >$badname</TT > should not be quoted. Placing it in quotes ensures that <B CLASS="COMMAND" >rm</B > has only one argument (it will match only one filename). A partial fix is to remove to quotes from <TT CLASS="VARNAME" >$badname</TT > and to reset <TT CLASS="VARNAME" >$IFS</TT > to contain only a newline, <TT CLASS="USERINPUT" ><B >IFS=$'\n'</B ></TT >. However, there are simpler ways of going about it. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Correct methods of deleting filenames containing spaces. 2 rm *\ * 3 rm *" "* 4 rm *' '* 5 # Thank you. S.C.</PRE ></TD ></TR ></TABLE > </P ><P >Summarizing the symptoms of a buggy script, <OL TYPE="1" ><LI ><P >It bombs with a <SPAN CLASS="QUOTE" >"<SPAN CLASS="ERRORNAME" >syntax error</SPAN >"</SPAN > message, or</P ></LI ><LI ><P >It runs, but does not work as expected (<SPAN CLASS="ERRORNAME" >logic error</SPAN >).</P ></LI ><LI ><P >It runs, works as expected, but has nasty side effects (<SPAN CLASS="ERRORNAME" >logic bomb</SPAN >).</P ></LI ></OL > </P ><P ><A NAME="DEBUGTOOLS" ></A ></P ><P >Tools for debugging non-working scripts include <OL TYPE="1" ><LI ><P >Inserting <A HREF="internal.html#ECHOREF" >echo</A > statements at critical points in the script to trace the variables, and otherwise give a snapshot of what is going on.</P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Even better is an <B CLASS="COMMAND" >echo</B > that echoes only when <I CLASS="FIRSTTERM" >debug</I > is on.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 ### debecho (debug-echo), by Stefano Falsetto ### 2 ### Will echo passed parameters only if DEBUG is set to a value. ### 3 debecho () { 4 if [ ! -z "$DEBUG" ]; then 5 echo "$1" >&2 6 # ^^^ to stderr 7 fi 8 } 9 10 DEBUG=on 11 Whatever=whatnot 12 debecho $Whatever # whatnot 13 14 DEBUG= 15 Whatever=notwhat 16 debecho $Whatever # (Will not echo.)</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></LI ><LI ><P >Using the <A HREF="extmisc.html#TEEREF" >tee</A > filter to check processes or data flows at critical points.</P ></LI ><LI ><P >Setting option flags <TT CLASS="OPTION" >-n -v -x</TT ></P ><P ><TT CLASS="USERINPUT" ><B >sh -n scriptname</B ></TT > checks for syntax errors without actually running the script. This is the equivalent of inserting <TT CLASS="USERINPUT" ><B >set -n</B ></TT > or <TT CLASS="USERINPUT" ><B >set -o noexec</B ></TT > into the script. Note that certain types of syntax errors can slip past this check.</P ><P ><TT CLASS="USERINPUT" ><B >sh -v scriptname</B ></TT > echoes each command before executing it. This is the equivalent of inserting <TT CLASS="USERINPUT" ><B >set -v</B ></TT > or <TT CLASS="USERINPUT" ><B >set -o verbose</B ></TT > in the script.</P ><P >The <TT CLASS="OPTION" >-n</TT > and <TT CLASS="OPTION" >-v</TT > flags work well together. <TT CLASS="USERINPUT" ><B >sh -nv scriptname</B ></TT > gives a verbose syntax check.</P ><P ><TT CLASS="USERINPUT" ><B >sh -x scriptname</B ></TT > echoes the result each command, but in an abbreviated manner. This is the equivalent of inserting <TT CLASS="USERINPUT" ><B >set -x</B ></TT > or <TT CLASS="USERINPUT" ><B >set -o xtrace</B ></TT > in the script.</P ><P ><A NAME="UNDVARERR" ></A ></P ><P >Inserting <TT CLASS="USERINPUT" ><B >set -u</B ></TT > or <TT CLASS="USERINPUT" ><B >set -o nounset</B ></TT > in the script runs it, but gives an <SPAN CLASS="ERRORNAME" >unbound variable</SPAN > error message and aborts the script. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 set -u # Or set -o nounset 2 3 # Setting a variable to null will not trigger the error/abort. 4 # unset_var= 5 6 echo $unset_var # Unset (and undeclared) variable. 7 8 echo "Should not echo!" 9 10 # sh t2.sh 11 # t2.sh: line 6: unset_var: unbound variable</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P >Using an <SPAN CLASS="QUOTE" >"assert"</SPAN > function to test a variable or condition at critical points in a script. (This is an idea borrowed from C.)</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ASSERT" ></A ><P ><B >Example 32-4. Testing a condition with an <I CLASS="FIRSTTERM" >assert</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # assert.sh 3 4 ####################################################################### 5 assert () # If condition false, 6 { #+ exit from script 7 #+ with appropriate error message. 8 E_PARAM_ERR=98 9 E_ASSERT_FAILED=99 10 11 12 if [ -z "$2" ] # Not enough parameters passed 13 then #+ to assert() function. 14 return $E_PARAM_ERR # No damage done. 15 fi 16 17 lineno=$2 18 19 if [ ! $1 ] 20 then 21 echo "Assertion failed: \"$1\"" 22 echo "File \"$0\", line $lineno" # Give name of file and line number. 23 exit $E_ASSERT_FAILED 24 # else 25 # return 26 # and continue executing the script. 27 fi 28 } # Insert a similar assert() function into a script you need to debug. 29 ####################################################################### 30 31 32 a=5 33 b=4 34 condition="$a -lt $b" # Error message and exit from script. 35 # Try setting "condition" to something else 36 #+ and see what happens. 37 38 assert "$condition" $LINENO 39 # The remainder of the script executes only if the "assert" does not fail. 40 41 42 # Some commands. 43 # Some more commands . . . 44 echo "This statement echoes only if the \"assert\" does not fail." 45 # . . . 46 # More commands . . . 47 48 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ></LI ><LI ><P >Using the <A HREF="variables2.html#LINENOREF" >$LINENO</A > variable and the <A HREF="internal.html#CALLERREF" >caller</A > builtin.</P ></LI ><LI ><P ><A NAME="DEBUGTRAP" ></A >Trapping at exit.</P ><P >The <A HREF="internal.html#EXITREF" >exit</A > command in a script triggers a signal <SPAN CLASS="RETURNVALUE" >0</SPAN >, terminating the process, that is, the script itself. <A NAME="AEN19460" HREF="#FTN.AEN19460" >[1]</A > It is often useful to trap the <I CLASS="FIRSTTERM" >exit</I >, forcing a <SPAN CLASS="QUOTE" >"printout"</SPAN > of variables, for example. The <I CLASS="FIRSTTERM" >trap</I > must be the first command in the script.</P ></LI ></OL > </P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="TRAPREF1" ></A >Trapping signals</B ></P ><DL ><DT ><B CLASS="COMMAND" >trap</B ></DT ><DD ><P >Specifies an action on receipt of a signal; also useful for debugging.</P ><P ><A NAME="SIGNALD" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN19477" ></A ><P >A <I CLASS="FIRSTTERM" >signal</I > is a message sent to a process, either by the kernel or another process, telling it to take some specified action (usually to terminate). For example, hitting a <A HREF="special-chars.html#CTLCREF" >Control-C</A > sends a user interrupt, an INT signal, to a running program.</P ></DIV ></TD ></TR ></TABLE ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >A simple instance:</I ></SPAN > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 trap '' 2 2 # Ignore interrupt 2 (Control-C), with no action specified. 3 4 trap 'echo "Control-C disabled."' 2 5 # Message when Control-C pressed.</PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX76" ></A ><P ><B >Example 32-5. Trapping at exit</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Hunting variables with a trap. 3 4 trap 'echo Variable Listing --- a = $a b = $b' EXIT 5 # EXIT is the name of the signal generated upon exit from a script. 6 # 7 # The command specified by the "trap" doesn't execute until 8 #+ the appropriate signal is sent. 9 10 echo "This prints before the \"trap\" --" 11 echo "even though the script sees the \"trap\" first." 12 echo 13 14 a=39 15 16 b=36 17 18 exit 0 19 # Note that commenting out the 'exit' command makes no difference, 20 #+ since the script exits in any case after running out of commands.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ONLINE" ></A ><P ><B >Example 32-6. Cleaning up after <B CLASS="KEYCAP" >Control-C</B ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # logon.sh: A quick 'n dirty script to check whether you are on-line yet. 3 4 umask 177 # Make sure temp files are not world readable. 5 6 7 TRUE=1 8 LOGFILE=/var/log/messages 9 # Note that $LOGFILE must be readable 10 #+ (as root, chmod 644 /var/log/messages). 11 TEMPFILE=temp.$$ 12 # Create a "unique" temp file name, using process id of the script. 13 # Using 'mktemp' is an alternative. 14 # For example: 15 # TEMPFILE=`mktemp temp.XXXXXX` 16 KEYWORD=address 17 # At logon, the line "remote IP address xxx.xxx.xxx.xxx" 18 # appended to /var/log/messages. 19 ONLINE=22 20 USER_INTERRUPT=13 21 CHECK_LINES=100 22 # How many lines in log file to check. 23 24 trap 'rm -f $TEMPFILE; exit $USER_INTERRUPT' TERM INT 25 # Cleans up the temp file if script interrupted by control-c. 26 27 echo 28 29 while [ $TRUE ] #Endless loop. 30 do 31 tail -n $CHECK_LINES $LOGFILE> $TEMPFILE 32 # Saves last 100 lines of system log file as temp file. 33 # Necessary, since newer kernels generate many log messages at log on. 34 search=`grep $KEYWORD $TEMPFILE` 35 # Checks for presence of the "IP address" phrase, 36 #+ indicating a successful logon. 37 38 if [ ! -z "$search" ] # Quotes necessary because of possible spaces. 39 then 40 echo "On-line" 41 rm -f $TEMPFILE # Clean up temp file. 42 exit $ONLINE 43 else 44 echo -n "." # The -n option to echo suppresses newline, 45 #+ so you get continuous rows of dots. 46 fi 47 48 sleep 1 49 done 50 51 52 # Note: if you change the KEYWORD variable to "Exit", 53 #+ this script can be used while on-line 54 #+ to check for an unexpected logoff. 55 56 # Exercise: Change the script, per the above note, 57 # and prettify it. 58 59 exit 0 60 61 62 # Nick Drage suggests an alternate method: 63 64 while true 65 do ifconfig ppp0 | grep UP 1> /dev/null && echo "connected" && exit 0 66 echo -n "." # Prints dots (.....) until connected. 67 sleep 2 68 done 69 70 # Problem: Hitting Control-C to terminate this process may be insufficient. 71 #+ (Dots may keep on echoing.) 72 # Exercise: Fix this. 73 74 75 76 # Stephane Chazelas has yet another alternative: 77 78 CHECK_INTERVAL=1 79 80 while ! tail -n 1 "$LOGFILE" | grep -q "$KEYWORD" 81 do echo -n . 82 sleep $CHECK_INTERVAL 83 done 84 echo "On-line" 85 86 # Exercise: Discuss the relative strengths and weaknesses 87 # of each of these various approaches.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="PROGRESSBAR2" ></A ><P ><B >Example 32-7. A Simple Implementation of a Progress Bar</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /bin/bash 2 # progress-bar2.sh 3 # Author: Graham Ewart (with reformatting by ABS Guide author). 4 # Used in ABS Guide with permission (thanks!). 5 6 # Invoke this script with bash. It doesn't work with sh. 7 8 interval=1 9 long_interval=10 10 11 { 12 trap "exit" SIGUSR1 13 sleep $interval; sleep $interval 14 while true 15 do 16 echo -n '.' # Use dots. 17 sleep $interval 18 done; } & # Start a progress bar as a background process. 19 20 pid=$! 21 trap "echo !; kill -USR1 $pid; wait $pid" EXIT # To handle ^C. 22 23 echo -n 'Long-running process ' 24 sleep $long_interval 25 echo ' Finished!' 26 27 kill -USR1 $pid 28 wait $pid # Stop the progress bar. 29 trap EXIT 30 31 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="OPTION" >DEBUG</TT > argument to <B CLASS="COMMAND" >trap</B > causes a specified action to execute after every command in a script. This permits tracing variables, for example. <DIV CLASS="EXAMPLE" ><HR><A NAME="VARTRACE" ></A ><P ><B >Example 32-8. Tracing a variable</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 trap 'echo "VARIABLE-TRACE> \$variable = \"$variable\""' DEBUG 4 # Echoes the value of $variable after every command. 5 6 variable=29; line=$LINENO 7 8 echo " Just initialized \$variable to $variable in line number $line." 9 10 let "variable *= 3"; line=$LINENO 11 echo " Just multiplied \$variable by 3 in line number $line." 12 13 exit 0 14 15 # The "trap 'command1 . . . command2 . . .' DEBUG" construct is 16 #+ more appropriate in the context of a complex script, 17 #+ where inserting multiple "echo $variable" statements might be 18 #+ awkward and time-consuming. 19 20 # Thanks, Stephane Chazelas for the pointer. 21 22 23 Output of script: 24 25 VARIABLE-TRACE> $variable = "" 26 VARIABLE-TRACE> $variable = "29" 27 Just initialized $variable to 29. 28 VARIABLE-TRACE> $variable = "29" 29 VARIABLE-TRACE> $variable = "87" 30 Just multiplied $variable by 3. 31 VARIABLE-TRACE> $variable = "87"</PRE ></TD ></TR ></TABLE ><HR></DIV > </P ></TD ></TR ></TABLE ></DIV ><P >Of course, the <B CLASS="COMMAND" >trap</B > command has other uses aside from debugging, such as disabling certain keystrokes within a script (see <A HREF="contributed-scripts.html#STOPWATCH" >Example A-43</A >).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="MULTIPLEPROC" ></A ><P ><B >Example 32-9. Running multiple processes (on an SMP box)</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # parent.sh 3 # Running multiple processes on an SMP box. 4 # Author: Tedman Eng 5 6 # This is the first of two scripts, 7 #+ both of which must be present in the current working directory. 8 9 10 11 12 LIMIT=$1 # Total number of process to start 13 NUMPROC=4 # Number of concurrent threads (forks?) 14 PROCID=1 # Starting Process ID 15 echo "My PID is $$" 16 17 function start_thread() { 18 if [ $PROCID -le $LIMIT ] ; then 19 ./child.sh $PROCID& 20 let "PROCID++" 21 else 22 echo "Limit reached." 23 wait 24 exit 25 fi 26 } 27 28 while [ "$NUMPROC" -gt 0 ]; do 29 start_thread; 30 let "NUMPROC--" 31 done 32 33 34 while true 35 do 36 37 trap "start_thread" SIGRTMIN 38 39 done 40 41 exit 0 42 43 44 45 # ======== Second script follows ======== 46 47 48 #!/bin/bash 49 # child.sh 50 # Running multiple processes on an SMP box. 51 # This script is called by parent.sh. 52 # Author: Tedman Eng 53 54 temp=$RANDOM 55 index=$1 56 shift 57 let "temp %= 5" 58 let "temp += 4" 59 echo "Starting $index Time:$temp" "$@" 60 sleep ${temp} 61 echo "Ending $index" 62 kill -s SIGRTMIN $PPID 63 64 exit 0 65 66 67 # ======================= SCRIPT AUTHOR'S NOTES ======================= # 68 # It's not completely bug free. 69 # I ran it with limit = 500 and after the first few hundred iterations, 70 #+ one of the concurrent threads disappeared! 71 # Not sure if this is collisions from trap signals or something else. 72 # Once the trap is received, there's a brief moment while executing the 73 #+ trap handler but before the next trap is set. During this time, it may 74 #+ be possible to miss a trap signal, thus miss spawning a child process. 75 76 # No doubt someone may spot the bug and will be writing 77 #+ . . . in the future. 78 79 80 81 # ===================================================================== # 82 83 84 85 # ----------------------------------------------------------------------# 86 87 88 89 ################################################################# 90 # The following is the original script written by Vernia Damiano. 91 # Unfortunately, it doesn't work properly. 92 ################################################################# 93 94 #!/bin/bash 95 96 # Must call script with at least one integer parameter 97 #+ (number of concurrent processes). 98 # All other parameters are passed through to the processes started. 99 100 101 INDICE=8 # Total number of process to start 102 TEMPO=5 # Maximum sleep time per process 103 E_BADARGS=65 # No arg(s) passed to script. 104 105 if [ $# -eq 0 ] # Check for at least one argument passed to script. 106 then 107 echo "Usage: `basename $0` number_of_processes [passed params]" 108 exit $E_BADARGS 109 fi 110 111 NUMPROC=$1 # Number of concurrent process 112 shift 113 PARAMETRI=( "$@" ) # Parameters of each process 114 115 function avvia() { 116 local temp 117 local index 118 temp=$RANDOM 119 index=$1 120 shift 121 let "temp %= $TEMPO" 122 let "temp += 1" 123 echo "Starting $index Time:$temp" "$@" 124 sleep ${temp} 125 echo "Ending $index" 126 kill -s SIGRTMIN $$ 127 } 128 129 function parti() { 130 if [ $INDICE -gt 0 ] ; then 131 avvia $INDICE "${PARAMETRI[@]}" & 132 let "INDICE--" 133 else 134 trap : SIGRTMIN 135 fi 136 } 137 138 trap parti SIGRTMIN 139 140 while [ "$NUMPROC" -gt 0 ]; do 141 parti; 142 let "NUMPROC--" 143 done 144 145 wait 146 trap - SIGRTMIN 147 148 exit $? 149 150 : <<SCRIPT_AUTHOR_COMMENTS 151 I had the need to run a program, with specified options, on a number of 152 different files, using a SMP machine. So I thought [I'd] keep running 153 a specified number of processes and start a new one each time . . . one 154 of these terminates. 155 156 The "wait" instruction does not help, since it waits for a given process 157 or *all* process started in background. So I wrote [this] bash script 158 that can do the job, using the "trap" instruction. 159 --Vernia Damiano 160 SCRIPT_AUTHOR_COMMENTS</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><TT CLASS="USERINPUT" ><B >trap '' SIGNAL</B ></TT > (two adjacent apostrophes) disables SIGNAL for the remainder of the script. <TT CLASS="USERINPUT" ><B >trap SIGNAL</B ></TT > restores the functioning of SIGNAL once more. This is useful to protect a critical portion of a script from an undesirable interrupt.</P ></TD ></TR ></TABLE ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 trap '' 2 # Signal 2 is Control-C, now disabled. 2 command 3 command 4 command 5 trap 2 # Reenables Control-C 6 </PRE ></TD ></TR ></TABLE ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN19513" ></A ><P ><A HREF="bashver3.html#BASH3REF" >Version 3</A > of Bash adds the following <A HREF="variables2.html#INTERNALVARIABLES1" >internal variables</A > for use by the debugger. <OL TYPE="1" ><LI ><P ><TT CLASS="VARNAME" >$BASH_ARGC</TT ></P ><P >Number of command-line arguments passed to script, similar to <A HREF="variables2.html#CLACOUNTREF" ><TT CLASS="VARNAME" >$#</TT ></A >.</P ></LI ><LI ><P ><TT CLASS="VARNAME" >$BASH_ARGV</TT ></P ><P >Final command-line parameter passed to script, equivalent <A HREF="othertypesv.html#LASTARGREF" ><TT CLASS="VARNAME" >${!#}</TT ></A >.</P ></LI ><LI ><P ><TT CLASS="VARNAME" >$BASH_COMMAND</TT ></P ><P >Command currently executing.</P ></LI ><LI ><P ><TT CLASS="VARNAME" >$BASH_EXECUTION_STRING</TT ></P ><P >The <I CLASS="FIRSTTERM" >option string</I > following the <TT CLASS="OPTION" >-c</TT > <A HREF="bash-options.html#CLOPTS" >option</A > to Bash.</P ></LI ><LI ><P ><TT CLASS="VARNAME" >$BASH_LINENO</TT ></P ><P >In a <A HREF="functions.html#FUNCTIONREF" >function</A >, indicates the line number of the function call.</P ></LI ><LI ><P ><TT CLASS="VARNAME" >$BASH_REMATCH</TT ></P ><P >Array variable associated with <B CLASS="COMMAND" >=~</B > <A HREF="bashver3.html#REGEXMATCHREF" >conditional regex matching</A >.</P ></LI ><LI ><P ><A NAME="BASHSOURCEREF" ></A ></P ><P ><TT CLASS="VARNAME" >$BASH_SOURCE</TT ></P ><P >This is the name of the script, usually the same as <A HREF="othertypesv.html#ARG0" >$0</A >.</P ></LI ><LI ><P > <A HREF="variables2.html#BASHSUBSHELLREF" ><TT CLASS="VARNAME" >$BASH_SUBSHELL</TT ></A ></P ></LI ></OL ></P ></DIV ></TD ></TR ></TABLE ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN19460" HREF="debugging.html#AEN19460" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >By convention, <TT CLASS="REPLACEABLE" ><I >signal 0</I ></TT > is assigned to <A HREF="exit-status.html#EXITCOMMANDREF" >exit</A >. </P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="zeros.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="options.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Of Zeros and Nulls</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Options</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/declareref.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Typing variables: declare or typeset</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Another Look at Variables" HREF="variables2.html"><LINK REL="PREVIOUS" TITLE="Another Look at Variables" HREF="variables2.html"><LINK REL="NEXT" TITLE="$RANDOM: generate random integer" HREF="randomvar.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="variables2.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 9. Another Look at Variables</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="randomvar.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="DECLAREREF" ></A >9.2. Typing variables: <B CLASS="COMMAND" >declare</B > or <B CLASS="COMMAND" >typeset</B ></H1 ><P ><A NAME="DECLARE1REF" ></A ></P ><P >The <I CLASS="FIRSTTERM" >declare</I > or <I CLASS="FIRSTTERM" >typeset</I > <A HREF="internal.html#BUILTINREF" >builtins</A >, which are exact synonyms, permit modifying the properties of variables. This is a very weak form of the <I CLASS="FIRSTTERM" >typing</I > <A NAME="AEN5685" HREF="#FTN.AEN5685" >[1]</A > available in certain programming languages. The <I CLASS="FIRSTTERM" >declare</I > command is specific to version 2 or later of Bash. The <I CLASS="FIRSTTERM" >typeset</I > command also works in ksh scripts.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="DECLAREOPSREF1" ></A >declare/typeset options</B ></P ><DL ><DT ><SPAN CLASS="TOKEN" >-r</SPAN > <TT CLASS="REPLACEABLE" ><I >readonly</I ></TT ></DT ><DD ><P >(<TT CLASS="USERINPUT" ><B >declare -r var1</B ></TT > works the same as <TT CLASS="USERINPUT" ><B >readonly var1</B ></TT >)</P ><P >This is the rough equivalent of the <B CLASS="COMMAND" >C</B > <I CLASS="FIRSTTERM" >const</I > type qualifier. An attempt to change the value of a <I CLASS="FIRSTTERM" >readonly</I > variable fails with an error message.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 declare -r var1=1 2 echo "var1 = $var1" # var1 = 1 3 4 (( var1++ )) # x.sh: line 4: var1: readonly variable</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><SPAN CLASS="TOKEN" >-i</SPAN > <TT CLASS="REPLACEABLE" ><I >integer</I ></TT ></DT ><DD ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 declare -i number 2 # The script will treat subsequent occurrences of "number" as an integer. 3 4 number=3 5 echo "Number = $number" # Number = 3 6 7 number=three 8 echo "Number = $number" # Number = 0 9 # Tries to evaluate the string "three" as an integer.</PRE ></TD ></TR ></TABLE ></P ><P >Certain arithmetic operations are permitted for declared integer variables without the need for <A HREF="moreadv.html#EXPRREF" >expr</A > or <A HREF="internal.html#LETREF" >let</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 n=6/3 2 echo "n = $n" # n = 6/3 3 4 declare -i n 5 n=6/3 6 echo "n = $n" # n = 2</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="ARRAYDECLARE" ></A ><SPAN CLASS="TOKEN" >-a</SPAN > <TT CLASS="REPLACEABLE" ><I >array</I ></TT ></DT ><DD ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 declare -a indices</PRE ></TD ></TR ></TABLE ></P ><P >The variable <TT CLASS="PARAMETER" ><I >indices</I ></TT > will be treated as an <A HREF="arrays.html#ARRAYREF" >array</A >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >-f</SPAN > <TT CLASS="REPLACEABLE" ><I >function(s)</I ></TT ></DT ><DD ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 declare -f</PRE ></TD ></TR ></TABLE ></P ><P >A <TT CLASS="USERINPUT" ><B >declare -f</B ></TT > line with no arguments in a script causes a listing of all the <A HREF="functions.html#FUNCTIONREF" >functions</A > previously defined in that script.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 declare -f function_name</PRE ></TD ></TR ></TABLE ></P ><P >A <TT CLASS="USERINPUT" ><B >declare -f function_name</B ></TT > in a script lists just the function named.</P ></DD ><DT ><SPAN CLASS="TOKEN" >-x</SPAN > <A HREF="internal.html#EXPORTREF" >export</A ></DT ><DD ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 declare -x var3</PRE ></TD ></TR ></TABLE ></P ><P >This declares a variable as available for exporting outside the environment of the script itself.</P ></DD ><DT >-x var=$value</DT ><DD ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 declare -x var3=373</PRE ></TD ></TR ></TABLE ></P ><P >The <B CLASS="COMMAND" >declare</B > command permits assigning a value to a variable in the same statement as setting its properties.</P ></DD ></DL ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX20" ></A ><P ><B >Example 9-10. Using <I CLASS="FIRSTTERM" >declare</I > to type variables</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 func1 () 4 { 5 echo This is a function. 6 } 7 8 declare -f # Lists the function above. 9 10 echo 11 12 declare -i var1 # var1 is an integer. 13 var1=2367 14 echo "var1 declared as $var1" 15 var1=var1+1 # Integer declaration eliminates the need for 'let'. 16 echo "var1 incremented by 1 is $var1." 17 # Attempt to change variable declared as integer. 18 echo "Attempting to change var1 to floating point value, 2367.1." 19 var1=2367.1 # Results in error message, with no change to variable. 20 echo "var1 is still $var1" 21 22 echo 23 24 declare -r var2=13.36 # 'declare' permits setting a variable property 25 #+ and simultaneously assigning it a value. 26 echo "var2 declared as $var2" # Attempt to change readonly variable. 27 var2=13.37 # Generates error message, and exit from script. 28 29 echo "var2 is still $var2" # This line will not execute. 30 31 exit 0 # Script will not exit here.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Using the <I CLASS="FIRSTTERM" >declare</I > builtin restricts the <A HREF="subshells.html#SCOPEREF" >scope</A > of a variable. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 foo () 2 { 3 FOO="bar" 4 } 5 6 bar () 7 { 8 foo 9 echo $FOO 10 } 11 12 bar # Prints bar.</PRE ></TD ></TR ></TABLE ></P ><P >However . . . <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 foo (){ 2 declare FOO="bar" 3 } 4 5 bar () 6 { 7 foo 8 echo $FOO 9 } 10 11 bar # Prints nothing. 12 13 14 # Thank you, Michael Iatrou, for pointing this out.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="DECLARE2X" ></A >9.2.1. Another use for <I CLASS="FIRSTTERM" >declare</I ></H2 ><P >The <I CLASS="FIRSTTERM" >declare</I > command can be helpful in identifying variables, <A HREF="othertypesv.html#ENVREF" >environmental</A > or otherwise. This can be especially useful with <A HREF="arrays.html#ARRAYREF" >arrays</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >declare | grep HOME</B ></TT > <TT CLASS="COMPUTEROUTPUT" >HOME=/home/bozo</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >zzy=68</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >declare | grep zzy</B ></TT > <TT CLASS="COMPUTEROUTPUT" >zzy=68</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >Colors=([0]="purple" [1]="reddish-orange" [2]="light green")</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ${Colors[@]}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >purple reddish-orange light green</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >declare | grep Colors</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Colors=([0]="purple" [1]="reddish-orange" [2]="light green")</TT > </PRE ></TD ></TR ></TABLE > </P ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN5685" HREF="declareref.html#AEN5685" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="TYPINGREF" ></A >In this context, <I CLASS="FIRSTTERM" >typing</I > a variable means to classify it and restrict its properties. For example, a variable <I CLASS="FIRSTTERM" >declared</I > or <I CLASS="FIRSTTERM" >typed</I > as an integer is no longer available for <A HREF="refcards.html#STRINGOPSTAB" >string operations</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 declare -i intvar 2 3 intvar=23 4 echo "$intvar" # 23 5 intvar=stringval 6 echo "$intvar" # 0</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="variables2.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="randomvar.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Another Look at Variables</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="variables2.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >$RANDOM: generate random integer</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/devproc.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >/dev and /proc</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Indirect References" HREF="ivr.html"><LINK REL="NEXT" TITLE="/proc" HREF="procref1.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="ivr.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="procref1.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="DEVPROC" ></A >Chapter 29. <TT CLASS="FILENAME" >/dev</TT > and <TT CLASS="FILENAME" >/proc</TT ></H1 ><P ><A NAME="DEVPROCREF" ></A ></P ><P >A Linux or UNIX filesystem typically has the <TT CLASS="FILENAME" >/dev</TT > and <TT CLASS="FILENAME" >/proc</TT > special-purpose directories.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="DEVREF1" ></A >29.1. <TT CLASS="FILENAME" >/dev</TT ></H1 ><P ><A NAME="DEVFILEREF" ></A >The <TT CLASS="FILENAME" >/dev</TT > directory contains entries for the <I CLASS="FIRSTTERM" >physical devices</I > that may or may not be present in the hardware. <A NAME="AEN19045" HREF="#FTN.AEN19045" >[1]</A > Appropriately enough, these are called <I CLASS="FIRSTTERM" >device files</I >. As an example, the hard drive partitions containing the mounted filesystem(s) have entries in <TT CLASS="FILENAME" >/dev</TT >, as <A HREF="system.html#DFREF" >df</A > shows.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >df</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Filesystem 1k-blocks Used Available Use% Mounted on /dev/hda6 495876 222748 247527 48% / /dev/hda1 50755 3887 44248 9% /boot /dev/hda8 367013 13262 334803 4% /home /dev/hda5 1714416 1123624 503704 70% /usr</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="LOOPBACKREF" ></A >Among other things, the <TT CLASS="FILENAME" >/dev</TT > directory contains <I CLASS="FIRSTTERM" >loopback</I > devices, such as <TT CLASS="FILENAME" >/dev/loop0</TT >. A loopback device is a gimmick that allows an ordinary file to be accessed as if it were a block device. <A NAME="AEN19065" HREF="#FTN.AEN19065" >[2]</A > This permits mounting an entire filesystem within a single large file. See <A HREF="system.html#CREATEFS" >Example 17-8</A > and <A HREF="system.html#ISOMOUNTREF" >Example 17-7</A >.</P ><P >A few of the pseudo-devices in <TT CLASS="FILENAME" >/dev</TT > have other specialized uses, such as <A HREF="zeros.html#ZEROSREF" ><TT CLASS="FILENAME" >/dev/null</TT ></A >, <A HREF="zeros.html#ZEROSREF1" ><TT CLASS="FILENAME" >/dev/zero</TT ></A >, <A HREF="randomvar.html#URANDOMREF" ><TT CLASS="FILENAME" >/dev/urandom</TT ></A >, <TT CLASS="FILENAME" >/dev/sda1</TT > (hard drive partition), <TT CLASS="FILENAME" >/dev/udp</TT > (<I CLASS="FIRSTTERM" >User Datagram Packet</I > port), and <A HREF="devproc.html#DEVTCP" ><TT CLASS="FILENAME" >/dev/tcp</TT ></A >.</P ><P >For instance:</P ><P >To manually <A HREF="system.html#MOUNTREF" >mount</A > a USB flash drive, append the following line to <A HREF="system.html#FSTABREF" ><TT CLASS="FILENAME" >/etc/fstab</TT ></A >. <A NAME="AEN19093" HREF="#FTN.AEN19093" >[3]</A > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 /dev/sda1 /mnt/flashdrive auto noauto,user,noatime 0 0</PRE ></TD ></TR ></TABLE > (See also <A HREF="contributed-scripts.html#USBINST" >Example A-23</A >.)</P ><P >Checking whether a disk is in the CD-burner (soft-linked to <TT CLASS="FILENAME" >/dev/hdc</TT >): <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 head -1 /dev/hdc 2 3 4 # head: cannot open '/dev/hdc' for reading: No medium found 5 # (No disc in the drive.) 6 7 # head: error reading '/dev/hdc': Input/output error 8 # (There is a disk in the drive, but it can't be read; 9 #+ possibly it's an unrecorded CDR blank.) 10 11 # Stream of characters and assorted gibberish 12 # (There is a pre-recorded disk in the drive, 13 #+ and this is raw output -- a stream of ASCII and binary data.) 14 # Here we see the wisdom of using 'head' to limit the output 15 #+ to manageable proportions, rather than 'cat' or something similar. 16 17 18 # Now, it's just a matter of checking/parsing the output and taking 19 #+ appropriate action.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="SOCKETREF" ></A ></P ><P >When executing a command on a <TT CLASS="FILENAME" >/dev/tcp/$host/$port</TT > pseudo-device file, Bash opens a TCP connection to the associated <I CLASS="FIRSTTERM" >socket</I >.</P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN19112" ></A ><P >A <I CLASS="FIRSTTERM" >socket</I > is a communications node associated with a specific I/O port. (This is analogous to a <I CLASS="FIRSTTERM" >hardware socket</I >, or <I CLASS="FIRSTTERM" >receptacle</I >, for a connecting cable.) It permits data transfer between hardware devices on the same machine, between machines on the same network, between machines across different networks, and, of course, between machines at different locations on the Internet.</P ></DIV ></TD ></TR ></TABLE ><P ><A NAME="NPREF" ></A >The following examples assume an active Internet connection.</P ><P >Getting the time from <TT CLASS="FILENAME" >nist.gov</TT >:</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat </dev/tcp/time.nist.gov/13</B ></TT > <TT CLASS="COMPUTEROUTPUT" >53082 04-03-18 04:26:54 68 0 0 502.3 UTC(NIST) *</TT > </PRE ></TD ></TR ></TABLE ><P >[Mark contributed this example.]</P ><P >Generalizing the above into a script:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # This script must run with root permissions. 3 4 URL="time.nist.gov/13" 5 6 Time=$(cat </dev/tcp/"$URL") 7 UTC=$(echo "$Time" | awk '{print$3}') # Third field is UTC (GMT) time. 8 # Exercise: modify this for different time zones. 9 10 echo "UTC Time = "$UTC""</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="NW001" ></A >Downloading a URL:</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >exec 5<>/dev/tcp/www.net.cn/80</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo -e "GET / HTTP/1.0\n" >&5</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat <&5</B ></TT > </PRE ></TD ></TR ></TABLE ><P >[Thanks, Mark and Mihai Maties.]</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="DEVTCP" ></A ><P ><B >Example 29-1. Using <TT CLASS="FILENAME" >/dev/tcp</TT > for troubleshooting</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # dev-tcp.sh: /dev/tcp redirection to check Internet connection. 3 4 # Script by Troy Engel. 5 # Used with permission. 6 7 TCP_HOST=news-15.net # A known spam-friendly ISP. 8 TCP_PORT=80 # Port 80 is http. 9 10 # Try to connect. (Somewhat similar to a 'ping' . . .) 11 echo "HEAD / HTTP/1.0" >/dev/tcp/${TCP_HOST}/${TCP_PORT} 12 MYEXIT=$? 13 14 : <<EXPLANATION 15 If bash was compiled with --enable-net-redirections, it has the capability of 16 using a special character device for both TCP and UDP redirections. These 17 redirections are used identically as STDIN/STDOUT/STDERR. The device entries 18 are 30,36 for /dev/tcp: 19 20 mknod /dev/tcp c 30 36 21 22 >From the bash reference: 23 /dev/tcp/host/port 24 If host is a valid hostname or Internet address, and port is an integer 25 port number or service name, Bash attempts to open a TCP connection to the 26 corresponding socket. 27 EXPLANATION 28 29 30 if [ "X$MYEXIT" = "X0" ]; then 31 echo "Connection successful. Exit code: $MYEXIT" 32 else 33 echo "Connection unsuccessful. Exit code: $MYEXIT" 34 fi 35 36 exit $MYEXIT</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="MUSICSCR" ></A ><P ><B >Example 29-2. Playing music</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # music.sh 3 4 # Music without external files 5 6 # Author: Antonio Macchi 7 # Used in ABS Guide with permission. 8 9 10 # /dev/dsp default = 8000 frames per second, 8 bits per frame (1 byte), 11 #+ 1 channel (mono) 12 13 duration=2000 # If 8000 bytes = 1 second, then 2000 = 1/4 second. 14 volume=$'\xc0' # Max volume = \xff (or \x00). 15 mute=$'\x80' # No volume = \x80 (the middle). 16 17 function mknote () # $1=Note Hz in bytes (e.g. A = 440Hz :: 18 { #+ 8000 fps / 440 = 16 :: A = 16 bytes per second) 19 for t in `seq 0 $duration` 20 do 21 test $(( $t % $1 )) = 0 && echo -n $volume || echo -n $mute 22 done 23 } 24 25 e=`mknote 49` 26 g=`mknote 41` 27 a=`mknote 36` 28 b=`mknote 32` 29 c=`mknote 30` 30 cis=`mknote 29` 31 d=`mknote 27` 32 e2=`mknote 24` 33 n=`mknote 32767` 34 # European notation. 35 36 echo -n "$g$e2$d$c$d$c$a$g$n$g$e$n$g$e2$d$c$c$b$c$cis$n$cis$d \ 37 $n$g$e2$d$c$d$c$a$g$n$g$e$n$g$a$d$c$b$a$b$c" > /dev/dsp 38 # dsp = Digital Signal Processor 39 40 exit # A "bonny" example of an elegant shell script!</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN19045" HREF="devproc.html#AEN19045" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The entries in <TT CLASS="FILENAME" >/dev</TT > provide mount points for physical and virtual devices. These entries use very little drive space.</P ><P >Some devices, such as <TT CLASS="FILENAME" >/dev/null</TT >, <TT CLASS="FILENAME" >/dev/zero</TT >, and <TT CLASS="FILENAME" >/dev/urandom</TT > are virtual. They are not actual physical devices and exist only in software.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN19065" HREF="devproc.html#AEN19065" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="BLOCKDEVREF" ></A >A <I CLASS="FIRSTTERM" >block device</I > reads and/or writes data in chunks, or <I CLASS="FIRSTTERM" >blocks</I >, in contrast to a <A NAME="CHARDEVREF" ></A ><I CLASS="FIRSTTERM" >character device</I >, which acesses data in <I CLASS="FIRSTTERM" >character</I > units. Examples of block devices are hard drives, CDROM drives, and flash drives. Examples of character devices are keyboards, modems, sound cards.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN19093" HREF="devproc.html#AEN19093" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Of course, the mount point <TT CLASS="FILENAME" >/mnt/flashdrive</TT > must exist. If not, then, as <I CLASS="FIRSTTERM" >root</I >, <B CLASS="COMMAND" >mkdir /mnt/flashdrive</B >.</P ><P >To actually mount the drive, use the following command: <B CLASS="COMMAND" >mount /mnt/flashdrive</B ></P ><P >Newer Linux distros automount flash drives in the <TT CLASS="FILENAME" >/media</TT > directory without user intervention.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="ivr.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="procref1.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Indirect References</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><TT CLASS="FILENAME" >/proc</TT ></TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/disclaimer.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Disclaimer</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Endnotes" HREF="endnotes.html"><LINK REL="PREVIOUS" TITLE="Credits" HREF="credits.html"><LINK REL="NEXT" TITLE="Bibliography" HREF="biblio.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="credits.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 38. Endnotes</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="biblio.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="DISCLAIMER" ></A >38.6. Disclaimer</H1 ><P >(This is a variant of the standard <A HREF="http://www.tldp.org" TARGET="_top" >LDP</A > disclaimer.)</P ><P >No liability for the contents of this document can be accepted. Use the concepts, examples and information at your own risk. There may be errors, omissions, and inaccuracies that could cause you to lose data, harm your system, or induce involuntary electrocution, so <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >proceed with appropriate caution</I ></SPAN >. The author takes no responsibility for any damages, incidental or otherwise.</P ><P >As it happens, it is highly unlikely that either you or your system will suffer ill effects, aside from uncontrollable hiccups. In fact, the <I CLASS="FOREIGNPHRASE" >raison d'etre</I > of this book is to enable its readers to analyze shell scripts and determine whether they have <A HREF="gotchas.html" >unanticipated consequences</A >.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="credits.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="biblio.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Credits</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="endnotes.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Bibliography</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/dosbatch.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Converting DOS Batch Files to Shell Scripts</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Sample .bashrc and .bash_profile Files" HREF="sample-bashrc.html"><LINK REL="NEXT" TITLE="Exercises" HREF="exercises.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="sample-bashrc.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="exercises.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="DOSBATCH" ></A >Appendix N. Converting DOS Batch Files to Shell Scripts</H1 ><P ><A NAME="DOSBATCH1" ></A ></P ><P >Quite a number of programmers learned scripting on a PC running DOS. Even the crippled DOS batch file language allowed writing some fairly powerful scripts and applications, though they often required extensive kludges and workarounds. Occasionally, the need still arises to convert an old DOS batch file to a UNIX shell script. This is generally not difficult, as DOS batch file operators are only a limited subset of the equivalent shell scripting ones.</P ><DIV CLASS="TABLE" ><HR><A NAME="AEN24336" ></A ><P ><B >Table N-1. Batch file keywords / variables / operators, and their shell equivalents</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Batch File Operator</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Shell Script Equivalent</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Meaning</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >%</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >$</TD ><TD ALIGN="LEFT" VALIGN="TOP" >command-line parameter prefix</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >/</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >-</TD ><TD ALIGN="LEFT" VALIGN="TOP" >command option flag</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >\</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >/</TD ><TD ALIGN="LEFT" VALIGN="TOP" >directory path separator</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >==</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >=</TD ><TD ALIGN="LEFT" VALIGN="TOP" >(equal-to) string comparison test</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >!==!</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >!=</TD ><TD ALIGN="LEFT" VALIGN="TOP" >(not equal-to) string comparison test</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >|</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >|</TD ><TD ALIGN="LEFT" VALIGN="TOP" >pipe</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >@</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >set <TT CLASS="OPTION" >+v</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >do not echo current command</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >*</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >*</TD ><TD ALIGN="LEFT" VALIGN="TOP" >filename <SPAN CLASS="QUOTE" >"wild card"</SPAN ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >></TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >></TD ><TD ALIGN="LEFT" VALIGN="TOP" >file redirection (overwrite)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >>></TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >>></TD ><TD ALIGN="LEFT" VALIGN="TOP" >file redirection (append)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" ><</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><</TD ><TD ALIGN="LEFT" VALIGN="TOP" >redirect <TT CLASS="FILENAME" >stdin</TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >%VAR%</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >$VAR</TD ><TD ALIGN="LEFT" VALIGN="TOP" >environmental variable</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >REM</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >#</TD ><TD ALIGN="LEFT" VALIGN="TOP" >comment</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >NOT</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >!</TD ><TD ALIGN="LEFT" VALIGN="TOP" >negate following test</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >NUL</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="FILENAME" >/dev/null</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="QUOTE" >"black hole"</SPAN > for burying command output</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >ECHO</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >echo</TD ><TD ALIGN="LEFT" VALIGN="TOP" >echo (many more option in Bash)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >ECHO.</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >echo</TD ><TD ALIGN="LEFT" VALIGN="TOP" >echo blank line</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >ECHO OFF</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >set <TT CLASS="OPTION" >+v</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >do not echo command(s) following</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >FOR %%VAR IN (LIST) DO</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >for var in [list]; do</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="QUOTE" >"for"</SPAN > loop</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >:LABEL</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >none (unnecessary)</TD ><TD ALIGN="LEFT" VALIGN="TOP" >label</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >GOTO</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >none (use a function)</TD ><TD ALIGN="LEFT" VALIGN="TOP" >jump to another location in the script</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >PAUSE</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >sleep</TD ><TD ALIGN="LEFT" VALIGN="TOP" >pause or wait an interval</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >CHOICE</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >case or select</TD ><TD ALIGN="LEFT" VALIGN="TOP" >menu choice</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >IF</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >if</TD ><TD ALIGN="LEFT" VALIGN="TOP" >if-test</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >IF EXIST <TT CLASS="REPLACEABLE" ><I >FILENAME</I ></TT ></TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >if [ -e filename ]</TD ><TD ALIGN="LEFT" VALIGN="TOP" >test if file exists</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >IF !%N==!</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >if [ -z "$N" ]</TD ><TD ALIGN="LEFT" VALIGN="TOP" >if replaceable parameter <SPAN CLASS="QUOTE" >"N"</SPAN > not present</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >CALL</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >source or . (dot operator)</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="QUOTE" >"include"</SPAN > another script</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >COMMAND /C</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >source or . (dot operator)</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="QUOTE" >"include"</SPAN > another script (same as CALL)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >SET</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >export</TD ><TD ALIGN="LEFT" VALIGN="TOP" >set an environmental variable</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >SHIFT</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >shift</TD ><TD ALIGN="LEFT" VALIGN="TOP" >left shift command-line argument list</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >SGN</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >-lt or -gt</TD ><TD ALIGN="LEFT" VALIGN="TOP" >sign (of integer)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >ERRORLEVEL</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >$?</TD ><TD ALIGN="LEFT" VALIGN="TOP" >exit status</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >CON</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="FILENAME" >stdin</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="QUOTE" >"console"</SPAN > (<TT CLASS="FILENAME" >stdin</TT >)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >PRN</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="FILENAME" >/dev/lp0</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >(generic) printer device</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >LPT1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="FILENAME" >/dev/lp0</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >first printer device</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >COM1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="FILENAME" >/dev/ttyS0</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >first serial port</TD ></TR ></TBODY ></TABLE ><HR></DIV ><P ><A NAME="DOSUNIXEQUIV" ></A ></P ><P >Batch files usually contain DOS commands. These must be translated into their UNIX equivalents in order to convert a batch file into a shell script.</P ><DIV CLASS="TABLE" ><HR><A NAME="AEN24545" ></A ><P ><B >Table N-2. DOS commands and their UNIX equivalents</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >DOS Command</TH ><TH ALIGN="LEFT" VALIGN="TOP" >UNIX Equivalent</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Effect</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >ASSIGN</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >ln</TD ><TD ALIGN="LEFT" VALIGN="TOP" >link file or directory</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >ATTRIB</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >chmod</TD ><TD ALIGN="LEFT" VALIGN="TOP" >change file permissions</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >CD</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >cd</TD ><TD ALIGN="LEFT" VALIGN="TOP" >change directory</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >CHDIR</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >cd</TD ><TD ALIGN="LEFT" VALIGN="TOP" >change directory</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >CLS</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >clear</TD ><TD ALIGN="LEFT" VALIGN="TOP" >clear screen</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >COMP</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >diff, comm, cmp</TD ><TD ALIGN="LEFT" VALIGN="TOP" >file compare</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >COPY</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >cp</TD ><TD ALIGN="LEFT" VALIGN="TOP" >file copy</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >Ctl-C</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Ctl-C</TD ><TD ALIGN="LEFT" VALIGN="TOP" >break (signal)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >Ctl-Z</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Ctl-D</TD ><TD ALIGN="LEFT" VALIGN="TOP" >EOF (end-of-file)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >DEL</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >rm</TD ><TD ALIGN="LEFT" VALIGN="TOP" >delete file(s)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >DELTREE</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >rm -rf</TD ><TD ALIGN="LEFT" VALIGN="TOP" >delete directory recursively</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >DIR</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >ls -l</TD ><TD ALIGN="LEFT" VALIGN="TOP" >directory listing</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >ERASE</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >rm</TD ><TD ALIGN="LEFT" VALIGN="TOP" >delete file(s)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >EXIT</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >exit</TD ><TD ALIGN="LEFT" VALIGN="TOP" >exit current process</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >FC</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >comm, cmp</TD ><TD ALIGN="LEFT" VALIGN="TOP" >file compare</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >FIND</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >grep</TD ><TD ALIGN="LEFT" VALIGN="TOP" >find strings in files</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >MD</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >mkdir</TD ><TD ALIGN="LEFT" VALIGN="TOP" >make directory</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >MKDIR</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >mkdir</TD ><TD ALIGN="LEFT" VALIGN="TOP" >make directory</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >MORE</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >more</TD ><TD ALIGN="LEFT" VALIGN="TOP" >text file paging filter</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >MOVE</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >mv</TD ><TD ALIGN="LEFT" VALIGN="TOP" >move</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >PATH</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >$PATH</TD ><TD ALIGN="LEFT" VALIGN="TOP" >path to executables</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >REN</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >mv</TD ><TD ALIGN="LEFT" VALIGN="TOP" >rename (move)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >RENAME</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >mv</TD ><TD ALIGN="LEFT" VALIGN="TOP" >rename (move)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >RD</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >rmdir</TD ><TD ALIGN="LEFT" VALIGN="TOP" >remove directory</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >RMDIR</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >rmdir</TD ><TD ALIGN="LEFT" VALIGN="TOP" >remove directory</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >SORT</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >sort</TD ><TD ALIGN="LEFT" VALIGN="TOP" >sort file</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >TIME</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >date</TD ><TD ALIGN="LEFT" VALIGN="TOP" >display system time</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >TYPE</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >cat</TD ><TD ALIGN="LEFT" VALIGN="TOP" >output file to <TT CLASS="FILENAME" >stdout</TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >XCOPY</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >cp</TD ><TD ALIGN="LEFT" VALIGN="TOP" >(extended) file copy</TD ></TR ></TBODY ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Virtually all UNIX and shell operators and commands have many more options and enhancements than their DOS and batch file counterparts. Many DOS batch files rely on auxiliary utilities, such as <B CLASS="COMMAND" >ask.com</B >, a crippled counterpart to <A HREF="internal.html#READREF" >read</A >.</P ><P >DOS supports only a very limited and incompatible subset of filename <A HREF="globbingref.html" >wild-card expansion</A >, recognizing just the <SPAN CLASS="TOKEN" >*</SPAN > and <SPAN CLASS="TOKEN" >?</SPAN > characters.</P ></TD ></TR ></TABLE ></DIV ><P >Converting a DOS batch file into a shell script is generally straightforward, and the result ofttimes reads better than the original.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="VIEWDAT" ></A ><P ><B >Example N-1. VIEWDATA.BAT: DOS Batch File</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 REM VIEWDATA 2 3 REM INSPIRED BY AN EXAMPLE IN "DOS POWERTOOLS" 4 REM BY PAUL SOMERSON 5 6 7 @ECHO OFF 8 9 IF !%1==! GOTO VIEWDATA 10 REM IF NO COMMAND-LINE ARG... 11 FIND "%1" C:\BOZO\BOOKLIST.TXT 12 GOTO EXIT0 13 REM PRINT LINE WITH STRING MATCH, THEN EXIT. 14 15 :VIEWDATA 16 TYPE C:\BOZO\BOOKLIST.TXT | MORE 17 REM SHOW ENTIRE FILE, 1 PAGE AT A TIME. 18 19 :EXIT0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P > The script conversion is somewhat of an improvement. <A NAME="AEN24713" HREF="#FTN.AEN24713" >[1]</A > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="VIEWDATA" ></A ><P ><B >Example N-2. <I CLASS="FIRSTTERM" >viewdata.sh</I >: Shell Script Conversion of VIEWDATA.BAT</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # viewdata.sh 3 # Conversion of VIEWDATA.BAT to shell script. 4 5 DATAFILE=/home/bozo/datafiles/book-collection.data 6 ARGNO=1 7 8 # @ECHO OFF Command unnecessary here. 9 10 if [ $# -lt "$ARGNO" ] # IF !%1==! GOTO VIEWDATA 11 then 12 less $DATAFILE # TYPE C:\MYDIR\BOOKLIST.TXT | MORE 13 else 14 grep "$1" $DATAFILE # FIND "%1" C:\MYDIR\BOOKLIST.TXT 15 fi 16 17 exit 0 # :EXIT0 18 19 # GOTOs, labels, smoke-and-mirrors, and flimflam unnecessary. 20 # The converted script is short, sweet, and clean, 21 #+ which is more than can be said for the original.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Ted Davis' <A HREF="http://www.maem.umr.edu/batch/" TARGET="_top" >Shell Scripts on the PC</A > site had a set of comprehensive tutorials on the old-fashioned art of batch file programming. Unfortunately the page has vanished without a trace.</P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN24713" HREF="dosbatch.html#AEN24713" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Various readers have suggested modifications of the above batch file to prettify it and make it more compact and efficient. In the opinion of the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >ABS Guide</I ></SPAN > author, this is wasted effort. A Bash script can access a DOS filesystem, or even an NTFS partition (with the help of <A HREF="http://www.ntfs-3g.org" TARGET="_top" >ntfs-3g</A >) to do batch or scripted operations.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="sample-bashrc.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="exercises.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Sample <TT CLASS="FILENAME" >.bashrc</TT > and <TT CLASS="FILENAME" >.bash_profile</TT > Files</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Exercises</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/endnotes.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Endnotes</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Bash, version 4" HREF="bashver4.html"><LINK REL="NEXT" TITLE="About the Author" HREF="aboutauthor.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="bashver4.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="aboutauthor.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="ENDNOTES" ></A >Chapter 38. Endnotes</H1 ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="AUTHORSNOTE" ></A >38.1. Author's Note</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I ><I CLASS="FOREIGNPHRASE" >doce ut discas</I ></I ></P ><P ><I >(Teach, that you yourself may learn.)</I ></P ></I ></TD ></TR ></TABLE ><P >How did I come to write a scripting book? It's a strange tale. It seems that a few years back I needed to learn shell scripting -- and what better way to do that than to read a good book on the subject? I was looking to buy a tutorial and reference covering all aspects of the subject. I was looking for a book that would take difficult concepts, turn them inside out, and explain them in excruciating detail, with well-commented examples. <A NAME="AEN21281" HREF="#FTN.AEN21281" >[1]</A > In fact, I was looking for <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >this very book</I ></SPAN >, or something very much like it. Unfortunately, <A HREF="biblio.html#KOCHANREF" >it didn't exist</A >, and if I wanted it, I'd have to write it. And so, here we are, folks.</P ><P >That reminds me of the apocryphal story about a mad professor. Crazy as a loon, the fellow was. At the sight of a book, any book -- at the library, at a bookstore, anywhere -- he would become totally obsessed with the idea that he could have written it, should have written it -- and done a better job of it to boot. He would thereupon rush home and proceed to do just that, write a book with the very same title. When he died some years later, he allegedly had several thousand books to his credit, probably putting even Asimov to shame. The books might not have been any good, who knows, but does that really matter? Here's a fellow who lived his dream, even if he was obsessed by it, driven by it . . . and somehow I can't help admiring the old coot.</P ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21281" HREF="endnotes.html#AEN21281" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This is the notorious <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >flog it to death</I ></SPAN > technique that works so well with slow learners, eccentrics, odd ducks, fools and geniuses.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="bashver4.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="aboutauthor.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Bash, version 4</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >About the Author</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/escapingsection.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Escaping</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Quoting" HREF="quoting.html"><LINK REL="PREVIOUS" TITLE="Quoting" HREF="quoting.html"><LINK REL="NEXT" TITLE="Exit and Exit Status" HREF="exit-status.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="quoting.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 5. Quoting</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="exit-status.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="ESCAPINGSECTION" ></A >5.2. Escaping</H1 ><P ><A NAME="ESCP" ></A ><I CLASS="FIRSTTERM" >Escaping</I > is a method of quoting single characters. The <SPAN CLASS="TOKEN" >escape</SPAN > (<SPAN CLASS="TOKEN" >\</SPAN >) preceding a character tells the shell to interpret that character literally.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >With certain commands and utilities, such as <A HREF="internal.html#ECHOREF" >echo</A > and <A HREF="sedawk.html#SEDREF" >sed</A >, escaping a character may have the opposite effect - it can toggle on a special meaning for that character.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="SPM" ></A >Special meanings of certain escaped characters</B ></P ><DL ><DT >used with <B CLASS="COMMAND" >echo</B > and <B CLASS="COMMAND" >sed</B ></DT ><DD ><P ></P ></DD ><DT ><SPAN CLASS="TOKEN" >\n</SPAN ></DT ><DD ><P >means newline</P ></DD ><DT ><SPAN CLASS="TOKEN" >\r</SPAN ></DT ><DD ><P >means return</P ></DD ><DT ><SPAN CLASS="TOKEN" >\t</SPAN ></DT ><DD ><P >means tab</P ></DD ><DT ><SPAN CLASS="TOKEN" >\v</SPAN ></DT ><DD ><P > means vertical tab</P ></DD ><DT ><SPAN CLASS="TOKEN" >\b</SPAN ></DT ><DD ><P >means backspace</P ></DD ><DT ><SPAN CLASS="TOKEN" >\a</SPAN ></DT ><DD ><P >means <I CLASS="FIRSTTERM" >alert</I > (beep or flash)</P ></DD ><DT ><SPAN CLASS="TOKEN" >\0xx</SPAN ></DT ><DD ><P ><A NAME="OCTALREF" ></A >translates to the octal <A HREF="special-chars.html#ASCIIDEF" >ASCII</A > equivalent of <TT CLASS="REPLACEABLE" ><I >0nn</I ></TT >, where <TT CLASS="REPLACEABLE" ><I >nn</I ></TT > is a string of digits</P ><DIV CLASS="IMPORTANT" ><TABLE CLASS="IMPORTANT" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/important.png" HSPACE="5" ALT="Important"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="STRQ" ></A ></P ><P >The <TT CLASS="USERINPUT" ><B >$' ... '</B ></TT > <A HREF="quoting.html#QUOTINGREF" >quoted</A > string-expansion construct is a mechanism that uses escaped octal or hex values to assign ASCII characters to variables, e.g., <B CLASS="COMMAND" >quote=$'\042'</B >.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ESCAPED" ></A ><P ><B >Example 5-2. Escaped Characters</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # escaped.sh: escaped characters 3 4 ############################################################# 5 ### First, let's show some basic escaped-character usage. ### 6 ############################################################# 7 8 # Escaping a newline. 9 # ------------------ 10 11 echo "" 12 13 echo "This will print 14 as two lines." 15 # This will print 16 # as two lines. 17 18 echo "This will print \ 19 as one line." 20 # This will print as one line. 21 22 echo; echo 23 24 echo "=============" 25 26 27 echo "\v\v\v\v" # Prints \v\v\v\v literally. 28 # Use the -e option with 'echo' to print escaped characters. 29 echo "=============" 30 echo "VERTICAL TABS" 31 echo -e "\v\v\v\v" # Prints 4 vertical tabs. 32 echo "==============" 33 34 echo "QUOTATION MARK" 35 echo -e "\042" # Prints " (quote, octal ASCII character 42). 36 echo "==============" 37 38 39 40 # The $'\X' construct makes the -e option unnecessary. 41 42 echo; echo "NEWLINE and (maybe) BEEP" 43 echo $'\n' # Newline. 44 echo $'\a' # Alert (beep). 45 # May only flash, not beep, depending on terminal. 46 47 # We have seen $'\nnn" string expansion, and now . . . 48 49 # =================================================================== # 50 # Version 2 of Bash introduced the $'\nnn' string expansion construct. 51 # =================================================================== # 52 53 echo "Introducing the \$\' ... \' string-expansion construct . . . " 54 echo ". . . featuring more quotation marks." 55 56 echo $'\t \042 \t' # Quote (") framed by tabs. 57 # Note that '\nnn' is an octal value. 58 59 # It also works with hexadecimal values, in an $'\xhhh' construct. 60 echo $'\t \x22 \t' # Quote (") framed by tabs. 61 # Thank you, Greg Keraunen, for pointing this out. 62 # Earlier Bash versions allowed '\x022'. 63 64 echo 65 66 67 # Assigning ASCII characters to a variable. 68 # ---------------------------------------- 69 quote=$'\042' # " assigned to a variable. 70 echo "$quote Quoted string $quote and this lies outside the quotes." 71 72 echo 73 74 # Concatenating ASCII chars in a variable. 75 triple_underline=$'\137\137\137' # 137 is octal ASCII code for '_'. 76 echo "$triple_underline UNDERLINE $triple_underline" 77 78 echo 79 80 ABC=$'\101\102\103\010' # 101, 102, 103 are octal A, B, C. 81 echo $ABC 82 83 echo 84 85 escape=$'\033' # 033 is octal for escape. 86 echo "\"escape\" echoes as $escape" 87 # no visible output. 88 89 echo 90 91 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >A more elaborate example:</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BASHEK" ></A ><P ><B >Example 5-3. Detecting key-presses</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Author: Sigurd Solaas, 20 Apr 2011 3 # Used in ABS Guide with permission. 4 # Requires version 4.2+ of Bash. 5 6 key="no value yet" 7 while true; do 8 clear 9 echo "Bash Extra Keys Demo. Keys to try:" 10 echo 11 echo "* Insert, Delete, Home, End, Page_Up and Page_Down" 12 echo "* The four arrow keys" 13 echo "* Tab, enter, escape, and space key" 14 echo "* The letter and number keys, etc." 15 echo 16 echo " d = show date/time" 17 echo " q = quit" 18 echo "================================" 19 echo 20 21 # Convert the separate home-key to home-key_num_7: 22 if [ "$key" = $'\x1b\x4f\x48' ]; then 23 key=$'\x1b\x5b\x31\x7e' 24 # Quoted string-expansion construct. 25 fi 26 27 # Convert the separate end-key to end-key_num_1. 28 if [ "$key" = $'\x1b\x4f\x46' ]; then 29 key=$'\x1b\x5b\x34\x7e' 30 fi 31 32 case "$key" in 33 $'\x1b\x5b\x32\x7e') # Insert 34 echo Insert Key 35 ;; 36 $'\x1b\x5b\x33\x7e') # Delete 37 echo Delete Key 38 ;; 39 $'\x1b\x5b\x31\x7e') # Home_key_num_7 40 echo Home Key 41 ;; 42 $'\x1b\x5b\x34\x7e') # End_key_num_1 43 echo End Key 44 ;; 45 $'\x1b\x5b\x35\x7e') # Page_Up 46 echo Page_Up 47 ;; 48 $'\x1b\x5b\x36\x7e') # Page_Down 49 echo Page_Down 50 ;; 51 $'\x1b\x5b\x41') # Up_arrow 52 echo Up arrow 53 ;; 54 $'\x1b\x5b\x42') # Down_arrow 55 echo Down arrow 56 ;; 57 $'\x1b\x5b\x43') # Right_arrow 58 echo Right arrow 59 ;; 60 $'\x1b\x5b\x44') # Left_arrow 61 echo Left arrow 62 ;; 63 $'\x09') # Tab 64 echo Tab Key 65 ;; 66 $'\x0a') # Enter 67 echo Enter Key 68 ;; 69 $'\x1b') # Escape 70 echo Escape Key 71 ;; 72 $'\x20') # Space 73 echo Space Key 74 ;; 75 d) 76 date 77 ;; 78 q) 79 echo Time to quit... 80 echo 81 exit 0 82 ;; 83 *) 84 echo You pressed: \'"$key"\' 85 ;; 86 esac 87 88 echo 89 echo "================================" 90 91 unset K1 K2 K3 92 read -s -N1 -p "Press a key: " 93 K1="$REPLY" 94 read -s -N2 -t 0.001 95 K2="$REPLY" 96 read -s -N1 -t 0.001 97 K3="$REPLY" 98 key="$K1$K2$K3" 99 100 done 101 102 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="bash2.html#EX77" >Example 37-1</A >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >\"</SPAN ></DT ><DD ><P > gives the quote its literal meaning</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "Hello" # Hello 2 echo "\"Hello\" ... he said." # "Hello" ... he said.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><SPAN CLASS="TOKEN" >\$</SPAN ></DT ><DD ><P >gives the dollar sign its literal meaning (variable name following <SPAN CLASS="TOKEN" >\$</SPAN > will not be referenced)</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "\$variable01" # $variable01 2 echo "The book cost \$7.98." # The book cost $7.98.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><SPAN CLASS="TOKEN" >\\</SPAN ></DT ><DD ><P >gives the backslash its literal meaning</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "\\" # Results in \ 2 3 # Whereas . . . 4 5 echo "\" # Invokes secondary prompt from the command-line. 6 # In a script, gives an error message. 7 8 # However . . . 9 10 echo '\' # Results in \</PRE ></TD ></TR ></TABLE ></P ></DD ></DL ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The behavior of <SPAN CLASS="TOKEN" >\</SPAN > depends on whether it is escaped, <A HREF="variables.html#SNGLQUO" >strong-quoted</A >, <A HREF="variables.html#DBLQUO" >weak-quoted</A >, or appearing within <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A > or a <A HREF="here-docs.html#HEREDOCREF" >here document</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Simple escaping and quoting 2 echo \z # z 3 echo \\z # \z 4 echo '\z' # \z 5 echo '\\z' # \\z 6 echo "\z" # \z 7 echo "\\z" # \z 8 9 # Command substitution 10 echo `echo \z` # z 11 echo `echo \\z` # z 12 echo `echo \\\z` # \z 13 echo `echo \\\\z` # \z 14 echo `echo \\\\\\z` # \z 15 echo `echo \\\\\\\z` # \\z 16 echo `echo "\z"` # \z 17 echo `echo "\\z"` # \z 18 19 # Here document 20 cat <<EOF 21 \z 22 EOF # \z 23 24 cat <<EOF 25 \\z 26 EOF # \z 27 28 # These examples supplied by Stéphane Chazelas.</PRE ></TD ></TR ></TABLE > </P ><P >Elements of a string assigned to a variable may be escaped, but the escape character alone may not be assigned to a variable. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 variable=\ 2 echo "$variable" 3 # Will not work - gives an error message: 4 # test.sh: : command not found 5 # A "naked" escape cannot safely be assigned to a variable. 6 # 7 # What actually happens here is that the "\" escapes the newline and 8 #+ the effect is variable=echo "$variable" 9 #+ invalid variable assignment 10 11 variable=\ 12 23skidoo 13 echo "$variable" # 23skidoo 14 # This works, since the second line 15 #+ is a valid variable assignment. 16 17 variable=\ 18 # \^ escape followed by space 19 echo "$variable" # space 20 21 variable=\\ 22 echo "$variable" # \ 23 24 variable=\\\ 25 echo "$variable" 26 # Will not work - gives an error message: 27 # test.sh: \: command not found 28 # 29 # First escape escapes second one, but the third one is left "naked", 30 #+ with same result as first instance, above. 31 32 variable=\\\\ 33 echo "$variable" # \\ 34 # Second and fourth escapes escaped. 35 # This is o.k.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><P >Escaping a space can prevent word splitting in a command's argument list. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 file_list="/bin/cat /bin/gzip /bin/more /usr/bin/less /usr/bin/emacs-20.7" 2 # List of files as argument(s) to a command. 3 4 # Add two files to the list, and list all. 5 ls -l /usr/X11R6/bin/xsetroot /sbin/dump $file_list 6 7 echo "-------------------------------------------------------------------------" 8 9 # What happens if we escape a couple of spaces? 10 ls -l /usr/X11R6/bin/xsetroot\ /sbin/dump\ $file_list 11 # Error: the first three files concatenated into a single argument to 'ls -l' 12 # because the two escaped spaces prevent argument (word) splitting.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="ESCNEWLINE" ></A ></P ><P >The <SPAN CLASS="TOKEN" >escape</SPAN > also provides a means of writing a multi-line command. Normally, each separate line constitutes a different command, but an <SPAN CLASS="TOKEN" >escape</SPAN > at the end of a line <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >escapes the newline character</I ></SPAN >, and the command sequence continues on to the next line.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 (cd /source/directory && tar cf - . ) | \ 2 (cd /dest/directory && tar xpvf -) 3 # Repeating Alan Cox's directory tree copy command, 4 # but split into two lines for increased legibility. 5 6 # As an alternative: 7 tar cf - -C /source/directory . | 8 tar xpvf - -C /dest/directory 9 # See note below. 10 # (Thanks, Stéphane Chazelas.)</PRE ></TD ></TR ></TABLE > <DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >If a script line ends with a <SPAN CLASS="TOKEN" >|</SPAN >, a pipe character, then a <SPAN CLASS="TOKEN" >\</SPAN >, an escape, is not strictly necessary. It is, however, good programming practice to always escape the end of a line of code that continues to the following line.</P ></TD ></TR ></TABLE ></DIV ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "foo 2 bar" 3 #foo 4 #bar 5 6 echo 7 8 echo 'foo 9 bar' # No difference yet. 10 #foo 11 #bar 12 13 echo 14 15 echo foo\ 16 bar # Newline escaped. 17 #foobar 18 19 echo 20 21 echo "foo\ 22 bar" # Same here, as \ still interpreted as escape within weak quotes. 23 #foobar 24 25 echo 26 27 echo 'foo\ 28 bar' # Escape character \ taken literally because of strong quoting. 29 #foo\ 30 #bar 31 32 # Examples suggested by Stéphane Chazelas.</PRE ></TD ></TR ></TABLE ></P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="quoting.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="exit-status.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Quoting</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="quoting.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Exit and Exit Status</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/exercises.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Exercises</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Converting DOS Batch Files to Shell Scripts" HREF="dosbatch.html"><LINK REL="NEXT" TITLE="Writing Scripts" HREF="writingscripts.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="dosbatch.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="writingscripts.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="EXERCISES" ></A >Appendix O. Exercises</H1 ><P >The exercises that follow test and extend your knowledge of scripting. Think of them as a challenge, as an entertaining way to take you further along the stony path toward UNIX wizardry.</P ><P > <P CLASS="LITERALLAYOUT" > On a dingy side street in a run-down section of Hoboken, New Jersey,<br> there sits a nondescript squat two-story brick building with an inscription<br> incised on a marble plate in its wall:<br> <br> <TT CLASS="COMPUTEROUTPUT" >Bash Scripting Hall of Fame</TT >.<br> <br> Inside, among various dusty uninteresting exhibits is a corroding,<br> cobweb-festooned brass plaque inscribed with a short, very short<br> list of those few persons who have successfully mastered the material<br> in the <I CLASS="FIRSTTERM" >Advanced Bash Scripting Guide</I >, as evidenced by their performance<br> on the following Exercise sections.<br> <br> (Alas, the author of the <I CLASS="FIRSTTERM" >ABS Guide</I > is not represented among the exhibits.<br> This is possibly due to malicious rumors about <A HREF="aboutauthor.html#NOCREDS" >lack of credentials</A > and<br> <A HREF="contributed-scripts.html#KTOUR0" >deficient scripting skills</A >.)<br> </P > </P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="SCRIPTANALYSIS" ></A >O.1. Analyzing Scripts</H1 ><P >Examine the following script. Run it, then explain what it does. Annotate the script and rewrite it in a more compact and elegant manner.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 MAX=10000 4 5 6 for((nr=1; nr<$MAX; nr++)) 7 do 8 9 let "t1 = nr % 5" 10 if [ "$t1" -ne 3 ] 11 then 12 continue 13 fi 14 15 let "t2 = nr % 7" 16 if [ "$t2" -ne 4 ] 17 then 18 continue 19 fi 20 21 let "t3 = nr % 9" 22 if [ "$t3" -ne 5 ] 23 then 24 continue 25 fi 26 27 break # What happens when you comment out this line? Why? 28 29 done 30 31 echo "Number = $nr" 32 33 34 exit 0</PRE ></TD ></TR ></TABLE > </P ><P >---</P ><P >Explain what the following script does. It is really just a parameterized command-line pipe.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 DIRNAME=/usr/bin 4 FILETYPE="shell script" 5 LOGFILE=logfile 6 7 file "$DIRNAME"/* | fgrep "$FILETYPE" | tee $LOGFILE | wc -l 8 9 exit 0</PRE ></TD ></TR ></TABLE > </P ><P >---</P ><P >Examine and explain the following script. For hints, you might refer to the listings for <A HREF="moreadv.html#FINDREF" >find</A > and <A HREF="system.html#STATREF" >stat</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Author: Nathan Coulter 4 # This code is released to the public domain. 5 # The author gave permission to use this code snippet in the ABS Guide. 6 7 find -maxdepth 1 -type f -printf '%f\000' | { 8 while read -d $'\000'; do 9 mv "$REPLY" "$(date -d "$(stat -c '%y' "$REPLY") " '+%Y%m%d%H%M%S' 10 )-$REPLY" 11 done 12 } 13 14 # Warning: Test-drive this script in a "scratch" directory. 15 # It will somehow affect all the files there.</PRE ></TD ></TR ></TABLE > </P ><P >---</P ><P >A reader sent in the following code snippet.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 while read LINE 2 do 3 echo $LINE 4 done < `tail -f /var/log/messages`</PRE ></TD ></TR ></TABLE > </P ><P >He wished to write a script tracking changes to the system log file, <TT CLASS="FILENAME" >/var/log/messages</TT >. Unfortunately, the above code block hangs and does nothing useful. Why? Fix this so it does work. (Hint: rather than <A HREF="redircb.html#REDIRREF" >redirecting the <TT CLASS="FILENAME" >stdin</TT > of the loop</A >, try a <A HREF="special-chars.html#PIPEREF" >pipe</A >.)</P ><P >---</P ><P >Analyze the following <SPAN CLASS="QUOTE" >"one-liner"</SPAN > (here split into two lines for clarity) contributed by Rory Winston:</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 export SUM=0; for f in $(find src -name "*.java"); 2 do export SUM=$(($SUM + $(wc -l $f | awk '{ print $1 }'))); done; echo $SUM</PRE ></TD ></TR ></TABLE > </P ><P >Hint: First, break the script up into bite-sized sections. Then, carefully examine its use of <A HREF="dblparens.html" >double-parentheses</A > arithmetic, the <A HREF="internal.html#EXPORTREF" >export</A > command, the <A HREF="moreadv.html#FINDREF" >find</A > command, the <A HREF="textproc.html#WCREF" >wc</A > command, and <A HREF="awk.html#AWKREF" >awk</A >.</P ><P >---</P ><P >Analyze <A HREF="contributed-scripts.html#LIFESLOW" >Example A-10</A >, and reorganize it in a simplified and more logical style. See how many of the variables can be eliminated, and try to optimize the script to speed up its execution time.</P ><P >Alter the script so that it accepts any ordinary ASCII text file as input for its initial <SPAN CLASS="QUOTE" >"generation"</SPAN >. The script will read the first <TT CLASS="PARAMETER" ><I >$ROW*$COL</I ></TT > characters, and set the occurrences of vowels as <SPAN CLASS="QUOTE" >"living"</SPAN > cells. Hint: be sure to translate the spaces in the input file to underscore characters.</P ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="dosbatch.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="writingscripts.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Converting DOS Batch Files to Shell Scripts</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Writing Scripts</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/exit-status.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Exit and Exit Status</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Basics" HREF="part2.html"><LINK REL="PREVIOUS" TITLE="Escaping" HREF="escapingsection.html"><LINK REL="NEXT" TITLE="Tests" HREF="tests.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="escapingsection.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="tests.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="EXIT-STATUS" ></A >Chapter 6. Exit and Exit Status</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >... there are dark corners in the Bourne shell, and people use all of them.</I ></P ><P ><I >--Chet Ramey</I ></P ></I ></TD ></TR ></TABLE ><P ><A NAME="EXITCOMMANDREF" ></A >The <B CLASS="COMMAND" > exit </B > command terminates a script, just as in a <B CLASS="COMMAND" >C</B > program. It can also return a value, which is available to the script's parent process.</P ><P ><A NAME="EXITSTATUSREF" ></A >Every command returns an <I CLASS="FIRSTTERM" > exit status </I > (sometimes referred to as a <I CLASS="FIRSTTERM" > return status </I > or <I CLASS="FIRSTTERM" >exit code</I >). <A NAME="EXITSUCCESS" ></A > A successful command returns a <SPAN CLASS="RETURNVALUE" >0</SPAN >, while an unsuccessful one returns a <SPAN CLASS="RETURNVALUE" >non-zero</SPAN > value that usually can be interpreted as an <I CLASS="FIRSTTERM" >error code</I >. Well-behaved UNIX commands, programs, and utilities return a <SPAN CLASS="RETURNVALUE" >0</SPAN > exit code upon successful completion, though there are some exceptions.</P ><P ><A NAME="FUNCTXSTR" ></A ></P ><P >Likewise, <A HREF="functions.html#FUNCTIONREF" >functions</A > within a script and the script itself return an exit status. The last command executed in the function or script determines the exit status. Within a script, an <TT CLASS="USERINPUT" ><B >exit <TT CLASS="REPLACEABLE" ><I >nnn</I ></TT ></B ></TT > command may be used to deliver an <SPAN CLASS="RETURNVALUE" ><TT CLASS="REPLACEABLE" ><I >nnn</I ></TT ></SPAN > exit status to the shell (<SPAN CLASS="RETURNVALUE" ><TT CLASS="REPLACEABLE" ><I >nnn</I ></TT ></SPAN > must be an integer in the <SPAN CLASS="RETURNVALUE" >0</SPAN > - <SPAN CLASS="RETURNVALUE" >255</SPAN > range).</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >When a script ends with an <B CLASS="COMMAND" >exit</B > that has no parameter, the exit status of the script is the exit status of the last command executed in the script (previous to the <B CLASS="COMMAND" >exit</B >).</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 COMMAND_1 4 5 . . . 6 7 COMMAND_LAST 8 9 # Will exit with status of last command. 10 11 exit</PRE ></TD ></TR ></TABLE ></P ><P >The equivalent of a bare <B CLASS="COMMAND" >exit</B > is <B CLASS="COMMAND" >exit $?</B > or even just omitting the <B CLASS="COMMAND" >exit</B >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 COMMAND_1 4 5 . . . 6 7 COMMAND_LAST 8 9 # Will exit with status of last command. 10 11 exit $?</PRE ></TD ></TR ></TABLE ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 COMMAND1 4 5 . . . 6 7 COMMAND_LAST 8 9 # Will exit with status of last command.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="EXSREF" ></A ></P ><P > <TT CLASS="VARNAME" > $?</TT > reads the exit status of the last command executed. After a function returns, <TT CLASS="VARNAME" >$?</TT > gives the exit status of the last command executed in the function. This is Bash's way of giving functions a <SPAN CLASS="QUOTE" >"return value."</SPAN > <A NAME="AEN2981" HREF="#FTN.AEN2981" >[1]</A > </P ><P ><A NAME="PIPEEX" ></A >Following the execution of a <A HREF="special-chars.html#PIPEREF" >pipe</A >, a <TT CLASS="VARNAME" >$?</TT > gives the exit status of the last command executed.</P ><P >After a script terminates, a <TT CLASS="VARNAME" >$?</TT > from the command-line gives the exit status of the script, that is, the last command executed in the script, which is, by convention, <TT CLASS="USERINPUT" ><B >0</B ></TT > on success or an integer in the range <SPAN CLASS="RETURNVALUE" >1 - 255</SPAN > on error.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX5" ></A ><P ><B >Example 6-1. exit / exit status</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo hello 4 echo $? # Exit status 0 returned because command executed successfully. 5 6 lskdf # Unrecognized command. 7 echo $? # Non-zero exit status returned -- command failed to execute. 8 9 echo 10 11 exit 113 # Will return 113 to shell. 12 # To verify this, type "echo $?" after script terminates. 13 14 # By convention, an 'exit 0' indicates success, 15 #+ while a non-zero exit value means an error or anomalous condition. 16 # See the "Exit Codes With Special Meanings" appendix.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A HREF="variables2.html#XSTATVARREF" >$?</A > is especially useful for testing the result of a command in a script (see <A HREF="filearchiv.html#FILECOMP" >Example 16-35</A > and <A HREF="textproc.html#LOOKUP" >Example 16-20</A >).</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <A HREF="special-chars.html#NOTREF" >!</A >, the <I CLASS="FIRSTTERM" >logical not</I > qualifier, reverses the outcome of a test or command, and this affects its <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A >. <DIV CLASS="EXAMPLE" ><HR><A NAME="NEGCOND" ></A ><P ><B >Example 6-2. Negating a condition using <SPAN CLASS="TOKEN" >!</SPAN ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 true # The "true" builtin. 2 echo "exit status of \"true\" = $?" # 0 3 4 ! true 5 echo "exit status of \"! true\" = $?" # 1 6 # Note that the "!" needs a space between it and the command. 7 # !true leads to a "command not found" error 8 # 9 # The '!' operator prefixing a command invokes the Bash history mechanism. 10 11 true 12 !true 13 # No error this time, but no negation either. 14 # It just repeats the previous command (true). 15 16 17 # =========================================================== # 18 # Preceding a _pipe_ with ! inverts the exit status returned. 19 ls | bogus_command # bash: bogus_command: command not found 20 echo $? # 127 21 22 ! ls | bogus_command # bash: bogus_command: command not found 23 echo $? # 0 24 # Note that the ! does not change the execution of the pipe. 25 # Only the exit status changes. 26 # =========================================================== # 27 28 # Thanks, Stéphane Chazelas and Kristopher Newsome.</PRE ></TD ></TR ></TABLE ><HR></DIV > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Certain exit status codes have <A HREF="exitcodes.html#EXITCODESREF" >reserved meanings</A > and should not be user-specified in a script. </P ></TD ></TR ></TABLE ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN2981" HREF="exit-status.html#AEN2981" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >In those instances when there is no <A HREF="functions.html#RETURNREF" >return</A > terminating the function.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="escapingsection.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="tests.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Escaping</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part2.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Tests</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/exitcodes.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Exit Codes With Special Meanings</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Parsing and Managing Pathnames" HREF="pathmanagement.html"><LINK REL="NEXT" TITLE="A Detailed Introduction to I/O and I/O Redirection" HREF="ioredirintro.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="pathmanagement.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="ioredirintro.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="EXITCODES" ></A >Appendix E. Exit Codes With Special Meanings</H1 ><P ><A NAME="EXITCODESREF" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN23549" ></A ><P ><B >Table E-1. <I CLASS="FIRSTTERM" >Reserved</I > Exit Codes</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Exit Code Number</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Meaning</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Example</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Comments</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Catchall for general errors</TD ><TD ALIGN="LEFT" VALIGN="TOP" >let "var1 = 1/0"</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Miscellaneous errors, such as <SPAN CLASS="QUOTE" >"divide by zero"</SPAN > and other impermissible operations</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Misuse of shell builtins (according to Bash documentation)</TD ><TD ALIGN="LEFT" VALIGN="TOP" >empty_function() {}</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="debugging.html#MISSINGKEYWORD" >Missing keyword</A > or command, or permission problem (and <A HREF="filearchiv.html#DIFFERR2" ><I CLASS="FIRSTTERM" >diff</I > return code on a failed binary file comparison</A >).</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >126</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Command invoked cannot execute</TD ><TD ALIGN="LEFT" VALIGN="TOP" >/dev/null</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Permission problem or command is not an executable</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >127</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="QUOTE" >"command not found"</SPAN ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >illegal_command</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Possible problem with <TT CLASS="VARNAME" >$PATH</TT > or a typo</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >128</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Invalid argument to <A HREF="exit-status.html#EXITCOMMANDREF" >exit</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >exit 3.14159</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><B CLASS="COMMAND" >exit</B > takes only integer args in the range <SPAN CLASS="RETURNVALUE" >0 - 255</SPAN > (see first footnote)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >128+n</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Fatal error signal <SPAN CLASS="QUOTE" >"n"</SPAN ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >kill -9</I > <TT CLASS="VARNAME" >$PPID</TT > of script</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="USERINPUT" ><B >$?</B ></TT > returns <SPAN CLASS="ERRORCODE" >137</SPAN > (128 + 9)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >130</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Script terminated by Control-C</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Ctl-C</I ></SPAN ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Control-C is fatal error signal <SPAN CLASS="ERRORCODE" >2</SPAN >, (130 = 128 + 2, see above)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >255*</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Exit status out of range</TD ><TD ALIGN="LEFT" VALIGN="TOP" >exit <SPAN CLASS="RETURNVALUE" >-1</SPAN ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><B CLASS="COMMAND" >exit</B > takes only integer args in the range <SPAN CLASS="ERRORCODE" >0 - 255</SPAN ></TD ></TR ></TBODY ></TABLE ><HR></DIV ><P >According to the above table, exit codes <SPAN CLASS="ERRORCODE" >1 - 2, 126 - 165, and 255</SPAN > <A NAME="AEN23629" HREF="#FTN.AEN23629" >[1]</A > have special meanings, and should therefore be avoided for user-specified exit parameters. Ending a script with <I CLASS="FIRSTTERM" >exit 127</I > would certainly cause confusion when troubleshooting (is the error code a <SPAN CLASS="QUOTE" >"command not found"</SPAN > or a user-defined one?). However, many scripts use an <I CLASS="FIRSTTERM" >exit 1</I > as a general bailout-upon-error. Since exit code <SPAN CLASS="ERRORCODE" >1</SPAN > signifies so many possible errors, it is not particularly useful in debugging.</P ><P ><A NAME="SYSEXITSREF" ></A ></P ><P >There has been an attempt to systematize exit status numbers (see <TT CLASS="FILENAME" >/usr/include/sysexits.h</TT >), but this is intended for C and C++ programmers. A similar standard for scripting might be appropriate. The author of this document proposes restricting user-defined exit codes to the range <SPAN CLASS="RETURNVALUE" >64 - 113</SPAN > (in addition to <SPAN CLASS="RETURNVALUE" >0</SPAN >, for success), to conform with the C/C++ standard. This would allot 50 valid codes, and make troubleshooting scripts more straightforward. <A NAME="AEN23647" HREF="#FTN.AEN23647" >[2]</A > All user-defined exit codes in the accompanying examples to this document conform to this standard, except where overriding circumstances exist, as in <A HREF="variables2.html#TMDIN" >Example 9-2</A >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Issuing a <A HREF="variables2.html#XSTATVARREF" >$?</A > from the command-line after a shell script exits gives results consistent with the table above only from the Bash or <I CLASS="FIRSTTERM" >sh</I > prompt. Running the <I CLASS="FIRSTTERM" >C-shell</I > or <I CLASS="FIRSTTERM" >tcsh</I > may give different values in some cases.</P ></TD ></TR ></TABLE ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN23629" HREF="exitcodes.html#AEN23629" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="EXCOOR" ></A >Out of range exit values can result in unexpected exit codes. An exit value greater than <SPAN CLASS="ERRORCODE" >255</SPAN > returns an exit code <A HREF="operations.html#MODULOREF" >modulo</A > <SPAN CLASS="ERRORCODE" >256</SPAN >. For example, <I CLASS="FIRSTTERM" >exit 3809</I > gives an exit code of <SPAN CLASS="ERRORCODE" >225</SPAN > (3809 % 256 = 225).</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN23647" HREF="exitcodes.html#AEN23647" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >An update of <TT CLASS="FILENAME" >/usr/include/sysexits.h</TT > allocates previously unused exit codes from <SPAN CLASS="RETURNVALUE" >64 - 78</SPAN >. It may be anticipated that the range of unallotted exit codes will be further restricted in the future. The author of this document will <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > do fixups on the scripting examples to conform to the changing standard. This should not cause any problems, since there is no overlap or conflict in usage of exit codes between compiled C/C++ binaries and shell scripts.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="pathmanagement.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="ioredirintro.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Parsing and Managing Pathnames</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >A Detailed Introduction to I/O and I/O Redirection</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/external.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >External Filters, Programs and Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Commands" HREF="part4.html"><LINK REL="PREVIOUS" TITLE="Internal Commands and Builtins" HREF="internal.html"><LINK REL="NEXT" TITLE="Complex Commands" HREF="moreadv.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="internal.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="moreadv.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="EXTERNAL" ></A >Chapter 16. External Filters, Programs and Commands</H1 ><P ><A NAME="EXTERNALREF" ></A ></P ><P >Standard UNIX commands make shell scripts more versatile. The power of scripts comes from coupling system commands and shell directives with simple programming constructs.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="BASIC" ></A >16.1. Basic Commands</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="BASICCOMMANDS1" ></A >The first commands a novice learns</B ></P ><DL ><DT ><A NAME="LSREF" ></A ><B CLASS="COMMAND" >ls</B ></DT ><DD ><P >The basic file <SPAN CLASS="QUOTE" >"list"</SPAN > command. It is all too easy to underestimate the power of this humble command. For example, using the <TT CLASS="OPTION" >-R</TT >, recursive option, <B CLASS="COMMAND" >ls</B > provides a tree-like listing of a directory structure. Other useful options are <TT CLASS="OPTION" >-S</TT >, sort listing by file size, <TT CLASS="OPTION" >-t</TT >, sort by file modification time, <TT CLASS="OPTION" >-v</TT >, sort by (numerical) version numbers embedded in the filenames, <A NAME="AEN10025" HREF="#FTN.AEN10025" >[1]</A > <TT CLASS="OPTION" >-b</TT >, show escape characters, and <TT CLASS="OPTION" >-i</TT >, show file inodes (see <A HREF="moreadv.html#IDELETE" >Example 16-4</A >).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter10.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter11.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter12.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter1.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter2.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter3.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:49 Chapter_headings.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:49 Preface.txt</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -lv</B ></TT > <TT CLASS="COMPUTEROUTPUT" > total 0 -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:49 Chapter_headings.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:49 Preface.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter1.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter2.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter3.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter10.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter11.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter12.txt</TT ></PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P > The <I CLASS="FIRSTTERM" >ls</I > command returns a non-zero <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > when attempting to list a non-existent file. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls abc</B ></TT > <TT CLASS="COMPUTEROUTPUT" >ls: abc: No such file or directory</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $?</B ></TT > <TT CLASS="COMPUTEROUTPUT" >2</TT ></PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX40" ></A ><P ><B >Example 16-1. Using <I CLASS="FIRSTTERM" >ls</I > to create a table of contents for burning a <SPAN CLASS="ABBREV" >CDR</SPAN > disk</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ex40.sh (burn-cd.sh) 3 # Script to automate burning a CDR. 4 5 6 SPEED=10 # May use higher speed if your hardware supports it. 7 IMAGEFILE=cdimage.iso 8 CONTENTSFILE=contents 9 # DEVICE=/dev/cdrom For older versions of cdrecord 10 DEVICE="1,0,0" 11 DEFAULTDIR=/opt # This is the directory containing the data to be burned. 12 # Make sure it exists. 13 # Exercise: Add a test for this. 14 15 # Uses Joerg Schilling's "cdrecord" package: 16 # http://www.fokus.fhg.de/usr/schilling/cdrecord.html 17 18 # If this script invoked as an ordinary user, may need to suid cdrecord 19 #+ chmod u+s /usr/bin/cdrecord, as root. 20 # Of course, this creates a security hole, though a relatively minor one. 21 22 if [ -z "$1" ] 23 then 24 IMAGE_DIRECTORY=$DEFAULTDIR 25 # Default directory, if not specified on command-line. 26 else 27 IMAGE_DIRECTORY=$1 28 fi 29 30 # Create a "table of contents" file. 31 ls -lRF $IMAGE_DIRECTORY > $IMAGE_DIRECTORY/$CONTENTSFILE 32 # The "l" option gives a "long" file listing. 33 # The "R" option makes the listing recursive. 34 # The "F" option marks the file types (directories get a trailing /). 35 echo "Creating table of contents." 36 37 # Create an image file preparatory to burning it onto the CDR. 38 mkisofs -r -o $IMAGEFILE $IMAGE_DIRECTORY 39 echo "Creating ISO9660 file system image ($IMAGEFILE)." 40 41 # Burn the CDR. 42 echo "Burning the disk." 43 echo "Please be patient, this will take a while." 44 wodim -v -isosize dev=$DEVICE $IMAGEFILE 45 # In newer Linux distros, the "wodim" utility assumes the 46 #+ functionality of "cdrecord." 47 exitcode=$? 48 echo "Exit code = $exitcode" 49 50 exit $exitcode</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="CATREF" ></A ><B CLASS="COMMAND" >cat</B >, <B CLASS="COMMAND" >tac</B ></DT ><DD ><P ><B CLASS="COMMAND" >cat</B >, an acronym for <I CLASS="WORDASWORD" >concatenate</I >, lists a file to <TT CLASS="FILENAME" >stdout</TT >. When combined with redirection (<SPAN CLASS="TOKEN" >></SPAN > or <SPAN CLASS="TOKEN" >>></SPAN >), it is commonly used to concatenate files. <A NAME="CATUSES" ></A > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Uses of 'cat' 2 cat filename # Lists the file. 3 4 cat file.1 file.2 file.3 > file.123 # Combines three files into one.</PRE ></TD ></TR ></TABLE > The <TT CLASS="OPTION" >-n</TT > option to <B CLASS="COMMAND" >cat</B > inserts consecutive numbers before all lines of the target file(s). The <TT CLASS="OPTION" >-b</TT > option numbers only the non-blank lines. The <TT CLASS="OPTION" >-v</TT > option echoes nonprintable characters, using <SPAN CLASS="TOKEN" >^</SPAN > notation. The <TT CLASS="OPTION" >-s</TT > option squeezes multiple consecutive blank lines into a single blank line.</P ><P >See also <A HREF="textproc.html#LNUM" >Example 16-28</A > and <A HREF="textproc.html#ROT13" >Example 16-24</A >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="CATLESSEFF" ></A > In a <A HREF="special-chars.html#PIPEREF" >pipe</A >, it may be more efficient to <A HREF="io-redirection.html#IOREDIRREF" >redirect</A > the <TT CLASS="FILENAME" >stdin</TT > to a file, rather than to <B CLASS="COMMAND" >cat</B > the file. </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat filename | tr a-z A-Z 2 3 tr a-z A-Z < filename # Same effect, but starts one less process, 4 #+ and also dispenses with the pipe.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><P ><B CLASS="COMMAND" >tac</B >, is the inverse of <I CLASS="WORDASWORD" >cat</I >, listing a file backwards from its end.</P ></DD ><DT ><A NAME="REVREF" ></A ><B CLASS="COMMAND" >rev</B ></DT ><DD ><P >reverses each line of a file, and outputs to <TT CLASS="FILENAME" >stdout</TT >. This does not have the same effect as <B CLASS="COMMAND" >tac</B >, as it preserves the order of the lines, but flips each one around (mirror image).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat file1.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" >This is line 1. This is line 2.</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >tac file1.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" >This is line 2. This is line 1.</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >rev file1.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" >.1 enil si sihT .2 enil si sihT</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="CPREF" ></A ><B CLASS="COMMAND" >cp</B ></DT ><DD ><P >This is the file copy command. <TT CLASS="USERINPUT" ><B >cp file1 file2</B ></TT > copies <TT CLASS="FILENAME" >file1</TT > to <TT CLASS="FILENAME" >file2</TT >, overwriting <TT CLASS="FILENAME" >file2</TT > if it already exists (see <A HREF="moreadv.html#EX42" >Example 16-6</A >).</P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Particularly useful are the <TT CLASS="OPTION" >-a</TT > archive flag (for copying an entire directory tree), the <TT CLASS="OPTION" >-u</TT > update flag (which prevents overwriting identically-named newer files), and the <TT CLASS="OPTION" >-r</TT > and <TT CLASS="OPTION" >-R</TT > recursive flags.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cp -u source_dir/* dest_dir 2 # "Synchronize" dest_dir to source_dir 3 #+ by copying over all newer and not previously existing files.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="MVREF" ></A ><B CLASS="COMMAND" >mv</B ></DT ><DD ><P >This is the file <I CLASS="FIRSTTERM" >move</I > command. It is equivalent to a combination of <B CLASS="COMMAND" >cp</B > and <B CLASS="COMMAND" >rm</B >. It may be used to move multiple files to a directory, or even to rename a directory. For some examples of using <B CLASS="COMMAND" >mv</B > in a script, see <A HREF="parameter-substitution.html#RFE" >Example 10-11</A > and <A HREF="contributed-scripts.html#RN" >Example A-2</A >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >When used in a non-interactive script, <B CLASS="COMMAND" >mv</B > takes the <TT CLASS="OPTION" >-f</TT > (<I CLASS="FIRSTTERM" >force</I >) option to bypass user input.</P ><P >When a directory is moved to a preexisting directory, it becomes a subdirectory of the destination directory.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >mv source_directory target_directory</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -lF target_directory</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 1 drwxrwxr-x 2 bozo bozo 1024 May 28 19:20 source_directory/</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="RMREF" ></A ><B CLASS="COMMAND" >rm</B ></DT ><DD ><P >Delete (remove) a file or files. The <TT CLASS="OPTION" >-f</TT > option forces removal of even readonly files, and is useful for bypassing user input in a script.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="DASHREM" ></A ></P ><P >The <I CLASS="FIRSTTERM" >rm</I > command will, by itself, fail to remove filenames beginning with a dash. Why? Because <I CLASS="FIRSTTERM" >rm</I > sees a dash-prefixed filename as an <I CLASS="FIRSTTERM" >option</I >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >rm -badname</B ></TT > <TT CLASS="COMPUTEROUTPUT" >rm: invalid option -- b Try `rm --help' for more information.</TT ></PRE ></TD ></TR ></TABLE > </P ><P > One clever workaround is to precede the filename with a <SPAN CLASS="QUOTE" >" -- "</SPAN > (the <I CLASS="FIRSTTERM" >end-of-options</I > flag). <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >rm -- -badname</B ></TT ></PRE ></TD ></TR ></TABLE > </P ><P > Another method to is to preface the filename to be removed with a <TT CLASS="FILENAME" >dot-slash</TT > . <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >rm ./-badname</B ></TT ></PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="WARNING" ><TABLE CLASS="WARNING" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/warning.png" HSPACE="5" ALT="Warning"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="RMRECURS" ></A >When used with the recursive flag <TT CLASS="OPTION" >-r</TT >, this command removes files all the way down the directory tree from the current directory. A careless <B CLASS="COMMAND" >rm -rf *</B > can wipe out a big chunk of a directory structure.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="RMDIRREF" ></A ><B CLASS="COMMAND" >rmdir</B ></DT ><DD ><P >Remove directory. The directory must be empty of all files -- including <SPAN CLASS="QUOTE" >"invisible"</SPAN > <I CLASS="FIRSTTERM" >dotfiles</I > <A NAME="AEN10228" HREF="#FTN.AEN10228" >[2]</A > -- for this command to succeed.</P ></DD ><DT ><A NAME="MKDIRREF" ></A ><B CLASS="COMMAND" >mkdir</B ></DT ><DD ><P >Make directory, creates a new directory. For example, <TT CLASS="USERINPUT" ><B >mkdir -p project/programs/December</B ></TT > creates the named directory. The <TT CLASS="REPLACEABLE" ><I >-p</I ></TT > option automatically creates any necessary parent directories.</P ></DD ><DT ><A NAME="CHMODREF" ></A ><B CLASS="COMMAND" >chmod</B ></DT ><DD ><P >Changes the attributes of an existing file or directory (see <A HREF="internal.html#EX44" >Example 15-14</A >).</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 chmod +x filename 2 # Makes "filename" executable for all users. 3 4 chmod u+s filename 5 # Sets "suid" bit on "filename" permissions. 6 # An ordinary user may execute "filename" with same privileges as the file's owner. 7 # (This does not apply to shell scripts.)</PRE ></TD ></TR ></TABLE ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 chmod 644 filename 2 # Makes "filename" readable/writable to owner, readable to others 3 #+ (octal mode). 4 5 chmod 444 filename 6 # Makes "filename" read-only for all. 7 # Modifying the file (for example, with a text editor) 8 #+ not allowed for a user who does not own the file (except for root), 9 #+ and even the file owner must force a file-save 10 #+ if she modifies the file. 11 # Same restrictions apply for deleting the file.</PRE ></TD ></TR ></TABLE ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 chmod 1777 directory-name 2 # Gives everyone read, write, and execute permission in directory, 3 #+ however also sets the "sticky bit". 4 # This means that only the owner of the directory, 5 #+ owner of the file, and, of course, root 6 #+ can delete any particular file in that directory. 7 8 chmod 111 directory-name 9 # Gives everyone execute-only permission in a directory. 10 # This means that you can execute and READ the files in that directory 11 #+ (execute permission necessarily includes read permission 12 #+ because you can't execute a file without being able to read it). 13 # But you can't list the files or search for them with the "find" command. 14 # These restrictions do not apply to root. 15 16 chmod 000 directory-name 17 # No permissions at all for that directory. 18 # Can't read, write, or execute files in it. 19 # Can't even list files in it or "cd" to it. 20 # But, you can rename (mv) the directory 21 #+ or delete it (rmdir) if it is empty. 22 # You can even symlink to files in the directory, 23 #+ but you can't read, write, or execute the symlinks. 24 # These restrictions do not apply to root.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="CHATTRREF" ></A ><B CLASS="COMMAND" >chattr</B ></DT ><DD ><P ><B CLASS="COMMAND" >Ch</B >ange file <B CLASS="COMMAND" >attr</B >ibutes. This is analogous to <B CLASS="COMMAND" >chmod</B > above, but with different options and a different invocation syntax, and it works only on <I CLASS="FIRSTTERM" >ext2/ext3</I > filesystems.</P ><P >One particularly interesting <B CLASS="COMMAND" >chattr</B > option is <TT CLASS="OPTION" >i</TT >. A <B CLASS="COMMAND" >chattr +i <TT CLASS="FILENAME" >filename</TT ></B > marks the file as immutable. The file cannot be modified, linked to, or deleted, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not even by root</I ></SPAN >. This file attribute can be set or removed only by <I CLASS="FIRSTTERM" >root</I >. In a similar fashion, the <TT CLASS="OPTION" >a</TT > option marks the file as append only.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >chattr +i file1.txt</B ></TT > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >rm file1.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" >rm: remove write-protected regular file `file1.txt'? y rm: cannot remove `file1.txt': Operation not permitted</TT > </PRE ></TD ></TR ></TABLE > </P ><P >If a file has the <TT CLASS="OPTION" >s</TT > (secure) attribute set, then when it is deleted its block is overwritten with binary zeroes. <A NAME="AEN10301" HREF="#FTN.AEN10301" >[3]</A > </P ><P >If a file has the <TT CLASS="OPTION" >u</TT > (undelete) attribute set, then when it is deleted, its contents can still be retrieved (undeleted).</P ><P >If a file has the <TT CLASS="OPTION" >c</TT > (compress) attribute set, then it will automatically be compressed on writes to disk, and uncompressed on reads.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The file attributes set with <B CLASS="COMMAND" >chattr</B > do not show in a file listing (<B CLASS="COMMAND" >ls -l</B >).</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="LINKREF" ></A ><B CLASS="COMMAND" >ln</B ></DT ><DD ><P >Creates links to pre-existings files. A <SPAN CLASS="QUOTE" >"link"</SPAN > is a reference to a file, an alternate name for it. The <B CLASS="COMMAND" >ln</B > command permits referencing the linked file by more than one name and is a superior alternative to aliasing (see <A HREF="othertypesv.html#EX18" >Example 4-6</A >).</P ><P >The <B CLASS="COMMAND" >ln</B > creates only a reference, a pointer to the file only a few bytes in size.</P ><P ><A NAME="SYMLINKREF" ></A ></P ><P >The <B CLASS="COMMAND" >ln</B > command is most often used with the <TT CLASS="OPTION" >-s</TT >, symbolic or <SPAN CLASS="QUOTE" >"soft"</SPAN > link flag. Advantages of using the <TT CLASS="OPTION" >-s</TT > flag are that it permits linking across file systems or to directories.</P ><P >The syntax of the command is a bit tricky. For example: <TT CLASS="USERINPUT" ><B >ln -s oldfile newfile</B ></TT > links the previously existing <TT CLASS="FILENAME" >oldfile</TT > to the newly created link, <TT CLASS="FILENAME" >newfile</TT >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >If a file named <TT CLASS="FILENAME" >newfile</TT > has previously existed, an error message will result.</P ></TD ></TR ></TABLE ></DIV ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN10336" ></A ><P ><B >Which type of link to use?</B ></P ><P >As John Macdonald explains it:</P ><P >Both of these [types of links] provide a certain measure of dual reference -- if you edit the contents of the file using any name, your changes will affect both the original name and either a hard or soft new name. The differences between them occurs when you work at a higher level. The advantage of a hard link is that the new name is totally independent of the old name -- if you remove or rename the old name, that does not affect the hard link, which continues to point to the data while it would leave a soft link hanging pointing to the old name which is no longer there. The advantage of a soft link is that it can refer to a different file system (since it is just a reference to a file name, not to actual data). And, unlike a hard link, a symbolic link can refer to a directory.</P ></DIV ></TD ></TR ></TABLE ><P ><A NAME="LINKMINVOK" ></A ></P ><P >Links give the ability to invoke a script (or any other type of executable) with multiple names, and having that script behave according to how it was invoked.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="HELLOL" ></A ><P ><B >Example 16-2. Hello or Good-bye</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # hello.sh: Saying "hello" or "goodbye" 3 #+ depending on how script is invoked. 4 5 # Make a link in current working directory ($PWD) to this script: 6 # ln -s hello.sh goodbye 7 # Now, try invoking this script both ways: 8 # ./hello.sh 9 # ./goodbye 10 11 12 HELLO_CALL=65 13 GOODBYE_CALL=66 14 15 if [ $0 = "./goodbye" ] 16 then 17 echo "Good-bye!" 18 # Some other goodbye-type commands, as appropriate. 19 exit $GOODBYE_CALL 20 fi 21 22 echo "Hello!" 23 # Some other hello-type commands, as appropriate. 24 exit $HELLO_CALL</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="MANREF" ></A ><B CLASS="COMMAND" >man</B >, <A NAME="INFOREF" ></A ><B CLASS="COMMAND" >info</B ></DT ><DD ><P >These commands access the manual and information pages on system commands and installed utilities. When available, the <I CLASS="FIRSTTERM" >info</I > pages usually contain more detailed descriptions than do the <I CLASS="FIRSTTERM" >man</I > pages.</P ><P >There have been various attempts at <SPAN CLASS="QUOTE" >"automating"</SPAN > the writing of <I CLASS="FIRSTTERM" >man pages</I >. For a script that makes a tentative first step in that direction, see <A HREF="contributed-scripts.html#MANED" >Example A-39</A >.</P ></DD ></DL ></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN10025" HREF="external.html#AEN10025" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The <TT CLASS="OPTION" >-v</TT > option also orders the sort by <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >upper- and lowercase prefixed</I ></SPAN > filenames.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN10228" HREF="external.html#AEN10228" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="DOTFILESREF" ></A ></P ><P ><I CLASS="FIRSTTERM" >Dotfiles</I > are files whose names begin with a <I CLASS="FIRSTTERM" >dot</I >, such as <TT CLASS="FILENAME" >~/.Xdefaults</TT >. Such filenames do not appear in a normal <B CLASS="COMMAND" >ls</B > listing (although an <B CLASS="COMMAND" >ls -a</B > will show them), and they cannot be deleted by an accidental <B CLASS="COMMAND" >rm -rf *</B >. Dotfiles are generally used as setup and configuration files in a user's home directory.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN10301" HREF="external.html#AEN10301" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This particular feature may not yet be implemented in the version of the ext2/ext3 filesystem installed on your system. Check the documentation for your Linux distro.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="internal.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="moreadv.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Internal Commands and Builtins</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part4.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Complex Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/extmisc.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Miscellaneous Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="External Filters, Programs and Commands" HREF="external.html"><LINK REL="PREVIOUS" TITLE="Math Commands" HREF="mathc.html"><LINK REL="NEXT" TITLE="System and Administrative Commands" HREF="system.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="mathc.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 16. External Filters, Programs and Commands</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="system.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="EXTMISC" ></A >16.9. Miscellaneous Commands</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="MISCCOMMANDLISTING1" ></A >Command that fit in no special category</B ></P ><DL ><DT ><A NAME="JOTREF" ></A ><B CLASS="COMMAND" >jot</B >, <A NAME="SEQREF" ></A ><B CLASS="COMMAND" >seq</B ></DT ><DD ><P >These utilities emit a sequence of integers, with a user-selectable increment.</P ><P >The default separator character between each integer is a newline, but this can be changed with the <TT CLASS="OPTION" >-s</TT > option.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >seq 5</B ></TT > <TT CLASS="COMPUTEROUTPUT" >1 2 3 4 5</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >seq -s : 5</B ></TT > <TT CLASS="COMPUTEROUTPUT" >1:2:3:4:5</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Both <B CLASS="COMMAND" >jot</B > and <B CLASS="COMMAND" >seq</B > come in handy in a <A HREF="loops.html#FORLOOPREF1" >for loop</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX53" ></A ><P ><B >Example 16-54. Using <I CLASS="FIRSTTERM" >seq</I > to generate loop arguments</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Using "seq" 3 4 echo 5 6 for a in `seq 80` # or for a in $( seq 80 ) 7 # Same as for a in 1 2 3 4 5 ... 80 (saves much typing!). 8 # May also use 'jot' (if present on system). 9 do 10 echo -n "$a " 11 done # 1 2 3 4 5 ... 80 12 # Example of using the output of a command to generate 13 # the [list] in a "for" loop. 14 15 echo; echo 16 17 18 COUNT=80 # Yes, 'seq' also accepts a replaceable parameter. 19 20 for a in `seq $COUNT` # or for a in $( seq $COUNT ) 21 do 22 echo -n "$a " 23 done # 1 2 3 4 5 ... 80 24 25 echo; echo 26 27 BEGIN=75 28 END=80 29 30 for a in `seq $BEGIN $END` 31 # Giving "seq" two arguments starts the count at the first one, 32 #+ and continues until it reaches the second. 33 do 34 echo -n "$a " 35 done # 75 76 77 78 79 80 36 37 echo; echo 38 39 BEGIN=45 40 INTERVAL=5 41 END=80 42 43 for a in `seq $BEGIN $INTERVAL $END` 44 # Giving "seq" three arguments starts the count at the first one, 45 #+ uses the second for a step interval, 46 #+ and continues until it reaches the third. 47 do 48 echo -n "$a " 49 done # 45 50 55 60 65 70 75 80 50 51 echo; echo 52 53 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >A simpler example:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Create a set of 10 files, 2 #+ named file.1, file.2 . . . file.10. 3 COUNT=10 4 PREFIX=file 5 6 for filename in `seq $COUNT` 7 do 8 touch $PREFIX.$filename 9 # Or, can do other operations, 10 #+ such as rm, grep, etc. 11 done</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="LETTERCOUNT" ></A ><P ><B >Example 16-55. Letter Count"</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # letter-count.sh: Counting letter occurrences in a text file. 3 # Written by Stefano Palmeri. 4 # Used in ABS Guide with permission. 5 # Slightly modified by document author. 6 7 MINARGS=2 # Script requires at least two arguments. 8 E_BADARGS=65 9 FILE=$1 10 11 let LETTERS=$#-1 # How many letters specified (as command-line args). 12 # (Subtract 1 from number of command-line args.) 13 14 15 show_help(){ 16 echo 17 echo Usage: `basename $0` file letters 18 echo Note: `basename $0` arguments are case sensitive. 19 echo Example: `basename $0` foobar.txt G n U L i N U x. 20 echo 21 } 22 23 # Checks number of arguments. 24 if [ $# -lt $MINARGS ]; then 25 echo 26 echo "Not enough arguments." 27 echo 28 show_help 29 exit $E_BADARGS 30 fi 31 32 33 # Checks if file exists. 34 if [ ! -f $FILE ]; then 35 echo "File \"$FILE\" does not exist." 36 exit $E_BADARGS 37 fi 38 39 40 41 # Counts letter occurrences . 42 for n in `seq $LETTERS`; do 43 shift 44 if [[ `echo -n "$1" | wc -c` -eq 1 ]]; then # Checks arg. 45 echo "$1" -\> `cat $FILE | tr -cd "$1" | wc -c` # Counting. 46 else 47 echo "$1 is not a single char." 48 fi 49 done 50 51 exit $? 52 53 # This script has exactly the same functionality as letter-count2.sh, 54 #+ but executes faster. 55 # Why?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Somewhat more capable than <I CLASS="FIRSTTERM" >seq</I >, <B CLASS="COMMAND" >jot</B > is a classic UNIX utility that is not normally included in a standard Linux distro. However, the source <I CLASS="FIRSTTERM" >rpm</I > is available for download from the <A HREF="http://www.mit.edu/afs/athena/system/rhlinux/athena-9.0/free/SRPMS/athena-jot-9.0-3.src.rpm" TARGET="_top" > MIT repository</A >.</P ><P ><A NAME="JOTRANDOM" ></A ></P ><P >Unlike <I CLASS="FIRSTTERM" >seq</I >, <B CLASS="COMMAND" >jot</B > can generate a sequence of random numbers, using the <TT CLASS="OPTION" >-r</TT > option.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >jot -r 3 999</B ></TT > <TT CLASS="COMPUTEROUTPUT" >1069 1272 1428</TT ></PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="GETOPTY" ></A ><B CLASS="COMMAND" >getopt</B ></DT ><DD ><P >The <B CLASS="COMMAND" >getopt</B > command parses command-line options preceded by a <A HREF="special-chars.html#DASHREF" >dash</A >. This external command corresponds to the <A HREF="internal.html#GETOPTSX" >getopts</A > Bash builtin. Using <B CLASS="COMMAND" >getopt</B > permits handling long options by means of the <TT CLASS="OPTION" >-l</TT > flag, and this also allows parameter reshuffling.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX33A" ></A ><P ><B >Example 16-56. Using <I CLASS="FIRSTTERM" >getopt</I > to parse command-line options</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Using getopt 3 4 # Try the following when invoking this script: 5 # sh ex33a.sh -a 6 # sh ex33a.sh -abc 7 # sh ex33a.sh -a -b -c 8 # sh ex33a.sh -d 9 # sh ex33a.sh -dXYZ 10 # sh ex33a.sh -d XYZ 11 # sh ex33a.sh -abcd 12 # sh ex33a.sh -abcdZ 13 # sh ex33a.sh -z 14 # sh ex33a.sh a 15 # Explain the results of each of the above. 16 17 E_OPTERR=65 18 19 if [ "$#" -eq 0 ] 20 then # Script needs at least one command-line argument. 21 echo "Usage $0 -[options a,b,c]" 22 exit $E_OPTERR 23 fi 24 25 set -- `getopt "abcd:" "$@"` 26 # Sets positional parameters to command-line arguments. 27 # What happens if you use "$*" instead of "$@"? 28 29 while [ ! -z "$1" ] 30 do 31 case "$1" in 32 -a) echo "Option \"a\"";; 33 -b) echo "Option \"b\"";; 34 -c) echo "Option \"c\"";; 35 -d) echo "Option \"d\" $2";; 36 *) break;; 37 esac 38 39 shift 40 done 41 42 # It is usually better to use the 'getopts' builtin in a script. 43 # See "ex33.sh." 44 45 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >As <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Peggy Russell</I ></SPAN > points out:</P ><P >It is often necessary to include an <A HREF="internal.html#EVALREF" >eval</A > to correctly process <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A > and <I CLASS="FIRSTTERM" >quotes</I >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 args=$(getopt -o a:bc:d -- "$@") 2 eval set -- "$args"</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><P >See <A HREF="manipulatingvars.html#GETOPTSIMPLE" >Example 10-5</A > for a simplified emulation of <B CLASS="COMMAND" >getopt</B >.</P ></DD ><DT ><A NAME="RUNPARTSREF" ></A ><B CLASS="COMMAND" >run-parts</B ></DT ><DD ><P >The <B CLASS="COMMAND" >run-parts</B > command <A NAME="AEN14105" HREF="#FTN.AEN14105" >[1]</A > executes all the scripts in a target directory, sequentially in ASCII-sorted filename order. Of course, the scripts need to have execute permission.</P ><P >The <A HREF="system.html#CRONREF" >cron</A > <A HREF="communications.html#DAEMONREF" >daemon</A > invokes <B CLASS="COMMAND" >run-parts</B > to run the scripts in the <TT CLASS="FILENAME" >/etc/cron.*</TT > directories.</P ></DD ><DT ><A NAME="YESREF" ></A ><B CLASS="COMMAND" >yes</B ></DT ><DD ><P >In its default behavior the <B CLASS="COMMAND" >yes</B > command feeds a continuous string of the character <TT CLASS="COMPUTEROUTPUT" >y</TT > followed by a line feed to <TT CLASS="FILENAME" >stdout</TT >. A <B CLASS="KEYCAP" >control</B >-<B CLASS="KEYCAP" >C</B > terminates the run. A different output string may be specified, as in <TT CLASS="USERINPUT" ><B >yes different string</B ></TT >, which would continually output <TT CLASS="COMPUTEROUTPUT" >different string</TT > to <TT CLASS="FILENAME" >stdout</TT >.</P ><P >One might well ask the purpose of this. From the command-line or in a script, the output of <B CLASS="COMMAND" >yes</B > can be redirected or piped into a program expecting user input. In effect, this becomes a sort of poor man's version of <I CLASS="FIRSTTERM" >expect</I >.</P ><P ><TT CLASS="USERINPUT" ><B >yes | fsck /dev/hda1</B ></TT > runs <B CLASS="COMMAND" >fsck</B > non-interactively (careful!).</P ><P ><TT CLASS="USERINPUT" ><B >yes | rm -r dirname</B ></TT > has same effect as <TT CLASS="USERINPUT" ><B >rm -rf dirname</B ></TT > (careful!).</P ><DIV CLASS="WARNING" ><TABLE CLASS="WARNING" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/warning.png" HSPACE="5" ALT="Warning"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Caution advised when piping <I CLASS="FIRSTTERM" >yes</I > to a potentially dangerous system command, such as <A HREF="system.html#FSCKREF" >fsck</A > or <A HREF="system.html#FDISKREF" >fdisk</A >. It might have unintended consequences.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <I CLASS="FIRSTTERM" >yes</I > command parses variables, or more accurately, it echoes parsed variables. For example:</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >yes $BASH_VERSION</B ></TT > <TT CLASS="COMPUTEROUTPUT" >3.1.17(1)-release 3.1.17(1)-release 3.1.17(1)-release 3.1.17(1)-release 3.1.17(1)-release . . .</TT > </PRE ></TD ></TR ></TABLE > </P ><P > This particular <SPAN CLASS="QUOTE" >"feature"</SPAN > may be used to create a <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >very large</I ></SPAN > ASCII file on the fly: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >yes $PATH > huge_file.txt</B ></TT > <TT CLASS="USERINPUT" ><B >Ctl-C</B ></TT > </PRE ></TD ></TR ></TABLE > Hit <TT CLASS="USERINPUT" ><B >Ctl-C</B ></TT > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >very quickly</I ></SPAN >, or you just might get more than you bargained for. . . . </P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="YESEMU" ></A >The <I CLASS="FIRSTTERM" >yes</I > command may be emulated in a very simple script <A HREF="functions.html#FUNCTIONREF" >function</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 yes () 2 { # Trivial emulation of "yes" ... 3 local DEFAULT_TEXT="y" 4 while [ true ] # Endless loop. 5 do 6 if [ -z "$1" ] 7 then 8 echo "$DEFAULT_TEXT" 9 else # If argument ... 10 echo "$1" # ... expand and echo it. 11 fi 12 done # The only things missing are the 13 } #+ --help and --version options.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="BANNERREF" ></A ><B CLASS="COMMAND" >banner</B ></DT ><DD ><P >Prints arguments as a large vertical banner to <TT CLASS="FILENAME" >stdout</TT >, using an <A HREF="special-chars.html#ASCIIDEF" >ASCII</A > character (default '#'). This may be redirected to a printer for hardcopy.</P ><P >Note that <I CLASS="FIRSTTERM" >banner</I > has been dropped from many Linux distros, presumably because it is no longer considered useful.</P ></DD ><DT ><A NAME="PRINTENVREF" ></A ><B CLASS="COMMAND" >printenv</B ></DT ><DD ><P >Show all the <A HREF="othertypesv.html#ENVREF" >environmental variables</A > set for a particular user.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >printenv | grep HOME</B ></TT > <TT CLASS="COMPUTEROUTPUT" >HOME=/home/bozo</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="LPREF" ></A ><B CLASS="COMMAND" >lp</B ></DT ><DD ><P >The <B CLASS="COMMAND" >lp</B > and <B CLASS="COMMAND" >lpr</B > commands send file(s) to the print queue, to be printed as hard copy. <A NAME="AEN14214" HREF="#FTN.AEN14214" >[2]</A > These commands trace the origin of their names to the line printers of another era. <A NAME="AEN14218" HREF="#FTN.AEN14218" >[3]</A > </P ><P ><TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lp file1.txt</B ></TT > or <TT CLASS="PROMPT" >bash </TT ><TT CLASS="USERINPUT" ><B >lp <file1.txt</B ></TT ></P ><P >It is often useful to pipe the formatted output from <B CLASS="COMMAND" >pr</B > to <B CLASS="COMMAND" >lp</B >.</P ><P ><TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >pr -options file1.txt | lp</B ></TT > </P ><P >Formatting packages, such as <A HREF="textproc.html#GROFFREF" >groff</A > and <I CLASS="FIRSTTERM" >Ghostscript</I > may send their output directly to <B CLASS="COMMAND" >lp</B >.</P ><P ><TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >groff -Tascii file.tr | lp</B ></TT > </P ><P ><TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >gs -options | lp file.ps</B ></TT > </P ><P >Related commands are <B CLASS="COMMAND" >lpq</B >, for viewing the print queue, and <B CLASS="COMMAND" >lprm</B >, for removing jobs from the print queue.</P ></DD ><DT ><A NAME="TEEREF" ></A ><B CLASS="COMMAND" >tee</B ></DT ><DD ><P >[UNIX borrows an idea from the plumbing trade.]</P ><P >This is a redirection operator, but with a difference. Like the plumber's <I CLASS="FIRSTTERM" >tee,</I > it permits <SPAN CLASS="QUOTE" >"siphoning off"</SPAN > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >to a file </I ></SPAN >the output of a command or commands within a pipe, but without affecting the result. This is useful for printing an ongoing process to a file or paper, perhaps to keep track of it for debugging purposes.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > (redirection) |----> to file | ==========================|==================== command ---> command ---> |tee ---> command ---> ---> output of pipe =============================================== </PRE ></TD ></TR ></TABLE ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat listfile* | sort | tee check.file | uniq > result.file 2 # ^^^^^^^^^^^^^^ ^^^^ 3 4 # The file "check.file" contains the concatenated sorted "listfiles," 5 #+ before the duplicate lines are removed by 'uniq.'</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="MKFIFOREF" ></A ><B CLASS="COMMAND" >mkfifo</B ></DT ><DD ><P ><A NAME="NAMEDPIPEREF" ></A >This obscure command creates a <I CLASS="FIRSTTERM" >named pipe</I >, a temporary <I CLASS="FIRSTTERM" >first-in-first-out buffer</I > for transferring data between processes. <A NAME="AEN14280" HREF="#FTN.AEN14280" >[4]</A > Typically, one process writes to the FIFO, and the other reads from it. See <A HREF="contributed-scripts.html#FIFO" >Example A-14</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # This short script by Omair Eshkenazi. 3 # Used in ABS Guide with permission (thanks!). 4 5 mkfifo pipe1 # Yes, pipes can be given names. 6 mkfifo pipe2 # Hence the designation "named pipe." 7 8 (cut -d' ' -f1 | tr "a-z" "A-Z") >pipe2 <pipe1 & 9 ls -l | tr -s ' ' | cut -d' ' -f3,9- | tee pipe1 | 10 cut -d' ' -f2 | paste - pipe2 11 12 rm -f pipe1 13 rm -f pipe2 14 15 # No need to kill background processes when script terminates (why not?). 16 17 exit $? 18 19 Now, invoke the script and explain the output: 20 sh mkfifo-example.sh 21 22 4830.tar.gz BOZO 23 pipe1 BOZO 24 pipe2 BOZO 25 mkfifo-example.sh BOZO 26 Mixed.msg BOZO</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="PATHCHKREF" ></A ><B CLASS="COMMAND" >pathchk</B ></DT ><DD ><P >This command checks the validity of a filename. If the filename exceeds the maximum allowable length (255 characters) or one or more of the directories in its path is not searchable, then an error message results.</P ><P >Unfortunately, <B CLASS="COMMAND" >pathchk</B > does not return a recognizable error code, and it is therefore pretty much useless in a script. Consider instead the <A HREF="fto.html#RTIF" >file test operators</A >.</P ></DD ><DT ><A NAME="DDREF" ></A ><B CLASS="COMMAND" >dd</B ></DT ><DD ><P >Though this somewhat obscure and much feared <B CLASS="COMMAND" >d</B >ata <B CLASS="COMMAND" >d</B >uplicator command originated as a utility for exchanging data on magnetic tapes between UNIX minicomputers and IBM mainframes, it still has its uses. The <B CLASS="COMMAND" >dd</B > command simply copies a file (or <TT CLASS="FILENAME" >stdin/stdout</TT >), but with conversions. <A NAME="DDCONVERSIONS" ></A >Possible conversions include ASCII/EBCDIC, <A NAME="AEN14318" HREF="#FTN.AEN14318" >[5]</A > upper/lower case, swapping of byte pairs between input and output, and skipping and/or truncating the head or tail of the input file.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Converting a file to all uppercase: 2 3 dd if=$filename conv=ucase > $filename.uppercase 4 # lcase # For lower case conversion</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="DDOPTIONS" ></A ></P ><P >Some basic options to <B CLASS="COMMAND" >dd</B > are: <UL ><LI ><P >if=INFILE</P ><P >INFILE is the <I CLASS="FIRSTTERM" >source</I > file.</P ></LI ><LI ><P >of=OUTFILE</P ><P >OUTFILE is the <I CLASS="FIRSTTERM" >target</I > file, the file that will have the data written to it.</P ></LI ><LI ><P >bs=BLOCKSIZE</P ><P >This is the size of each block of data being read and written, usually a power of 2.</P ></LI ><LI ><P >skip=BLOCKS</P ><P >How many blocks of data to skip in INFILE before starting to copy. This is useful when the INFILE has <SPAN CLASS="QUOTE" >"garbage"</SPAN > or garbled data in its header or when it is desirable to copy only a portion of the INFILE.</P ></LI ><LI ><P >seek=BLOCKS</P ><P >How many blocks of data to skip in OUTFILE before starting to copy, leaving blank data at beginning of OUTFILE.</P ></LI ><LI ><P >count=BLOCKS</P ><P >Copy only this many blocks of data, rather than the entire INFILE.</P ></LI ><LI ><P >conv=CONVERSION</P ><P >Type of conversion to be applied to INFILE data before copying operation.</P ></LI ></UL > </P ><P >A <TT CLASS="USERINPUT" ><B >dd --help</B ></TT > lists all the options this powerful utility takes.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SELFCOPY" ></A ><P ><B >Example 16-57. A script that copies itself</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # self-copy.sh 3 4 # This script copies itself. 5 6 file_subscript=copy 7 8 dd if=$0 of=$0.$file_subscript 2>/dev/null 9 # Suppress messages from dd: ^^^^^^^^^^^ 10 11 exit $? 12 13 # A program whose only output is its own source code 14 #+ is called a "quine" per Willard Quine. 15 # Does this script qualify as a quine?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EXERCISINGDD" ></A ><P ><B >Example 16-58. Exercising <I CLASS="FIRSTTERM" >dd</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # exercising-dd.sh 3 4 # Script by Stephane Chazelas. 5 # Somewhat modified by ABS Guide author. 6 7 infile=$0 # This script. 8 outfile=log.txt # Output file left behind. 9 n=8 10 p=11 11 12 dd if=$infile of=$outfile bs=1 skip=$((n-1)) count=$((p-n+1)) 2> /dev/null 13 # Extracts characters n to p (8 to 11) from this script ("bash"). 14 15 # ---------------------------------------------------------------- 16 17 echo -n "hello vertical world" | dd cbs=1 conv=unblock 2> /dev/null 18 # Echoes "hello vertical world" vertically downward. 19 # Why? A newline follows each character dd emits. 20 21 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="DDKEYSTROKES" ></A ></P ><P >To demonstrate just how versatile <B CLASS="COMMAND" >dd</B > is, let's use it to capture keystrokes.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="DDKEYPRESS" ></A ><P ><B >Example 16-59. Capturing Keystrokes</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # dd-keypress.sh: Capture keystrokes without needing to press ENTER. 3 4 5 keypresses=4 # Number of keypresses to capture. 6 7 8 old_tty_setting=$(stty -g) # Save old terminal settings. 9 10 echo "Press $keypresses keys." 11 stty -icanon -echo # Disable canonical mode. 12 # Disable local echo. 13 keys=$(dd bs=1 count=$keypresses 2> /dev/null) 14 # 'dd' uses stdin, if "if" (input file) not specified. 15 16 stty "$old_tty_setting" # Restore old terminal settings. 17 18 echo "You pressed the \"$keys\" keys." 19 20 # Thanks, Stephane Chazelas, for showing the way. 21 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="DDRANDOM" ></A ></P ><P >The <B CLASS="COMMAND" >dd</B > command can do random access on a data stream. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo -n . | dd bs=1 seek=4 of=file conv=notrunc 2 # The "conv=notrunc" option means that the output file 3 #+ will not be truncated. 4 5 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="DDCOPY" ></A ></P ><P >The <B CLASS="COMMAND" >dd</B > command can copy raw data and disk images to and from devices, such as floppies and tape drives (<A HREF="contributed-scripts.html#COPYCD" >Example A-5</A >). A common use is creating boot floppies.</P ><P > <TT CLASS="USERINPUT" ><B >dd if=kernel-image of=/dev/fd0H1440</B ></TT > </P ><P >Similarly, <B CLASS="COMMAND" >dd</B > can copy the entire contents of a floppy, even one formatted with a <SPAN CLASS="QUOTE" >"foreign"</SPAN > OS, to the hard drive as an image file.</P ><P > <TT CLASS="USERINPUT" ><B >dd if=/dev/fd0 of=/home/bozo/projects/floppy.img</B ></TT > </P ><P ><A NAME="BFS" ></A >Likewise, <B CLASS="COMMAND" >dd</B > can create bootable flash drives and SD cards.</P ><P ><TT CLASS="USERINPUT" ><B >dd if=image.iso of=/dev/sdb</B ></TT ></P ><P ><A NAME="RPSDCARD01" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RPSDCARD" ></A ><P ><B >Example 16-60. Preparing a bootable SD card for the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Raspberry Pi</I ></SPAN ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # rp.sdcard.sh 3 # Preparing an SD card with a bootable image for the Raspberry Pi. 4 5 # $1 = imagefile name 6 # $2 = sdcard (device file) 7 # Otherwise defaults to the defaults, see below. 8 9 DEFAULTbs=4M # Block size, 4 mb default. 10 DEFAULTif="2013-07-26-wheezy-raspbian.img" # Commonly used distro. 11 DEFAULTsdcard="/dev/mmcblk0" # May be different. Check! 12 ROOTUSER_NAME=root # Must run as root! 13 E_NOTROOT=81 14 E_NOIMAGE=82 15 16 username=$(id -nu) # Who is running this script? 17 if [ "$username" != "$ROOTUSER_NAME" ] 18 then 19 echo "This script must run as root or with root privileges." 20 exit $E_NOTROOT 21 fi 22 23 if [ -n "$1" ] 24 then 25 imagefile="$1" 26 else 27 imagefile="$DEFAULTif" 28 fi 29 30 if [ -n "$2" ] 31 then 32 sdcard="$2" 33 else 34 sdcard="$DEFAULTsdcard" 35 fi 36 37 if [ ! -e $imagefile ] 38 then 39 echo "Image file \"$imagefile\" not found!" 40 exit $E_NOIMAGE 41 fi 42 43 echo "Last chance to change your mind!"; echo 44 read -s -n1 -p "Hit a key to write $imagefile to $sdcard [Ctl-c to exit]." 45 echo; echo 46 47 echo "Writing $imagefile to $sdcard ..." 48 dd bs=$DEFAULTbs if=$imagefile of=$sdcard 49 50 exit $? 51 52 # Exercises: 53 # --------- 54 # 1) Provide additional error checking. 55 # 2) Have script autodetect device file for SD card (difficult!). 56 # 3) Have script sutodetect image file (*img) in $PWD.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="DDSWAP" ></A ></P ><P > Other applications of <B CLASS="COMMAND" >dd</B > include initializing temporary swap files (<A HREF="zeros.html#EX73" >Example 31-2</A >) and ramdisks (<A HREF="zeros.html#RAMDISK" >Example 31-3</A >). It can even do a low-level copy of an entire hard drive partition, although this is not necessarily recommended.</P ><P >People (with presumably nothing better to do with their time) are constantly thinking of interesting applications of <B CLASS="COMMAND" >dd</B >.</P ><P ><A NAME="DDFDEL" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BLOTOUT" ></A ><P ><B >Example 16-61. Securely deleting a file</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # blot-out.sh: Erase "all" traces of a file. 3 4 # This script overwrites a target file alternately 5 #+ with random bytes, then zeros before finally deleting it. 6 # After that, even examining the raw disk sectors by conventional methods 7 #+ will not reveal the original file data. 8 9 PASSES=7 # Number of file-shredding passes. 10 # Increasing this slows script execution, 11 #+ especially on large target files. 12 BLOCKSIZE=1 # I/O with /dev/urandom requires unit block size, 13 #+ otherwise you get weird results. 14 E_BADARGS=70 # Various error exit codes. 15 E_NOT_FOUND=71 16 E_CHANGED_MIND=72 17 18 if [ -z "$1" ] # No filename specified. 19 then 20 echo "Usage: `basename $0` filename" 21 exit $E_BADARGS 22 fi 23 24 file=$1 25 26 if [ ! -e "$file" ] 27 then 28 echo "File \"$file\" not found." 29 exit $E_NOT_FOUND 30 fi 31 32 echo; echo -n "Are you absolutely sure you want to blot out \"$file\" (y/n)? " 33 read answer 34 case "$answer" in 35 [nN]) echo "Changed your mind, huh?" 36 exit $E_CHANGED_MIND 37 ;; 38 *) echo "Blotting out file \"$file\".";; 39 esac 40 41 42 flength=$(ls -l "$file" | awk '{print $5}') # Field 5 is file length. 43 pass_count=1 44 45 chmod u+w "$file" # Allow overwriting/deleting the file. 46 47 echo 48 49 while [ "$pass_count" -le "$PASSES" ] 50 do 51 echo "Pass #$pass_count" 52 sync # Flush buffers. 53 dd if=/dev/urandom of=$file bs=$BLOCKSIZE count=$flength 54 # Fill with random bytes. 55 sync # Flush buffers again. 56 dd if=/dev/zero of=$file bs=$BLOCKSIZE count=$flength 57 # Fill with zeros. 58 sync # Flush buffers yet again. 59 let "pass_count += 1" 60 echo 61 done 62 63 64 rm -f $file # Finally, delete scrambled and shredded file. 65 sync # Flush buffers a final time. 66 67 echo "File \"$file\" blotted out and deleted."; echo 68 69 70 exit 0 71 72 # This is a fairly secure, if inefficient and slow method 73 #+ of thoroughly "shredding" a file. 74 # The "shred" command, part of the GNU "fileutils" package, 75 #+ does the same thing, although more efficiently. 76 77 # The file cannot not be "undeleted" or retrieved by normal methods. 78 # However . . . 79 #+ this simple method would *not* likely withstand 80 #+ sophisticated forensic analysis. 81 82 # This script may not play well with a journaled file system. 83 # Exercise (difficult): Fix it so it does. 84 85 86 87 # Tom Vier's "wipe" file-deletion package does a much more thorough job 88 #+ of file shredding than this simple script. 89 # http://www.ibiblio.org/pub/Linux/utils/file/wipe-2.0.0.tar.bz2 90 91 # For an in-depth analysis on the topic of file deletion and security, 92 #+ see Peter Gutmann's paper, 93 #+ "Secure Deletion of Data From Magnetic and Solid-State Memory". 94 # http://www.cs.auckland.ac.nz/~pgut001/pubs/secure_del.html</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also the <A HREF="biblio.html#DDLINK" >dd thread</A > entry in the <A HREF="biblio.html#BIBLIOREF" >bibliography</A >.</P ></DD ><DT ><A NAME="ODREF" ></A ><B CLASS="COMMAND" >od</B ></DT ><DD ><P >The <B CLASS="COMMAND" >od</B >, or <I CLASS="FIRSTTERM" >octal dump</I > filter converts input (or files) to octal (base-8) or other bases. This is useful for viewing or processing binary data files or otherwise unreadable system <A HREF="devproc.html#DEVFILEREF" >device files</A >, such as <TT CLASS="FILENAME" >/dev/urandom</TT >, and as a filter for binary data.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 head -c4 /dev/urandom | od -N4 -tu4 | sed -ne '1s/.* //p' 2 # Sample output: 1324725719, 3918166450, 2989231420, etc. 3 4 # From rnd.sh example script, by Stéphane Chazelas</PRE ></TD ></TR ></TABLE > </P ><P >See also <A HREF="randomvar.html#SEEDINGRANDOM" >Example 9-16</A > and <A HREF="contributed-scripts.html#INSERTIONSORT" >Example A-36</A >.</P ></DD ><DT ><A NAME="HEXDUMPREF" ></A ><B CLASS="COMMAND" >hexdump</B ></DT ><DD ><P >Performs a hexadecimal, octal, decimal, or ASCII dump of a binary file. This command is the rough equivalent of <B CLASS="COMMAND" >od</B >, above, but not nearly as useful. May be used to view the contents of a binary file, in combination with <A HREF="extmisc.html#DDREF" >dd</A > and <A HREF="filearchiv.html#LESSREF" >less</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 dd if=/bin/ls | hexdump -C | less 2 # The -C option nicely formats the output in tabular form.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="OBJDUMPREF" ></A ><B CLASS="COMMAND" >objdump</B ></DT ><DD ><P >Displays information about an object file or binary executable in either hexadecimal form or as a disassembled listing (with the <TT CLASS="OPTION" >-d</TT > option).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >objdump -d /bin/ls</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/bin/ls: file format elf32-i386 Disassembly of section .init: 080490bc <.init>: 80490bc: 55 push %ebp 80490bd: 89 e5 mov %esp,%ebp . . .</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="MCOOKIEREF" ></A ><B CLASS="COMMAND" >mcookie</B ></DT ><DD ><P >This command generates a <SPAN CLASS="QUOTE" >"magic cookie,"</SPAN > a 128-bit (32-character) pseudorandom hexadecimal number, normally used as an authorization <SPAN CLASS="QUOTE" >"signature"</SPAN > by the X server. This also available for use in a script as a <SPAN CLASS="QUOTE" >"quick 'n dirty"</SPAN > random number.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 random000=$(mcookie)</PRE ></TD ></TR ></TABLE ></P ><P >Of course, a script could use <A HREF="filearchiv.html#MD5SUMREF" >md5sum</A > for the same purpose.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Generate md5 checksum on the script itself. 2 random001=`md5sum $0 | awk '{print $1}'` 3 # Uses 'awk' to strip off the filename.</PRE ></TD ></TR ></TABLE ></P ><P >The <B CLASS="COMMAND" >mcookie</B > command gives yet another way to generate a <SPAN CLASS="QUOTE" >"unique"</SPAN > filename.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="TEMPFILENAME" ></A ><P ><B >Example 16-62. Filename generator</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # tempfile-name.sh: temp filename generator 3 4 BASE_STR=`mcookie` # 32-character magic cookie. 5 POS=11 # Arbitrary position in magic cookie string. 6 LEN=5 # Get $LEN consecutive characters. 7 8 prefix=temp # This is, after all, a "temp" file. 9 # For more "uniqueness," generate the 10 #+ filename prefix using the same method 11 #+ as the suffix, below. 12 13 suffix=${BASE_STR:POS:LEN} 14 # Extract a 5-character string, 15 #+ starting at position 11. 16 17 temp_filename=$prefix.$suffix 18 # Construct the filename. 19 20 echo "Temp filename = "$temp_filename"" 21 22 # sh tempfile-name.sh 23 # Temp filename = temp.e19ea 24 25 # Compare this method of generating "unique" filenames 26 #+ with the 'date' method in ex51.sh. 27 28 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="UNITSREF" ></A ><B CLASS="COMMAND" >units</B ></DT ><DD ><P >This utility converts between different <I CLASS="FIRSTTERM" >units of measure</I >. While normally invoked in interactive mode, <B CLASS="COMMAND" >units</B > may find use in a script.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="UNITCONVERSION" ></A ><P ><B >Example 16-63. Converting meters to miles</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # unit-conversion.sh 3 # Must have 'units' utility installed. 4 5 6 convert_units () # Takes as arguments the units to convert. 7 { 8 cf=$(units "$1" "$2" | sed --silent -e '1p' | awk '{print $2}') 9 # Strip off everything except the actual conversion factor. 10 echo "$cf" 11 } 12 13 Unit1=miles 14 Unit2=meters 15 cfactor=`convert_units $Unit1 $Unit2` 16 quantity=3.73 17 18 result=$(echo $quantity*$cfactor | bc) 19 20 echo "There are $result $Unit2 in $quantity $Unit1." 21 22 # What happens if you pass incompatible units, 23 #+ such as "acres" and "miles" to the function? 24 25 exit 0 26 27 # Exercise: Edit this script to accept command-line parameters, 28 # with appropriate error checking, of course.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="M4REF" ></A ><B CLASS="COMMAND" >m4</B ></DT ><DD ><P >A hidden treasure, <B CLASS="COMMAND" >m4</B > is a powerful macro <A NAME="AEN14523" HREF="#FTN.AEN14523" >[6]</A > processing filter, virtually a complete language. Although originally written as a pre-processor for <I CLASS="FIRSTTERM" >RatFor</I >, <B CLASS="COMMAND" >m4</B > turned out to be useful as a stand-alone utility. In fact, <B CLASS="COMMAND" >m4</B > combines some of the functionality of <A HREF="internal.html#EVALREF" >eval</A >, <A HREF="textproc.html#TRREF" >tr</A >, and <A HREF="awk.html#AWKREF" >awk</A >, in addition to its extensive macro expansion facilities.</P ><P >The April, 2002 issue of <A HREF="http://www.linuxjournal.com" TARGET="_top" ><I CLASS="CITETITLE" >Linux Journal</I ></A > has a very nice article on <B CLASS="COMMAND" >m4</B > and its uses.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="M4" ></A ><P ><B >Example 16-64. Using <I CLASS="FIRSTTERM" >m4</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # m4.sh: Using the m4 macro processor 3 4 # Strings 5 string=abcdA01 6 echo "len($string)" | m4 # 7 7 echo "substr($string,4)" | m4 # A01 8 echo "regexp($string,[0-1][0-1],\&Z)" | m4 # 01Z 9 10 # Arithmetic 11 var=99 12 echo "incr($var)" | m4 # 100 13 echo "eval($var / 3)" | m4 # 33 14 15 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="XMESSAGEREF" ></A ><B CLASS="COMMAND" >xmessage</B ></DT ><DD ><P >This X-based variant of <A HREF="internal.html#ECHOREF" >echo</A > pops up a message/query window on the desktop.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 xmessage Left click to continue -button okay</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="ZENITYREF" ></A ><B CLASS="COMMAND" >zenity</B ></DT ><DD ><P >The <A HREF="http://freshmeat.net/projects/zenity" TARGET="_top" >zenity</A > utility is adept at displaying <I CLASS="FIRSTTERM" >GTK+</I > dialog <A HREF="assortedtips.html#WIDGETREF" >widgets</A > and <A HREF="assortedtips.html#ZENITYREF2" >very suitable for scripting purposes</A >.</P ></DD ><DT ><A NAME="DOEXECREF" ></A ><B CLASS="COMMAND" >doexec</B ></DT ><DD ><P >The <B CLASS="COMMAND" >doexec</B > command enables passing an arbitrary list of arguments to a <I CLASS="FIRSTTERM" >binary executable</I >. In particular, passing <TT CLASS="PARAMETER" ><I >argv[0]</I ></TT > (which corresponds to <A HREF="othertypesv.html#POSPARAMREF1" >$0</A > in a script) lets the executable be invoked by various names, and it can then carry out different sets of actions, according to the name by which it was called. What this amounts to is roundabout way of passing options to an executable.</P ><P >For example, the <TT CLASS="FILENAME" >/usr/local/bin</TT > directory might contain a binary called <SPAN CLASS="QUOTE" >"aaa"</SPAN >. Invoking <B CLASS="COMMAND" >doexec /usr/local/bin/aaa list</B > would <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >list</I ></SPAN > all those files in the current working directory beginning with an <SPAN CLASS="QUOTE" >"a"</SPAN >, while invoking (the same executable with) <B CLASS="COMMAND" >doexec /usr/local/bin/aaa delete </B > would <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >delete</I ></SPAN > those files.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The various behaviors of the executable must be defined within the code of the executable itself, analogous to something like the following in a shell script: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 case `basename $0` in 2 "name1" ) do_something;; 3 "name2" ) do_something_else;; 4 "name3" ) do_yet_another_thing;; 5 * ) bail_out;; 6 esac</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><B CLASS="COMMAND" >dialog</B ></DT ><DD ><P >The <A HREF="assortedtips.html#DIALOGREF" >dialog</A > family of tools provide a method of calling interactive <SPAN CLASS="QUOTE" >"dialog"</SPAN > boxes from a script. The more elaborate variations of <B CLASS="COMMAND" >dialog</B > -- <B CLASS="COMMAND" >gdialog</B >, <B CLASS="COMMAND" >Xdialog</B >, and <B CLASS="COMMAND" >kdialog</B > -- actually invoke X-Windows <A HREF="assortedtips.html#WIDGETREF" >widgets</A >.</P ></DD ><DT ><A NAME="SOXREF" ></A ><B CLASS="COMMAND" >sox</B ></DT ><DD ><P >The <B CLASS="COMMAND" >sox</B >, or <SPAN CLASS="QUOTE" >"<B CLASS="COMMAND" >so</B >und e<B CLASS="COMMAND" >x</B >change"</SPAN > command plays and performs transformations on sound files. In fact, the <TT CLASS="FILENAME" >/usr/bin/play</TT > executable (now deprecated) is nothing but a shell wrapper for <I CLASS="FIRSTTERM" >sox</I >.</P ><P >For example, <B CLASS="COMMAND" >sox soundfile.wav soundfile.au</B > changes a WAV sound file into a (Sun audio format) AU sound file.</P ><P >Shell scripts are ideally suited for batch-processing <B CLASS="COMMAND" >sox</B > operations on sound files. For examples, see the <A HREF="http://osl.iu.edu/~tveldhui/radio/" TARGET="_top" > Linux Radio Timeshift HOWTO</A > and the <A HREF="http://savannah.nongnu.org/projects/audiodo" TARGET="_top" >MP3do Project</A >.</P ></DD ></DL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN14105" HREF="extmisc.html#AEN14105" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This is actually a script adapted from the Debian Linux distribution.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN14214" HREF="extmisc.html#AEN14214" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The <I CLASS="FIRSTTERM" >print queue</I > is the group of jobs <SPAN CLASS="QUOTE" >"waiting in line"</SPAN > to be printed.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN14218" HREF="extmisc.html#AEN14218" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Large mechanical <I CLASS="FIRSTTERM" >line printers</I > printed a single line of type at a time onto joined sheets of <I CLASS="FIRSTTERM" >greenbar</I > paper, to the accompaniment of <A HREF="http://www.columbia.edu/cu/computinghistory/1403.html" TARGET="_top" >a great deal of noise</A >. The hardcopy thusly printed was referred to as a <I CLASS="FIRSTTERM" >printout</I >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN14280" HREF="extmisc.html#AEN14280" >[4]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >For an excellent overview of this topic, see Andy Vaught's article, <A HREF="http://www2.linuxjournal.com/lj-issues/issue41/2156.html" TARGET="_top" >Introduction to Named Pipes</A >, in the September, 1997 issue of <A HREF="http://www.linuxjournal.com" TARGET="_top" ><I CLASS="CITETITLE" >Linux Journal</I ></A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN14318" HREF="extmisc.html#AEN14318" >[5]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><SPAN CLASS="ACRONYM" >EBCDIC</SPAN > (pronounced <SPAN CLASS="QUOTE" >"ebb-sid-ick"</SPAN >) is an acronym for Extended Binary Coded Decimal Interchange Code, an obsolete IBM data format. A bizarre application of the <TT CLASS="OPTION" >conv=ebcdic</TT > option of <B CLASS="COMMAND" >dd</B > is as a quick 'n easy, but not very secure text file encoder. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat $file | dd conv=swab,ebcdic > $file_encrypted 2 # Encode (looks like gibberish). 3 # Might as well switch bytes (swab), too, for a little extra obscurity. 4 5 cat $file_encrypted | dd conv=swab,ascii > $file_plaintext 6 # Decode.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN14523" HREF="extmisc.html#AEN14523" >[6]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >A <I CLASS="FIRSTTERM" >macro</I > is a symbolic constant that expands into a command string or a set of operations on parameters. Simply put, it's a shortcut or abbreviation.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="mathc.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="system.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Math Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="external.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >System and Administrative Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/filearchiv.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >File and Archiving Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="External Filters, Programs and Commands" HREF="external.html"><LINK REL="PREVIOUS" TITLE="Text Processing Commands" HREF="textproc.html"><LINK REL="NEXT" TITLE="Communications Commands" HREF="communications.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="textproc.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 16. External Filters, Programs and Commands</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="communications.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="FILEARCHIV" ></A >16.5. File and Archiving Commands</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="FAARCHIVING1" ></A >Archiving</B ></P ><DL ><DT ><A NAME="TARREF" ></A ><B CLASS="COMMAND" >tar</B ></DT ><DD ><P >The standard UNIX archiving utility. <A NAME="AEN11885" HREF="#FTN.AEN11885" >[1]</A > Originally a <I CLASS="WORDASWORD" >Tape ARchiving</I > program, it has developed into a general purpose package that can handle all manner of archiving with all types of destination devices, ranging from tape drives to regular files to even <TT CLASS="FILENAME" >stdout</TT > (see <A HREF="special-chars.html#EX58" >Example 3-4</A >). GNU <I CLASS="FIRSTTERM" >tar</I > has been patched to accept various compression filters, for example: <B CLASS="COMMAND" >tar czvf archive_name.tar.gz *</B >, which recursively archives and <A HREF="filearchiv.html#GZIPREF" >gzips</A > all files in a directory tree except <A HREF="external.html#DOTFILESREF" >dotfiles</A > in the current working directory (<A HREF="variables2.html#PWDREF" >$PWD</A >). <A NAME="AEN11896" HREF="#FTN.AEN11896" >[2]</A > </P ><P >Some useful <B CLASS="COMMAND" >tar</B > options: <OL TYPE="1" ><LI ><P ><TT CLASS="OPTION" >-c</TT > create (a new archive)</P ></LI ><LI ><P ><TT CLASS="OPTION" >-x</TT > extract (files from existing archive)</P ></LI ><LI ><P ><TT CLASS="OPTION" >--delete</TT > delete (files from existing archive)</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This option will not work on magnetic tape devices.</P ></TD ></TR ></TABLE ></DIV ></LI ><LI ><P ><TT CLASS="OPTION" >-r</TT > append (files to existing archive)</P ></LI ><LI ><P ><TT CLASS="OPTION" >-A</TT > append (<I CLASS="FIRSTTERM" >tar</I > files to existing archive)</P ></LI ><LI ><P ><TT CLASS="OPTION" >-t</TT > list (contents of existing archive)</P ></LI ><LI ><P ><TT CLASS="OPTION" >-u</TT > update archive</P ></LI ><LI ><P ><TT CLASS="OPTION" >-d</TT > compare archive with specified filesystem</P ></LI ><LI ><P ><TT CLASS="OPTION" >--after-date</TT > only process files with a date stamp <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >after</I ></SPAN > specified date</P ></LI ><LI ><P ><TT CLASS="OPTION" >-z</TT > <A HREF="filearchiv.html#GZIPREF" >gzip</A > the archive</P ><P >(compress or uncompress, depending on whether combined with the <TT CLASS="OPTION" >-c</TT > or <TT CLASS="OPTION" >-x</TT >) option</P ></LI ><LI ><P ><TT CLASS="OPTION" >-j</TT > <A HREF="filearchiv.html#BZIPREF" >bzip2</A > the archive</P ></LI ></OL > </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It may be difficult to recover data from a corrupted <I CLASS="FIRSTTERM" >gzipped</I > tar archive. When archiving important files, make multiple backups.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SHARREF" ></A ><B CLASS="COMMAND" >shar</B ></DT ><DD ><P ><I CLASS="FIRSTTERM" >Shell archiving</I > utility. The text and/or binary files in a shell archive are concatenated without compression, and the resultant archive is essentially a shell script, complete with <SPAN CLASS="TOKEN" >#!/bin/sh</SPAN > header, containing all the necessary unarchiving commands, as well as the files themselves. Unprintable binary characters in the target file(s) are converted to printable ASCII characters in the output <I CLASS="FIRSTTERM" >shar</I > file. <I CLASS="FIRSTTERM" >Shar archives</I > still show up in Usenet newsgroups, but otherwise <B CLASS="COMMAND" >shar</B > has been replaced by <B CLASS="COMMAND" >tar</B >/<B CLASS="COMMAND" >gzip</B >. The <B CLASS="COMMAND" >unshar</B > command unpacks <I CLASS="FIRSTTERM" >shar</I > archives.</P ><P >The <B CLASS="COMMAND" >mailshar</B > command is a Bash script that uses <B CLASS="COMMAND" >shar</B > to concatenate multiple files into a single one for e-mailing. This script supports compression and <A HREF="filearchiv.html#UUENCODEREF" >uuencoding</A >.</P ></DD ><DT ><A NAME="ARREF" ></A ><B CLASS="COMMAND" >ar</B ></DT ><DD ><P >Creation and manipulation utility for archives, mainly used for binary object file libraries.</P ></DD ><DT ><A NAME="RPMREF" ></A ><B CLASS="COMMAND" >rpm</B ></DT ><DD ><P >The <I CLASS="FIRSTTERM" >Red Hat Package Manager</I >, or <B CLASS="COMMAND" >rpm</B > utility provides a wrapper for source or binary archives. It includes commands for installing and checking the integrity of packages, among other things.</P ><P >A simple <B CLASS="COMMAND" >rpm -i package_name.rpm</B > usually suffices to install a package, though there are many more options available.</P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><TT CLASS="USERINPUT" ><B >rpm -qf</B ></TT > identifies which package a file originates from.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >rpm -qf /bin/ls</B ></TT > <TT CLASS="COMPUTEROUTPUT" >coreutils-5.2.1-31</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><TT CLASS="USERINPUT" ><B >rpm -qa</B ></TT > gives a complete list of all installed <I CLASS="FIRSTTERM" >rpm</I > packages on a given system. An <TT CLASS="USERINPUT" ><B >rpm -qa package_name</B ></TT > lists only the package(s) corresponding to <TT CLASS="FILENAME" >package_name</TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >rpm -qa</B ></TT > <TT CLASS="COMPUTEROUTPUT" >redhat-logos-1.1.3-1 glibc-2.2.4-13 cracklib-2.7-12 dosfstools-2.7-1 gdbm-1.8.0-10 ksymoops-2.4.1-1 mktemp-1.5-11 perl-5.6.0-17 reiserfs-utils-3.x.0j-2 ...</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >rpm -qa docbook-utils</B ></TT > <TT CLASS="COMPUTEROUTPUT" >docbook-utils-0.6.9-2</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >rpm -qa docbook | grep docbook</B ></TT > <TT CLASS="COMPUTEROUTPUT" >docbook-dtd31-sgml-1.0-10 docbook-style-dsssl-1.64-3 docbook-dtd30-sgml-1.0-10 docbook-dtd40-sgml-1.0-11 docbook-utils-pdf-0.6.9-2 docbook-dtd41-sgml-1.0-10 docbook-utils-0.6.9-2</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="CPIOREF" ></A ><B CLASS="COMMAND" >cpio</B ></DT ><DD ><P >This specialized archiving copy command (<B CLASS="COMMAND" >c</B >o<B CLASS="COMMAND" >p</B >y <B CLASS="COMMAND" >i</B >nput and <B CLASS="COMMAND" >o</B >utput) is rarely seen any more, having been supplanted by <B CLASS="COMMAND" >tar</B >/<B CLASS="COMMAND" >gzip</B >. It still has its uses, such as moving a directory tree. With an appropriate block size (for copying) specified, it can be appreciably faster than <B CLASS="COMMAND" >tar</B >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX48" ></A ><P ><B >Example 16-30. Using <I CLASS="FIRSTTERM" >cpio</I > to move a directory tree</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Copying a directory tree using cpio. 4 5 # Advantages of using 'cpio': 6 # Speed of copying. It's faster than 'tar' with pipes. 7 # Well suited for copying special files (named pipes, etc.) 8 #+ that 'cp' may choke on. 9 10 ARGS=2 11 E_BADARGS=65 12 13 if [ $# -ne "$ARGS" ] 14 then 15 echo "Usage: `basename $0` source destination" 16 exit $E_BADARGS 17 fi 18 19 source="$1" 20 destination="$2" 21 22 ################################################################### 23 find "$source" -depth | cpio -admvp "$destination" 24 # ^^^^^ ^^^^^ 25 # Read the 'find' and 'cpio' info pages to decipher these options. 26 # The above works only relative to $PWD (current directory) . . . 27 #+ full pathnames are specified. 28 ################################################################### 29 30 31 # Exercise: 32 # -------- 33 34 # Add code to check the exit status ($?) of the 'find | cpio' pipe 35 #+ and output appropriate error messages if anything went wrong. 36 37 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="RPM2CPIOREF" ></A ><B CLASS="COMMAND" >rpm2cpio</B ></DT ><DD ><P >This command extracts a <B CLASS="COMMAND" >cpio</B > archive from an <A HREF="filearchiv.html#RPMREF" >rpm</A > one.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="DERPM" ></A ><P ><B >Example 16-31. Unpacking an <I CLASS="FIRSTTERM" >rpm</I > archive</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # de-rpm.sh: Unpack an 'rpm' archive 3 4 : ${1?"Usage: `basename $0` target-file"} 5 # Must specify 'rpm' archive name as an argument. 6 7 8 TEMPFILE=$$.cpio # Tempfile with "unique" name. 9 # $$ is process ID of script. 10 11 rpm2cpio < $1 > $TEMPFILE # Converts rpm archive into 12 #+ cpio archive. 13 cpio --make-directories -F $TEMPFILE -i # Unpacks cpio archive. 14 rm -f $TEMPFILE # Deletes cpio archive. 15 16 exit 0 17 18 # Exercise: 19 # Add check for whether 1) "target-file" exists and 20 #+ 2) it is an rpm archive. 21 # Hint: Parse output of 'file' command.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="PAXREF" ></A ><B CLASS="COMMAND" >pax</B ></DT ><DD ><P >The <I CLASS="FIRSTTERM" >pax</I > <B CLASS="COMMAND" >p</B >ortable <B CLASS="COMMAND" >a</B >rchive e<B CLASS="COMMAND" >x</B >change toolkit facilitates periodic file backups and is designed to be cross-compatible between various flavors of UNIX. It was designed to replace <A HREF="filearchiv.html#TARREF" >tar</A > and <A HREF="filearchiv.html#CPIOREF" >cpio</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 pax -wf daily_backup.pax ~/linux-server/files 2 # Creates a tar archive of all files in the target directory. 3 # Note that the options to pax must be in the correct order -- 4 #+ pax -fw has an entirely different effect. 5 6 pax -f daily_backup.pax 7 # Lists the files in the archive. 8 9 pax -rf daily_backup.pax ~/bsd-server/files 10 # Restores the backed-up files from the Linux machine 11 #+ onto a BSD one.</PRE ></TD ></TR ></TABLE > </P ><P >Note that <I CLASS="FIRSTTERM" >pax</I > handles many of the standard archiving and compression commands.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="FACOMPRESSION1" ></A >Compression</B ></P ><DL ><DT ><A NAME="GZIPREF" ></A ><B CLASS="COMMAND" >gzip</B ></DT ><DD ><P >The standard GNU/UNIX compression utility, replacing the inferior and proprietary <B CLASS="COMMAND" >compress</B >. The corresponding decompression command is <B CLASS="COMMAND" >gunzip</B >, which is the equivalent of <B CLASS="COMMAND" >gzip -d</B >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="OPTION" >-c</TT > option sends the output of <B CLASS="COMMAND" >gzip</B > to <TT CLASS="FILENAME" >stdout</TT >. This is useful when <A HREF="special-chars.html#PIPEREF" >piping</A > to other commands.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="ZCATREF" ></A ></P ><P >The <B CLASS="COMMAND" >zcat</B > filter decompresses a <I CLASS="FIRSTTERM" >gzipped</I > file to <TT CLASS="FILENAME" >stdout</TT >, as possible input to a pipe or redirection. This is, in effect, a <B CLASS="COMMAND" >cat</B > command that works on compressed files (including files processed with the older <A HREF="filearchiv.html#COMPRESSREF" >compress</A > utility). The <B CLASS="COMMAND" >zcat</B > command is equivalent to <B CLASS="COMMAND" >gzip -dc</B >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >On some commercial UNIX systems, <B CLASS="COMMAND" >zcat</B > is a synonym for <B CLASS="COMMAND" >uncompress -c</B >, and will not work on <I CLASS="FIRSTTERM" >gzipped</I > files.</P ></TD ></TR ></TABLE ></DIV ><P >See also <A HREF="comparison-ops.html#EX14" >Example 7-7</A >.</P ></DD ><DT ><A NAME="BZIPREF" ></A ><B CLASS="COMMAND" >bzip2</B ></DT ><DD ><P >An alternate compression utility, usually more efficient (but slower) than <B CLASS="COMMAND" >gzip</B >, especially on large files. The corresponding decompression command is <B CLASS="COMMAND" >bunzip2</B >.</P ><P >Similar to the <B CLASS="COMMAND" >zcat</B > command, <B CLASS="COMMAND" >bzcat</B > decompresses a <I CLASS="FIRSTTERM" >bzipped2-ed</I > file to <TT CLASS="FILENAME" >stdout</TT >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Newer versions of <A HREF="filearchiv.html#TARREF" >tar</A > have been patched with <B CLASS="COMMAND" >bzip2</B > support.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="COMPRESSREF" ></A ><B CLASS="COMMAND" >compress</B >, <A NAME="UNCOMPRESSREF" ></A ><B CLASS="COMMAND" >uncompress</B ></DT ><DD ><P >This is an older, proprietary compression utility found in commercial UNIX distributions. The more efficient <B CLASS="COMMAND" >gzip</B > has largely replaced it. Linux distributions generally include a <B CLASS="COMMAND" >compress</B > workalike for compatibility, although <B CLASS="COMMAND" >gunzip</B > can unarchive files treated with <B CLASS="COMMAND" >compress</B >.</P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >znew</B > command transforms <I CLASS="FIRSTTERM" >compressed</I > files into <I CLASS="FIRSTTERM" >gzipped</I > ones.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SQREF" ></A ><B CLASS="COMMAND" >sq</B ></DT ><DD ><P >Yet another compression (<B CLASS="COMMAND" >sq</B >ueeze) utility, a filter that works only on sorted <A HREF="special-chars.html#ASCIIDEF" >ASCII</A > word lists. It uses the standard invocation syntax for a filter, <B CLASS="COMMAND" >sq < input-file > output-file</B >. Fast, but not nearly as efficient as <A HREF="filearchiv.html#GZIPREF" >gzip</A >. The corresponding uncompression filter is <B CLASS="COMMAND" >unsq</B >, invoked like <B CLASS="COMMAND" >sq</B >.</P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The output of <B CLASS="COMMAND" >sq</B > may be piped to <B CLASS="COMMAND" >gzip</B > for further compression.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="ZIPREF" ></A ><B CLASS="COMMAND" >zip</B >, <B CLASS="COMMAND" >unzip</B ></DT ><DD ><P >Cross-platform file archiving and compression utility compatible with DOS <I CLASS="FIRSTTERM" >pkzip.exe</I >. <SPAN CLASS="QUOTE" >"Zipped"</SPAN > archives seem to be a more common medium of file exchange on the Internet than <SPAN CLASS="QUOTE" >"tarballs."</SPAN ></P ></DD ><DT ><A NAME="UNARCREF" ></A ><B CLASS="COMMAND" >unarc</B >, <B CLASS="COMMAND" >unarj</B >, <B CLASS="COMMAND" >unrar</B ></DT ><DD ><P >These Linux utilities permit unpacking archives compressed with the DOS <I CLASS="FIRSTTERM" >arc.exe</I >, <I CLASS="FIRSTTERM" >arj.exe</I >, and <I CLASS="FIRSTTERM" >rar.exe</I > programs.</P ></DD ><DT ><A NAME="LZMAREF" ></A ><B CLASS="COMMAND" >lzma</B >, <B CLASS="COMMAND" >unlzma</B >, <B CLASS="COMMAND" >lzcat</B ></DT ><DD ><P >Highly efficient Lempel-Ziv-Markov compression. The syntax of <I CLASS="FIRSTTERM" >lzma</I > is similar to that of <I CLASS="FIRSTTERM" >gzip</I >. The <A HREF="http://www.7-zip.org/sdk.html" TARGET="_top" >7-zip Website</A > has more information.</P ></DD ><DT ><A NAME="XZREF" ></A ><B CLASS="COMMAND" >xz</B >, <B CLASS="COMMAND" >unxz</B >, <B CLASS="COMMAND" >xzcat</B ></DT ><DD ><P >A new high-efficiency compression tool, backward compatible with <I CLASS="FIRSTTERM" >lzma</I >, and with an invocation syntax similar to <I CLASS="FIRSTTERM" >gzip</I >. For more information, see the <A HREF="http://en.wikipedia.org/wiki/Xz" TARGET="_top" >Wikipedia entry</A >.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="FAINFORMATION1" ></A >File Information</B ></P ><DL ><DT ><A NAME="FILEREF" ></A ><B CLASS="COMMAND" >file</B ></DT ><DD ><P >A utility for identifying file types. The command <TT CLASS="USERINPUT" ><B >file file-name</B ></TT > will return a file specification for <TT CLASS="FILENAME" >file-name</TT >, such as <TT CLASS="COMPUTEROUTPUT" >ascii text</TT > or <TT CLASS="COMPUTEROUTPUT" >data</TT >. It references the <A HREF="sha-bang.html#MAGNUMREF" >magic numbers</A > found in <TT CLASS="FILENAME" >/usr/share/magic</TT >, <TT CLASS="FILENAME" >/etc/magic</TT >, or <TT CLASS="FILENAME" >/usr/lib/magic</TT >, depending on the Linux/UNIX distribution.</P ><P >The <TT CLASS="OPTION" >-f</TT > option causes <B CLASS="COMMAND" >file</B > to run in <A HREF="timedate.html#BATCHPROCREF" >batch</A > mode, to read from a designated file a list of filenames to analyze. The <TT CLASS="OPTION" >-z</TT > option, when used on a compressed target file, forces an attempt to analyze the uncompressed file type.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >file test.tar.gz</B ></TT > <TT CLASS="COMPUTEROUTPUT" >test.tar.gz: gzip compressed data, deflated, last modified: Sun Sep 16 13:34:51 2001, os: Unix</TT > <TT CLASS="PROMPT" >bash </TT ><TT CLASS="USERINPUT" ><B >file -z test.tar.gz</B ></TT > <TT CLASS="COMPUTEROUTPUT" >test.tar.gz: GNU tar archive (gzip compressed data, deflated, last modified: Sun Sep 16 13:34:51 2001, os: Unix)</TT > </PRE ></TD ></TR ></TABLE > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Find sh and Bash scripts in a given directory: 2 3 DIRECTORY=/usr/local/bin 4 KEYWORD=Bourne 5 # Bourne and Bourne-Again shell scripts 6 7 file $DIRECTORY/* | fgrep $KEYWORD 8 9 # Output: 10 11 # /usr/local/bin/burn-cd: Bourne-Again shell script text executable 12 # /usr/local/bin/burnit: Bourne-Again shell script text executable 13 # /usr/local/bin/cassette.sh: Bourne shell script text executable 14 # /usr/local/bin/copy-cd: Bourne-Again shell script text executable 15 # . . .</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="STRIPC" ></A ><P ><B >Example 16-32. Stripping comments from C program files</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # strip-comment.sh: Strips out the comments (/* COMMENT */) in a C program. 3 4 E_NOARGS=0 5 E_ARGERROR=66 6 E_WRONG_FILE_TYPE=67 7 8 if [ $# -eq "$E_NOARGS" ] 9 then 10 echo "Usage: `basename $0` C-program-file" >&2 # Error message to stderr. 11 exit $E_ARGERROR 12 fi 13 14 # Test for correct file type. 15 type=`file $1 | awk '{ print $2, $3, $4, $5 }'` 16 # "file $1" echoes file type . . . 17 # Then awk removes the first field, the filename . . . 18 # Then the result is fed into the variable "type." 19 correct_type="ASCII C program text" 20 21 if [ "$type" != "$correct_type" ] 22 then 23 echo 24 echo "This script works on C program files only." 25 echo 26 exit $E_WRONG_FILE_TYPE 27 fi 28 29 30 # Rather cryptic sed script: 31 #-------- 32 sed ' 33 /^\/\*/d 34 /.*\*\//d 35 ' $1 36 #-------- 37 # Easy to understand if you take several hours to learn sed fundamentals. 38 39 40 # Need to add one more line to the sed script to deal with 41 #+ case where line of code has a comment following it on same line. 42 # This is left as a non-trivial exercise. 43 44 # Also, the above code deletes non-comment lines with a "*/" . . . 45 #+ not a desirable result. 46 47 exit 0 48 49 50 # ---------------------------------------------------------------- 51 # Code below this line will not execute because of 'exit 0' above. 52 53 # Stephane Chazelas suggests the following alternative: 54 55 usage() { 56 echo "Usage: `basename $0` C-program-file" >&2 57 exit 1 58 } 59 60 WEIRD=`echo -n -e '\377'` # or WEIRD=$'\377' 61 [[ $# -eq 1 ]] || usage 62 case `file "$1"` in 63 *"C program text"*) sed -e "s%/\*%${WEIRD}%g;s%\*/%${WEIRD}%g" "$1" \ 64 | tr '\377\n' '\n\377' \ 65 | sed -ne 'p;n' \ 66 | tr -d '\n' | tr '\377' '\n';; 67 *) usage;; 68 esac 69 70 # This is still fooled by things like: 71 # printf("/*"); 72 # or 73 # /* /* buggy embedded comment */ 74 # 75 # To handle all special cases (comments in strings, comments in string 76 #+ where there is a \", \\" ...), 77 #+ the only way is to write a C parser (using lex or yacc perhaps?). 78 79 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="WHICHREF" ></A ><B CLASS="COMMAND" >which</B ></DT ><DD ><P ><B CLASS="COMMAND" >which command</B > gives the full path to <SPAN CLASS="QUOTE" >"command."</SPAN > This is useful for finding out whether a particular command or utility is installed on the system.</P ><P ><TT CLASS="USERINPUT" ><B >$bash which rm</B ></TT > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >/usr/bin/rm</TT ></PRE ></TD ></TR ></TABLE > </P ><P >For an interesting use of this command, see <A HREF="colorizing.html#HORSERACE" >Example 36-16</A >.</P ></DD ><DT ><A NAME="WHEREISREF" ></A ><B CLASS="COMMAND" >whereis</B ></DT ><DD ><P >Similar to <B CLASS="COMMAND" >which</B >, above, <B CLASS="COMMAND" >whereis command</B > gives the full path to <SPAN CLASS="QUOTE" >"command,"</SPAN > but also to its <A HREF="external.html#MANREF" >manpage</A >.</P ><P ><TT CLASS="USERINPUT" ><B >$bash whereis rm</B ></TT > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >rm: /bin/rm /usr/share/man/man1/rm.1.bz2</TT ></PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="WHATISREF" ></A ><B CLASS="COMMAND" >whatis</B ></DT ><DD ><P ><B CLASS="COMMAND" >whatis command</B > looks up <SPAN CLASS="QUOTE" >"command"</SPAN > in the <TT CLASS="REPLACEABLE" ><I >whatis</I ></TT > database. This is useful for identifying system commands and important configuration files. Consider it a simplified <B CLASS="COMMAND" >man</B > command.</P ><P ><TT CLASS="USERINPUT" ><B >$bash whatis whatis</B ></TT > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >whatis (1) - search the whatis database for complete words</TT ></PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="WHAT" ></A ><P ><B >Example 16-33. Exploring <TT CLASS="FILENAME" >/usr/X11R6/bin</TT ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # What are all those mysterious binaries in /usr/X11R6/bin? 4 5 DIRECTORY="/usr/X11R6/bin" 6 # Try also "/bin", "/usr/bin", "/usr/local/bin", etc. 7 8 for file in $DIRECTORY/* 9 do 10 whatis `basename $file` # Echoes info about the binary. 11 done 12 13 exit 0 14 15 # Note: For this to work, you must create a "whatis" database 16 #+ with /usr/sbin/makewhatis. 17 # You may wish to redirect output of this script, like so: 18 # ./what.sh >>whatis.db 19 # or view it a page at a time on stdout, 20 # ./what.sh | less</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="loops.html#FILEINFO" >Example 11-3</A >.</P ></DD ><DT ><A NAME="VDIRREF" ></A ><B CLASS="COMMAND" >vdir</B ></DT ><DD ><P >Show a detailed directory listing. The effect is similar to <A HREF="external.html#LSREF" >ls -lb</A >.</P ><P >This is one of the GNU <I CLASS="FIRSTTERM" >fileutils</I >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >vdir</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 10 -rw-r--r-- 1 bozo bozo 4034 Jul 18 22:04 data1.xrolo -rw-r--r-- 1 bozo bozo 4602 May 25 13:58 data1.xrolo.bak -rw-r--r-- 1 bozo bozo 877 Dec 17 2000 employment.xrolo</TT > <TT CLASS="PROMPT" >bash </TT ><TT CLASS="USERINPUT" ><B >ls -l</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 10 -rw-r--r-- 1 bozo bozo 4034 Jul 18 22:04 data1.xrolo -rw-r--r-- 1 bozo bozo 4602 May 25 13:58 data1.xrolo.bak -rw-r--r-- 1 bozo bozo 877 Dec 17 2000 employment.xrolo</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="LOCATEREF" ></A ><B CLASS="COMMAND" >locate</B >, <A NAME="SLOCATEREF" ></A ><B CLASS="COMMAND" >slocate</B ></DT ><DD ><P >The <B CLASS="COMMAND" >locate</B > command searches for files using a database stored for just that purpose. The <B CLASS="COMMAND" >slocate</B > command is the secure version of <B CLASS="COMMAND" >locate</B > (which may be aliased to <B CLASS="COMMAND" >slocate</B >).</P ><P ><TT CLASS="USERINPUT" ><B >$bash locate hickson</B ></TT > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >/usr/lib/xephem/catalogs/hickson.edb</TT ></PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="GETFACLREF" ></A ><B CLASS="COMMAND" >getfacl</B >, <A NAME="SETFACLREF" ></A ><B CLASS="COMMAND" >setfacl</B ></DT ><DD ><P >These commands <I CLASS="FIRSTTERM" >retrieve</I > or <I CLASS="FIRSTTERM" >set</I > the <B CLASS="COMMAND" >f</B >ile <B CLASS="COMMAND" >a</B >ccess <B CLASS="COMMAND" >c</B >ontrol <B CLASS="COMMAND" >l</B >ist -- the <I CLASS="FIRSTTERM" >owner</I >, <I CLASS="FIRSTTERM" >group</I >, and file permissions.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >getfacl *</B ></TT > <TT CLASS="COMPUTEROUTPUT" ># file: test1.txt # owner: bozo # group: bozgrp user::rw- group::rw- other::r-- # file: test2.txt # owner: bozo # group: bozgrp user::rw- group::rw- other::r--</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >setfacl -m u:bozo:rw yearly_budget.csv</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >getfacl yearly_budget.csv</B ></TT > <TT CLASS="COMPUTEROUTPUT" ># file: yearly_budget.csv # owner: accountant # group: budgetgrp user::rw- user:bozo:rw- user:accountant:rw- group::rw- mask::rw- other::r--</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="READLINKREF" ></A ><B CLASS="COMMAND" >readlink</B ></DT ><DD ><P >Disclose the file that a symbolic link points to.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >readlink /usr/bin/awk</B ></TT > <TT CLASS="COMPUTEROUTPUT" >../../bin/gawk</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="STRINGSREF" ></A ><B CLASS="COMMAND" >strings</B ></DT ><DD ><P >Use the <B CLASS="COMMAND" >strings</B > command to find printable strings in a binary or data file. It will list sequences of printable characters found in the target file. This might be handy for a quick 'n dirty examination of a core dump or for looking at an unknown graphic image file (<TT CLASS="USERINPUT" ><B >strings image-file | more</B ></TT > might show something like <I CLASS="FIRSTTERM" >JFIF</I >, which would identify the file as a <I CLASS="FIRSTTERM" >jpeg</I > graphic). In a script, you would probably parse the output of <B CLASS="COMMAND" >strings</B > with <A HREF="textproc.html#GREPREF" >grep</A > or <A HREF="sedawk.html#SEDREF" >sed</A >. See <A HREF="loops.html#BINGREP" >Example 11-8</A > and <A HREF="loops.html#FINDSTRING" >Example 11-10</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="WSTRINGS" ></A ><P ><B >Example 16-34. An <SPAN CLASS="QUOTE" >"improved"</SPAN > <I CLASS="FIRSTTERM" >strings</I > command</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # wstrings.sh: "word-strings" (enhanced "strings" command) 3 # 4 # This script filters the output of "strings" by checking it 5 #+ against a standard word list file. 6 # This effectively eliminates gibberish and noise, 7 #+ and outputs only recognized words. 8 9 # =========================================================== 10 # Standard Check for Script Argument(s) 11 ARGS=1 12 E_BADARGS=85 13 E_NOFILE=86 14 15 if [ $# -ne $ARGS ] 16 then 17 echo "Usage: `basename $0` filename" 18 exit $E_BADARGS 19 fi 20 21 if [ ! -f "$1" ] # Check if file exists. 22 then 23 echo "File \"$1\" does not exist." 24 exit $E_NOFILE 25 fi 26 # =========================================================== 27 28 29 MINSTRLEN=3 # Minimum string length. 30 WORDFILE=/usr/share/dict/linux.words # Dictionary file. 31 # May specify a different word list file 32 #+ of one-word-per-line format. 33 # For example, the "yawl" word-list package, 34 # http://bash.deta.in/yawl-0.3.2.tar.gz 35 36 37 wlist=`strings "$1" | tr A-Z a-z | tr '[:space:]' Z | \ 38 tr -cs '[:alpha:]' Z | tr -s '\173-\377' Z | tr Z ' '` 39 40 # Translate output of 'strings' command with multiple passes of 'tr'. 41 # "tr A-Z a-z" converts to lowercase. 42 # "tr '[:space:]'" converts whitespace characters to Z's. 43 # "tr -cs '[:alpha:]' Z" converts non-alphabetic characters to Z's, 44 #+ and squeezes multiple consecutive Z's. 45 # "tr -s '\173-\377' Z" converts all characters past 'z' to Z's 46 #+ and squeezes multiple consecutive Z's, 47 #+ which gets rid of all the weird characters that the previous 48 #+ translation failed to deal with. 49 # Finally, "tr Z ' '" converts all those Z's to whitespace, 50 #+ which will be seen as word separators in the loop below. 51 52 # *********************************************************************** 53 # Note the technique of feeding/piping the output of 'tr' back to itself, 54 #+ but with different arguments and/or options on each successive pass. 55 # *********************************************************************** 56 57 58 for word in $wlist # Important: 59 # $wlist must not be quoted here. 60 # "$wlist" does not work. 61 # Why not? 62 do 63 strlen=${#word} # String length. 64 if [ "$strlen" -lt "$MINSTRLEN" ] # Skip over short strings. 65 then 66 continue 67 fi 68 69 grep -Fw $word "$WORDFILE" # Match whole words only. 70 # ^^^ # "Fixed strings" and 71 #+ "whole words" options. 72 done 73 74 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="COMPARISONN1" ></A >Comparison</B ></P ><DL ><DT ><A NAME="DIFFREF" ></A ><B CLASS="COMMAND" >diff</B >, <B CLASS="COMMAND" >patch</B ></DT ><DD ><P ><B CLASS="COMMAND" >diff</B >: flexible file comparison utility. It compares the target files line-by-line sequentially. In some applications, such as comparing word dictionaries, it may be helpful to filter the files through <A HREF="textproc.html#SORTREF" >sort</A > and <B CLASS="COMMAND" >uniq</B > before piping them to <B CLASS="COMMAND" >diff</B >. <TT CLASS="USERINPUT" ><B >diff file-1 file-2</B ></TT > outputs the lines in the files that differ, with carets showing which file each particular line belongs to.</P ><P >The <TT CLASS="OPTION" >--side-by-side</TT > option to <B CLASS="COMMAND" >diff</B > outputs each compared file, line by line, in separate columns, with non-matching lines marked. The <TT CLASS="OPTION" >-c</TT > and <TT CLASS="OPTION" >-u</TT > options likewise make the output of the command easier to interpret.</P ><P >There are available various fancy frontends for <B CLASS="COMMAND" >diff</B >, such as <B CLASS="COMMAND" >sdiff</B >, <B CLASS="COMMAND" >wdiff</B >, <B CLASS="COMMAND" >xdiff</B >, and <B CLASS="COMMAND" >mgdiff</B >. </P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="DIFFERR2" ></A >The <B CLASS="COMMAND" >diff</B > command returns an exit status of <SPAN CLASS="ERRORCODE" >0</SPAN > if the compared files are identical, and <SPAN CLASS="ERRORCODE" >1</SPAN > if they differ (or <SPAN CLASS="ERRORCODE" >2</SPAN > when <I CLASS="FIRSTTERM" >binary</I > files are being compared). This permits use of <B CLASS="COMMAND" >diff</B > in a test construct within a shell script (see below).</P ></TD ></TR ></TABLE ></DIV ><P >A common use for <B CLASS="COMMAND" >diff</B > is generating difference files to be used with <B CLASS="COMMAND" >patch</B > The <TT CLASS="OPTION" >-e</TT > option outputs files suitable for <B CLASS="COMMAND" >ed</B > or <B CLASS="COMMAND" >ex</B > scripts.</P ><P ><A NAME="PATCHREF" ></A ></P ><P ><B CLASS="COMMAND" >patch</B >: flexible versioning utility. Given a difference file generated by <B CLASS="COMMAND" >diff</B >, <B CLASS="COMMAND" >patch</B > can upgrade a previous version of a package to a newer version. It is much more convenient to distribute a relatively small <SPAN CLASS="QUOTE" >"diff"</SPAN > file than the entire body of a newly revised package. Kernel <SPAN CLASS="QUOTE" >"patches"</SPAN > have become the preferred method of distributing the frequent releases of the Linux kernel.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 patch -p1 <patch-file 2 # Takes all the changes listed in 'patch-file' 3 # and applies them to the files referenced therein. 4 # This upgrades to a newer version of the package.</PRE ></TD ></TR ></TABLE ></P ><P >Patching the kernel:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cd /usr/src 2 gzip -cd patchXX.gz | patch -p0 3 # Upgrading kernel source using 'patch'. 4 # From the Linux kernel docs "README", 5 # by anonymous author (Alan Cox?).</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >diff</B > command can also recursively compare directories (for the filenames present).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >diff -r ~/notes1 ~/notes2</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Only in /home/bozo/notes1: file02 Only in /home/bozo/notes1: file03 Only in /home/bozo/notes2: file04</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="ZDIFFREF" ></A ></P ><P >Use <B CLASS="COMMAND" >zdiff</B > to compare <I CLASS="FIRSTTERM" >gzipped</I > files.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="DIFFSTATREF" ></A ></P ><P >Use <B CLASS="COMMAND" >diffstat</B > to create a histogram (point-distribution graph) of output from <B CLASS="COMMAND" >diff</B >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="DIFF3REF" ></A ><B CLASS="COMMAND" >diff3</B >, <B CLASS="COMMAND" >merge</B ></DT ><DD ><P >An extended version of <B CLASS="COMMAND" >diff</B > that compares three files at a time. This command returns an exit value of 0 upon successful execution, but unfortunately this gives no information about the results of the comparison.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >diff3 file-1 file-2 file-3</B ></TT > <TT CLASS="COMPUTEROUTPUT" >==== 1:1c This is line 1 of "file-1". 2:1c This is line 1 of "file-2". 3:1c This is line 1 of "file-3"</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="MERGEREF" ></A >The <B CLASS="COMMAND" >merge</B > (3-way file merge) command is an interesting adjunct to <I CLASS="FIRSTTERM" >diff3</I >. Its syntax is <TT CLASS="USERINPUT" ><B >merge Mergefile file1 file2</B ></TT >. The result is to output to <TT CLASS="FILENAME" >Mergefile</TT > the changes that lead from <TT CLASS="FILENAME" >file1</TT > to <TT CLASS="FILENAME" >file2</TT >. Consider this command a stripped-down version of <I CLASS="FIRSTTERM" >patch</I >.</P ></DD ><DT ><A NAME="SDIFFREF" ></A ><B CLASS="COMMAND" >sdiff</B ></DT ><DD ><P >Compare and/or edit two files in order to merge them into an output file. Because of its interactive nature, this command would find little use in a script.</P ></DD ><DT ><A NAME="CMPREF" ></A ><B CLASS="COMMAND" >cmp</B ></DT ><DD ><P >The <B CLASS="COMMAND" >cmp</B > command is a simpler version of <B CLASS="COMMAND" >diff</B >, above. Whereas <B CLASS="COMMAND" >diff</B > reports the differences between two files, <B CLASS="COMMAND" >cmp</B > merely shows at what point they differ.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Like <B CLASS="COMMAND" >diff</B >, <B CLASS="COMMAND" >cmp</B > returns an exit status of 0 if the compared files are identical, and 1 if they differ. This permits use in a test construct within a shell script.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="FILECOMP" ></A ><P ><B >Example 16-35. Using <I CLASS="FIRSTTERM" >cmp</I > to compare two files within a script.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # file-comparison.sh 3 4 ARGS=2 # Two args to script expected. 5 E_BADARGS=85 6 E_UNREADABLE=86 7 8 if [ $# -ne "$ARGS" ] 9 then 10 echo "Usage: `basename $0` file1 file2" 11 exit $E_BADARGS 12 fi 13 14 if [[ ! -r "$1" || ! -r "$2" ]] 15 then 16 echo "Both files to be compared must exist and be readable." 17 exit $E_UNREADABLE 18 fi 19 20 cmp $1 $2 &> /dev/null 21 # Redirection to /dev/null buries the output of the "cmp" command. 22 # cmp -s $1 $2 has same result ("-s" silent flag to "cmp") 23 # Thank you Anders Gustavsson for pointing this out. 24 # 25 # Also works with 'diff', i.e., 26 #+ diff $1 $2 &> /dev/null 27 28 if [ $? -eq 0 ] # Test exit status of "cmp" command. 29 then 30 echo "File \"$1\" is identical to file \"$2\"." 31 else 32 echo "File \"$1\" differs from file \"$2\"." 33 fi 34 35 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Use <B CLASS="COMMAND" >zcmp</B > on <I CLASS="FIRSTTERM" >gzipped</I > files.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="COMMREF" ></A ><B CLASS="COMMAND" >comm</B ></DT ><DD ><P >Versatile file comparison utility. The files must be sorted for this to be useful.</P ><P ><B CLASS="COMMAND" >comm <TT CLASS="REPLACEABLE" ><I >-options</I ></TT > <TT CLASS="REPLACEABLE" ><I >first-file</I ></TT > <TT CLASS="REPLACEABLE" ><I >second-file</I ></TT ></B ></P ><P ><TT CLASS="USERINPUT" ><B >comm file-1 file-2</B ></TT > outputs three columns: <UL ><LI ><P >column 1 = lines unique to <TT CLASS="FILENAME" >file-1</TT ></P ></LI ><LI ><P >column 2 = lines unique to <TT CLASS="FILENAME" >file-2</TT ></P ></LI ><LI ><P >column 3 = lines common to both.</P ></LI ></UL ></P ><P >The options allow suppressing output of one or more columns. <UL ><LI ><P ><TT CLASS="OPTION" >-1</TT > suppresses column <TT CLASS="LITERAL" >1</TT ></P ></LI ><LI ><P ><TT CLASS="OPTION" >-2</TT > suppresses column <TT CLASS="LITERAL" >2</TT ></P ></LI ><LI ><P ><TT CLASS="OPTION" >-3</TT > suppresses column <TT CLASS="LITERAL" >3</TT ></P ></LI ><LI ><P ><TT CLASS="OPTION" >-12</TT > suppresses both columns <TT CLASS="LITERAL" >1</TT > and <TT CLASS="LITERAL" >2</TT >, etc.</P ></LI ></UL > </P ><P >This command is useful for comparing <SPAN CLASS="QUOTE" >"dictionaries"</SPAN > or <I CLASS="FIRSTTERM" >word lists</I > -- sorted text files with one word per line.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="FAUTILS1" ></A >Utilities</B ></P ><DL ><DT ><A NAME="BASENAMEREF" ></A ><B CLASS="COMMAND" >basename</B ></DT ><DD ><P >Strips the path information from a file name, printing only the file name. The construction <TT CLASS="USERINPUT" ><B >basename $0</B ></TT > lets the script know its name, that is, the name it was invoked by. This can be used for <SPAN CLASS="QUOTE" >"usage"</SPAN > messages if, for example a script is called with missing arguments: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "Usage: `basename $0` arg1 arg2 ... argn"</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="DIRNAMEREF" ></A ><B CLASS="COMMAND" >dirname</B ></DT ><DD ><P >Strips the <B CLASS="COMMAND" >basename</B > from a filename, printing only the path information.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><B CLASS="COMMAND" >basename</B > and <B CLASS="COMMAND" >dirname</B > can operate on any arbitrary string. The argument does not need to refer to an existing file, or even be a filename for that matter (see <A HREF="contributed-scripts.html#DAYSBETWEEN" >Example A-7</A >).</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX35" ></A ><P ><B >Example 16-36. <I CLASS="FIRSTTERM" >basename</I > and <I CLASS="FIRSTTERM" >dirname</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 address=/home/bozo/daily-journal.txt 4 5 echo "Basename of /home/bozo/daily-journal.txt = `basename $address`" 6 echo "Dirname of /home/bozo/daily-journal.txt = `dirname $address`" 7 echo 8 echo "My own home is `basename ~/`." # `basename ~` also works. 9 echo "The home of my home is `dirname ~/`." # `dirname ~` also works. 10 11 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="SPLITREF" ></A ><B CLASS="COMMAND" >split</B >, <A NAME="CSPLITREF" ></A ><B CLASS="COMMAND" >csplit</B ></DT ><DD ><P >These are utilities for splitting a file into smaller chunks. Their usual use is for splitting up large files in order to back them up on floppies or preparatory to e-mailing or uploading them.</P ><P >The <B CLASS="COMMAND" >csplit</B > command splits a file according to <I CLASS="FIRSTTERM" >context</I >, the split occuring where patterns are matched.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SPLITCOPY" ></A ><P ><B >Example 16-37. A script that copies itself in sections</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # splitcopy.sh 3 4 # A script that splits itself into chunks, 5 #+ then reassembles the chunks into an exact copy 6 #+ of the original script. 7 8 CHUNKSIZE=4 # Size of first chunk of split files. 9 OUTPREFIX=xx # csplit prefixes, by default, 10 #+ files with "xx" ... 11 12 csplit "$0" "$CHUNKSIZE" 13 14 # Some comment lines for padding . . . 15 # Line 15 16 # Line 16 17 # Line 17 18 # Line 18 19 # Line 19 20 # Line 20 21 22 cat "$OUTPREFIX"* > "$0.copy" # Concatenate the chunks. 23 rm "$OUTPREFIX"* # Get rid of the chunks. 24 25 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="FAENCENCR1" ></A >Encoding and Encryption</B ></P ><DL ><DT ><A NAME="SUMREF" ></A ><B CLASS="COMMAND" >sum</B >, <A NAME="CKSUMREF" ></A ><B CLASS="COMMAND" >cksum</B >, <A NAME="MD5SUMREF" ></A ><B CLASS="COMMAND" >md5sum</B >, <A NAME="SHA1SUMREF" ></A ><B CLASS="COMMAND" >sha1sum</B ></DT ><DD ><P ><A NAME="CHECKSUMREF" ></A >These are utilities for generating <I CLASS="FIRSTTERM" >checksums</I >. A <I CLASS="FIRSTTERM" >checksum</I > is a number <A NAME="AEN12840" HREF="#FTN.AEN12840" >[3]</A > mathematically calculated from the contents of a file, for the purpose of checking its integrity. A script might refer to a list of checksums for security purposes, such as ensuring that the contents of key system files have not been altered or corrupted. For security applications, use the <B CLASS="COMMAND" >md5sum</B > (<B CLASS="COMMAND" >m</B >essage <B CLASS="COMMAND" >d</B >igest <B CLASS="COMMAND" >5</B > check<B CLASS="COMMAND" >sum</B >) command, or better yet, the newer <B CLASS="COMMAND" >sha1sum</B > (Secure Hash Algorithm). <A NAME="AEN12849" HREF="#FTN.AEN12849" >[4]</A > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cksum /boot/vmlinuz</B ></TT > <TT CLASS="COMPUTEROUTPUT" >1670054224 804083 /boot/vmlinuz</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo -n "Top Secret" | cksum</B ></TT > <TT CLASS="COMPUTEROUTPUT" >3391003827 10</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >md5sum /boot/vmlinuz</B ></TT > <TT CLASS="COMPUTEROUTPUT" >0f43eccea8f09e0a0b2b5cf1dcf333ba /boot/vmlinuz</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo -n "Top Secret" | md5sum</B ></TT > <TT CLASS="COMPUTEROUTPUT" >8babc97a6f62a4649716f4df8d61728f -</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >cksum</B > command shows the size, in bytes, of its target, whether file or <TT CLASS="FILENAME" >stdout</TT >.</P ><P >The <B CLASS="COMMAND" >md5sum</B > and <B CLASS="COMMAND" >sha1sum</B > commands display a <A HREF="special-chars.html#DASHREF2" >dash</A > when they receive their input from <TT CLASS="FILENAME" >stdout</TT >.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="FILEINTEGRITY" ></A ><P ><B >Example 16-38. Checking file integrity</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # file-integrity.sh: Checking whether files in a given directory 3 # have been tampered with. 4 5 E_DIR_NOMATCH=80 6 E_BAD_DBFILE=81 7 8 dbfile=File_record.md5 9 # Filename for storing records (database file). 10 11 12 set_up_database () 13 { 14 echo ""$directory"" > "$dbfile" 15 # Write directory name to first line of file. 16 md5sum "$directory"/* >> "$dbfile" 17 # Append md5 checksums and filenames. 18 } 19 20 check_database () 21 { 22 local n=0 23 local filename 24 local checksum 25 26 # ------------------------------------------- # 27 # This file check should be unnecessary, 28 #+ but better safe than sorry. 29 30 if [ ! -r "$dbfile" ] 31 then 32 echo "Unable to read checksum database file!" 33 exit $E_BAD_DBFILE 34 fi 35 # ------------------------------------------- # 36 37 while read record[n] 38 do 39 40 directory_checked="${record[0]}" 41 if [ "$directory_checked" != "$directory" ] 42 then 43 echo "Directories do not match up!" 44 # Tried to use file for a different directory. 45 exit $E_DIR_NOMATCH 46 fi 47 48 if [ "$n" -gt 0 ] # Not directory name. 49 then 50 filename[n]=$( echo ${record[$n]} | awk '{ print $2 }' ) 51 # md5sum writes records backwards, 52 #+ checksum first, then filename. 53 checksum[n]=$( md5sum "${filename[n]}" ) 54 55 56 if [ "${record[n]}" = "${checksum[n]}" ] 57 then 58 echo "${filename[n]} unchanged." 59 60 elif [ "`basename ${filename[n]}`" != "$dbfile" ] 61 # Skip over checksum database file, 62 #+ as it will change with each invocation of script. 63 # --- 64 # This unfortunately means that when running 65 #+ this script on $PWD, tampering with the 66 #+ checksum database file will not be detected. 67 # Exercise: Fix this. 68 then 69 echo "${filename[n]} : CHECKSUM ERROR!" 70 # File has been changed since last checked. 71 fi 72 73 fi 74 75 76 77 let "n+=1" 78 done <"$dbfile" # Read from checksum database file. 79 80 } 81 82 # =================================================== # 83 # main () 84 85 if [ -z "$1" ] 86 then 87 directory="$PWD" # If not specified, 88 else #+ use current working directory. 89 directory="$1" 90 fi 91 92 clear # Clear screen. 93 echo " Running file integrity check on $directory" 94 echo 95 96 # ------------------------------------------------------------------ # 97 if [ ! -r "$dbfile" ] # Need to create database file? 98 then 99 echo "Setting up database file, \""$directory"/"$dbfile"\"."; echo 100 set_up_database 101 fi 102 # ------------------------------------------------------------------ # 103 104 check_database # Do the actual work. 105 106 echo 107 108 # You may wish to redirect the stdout of this script to a file, 109 #+ especially if the directory checked has many files in it. 110 111 exit 0 112 113 # For a much more thorough file integrity check, 114 #+ consider the "Tripwire" package, 115 #+ http://sourceforge.net/projects/tripwire/.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Also see <A HREF="contributed-scripts.html#DIRECTORYINFO" >Example A-19</A >, <A HREF="colorizing.html#HORSERACE" >Example 36-16</A >, and <A HREF="manipulatingvars.html#RANDSTRING" >Example 10-2</A > for creative uses of the <B CLASS="COMMAND" >md5sum</B > command.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P > There have been reports that the 128-bit <B CLASS="COMMAND" >md5sum</B > can be cracked, so the more secure 160-bit <B CLASS="COMMAND" >sha1sum</B > is a welcome new addition to the checksum toolkit. </P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >md5sum testfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" >e181e2c8720c60522c4c4c981108e367 testfile</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >sha1sum testfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" >5d7425a9c08a66c3177f1e31286fa40986ffc996 testfile</TT > </PRE ></TD ></TR ></TABLE ></TD ></TR ></TABLE ></DIV ><P >Security consultants have demonstrated that even <B CLASS="COMMAND" >sha1sum</B > can be compromised. Fortunately, newer Linux distros include longer bit-length <B CLASS="COMMAND" >sha224sum</B >, <B CLASS="COMMAND" >sha256sum</B >, <B CLASS="COMMAND" >sha384sum</B >, and <B CLASS="COMMAND" >sha512sum</B > commands.</P ></DD ><DT ><A NAME="UUENCODEREF" ></A ><B CLASS="COMMAND" >uuencode</B ></DT ><DD ><P >This utility encodes binary files (images, sound files, compressed files, etc.) into <A HREF="special-chars.html#ASCIIDEF" >ASCII</A > characters, making them suitable for transmission in the body of an e-mail message or in a newsgroup posting. This is especially useful where MIME (multimedia) encoding is not available.</P ></DD ><DT ><A NAME="UUDECODEREF" ></A ><B CLASS="COMMAND" >uudecode</B ></DT ><DD ><P >This reverses the encoding, decoding <I CLASS="FIRSTTERM" >uuencoded</I > files back into the original binaries.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX52" ></A ><P ><B >Example 16-39. Uudecoding encoded files</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Uudecodes all uuencoded files in current working directory. 3 4 lines=35 # Allow 35 lines for the header (very generous). 5 6 for File in * # Test all the files in $PWD. 7 do 8 search1=`head -n $lines $File | grep begin | wc -w` 9 search2=`tail -n $lines $File | grep end | wc -w` 10 # Uuencoded files have a "begin" near the beginning, 11 #+ and an "end" near the end. 12 if [ "$search1" -gt 0 ] 13 then 14 if [ "$search2" -gt 0 ] 15 then 16 echo "uudecoding - $File -" 17 uudecode $File 18 fi 19 fi 20 done 21 22 # Note that running this script upon itself fools it 23 #+ into thinking it is a uuencoded file, 24 #+ because it contains both "begin" and "end". 25 26 # Exercise: 27 # -------- 28 # Modify this script to check each file for a newsgroup header, 29 #+ and skip to next if not found. 30 31 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <A HREF="textproc.html#FOLDREF" >fold -s</A > command may be useful (possibly in a pipe) to process long uudecoded text messages downloaded from Usenet newsgroups.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="MIMENCODEREF" ></A ><B CLASS="COMMAND" >mimencode</B >, <A NAME="MMENCODEREF" ></A ><B CLASS="COMMAND" >mmencode</B ></DT ><DD ><P >The <B CLASS="COMMAND" >mimencode</B > and <B CLASS="COMMAND" >mmencode</B > commands process multimedia-encoded e-mail attachments. Although <I CLASS="FIRSTTERM" >mail user agents</I > (such as <I CLASS="FIRSTTERM" >pine</I > or <I CLASS="FIRSTTERM" >kmail</I >) normally handle this automatically, these particular utilities permit manipulating such attachments manually from the command-line or in <A HREF="timedate.html#BATCHPROCREF" >batch processing mode</A > by means of a shell script.</P ></DD ><DT ><A NAME="CRYPTREF" ></A ><B CLASS="COMMAND" >crypt</B ></DT ><DD ><P >At one time, this was the standard UNIX file encryption utility. <A NAME="AEN12969" HREF="#FTN.AEN12969" >[5]</A > Politically-motivated government regulations prohibiting the export of encryption software resulted in the disappearance of <B CLASS="COMMAND" >crypt</B > from much of the UNIX world, and it is still missing from most Linux distributions. Fortunately, programmers have come up with a number of decent alternatives to it, among them the author's very own <A HREF="ftp://metalab.unc.edu/pub/Linux/utils/file/cruft-0.2.tar.gz" TARGET="_top" >cruft</A > (see <A HREF="contributed-scripts.html#ENCRYPTEDPW" >Example A-4</A >). </P ></DD ><DT ><A NAME="OPENSSLREF" ></A ><B CLASS="COMMAND" >openssl</B ></DT ><DD ><P >This is an Open Source implementation of <I CLASS="FIRSTTERM" >Secure Sockets Layer</I > encryption. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # To encrypt a file: 2 openssl aes-128-ecb -salt -in file.txt -out file.encrypted \ 3 -pass pass:my_password 4 # ^^^^^^^^^^^ User-selected password. 5 # aes-128-ecb is the encryption method chosen. 6 7 # To decrypt an openssl-encrypted file: 8 openssl aes-128-ecb -d -salt -in file.encrypted -out file.txt \ 9 -pass pass:my_password 10 # ^^^^^^^^^^^ User-selected password.</PRE ></TD ></TR ></TABLE ></P ><P ><A HREF="special-chars.html#PIPEREF" >Piping</A > <I CLASS="FIRSTTERM" >openssl</I > to/from <A HREF="filearchiv.html#TARREF" >tar</A > makes it possible to encrypt an entire directory tree. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # To encrypt a directory: 2 3 sourcedir="/home/bozo/testfiles" 4 encrfile="encr-dir.tar.gz" 5 password=my_secret_password 6 7 tar czvf - "$sourcedir" | 8 openssl des3 -salt -out "$encrfile" -pass pass:"$password" 9 # ^^^^ Uses des3 encryption. 10 # Writes encrypted file "encr-dir.tar.gz" in current working directory. 11 12 # To decrypt the resulting tarball: 13 openssl des3 -d -salt -in "$encrfile" -pass pass:"$password" | 14 tar -xzv 15 # Decrypts and unpacks into current working directory.</PRE ></TD ></TR ></TABLE > </P ><P >Of course, <I CLASS="FIRSTTERM" >openssl</I > has many other uses, such as obtaining signed <I CLASS="FIRSTTERM" >certificates</I > for Web sites. See the <A HREF="external.html#INFOREF" >info</A > page.</P ></DD ><DT ><A NAME="SHREDREF" ></A ><B CLASS="COMMAND" >shred</B ></DT ><DD ><P >Securely erase a file by overwriting it multiple times with random bit patterns before deleting it. This command has the same effect as <A HREF="extmisc.html#BLOTOUT" >Example 16-61</A >, but does it in a more thorough and elegant manner.</P ><P >This is one of the GNU <I CLASS="FIRSTTERM" >fileutils</I >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Advanced forensic technology may still be able to recover the contents of a file, even after application of <B CLASS="COMMAND" >shred</B >.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="FAMISC1" ></A >Miscellaneous</B ></P ><DL ><DT ><A NAME="MKTEMPREF" ></A ><B CLASS="COMMAND" >mktemp</B ></DT ><DD ><P >Create a <I CLASS="FIRSTTERM" >temporary file</I > <A NAME="AEN13030" HREF="#FTN.AEN13030" >[6]</A > with a <SPAN CLASS="QUOTE" >"unique"</SPAN > filename. When invoked from the command-line without additional arguments, it creates a zero-length file in the <TT CLASS="FILENAME" >/tmp</TT > directory.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >mktemp</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/tmp/tmp.zzsvql3154</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 PREFIX=filename 2 tempfile=`mktemp $PREFIX.XXXXXX` 3 # ^^^^^^ Need at least 6 placeholders 4 #+ in the filename template. 5 # If no filename template supplied, 6 #+ "tmp.XXXXXXXXXX" is the default. 7 8 echo "tempfile name = $tempfile" 9 # tempfile name = filename.QA2ZpY 10 # or something similar... 11 12 # Creates a file of that name in the current working directory 13 #+ with 600 file permissions. 14 # A "umask 177" is therefore unnecessary, 15 #+ but it's good programming practice nevertheless.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="MAKEREF" ></A ><B CLASS="COMMAND" >make</B ></DT ><DD ><P ><A NAME="MAKEFILEREF" ></A ></P ><P >Utility for building and compiling binary packages. This can also be used for any set of operations triggered by incremental changes in source files.</P ><P >The <I CLASS="FIRSTTERM" >make</I > command checks a <TT CLASS="FILENAME" >Makefile</TT >, a list of file dependencies and operations to be carried out.</P ><P >The <I CLASS="FIRSTTERM" >make</I > utility is, in effect, a powerful scripting language similar in many ways to <I CLASS="FIRSTTERM" >Bash</I >, but with the capability of recognizing <I CLASS="FIRSTTERM" >dependencies</I >. For in-depth coverage of this useful tool set, see the <A HREF="http://www.gnu.org/manual/manual.html" TARGET="_top" >GNU software documentation site</A >.</P ></DD ><DT ><A NAME="INSTALLREF" ></A ><B CLASS="COMMAND" >install</B ></DT ><DD ><P >Special purpose file copying command, similar to <A HREF="external.html#CPREF" >cp</A >, but capable of setting permissions and attributes of the copied files. This command seems tailormade for installing software packages, and as such it shows up frequently in <TT CLASS="FILENAME" >Makefiles</TT > (in the <TT CLASS="REPLACEABLE" ><I >make install :</I ></TT > section). It could likewise prove useful in installation scripts.</P ></DD ><DT ><A NAME="DOS2UNIXREF" ></A ><B CLASS="COMMAND" >dos2unix</B ></DT ><DD ><P >This utility, written by Benjamin Lin and collaborators, converts DOS-formatted text files (lines terminated by CR-LF) to UNIX format (lines terminated by LF only), and <A HREF="gotchas.html#DOSNEWLINES" >vice-versa</A >.</P ></DD ><DT ><A NAME="PTXREF" ></A ><B CLASS="COMMAND" >ptx</B ></DT ><DD ><P >The <B CLASS="COMMAND" >ptx [targetfile]</B > command outputs a permuted index (cross-reference list) of the targetfile. This may be further filtered and formatted in a pipe, if necessary.</P ></DD ><DT ><A NAME="MOREREF" ></A ><B CLASS="COMMAND" >more</B >, <A NAME="LESSREF" ></A ><B CLASS="COMMAND" >less</B ></DT ><DD ><P >Pagers that display a text file or stream to <TT CLASS="FILENAME" >stdout</TT >, one screenful at a time. These may be used to filter the output of <TT CLASS="FILENAME" >stdout</TT > . . . or of a script.</P ><P > An interesting application of <I CLASS="FIRSTTERM" >more</I > is to <SPAN CLASS="QUOTE" >"test drive"</SPAN > a command sequence, to forestall potentially unpleasant consequences. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 ls /home/bozo | awk '{print "rm -rf " $1}' | more 2 # ^^^^ 3 4 # Testing the effect of the following (disastrous) command-line: 5 # ls /home/bozo | awk '{print "rm -rf " $1}' | sh 6 # Hand off to the shell to execute . . . ^^</PRE ></TD ></TR ></TABLE > </P ><P >The <I CLASS="FIRSTTERM" >less</I > pager has the interesting property of doing a formatted display of <I CLASS="FIRSTTERM" >man page</I > source. See <A HREF="contributed-scripts.html#MANED" >Example A-39</A >.</P ></DD ></DL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN11885" HREF="filearchiv.html#AEN11885" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >An <I CLASS="FIRSTTERM" >archive</I >, in the sense discussed here, is simply a set of related files stored in a single location.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN11896" HREF="filearchiv.html#AEN11896" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P > A <TT CLASS="REPLACEABLE" ><I >tar czvf ArchiveName.tar.gz *</I ></TT > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >will</I ></SPAN > include dotfiles in subdirectories <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >below</I ></SPAN > the current working directory. This is an undocumented GNU <B CLASS="COMMAND" >tar</B > <SPAN CLASS="QUOTE" >"feature."</SPAN > </P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN12840" HREF="filearchiv.html#AEN12840" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The checksum may be expressed as a <I CLASS="FIRSTTERM" >hexadecimal</I > number, or to some other base.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN12849" HREF="filearchiv.html#AEN12849" >[4]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >For even <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >better</I ></SPAN > security, use the <I CLASS="FIRSTTERM" >sha256sum</I >, <I CLASS="FIRSTTERM" >sha512</I >, and <I CLASS="FIRSTTERM" >sha1pass</I > commands.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN12969" HREF="filearchiv.html#AEN12969" >[5]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This is a symmetric block cipher, used to encrypt files on a single system or local network, as opposed to the <I CLASS="FIRSTTERM" >public key</I > cipher class, of which <I CLASS="FIRSTTERM" >pgp</I > is a well-known example.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN13030" HREF="filearchiv.html#AEN13030" >[6]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Creates a temporary <I CLASS="FIRSTTERM" >directory</I > when invoked with the <TT CLASS="OPTION" >-d</TT > option.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="textproc.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="communications.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Text Processing Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="external.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Communications Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/files.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE > Important Files</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Bash Command-Line Options" HREF="bash-options.html"><LINK REL="NEXT" TITLE="Important System Directories" HREF="systemdirs.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="bash-options.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="systemdirs.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="FILES" ></A >Appendix H. Important Files</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="FILESREF1" ></A >startup files</B ></P ><DL ><DT ></DT ><DD ><P >These files contain the aliases and <A HREF="othertypesv.html#ENVREF" >environmental variables</A > made available to Bash running as a user shell and to all Bash scripts invoked after system initialization.</P ></DD ><DT ><TT CLASS="FILENAME" >/etc/profile</TT ></DT ><DD ><P >Systemwide defaults, mostly setting the environment (all Bourne-type shells, not just Bash <A NAME="AEN23892" HREF="#FTN.AEN23892" >[1]</A >)</P ></DD ><DT ><TT CLASS="FILENAME" >/etc/bashrc</TT ></DT ><DD ><P >systemwide functions and <A HREF="aliases.html#ALIASREF" >aliases</A > for Bash</P ></DD ><DT ><TT CLASS="FILENAME" ><TT CLASS="VARNAME" >$HOME</TT >/.bash_profile</TT ></DT ><DD ><P >user-specific Bash environmental default settings, found in each user's home directory (the local counterpart to <TT CLASS="FILENAME" >/etc/profile</TT >)</P ></DD ><DT ><TT CLASS="FILENAME" ><TT CLASS="VARNAME" >$HOME</TT >/.bashrc</TT ></DT ><DD ><P >user-specific Bash init file, found in each user's home directory (the local counterpart to <TT CLASS="FILENAME" >/etc/bashrc</TT >). Only interactive shells and user scripts read this file. See <A HREF="sample-bashrc.html" >Appendix M</A > for a sample <TT CLASS="FILENAME" >.bashrc</TT > file.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="LOGOUTFILEREF1" ></A >logout file</B ></P ><DL ><DT ><TT CLASS="FILENAME" ><TT CLASS="VARNAME" >$HOME</TT >/.bash_logout</TT ></DT ><DD ><P >user-specific instruction file, found in each user's home directory. Upon exit from a login (Bash) shell, the commands in this file execute.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="DATAFILESREF1" ></A >data files</B ></P ><DL ><DT ><TT CLASS="FILENAME" >/etc/passwd</TT ></DT ><DD ><P >A listing of all the user accounts on the system, their identities, their home directories, the groups they belong to, and their default shell. Note that the user passwords are <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > stored in this file, <A NAME="AEN23937" HREF="#FTN.AEN23937" >[2]</A > but in <TT CLASS="FILENAME" >/etc/shadow</TT > in encrypted form.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="SYSCONFREF1" ></A >system configuration files</B ></P ><DL ><DT ><TT CLASS="FILENAME" >/etc/sysconfig/hwconf</TT ></DT ><DD ><P >Listing and description of attached hardware devices. This information is in text form and can be extracted and parsed.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep -A 5 AUDIO /etc/sysconfig/hwconf</B ></TT > <TT CLASS="COMPUTEROUTPUT" >class: AUDIO bus: PCI detached: 0 driver: snd-intel8x0 desc: "Intel Corporation 82801CA/CAM AC'97 Audio Controller" vendorId: 8086</TT > </PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This file is present on Red Hat and Fedora Core installations, but may be missing from other distros.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN23892" HREF="files.html#AEN23892" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This does not apply to <B CLASS="COMMAND" >csh</B >, <B CLASS="COMMAND" >tcsh</B >, and other shells not related to or descended from the classic Bourne shell (<B CLASS="COMMAND" >sh</B >).</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN23937" HREF="files.html#AEN23937" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >In older versions of UNIX, passwords <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >were</I ></SPAN > stored in <TT CLASS="FILENAME" >/etc/passwd</TT >, and that explains the name of the file.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="bash-options.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="systemdirs.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Bash Command-Line Options</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Important System Directories</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/fto.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >File test operators</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Tests" HREF="tests.html"><LINK REL="PREVIOUS" TITLE="Tests" HREF="tests.html"><LINK REL="NEXT" TITLE="Other Comparison Operators" HREF="comparison-ops.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="tests.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 7. Tests</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="comparison-ops.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="FTO" ></A >7.2. File test operators</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="RTIF" ></A >Returns true if...</B ></P ><DL ><DT ><SPAN CLASS="TOKEN" >-e</SPAN ></DT ><DD ><P >file exists</P ></DD ><DT ><SPAN CLASS="TOKEN" >-a</SPAN ></DT ><DD ><P >file exists</P ><P >This is identical in effect to <SPAN CLASS="TOKEN" >-e</SPAN >. It has been <SPAN CLASS="QUOTE" >"deprecated,"</SPAN > <A NAME="AEN3289" HREF="#FTN.AEN3289" >[1]</A > and its use is discouraged.</P ></DD ><DT ><A NAME="REGULARFILE" ></A ><SPAN CLASS="TOKEN" >-f</SPAN ></DT ><DD ><P >file is a <TT CLASS="REPLACEABLE" ><I >regular</I ></TT > file (not a directory or <A HREF="devproc.html#DEVFILEREF" >device file</A >)</P ></DD ><DT ><SPAN CLASS="TOKEN" >-s</SPAN ></DT ><DD ><P >file is not zero size</P ></DD ><DT ><SPAN CLASS="TOKEN" >-d</SPAN ></DT ><DD ><P >file is a directory</P ></DD ><DT ><SPAN CLASS="TOKEN" >-b</SPAN ></DT ><DD ><P >file is a <A HREF="devproc.html#BLOCKDEVREF" >block device</A ></P ><P ><A NAME="BLOCKDEVTEST" ></A ></P ></DD ><DT ><SPAN CLASS="TOKEN" >-c</SPAN ></DT ><DD ><P ><A NAME="CHARDEVTEST" ></A >file is a <A HREF="devproc.html#CHARDEVREF" >character device</A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 device0="/dev/sda2" # / (root directory) 2 if [ -b "$device0" ] 3 then 4 echo "$device0 is a block device." 5 fi 6 7 # /dev/sda2 is a block device. 8 9 10 11 device1="/dev/ttyS1" # PCMCIA modem card. 12 if [ -c "$device1" ] 13 then 14 echo "$device1 is a character device." 15 fi 16 17 # /dev/ttyS1 is a character device.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><SPAN CLASS="TOKEN" >-p</SPAN ></DT ><DD ><P >file is a <A HREF="special-chars.html#PIPEREF" >pipe</A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 function show_input_type() 2 { 3 [ -p /dev/fd/0 ] && echo PIPE || echo STDIN 4 } 5 6 show_input_type "Input" # STDIN 7 echo "Input" | show_input_type # PIPE 8 9 # This example courtesy of Carl Anderson.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><SPAN CLASS="TOKEN" >-h</SPAN ></DT ><DD ><P >file is a <A HREF="external.html#SYMLINKREF" >symbolic link</A ></P ></DD ><DT ><SPAN CLASS="TOKEN" >-L</SPAN ></DT ><DD ><P >file is a symbolic link</P ></DD ><DT ><SPAN CLASS="TOKEN" >-S</SPAN ></DT ><DD ><P >file is a <A HREF="devproc.html#SOCKETREF" >socket</A ></P ></DD ><DT ><SPAN CLASS="TOKEN" >-t</SPAN ></DT ><DD ><P ><A NAME="TERMTEST" ></A >file (<A HREF="io-redirection.html#FDREF" >descriptor</A >) is associated with a terminal device</P ><P >This test option <A HREF="miscellany.html#II2TEST" > may be used to check</A > whether the <TT CLASS="FILENAME" >stdin</TT > <TT CLASS="USERINPUT" ><B >[ -t 0 ]</B ></TT > or <TT CLASS="FILENAME" >stdout</TT > <TT CLASS="USERINPUT" ><B >[ -t 1 ]</B ></TT > in a given script is a terminal.</P ></DD ><DT ><SPAN CLASS="TOKEN" >-r</SPAN ></DT ><DD ><P >file has read permission (<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >for the user running the test</I ></SPAN >)</P ></DD ><DT ><SPAN CLASS="TOKEN" >-w</SPAN ></DT ><DD ><P >file has write permission (for the user running the test)</P ></DD ><DT ><SPAN CLASS="TOKEN" >-x</SPAN ></DT ><DD ><P >file has execute permission (for the user running the test)</P ></DD ><DT ><SPAN CLASS="TOKEN" >-g</SPAN ></DT ><DD ><P >set-group-id (sgid) flag set on file or directory</P ><P >If a directory has the <TT CLASS="REPLACEABLE" ><I >sgid</I ></TT > flag set, then a file created within that directory belongs to the group that owns the directory, not necessarily to the group of the user who created the file. This may be useful for a directory shared by a workgroup.</P ></DD ><DT ><SPAN CLASS="TOKEN" >-u</SPAN ></DT ><DD ><P ><A NAME="SUIDREF" ></A ></P ><P >set-user-id (suid) flag set on file</P ><P >A binary owned by <I CLASS="FIRSTTERM" >root</I > with <TT CLASS="REPLACEABLE" ><I >set-user-id</I ></TT > flag set runs with <I CLASS="FIRSTTERM" >root</I > privileges, even when an ordinary user invokes it. <A NAME="AEN3400" HREF="#FTN.AEN3400" >[2]</A > This is useful for executables (such as <B CLASS="COMMAND" >pppd</B > and <B CLASS="COMMAND" >cdrecord</B >) that need to access system hardware. Lacking the <I CLASS="FIRSTTERM" >suid</I > flag, these binaries could not be invoked by a <I CLASS="FIRSTTERM" >non-root</I > user.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >-rwsr-xr-t 1 root 178236 Oct 2 2000 /usr/sbin/pppd</TT > </PRE ></TD ></TR ></TABLE > </P ><P >A file with the <TT CLASS="REPLACEABLE" ><I >suid</I ></TT > flag set shows an <I CLASS="FIRSTTERM" >s</I > in its permissions.</P ></DD ><DT ><SPAN CLASS="TOKEN" >-k</SPAN ></DT ><DD ><P ><TT CLASS="REPLACEABLE" ><I >sticky bit</I ></TT > set</P ><P >Commonly known as the <I CLASS="FIRSTTERM" >sticky bit,</I > the <I CLASS="FIRSTTERM" >save-text-mode</I > flag is a special type of file permission. If a file has this flag set, that file will be kept in cache memory, for quicker access. <A NAME="AEN3423" HREF="#FTN.AEN3423" >[3]</A > If set on a directory, it restricts write permission. Setting the sticky bit adds a <I CLASS="FIRSTTERM" >t</I > to the permissions on the file or directory listing. This restricts altering or deleting specific files in that directory to the owner of those files.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >drwxrwxrwt 7 root 1024 May 19 21:26 tmp/</TT > </PRE ></TD ></TR ></TABLE > </P ><P >If a user does not own a directory that has the sticky bit set, but has write permission in that directory, she can only delete those files that she owns in it. This keeps users from inadvertently overwriting or deleting each other's files in a publicly accessible directory, such as <TT CLASS="FILENAME" >/tmp</TT >. (The <I CLASS="FIRSTTERM" >owner</I > of the directory or <I CLASS="FIRSTTERM" >root</I > can, of course, delete or rename files there.)</P ></DD ><DT ><SPAN CLASS="TOKEN" >-O</SPAN ></DT ><DD ><P >you are owner of file</P ></DD ><DT ><SPAN CLASS="TOKEN" >-G</SPAN ></DT ><DD ><P >group-id of file same as yours</P ></DD ><DT ><SPAN CLASS="TOKEN" >-N</SPAN ></DT ><DD ><P >file modified since it was last read</P ></DD ><DT ><SPAN CLASS="TOKEN" >f1 -nt f2</SPAN ></DT ><DD ><P >file <TT CLASS="REPLACEABLE" ><I >f1</I ></TT > is newer than <TT CLASS="REPLACEABLE" ><I >f2</I ></TT ></P ></DD ><DT ><SPAN CLASS="TOKEN" >f1 -ot f2</SPAN ></DT ><DD ><P >file <TT CLASS="REPLACEABLE" ><I >f1</I ></TT > is older than <TT CLASS="REPLACEABLE" ><I >f2</I ></TT ></P ></DD ><DT ><SPAN CLASS="TOKEN" >f1 -ef f2</SPAN ></DT ><DD ><P >files <TT CLASS="REPLACEABLE" ><I >f1</I ></TT > and <TT CLASS="REPLACEABLE" ><I >f2</I ></TT > are hard links to the same file</P ></DD ><DT ><SPAN CLASS="TOKEN" >!</SPAN ></DT ><DD ><P ><SPAN CLASS="QUOTE" >"not"</SPAN > -- reverses the sense of the tests above (returns true if condition absent).</P ></DD ></DL ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="BROKENLINK" ></A ><P ><B >Example 7-4. Testing for broken links</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # broken-link.sh 3 # Written by Lee bigelow <ligelowbee@yahoo.com> 4 # Used in ABS Guide with permission. 5 6 # A pure shell script to find dead symlinks and output them quoted 7 #+ so they can be fed to xargs and dealt with :) 8 #+ eg. sh broken-link.sh /somedir /someotherdir|xargs rm 9 # 10 # This, however, is a better method: 11 # 12 # find "somedir" -type l -print0|\ 13 # xargs -r0 file|\ 14 # grep "broken symbolic"| 15 # sed -e 's/^\|: *broken symbolic.*$/"/g' 16 # 17 #+ but that wouldn't be pure Bash, now would it. 18 # Caution: beware the /proc file system and any circular links! 19 ################################################################ 20 21 22 # If no args are passed to the script set directories-to-search 23 #+ to current directory. Otherwise set the directories-to-search 24 #+ to the args passed. 25 ###################### 26 27 [ $# -eq 0 ] && directorys=`pwd` || directorys=$@ 28 29 30 # Setup the function linkchk to check the directory it is passed 31 #+ for files that are links and don't exist, then print them quoted. 32 # If one of the elements in the directory is a subdirectory then 33 #+ send that subdirectory to the linkcheck function. 34 ########## 35 36 linkchk () { 37 for element in $1/*; do 38 [ -h "$element" -a ! -e "$element" ] && echo \"$element\" 39 [ -d "$element" ] && linkchk $element 40 # Of course, '-h' tests for symbolic link, '-d' for directory. 41 done 42 } 43 44 # Send each arg that was passed to the script to the linkchk() function 45 #+ if it is a valid directoy. If not, then print the error message 46 #+ and usage info. 47 ################## 48 for directory in $directorys; do 49 if [ -d $directory ] 50 then linkchk $directory 51 else 52 echo "$directory is not a directory" 53 echo "Usage: $0 dir1 dir2 ..." 54 fi 55 done 56 57 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A HREF="zeros.html#COOKIES" >Example 31-1</A >, <A HREF="loops.html#BINGREP" >Example 11-8</A >, <A HREF="loops.html#FILEINFO" >Example 11-3</A >, <A HREF="zeros.html#RAMDISK" >Example 31-3</A >, and <A HREF="contributed-scripts.html#MAILFORMAT" >Example A-1</A > also illustrate uses of the file test operators.</P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN3289" HREF="fto.html#AEN3289" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P > Per the 1913 edition of <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Webster's Dictionary</I ></SPAN >: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 Deprecate 2 ... 3 4 To pray against, as an evil; 5 to seek to avert by prayer; 6 to desire the removal of; 7 to seek deliverance from; 8 to express deep regret for; 9 to disapprove of strongly.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN3400" HREF="fto.html#AEN3400" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Be aware that <I CLASS="FIRSTTERM" >suid</I > binaries may open security holes. The <I CLASS="FIRSTTERM" >suid</I > flag has no effect on shell scripts.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN3423" HREF="fto.html#AEN3423" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >On Linux systems, the sticky bit is no longer used for files, only on directories.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="tests.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="comparison-ops.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Tests</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="tests.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Other Comparison Operators</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/functions.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Functions</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Process Substitution" HREF="process-sub.html"><LINK REL="NEXT" TITLE="Local Variables" HREF="localvar.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="process-sub.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="localvar.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="FUNCTIONS" ></A >Chapter 24. Functions</H1 ><P ><A NAME="FUNCTIONREF" ></A ></P ><P >Like <SPAN CLASS="QUOTE" >"real"</SPAN > programming languages, Bash has functions, though in a somewhat limited implementation. A function is a subroutine, a <A HREF="special-chars.html#CODEBLOCKREF" >code block</A > that implements a set of operations, a <SPAN CLASS="QUOTE" >"black box"</SPAN > that performs a specified task. Wherever there is repetitive code, when a task repeats with only slight variations in procedure, then consider using a function.</P ><P ><P ><B CLASS="COMMAND" >function</B > <TT CLASS="REPLACEABLE" ><I >function_name</I ></TT > { <BR> <TT CLASS="REPLACEABLE" ><I >command</I ></TT >... <BR> } <BR></P > or <P > <TT CLASS="REPLACEABLE" ><I >function_name</I ></TT > () { <BR> <TT CLASS="REPLACEABLE" ><I >command</I ></TT >... <BR> } <BR></P > </P ><P >This second form will cheer the hearts of C programmers (and is more <A HREF="portabilityissues.html" >portable</A >).</P ><P >As in C, the function's opening bracket may optionally appear on the second line.</P ><P ><P > <TT CLASS="REPLACEABLE" ><I >function_name</I ></TT > () <BR> { <BR> <TT CLASS="REPLACEABLE" ><I >command</I ></TT >... <BR> } <BR></P > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A function may be <SPAN CLASS="QUOTE" >"compacted"</SPAN > into a single line.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 fun () { echo "This is a function"; echo; } 2 # ^ ^</PRE ></TD ></TR ></TABLE ></P ><P >In this case, however, a <I CLASS="FIRSTTERM" >semicolon</I > must follow the final command in the function.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 fun () { echo "This is a function"; echo } # Error! 2 # ^ 3 4 fun2 () { echo "Even a single-command function? Yes!"; } 5 # ^</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><P >Functions are called, <I CLASS="FIRSTTERM" >triggered</I >, simply by invoking their names. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >A function call is equivalent to a command.</I ></SPAN ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX59" ></A ><P ><B >Example 24-1. Simple functions</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ex59.sh: Exercising functions (simple). 3 4 JUST_A_SECOND=1 5 6 funky () 7 { # This is about as simple as functions get. 8 echo "This is a funky function." 9 echo "Now exiting funky function." 10 } # Function declaration must precede call. 11 12 13 fun () 14 { # A somewhat more complex function. 15 i=0 16 REPEATS=30 17 18 echo 19 echo "And now the fun really begins." 20 echo 21 22 sleep $JUST_A_SECOND # Hey, wait a second! 23 while [ $i -lt $REPEATS ] 24 do 25 echo "----------FUNCTIONS---------->" 26 echo "<------------ARE-------------" 27 echo "<------------FUN------------>" 28 echo 29 let "i+=1" 30 done 31 } 32 33 # Now, call the functions. 34 35 funky 36 fun 37 38 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="FUNCTDEFMUST" ></A ></P ><P >The function definition must precede the first call to it. There is no method of <SPAN CLASS="QUOTE" >"declaring"</SPAN > the function, as, for example, in C. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 f1 2 # Will give an error message, since function "f1" not yet defined. 3 4 declare -f f1 # This doesn't help either. 5 f1 # Still an error message. 6 7 # However... 8 9 10 f1 () 11 { 12 echo "Calling function \"f2\" from within function \"f1\"." 13 f2 14 } 15 16 f2 () 17 { 18 echo "Function \"f2\"." 19 } 20 21 f1 # Function "f2" is not actually called until this point, 22 #+ although it is referenced before its definition. 23 # This is permissible. 24 25 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="EMPTYFUNC" ></A >Functions may not be empty! <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # empty-function.sh 3 4 empty () 5 { 6 } 7 8 exit 0 # Will not exit here! 9 10 # $ sh empty-function.sh 11 # empty-function.sh: line 6: syntax error near unexpected token `}' 12 # empty-function.sh: line 6: `}' 13 14 # $ echo $? 15 # 2 16 17 18 # Note that a function containing only comments is empty. 19 20 func () 21 { 22 # Comment 1. 23 # Comment 2. 24 # This is still an empty function. 25 # Thank you, Mark Bova, for pointing this out. 26 } 27 # Results in same error message as above. 28 29 30 # However ... 31 32 not_quite_empty () 33 { 34 illegal_command 35 } # A script containing this function will *not* bomb 36 #+ as long as the function is not called. 37 38 not_empty () 39 { 40 : 41 } # Contains a : (null command), and this is okay. 42 43 44 # Thank you, Dominick Geyer and Thiemo Kellner.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><P >It is even possible to nest a function within another function, although this is not very useful. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 f1 () 2 { 3 4 f2 () # nested 5 { 6 echo "Function \"f2\", inside \"f1\"." 7 } 8 9 } 10 11 f2 # Gives an error message. 12 # Even a preceding "declare -f f2" wouldn't help. 13 14 echo 15 16 f1 # Does nothing, since calling "f1" does not automatically call "f2". 17 f2 # Now, it's all right to call "f2", 18 #+ since its definition has been made visible by calling "f1". 19 20 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><P >Function declarations can appear in unlikely places, even where a command would otherwise go. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 ls -l | foo() { echo "foo"; } # Permissible, but useless. 2 3 4 5 if [ "$USER" = bozo ] 6 then 7 bozo_greet () # Function definition embedded in an if/then construct. 8 { 9 echo "Hello, Bozo." 10 } 11 fi 12 13 bozo_greet # Works only for Bozo, and other users get an error. 14 15 16 17 # Something like this might be useful in some contexts. 18 NO_EXIT=1 # Will enable function definition below. 19 20 [[ $NO_EXIT -eq 1 ]] && exit() { true; } # Function definition in an "and-list". 21 # If $NO_EXIT is 1, declares "exit ()". 22 # This disables the "exit" builtin by aliasing it to "true". 23 24 exit # Invokes "exit ()" function, not "exit" builtin. 25 26 27 28 # Or, similarly: 29 filename=file1 30 31 [ -f "$filename" ] && 32 foo () { rm -f "$filename"; echo "File "$filename" deleted."; } || 33 foo () { echo "File "$filename" not found."; touch bar; } 34 35 foo 36 37 # Thanks, S.C. and Christopher Head</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="FSTRANGEREF" ></A >Function names can take strange forms. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 _(){ for i in {1..10}; do echo -n "$FUNCNAME"; done; echo; } 2 # ^^^ No space between function name and parentheses. 3 # This doesn't always work. Why not? 4 5 # Now, let's invoke the function. 6 _ # __________ 7 # ^^^^^^^^^^ 10 underscores (10 x function name)! 8 # A "naked" underscore is an acceptable function name. 9 10 11 # In fact, a colon is likewise an acceptable function name. 12 13 :(){ echo ":"; }; : 14 15 # Of what use is this? 16 # It's a devious way to obfuscate the code in a script.</PRE ></TD ></TR ></TABLE > See also <A HREF="contributed-scripts.html#GRONSFELD" >Example A-56</A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >What happens when different versions of the same function appear in a script? <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # As Yan Chen points out, 2 # when a function is defined multiple times, 3 # the final version is what is invoked. 4 # This is not, however, particularly useful. 5 6 func () 7 { 8 echo "First version of func ()." 9 } 10 11 func () 12 { 13 echo "Second version of func ()." 14 } 15 16 func # Second version of func (). 17 18 exit $? 19 20 # It is even possible to use functions to override 21 #+ or preempt system commands. 22 # Of course, this is *not* advisable.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="COMPLEXFUNCT" ></A >24.1. Complex Functions and Function Complexities</H1 ><P >Functions may process arguments passed to them and return an <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > to the script for further processing.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 function_name $arg1 $arg2</PRE ></TD ></TR ></TABLE ><P ><A NAME="PASSEDARGS" ></A ></P ><P >The function refers to the passed arguments by position (as if they were <A HREF="variables2.html#POSPARAMREF" >positional parameters</A >), that is, <TT CLASS="VARNAME" >$1</TT >, <TT CLASS="VARNAME" >$2</TT >, and so forth.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX60" ></A ><P ><B >Example 24-2. Function Taking Parameters</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Functions and parameters 3 4 DEFAULT=default # Default param value. 5 6 func2 () { 7 if [ -z "$1" ] # Is parameter #1 zero length? 8 then 9 echo "-Parameter #1 is zero length.-" # Or no parameter passed. 10 else 11 echo "-Parameter #1 is \"$1\".-" 12 fi 13 14 variable=${1-$DEFAULT} # What does 15 echo "variable = $variable" #+ parameter substitution show? 16 # --------------------------- 17 # It distinguishes between 18 #+ no param and a null param. 19 20 if [ "$2" ] 21 then 22 echo "-Parameter #2 is \"$2\".-" 23 fi 24 25 return 0 26 } 27 28 echo 29 30 echo "Nothing passed." 31 func2 # Called with no params 32 echo 33 34 35 echo "Zero-length parameter passed." 36 func2 "" # Called with zero-length param 37 echo 38 39 echo "Null parameter passed." 40 func2 "$uninitialized_param" # Called with uninitialized param 41 echo 42 43 echo "One parameter passed." 44 func2 first # Called with one param 45 echo 46 47 echo "Two parameters passed." 48 func2 first second # Called with two params 49 echo 50 51 echo "\"\" \"second\" passed." 52 func2 "" second # Called with zero-length first parameter 53 echo # and ASCII string as a second one. 54 55 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="FSHIFTREF" ></A ></P ><DIV CLASS="IMPORTANT" ><TABLE CLASS="IMPORTANT" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/important.png" HSPACE="5" ALT="Important"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <A HREF="othertypesv.html#SHIFTREF" >shift</A > command works on arguments passed to functions (see <A HREF="assortedtips.html#MULTIPLICATION" >Example 36-18</A >).</P ></TD ></TR ></TABLE ></DIV ><P >But, what about command-line arguments passed to the script? Does a function see them? Well, let's clear up the confusion.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="FUNCCMDLINEARG" ></A ><P ><B >Example 24-3. Functions and command-line args passed to the script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # func-cmdlinearg.sh 3 # Call this script with a command-line argument, 4 #+ something like $0 arg1. 5 6 7 func () 8 9 { 10 echo "$1" # Echoes first arg passed to the function. 11 } # Does a command-line arg qualify? 12 13 echo "First call to function: no arg passed." 14 echo "See if command-line arg is seen." 15 func 16 # No! Command-line arg not seen. 17 18 echo "============================================================" 19 echo 20 echo "Second call to function: command-line arg passed explicitly." 21 func $1 22 # Now it's seen! 23 24 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >In contrast to certain other programming languages, shell scripts normally pass only value parameters to functions. Variable names (which are actually <I CLASS="FIRSTTERM" >pointers</I >), if passed as parameters to functions, will be treated as string literals. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Functions interpret their arguments literally.</I ></SPAN ></P ><P ><A NAME="FUNCPOINTERS" ></A ></P ><P ><A HREF="ivr.html#IVRREF" >Indirect variable references</A > (see <A HREF="bash2.html#EX78" >Example 37-2</A >) provide a clumsy sort of mechanism for passing variable pointers to functions.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="INDFUNC" ></A ><P ><B >Example 24-4. Passing an indirect reference to a function</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ind-func.sh: Passing an indirect reference to a function. 3 4 echo_var () 5 { 6 echo "$1" 7 } 8 9 message=Hello 10 Hello=Goodbye 11 12 echo_var "$message" # Hello 13 # Now, let's pass an indirect reference to the function. 14 echo_var "${!message}" # Goodbye 15 16 echo "-------------" 17 18 # What happens if we change the contents of "hello" variable? 19 Hello="Hello, again!" 20 echo_var "$message" # Hello 21 echo_var "${!message}" # Hello, again! 22 23 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The next logical question is whether parameters can be dereferenced <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >after</I ></SPAN > being passed to a function.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="DEREFERENCECL" ></A ><P ><B >Example 24-5. Dereferencing a parameter passed to a function</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # dereference.sh 3 # Dereferencing parameter passed to a function. 4 # Script by Bruce W. Clare. 5 6 dereference () 7 { 8 y=\$"$1" # Name of variable (not value!). 9 echo $y # $Junk 10 11 x=`eval "expr \"$y\" "` 12 echo $1=$x 13 eval "$1=\"Some Different Text \"" # Assign new value. 14 } 15 16 Junk="Some Text" 17 echo $Junk "before" # Some Text before 18 19 dereference Junk 20 echo $Junk "after" # Some Different Text after 21 22 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="REFPARAMS" ></A ><P ><B >Example 24-6. Again, dereferencing a parameter passed to a function</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ref-params.sh: Dereferencing a parameter passed to a function. 3 # (Complex Example) 4 5 ITERATIONS=3 # How many times to get input. 6 icount=1 7 8 my_read () { 9 # Called with my_read varname, 10 #+ outputs the previous value between brackets as the default value, 11 #+ then asks for a new value. 12 13 local local_var 14 15 echo -n "Enter a value " 16 eval 'echo -n "[$'$1'] "' # Previous value. 17 # eval echo -n "[\$$1] " # Easier to understand, 18 #+ but loses trailing space in user prompt. 19 read local_var 20 [ -n "$local_var" ] && eval $1=\$local_var 21 22 # "And-list": if "local_var" then set "$1" to its value. 23 } 24 25 echo 26 27 while [ "$icount" -le "$ITERATIONS" ] 28 do 29 my_read var 30 echo "Entry #$icount = $var" 31 let "icount += 1" 32 echo 33 done 34 35 36 # Thanks to Stephane Chazelas for providing this instructive example. 37 38 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="EXITRETURN1" ></A >Exit and Return</B ></P ><DL ><DT ><B CLASS="COMMAND" >exit status</B ></DT ><DD ><P >Functions return a value, called an <I CLASS="FIRSTTERM" >exit status</I >. This is analogous to the <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > returned by a command. The exit status may be explicitly specified by a <B CLASS="COMMAND" >return</B > statement, otherwise it is the exit status of the last command in the function (<SPAN CLASS="RETURNVALUE" >0</SPAN > if successful, and a non-zero error code if not). This <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > may be used in the script by referencing it as <A HREF="variables2.html#XSTATVARREF" >$?</A >. This mechanism effectively permits script functions to have a <SPAN CLASS="QUOTE" >"return value"</SPAN > similar to C functions.</P ></DD ><DT ><B CLASS="COMMAND" >return</B ></DT ><DD ><P ><A NAME="RETURNREF" ></A ></P ><P >Terminates a function. A <B CLASS="COMMAND" >return</B > command <A NAME="AEN18474" HREF="#FTN.AEN18474" >[1]</A > optionally takes an <I CLASS="FIRSTTERM" >integer</I > argument, which is returned to the calling script as the <SPAN CLASS="QUOTE" >"exit status"</SPAN > of the function, and this exit status is assigned to the variable <A HREF="variables2.html#XSTATVARREF" >$?</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="MAX" ></A ><P ><B >Example 24-7. Maximum of two numbers</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # max.sh: Maximum of two integers. 3 4 E_PARAM_ERR=250 # If less than 2 params passed to function. 5 EQUAL=251 # Return value if both params equal. 6 # Error values out of range of any 7 #+ params that might be fed to the function. 8 9 max2 () # Returns larger of two numbers. 10 { # Note: numbers compared must be less than 250. 11 if [ -z "$2" ] 12 then 13 return $E_PARAM_ERR 14 fi 15 16 if [ "$1" -eq "$2" ] 17 then 18 return $EQUAL 19 else 20 if [ "$1" -gt "$2" ] 21 then 22 return $1 23 else 24 return $2 25 fi 26 fi 27 } 28 29 max2 33 34 30 return_val=$? 31 32 if [ "$return_val" -eq $E_PARAM_ERR ] 33 then 34 echo "Need to pass two parameters to the function." 35 elif [ "$return_val" -eq $EQUAL ] 36 then 37 echo "The two numbers are equal." 38 else 39 echo "The larger of the two numbers is $return_val." 40 fi 41 42 43 exit 0 44 45 # Exercise (easy): 46 # --------------- 47 # Convert this to an interactive script, 48 #+ that is, have the script ask for input (two numbers).</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >For a function to return a string or array, use a dedicated variable. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 count_lines_in_etc_passwd() 2 { 3 [[ -r /etc/passwd ]] && REPLY=$(echo $(wc -l < /etc/passwd)) 4 # If /etc/passwd is readable, set REPLY to line count. 5 # Returns both a parameter value and status information. 6 # The 'echo' seems unnecessary, but . . . 7 #+ it removes excess whitespace from the output. 8 } 9 10 if count_lines_in_etc_passwd 11 then 12 echo "There are $REPLY lines in /etc/passwd." 13 else 14 echo "Cannot count lines in /etc/passwd." 15 fi 16 17 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX61" ></A ><P ><B >Example 24-8. Converting numbers to Roman numerals</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Arabic number to Roman numeral conversion 4 # Range: 0 - 200 5 # It's crude, but it works. 6 7 # Extending the range and otherwise improving the script is left as an exercise. 8 9 # Usage: roman number-to-convert 10 11 LIMIT=200 12 E_ARG_ERR=65 13 E_OUT_OF_RANGE=66 14 15 if [ -z "$1" ] 16 then 17 echo "Usage: `basename $0` number-to-convert" 18 exit $E_ARG_ERR 19 fi 20 21 num=$1 22 if [ "$num" -gt $LIMIT ] 23 then 24 echo "Out of range!" 25 exit $E_OUT_OF_RANGE 26 fi 27 28 to_roman () # Must declare function before first call to it. 29 { 30 number=$1 31 factor=$2 32 rchar=$3 33 let "remainder = number - factor" 34 while [ "$remainder" -ge 0 ] 35 do 36 echo -n $rchar 37 let "number -= factor" 38 let "remainder = number - factor" 39 done 40 41 return $number 42 # Exercises: 43 # --------- 44 # 1) Explain how this function works. 45 # Hint: division by successive subtraction. 46 # 2) Extend to range of the function. 47 # Hint: use "echo" and command-substitution capture. 48 } 49 50 51 to_roman $num 100 C 52 num=$? 53 to_roman $num 90 LXXXX 54 num=$? 55 to_roman $num 50 L 56 num=$? 57 to_roman $num 40 XL 58 num=$? 59 to_roman $num 10 X 60 num=$? 61 to_roman $num 9 IX 62 num=$? 63 to_roman $num 5 V 64 num=$? 65 to_roman $num 4 IV 66 num=$? 67 to_roman $num 1 I 68 # Successive calls to conversion function! 69 # Is this really necessary??? Can it be simplified? 70 71 echo 72 73 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="testbranch.html#ISALPHA" >Example 11-29</A >.</P ><DIV CLASS="IMPORTANT" ><TABLE CLASS="IMPORTANT" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/important.png" HSPACE="5" ALT="Important"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The largest positive integer a function can return is 255. The <B CLASS="COMMAND" >return</B > command is closely tied to the concept of <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A >, which accounts for this particular limitation. Fortunately, there are various <A HREF="assortedtips.html#RVT" >workarounds</A > for those situations requiring a large integer return value from a function.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RETURNTEST" ></A ><P ><B >Example 24-9. Testing large return values in a function</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # return-test.sh 3 4 # The largest positive value a function can return is 255. 5 6 return_test () # Returns whatever passed to it. 7 { 8 return $1 9 } 10 11 return_test 27 # o.k. 12 echo $? # Returns 27. 13 14 return_test 255 # Still o.k. 15 echo $? # Returns 255. 16 17 return_test 257 # Error! 18 echo $? # Returns 1 (return code for miscellaneous error). 19 20 # ========================================================= 21 return_test -151896 # Do large negative numbers work? 22 echo $? # Will this return -151896? 23 # No! It returns 168. 24 # Version of Bash before 2.05b permitted 25 #+ large negative integer return values. 26 # It happened to be a useful feature. 27 # Newer versions of Bash unfortunately plug this loophole. 28 # This may break older scripts. 29 # Caution! 30 # ========================================================= 31 32 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >A workaround for obtaining large integer <SPAN CLASS="QUOTE" >"return values"</SPAN > is to simply assign the <SPAN CLASS="QUOTE" >"return value"</SPAN > to a global variable. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 Return_Val= # Global variable to hold oversize return value of function. 2 3 alt_return_test () 4 { 5 fvar=$1 6 Return_Val=$fvar 7 return # Returns 0 (success). 8 } 9 10 alt_return_test 1 11 echo $? # 0 12 echo "return value = $Return_Val" # 1 13 14 alt_return_test 256 15 echo "return value = $Return_Val" # 256 16 17 alt_return_test 257 18 echo "return value = $Return_Val" # 257 19 20 alt_return_test 25701 21 echo "return value = $Return_Val" #25701</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="CAPTURERETVAL" ></A ></P ><P >A more elegant method is to have the function <B CLASS="COMMAND" >echo</B > its <SPAN CLASS="QUOTE" >"return value to <TT CLASS="FILENAME" >stdout</TT >,"</SPAN > and then capture it by <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A >. See the <A HREF="assortedtips.html#RVT" >discussion of this</A > in <A HREF="assortedtips.html" >Section 36.7</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="MAX2" ></A ><P ><B >Example 24-10. Comparing two large integers</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # max2.sh: Maximum of two LARGE integers. 3 4 # This is the previous "max.sh" example, 5 #+ modified to permit comparing large integers. 6 7 EQUAL=0 # Return value if both params equal. 8 E_PARAM_ERR=-99999 # Not enough params passed to function. 9 # ^^^^^^ Out of range of any params that might be passed. 10 11 max2 () # "Returns" larger of two numbers. 12 { 13 if [ -z "$2" ] 14 then 15 echo $E_PARAM_ERR 16 return 17 fi 18 19 if [ "$1" -eq "$2" ] 20 then 21 echo $EQUAL 22 return 23 else 24 if [ "$1" -gt "$2" ] 25 then 26 retval=$1 27 else 28 retval=$2 29 fi 30 fi 31 32 echo $retval # Echoes (to stdout), rather than returning value. 33 # Why? 34 } 35 36 37 return_val=$(max2 33001 33997) 38 # ^^^^ Function name 39 # ^^^^^ ^^^^^ Params passed 40 # This is actually a form of command substitution: 41 #+ treating a function as if it were a command, 42 #+ and assigning the stdout of the function to the variable "return_val." 43 44 45 # ========================= OUTPUT ======================== 46 if [ "$return_val" -eq "$E_PARAM_ERR" ] 47 then 48 echo "Error in parameters passed to comparison function!" 49 elif [ "$return_val" -eq "$EQUAL" ] 50 then 51 echo "The two numbers are equal." 52 else 53 echo "The larger of the two numbers is $return_val." 54 fi 55 # ========================================================= 56 57 exit 0 58 59 # Exercises: 60 # --------- 61 # 1) Find a more elegant way of testing 62 #+ the parameters passed to the function. 63 # 2) Simplify the if/then structure at "OUTPUT." 64 # 3) Rewrite the script to take input from command-line parameters.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Here is another example of capturing a function <SPAN CLASS="QUOTE" >"return value."</SPAN > Understanding it requires some knowledge of <A HREF="awk.html#AWKREF" >awk</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 month_length () # Takes month number as an argument. 2 { # Returns number of days in month. 3 monthD="31 28 31 30 31 30 31 31 30 31 30 31" # Declare as local? 4 echo "$monthD" | awk '{ print $'"${1}"' }' # Tricky. 5 # ^^^^^^^^^ 6 # Parameter passed to function ($1 -- month number), then to awk. 7 # Awk sees this as "print $1 . . . print $12" (depending on month number) 8 # Template for passing a parameter to embedded awk script: 9 # $'"${script_parameter}"' 10 11 # Here's a slightly simpler awk construct: 12 # echo $monthD | awk -v month=$1 '{print $(month)}' 13 # Uses the -v awk option, which assigns a variable value 14 #+ prior to execution of the awk program block. 15 # Thank you, Rich. 16 17 # Needs error checking for correct parameter range (1-12) 18 #+ and for February in leap year. 19 } 20 21 # ---------------------------------------------- 22 # Usage example: 23 month=4 # April, for example (4th month). 24 days_in=$(month_length $month) 25 echo $days_in # 30 26 # ----------------------------------------------</PRE ></TD ></TR ></TABLE ></P ><P >See also <A HREF="contributed-scripts.html#DAYSBETWEEN" >Example A-7</A > and <A HREF="contributed-scripts.html#STDDEV" >Example A-37</A >.</P ><P ><TT CLASS="USERINPUT" ><B >Exercise:</B ></TT > Using what we have just learned, extend the previous <A HREF="functions.html#EX61" >Roman numerals example</A > to accept arbitrarily large input.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="REDSTDINFUNC1" ></A >Redirection</B ></P ><DL ><DT ><TT CLASS="REPLACEABLE" ><I >Redirecting the stdin of a function</I ></TT ></DT ><DD ><P >A function is essentially a <A HREF="special-chars.html#CODEBLOCKREF" >code block</A >, which means its <TT CLASS="FILENAME" >stdin</TT > can be redirected (as in <A HREF="special-chars.html#EX8" >Example 3-1</A >).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="REALNAME" ></A ><P ><B >Example 24-11. Real name from username</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # realname.sh 3 # 4 # From username, gets "real name" from /etc/passwd. 5 6 7 ARGCOUNT=1 # Expect one arg. 8 E_WRONGARGS=85 9 10 file=/etc/passwd 11 pattern=$1 12 13 if [ $# -ne "$ARGCOUNT" ] 14 then 15 echo "Usage: `basename $0` USERNAME" 16 exit $E_WRONGARGS 17 fi 18 19 file_excerpt () # Scan file for pattern, 20 { #+ then print relevant portion of line. 21 while read line # "while" does not necessarily need [ condition ] 22 do 23 echo "$line" | grep $1 | awk -F":" '{ print $5 }' 24 # Have awk use ":" delimiter. 25 done 26 } <$file # Redirect into function's stdin. 27 28 file_excerpt $pattern 29 30 # Yes, this entire script could be reduced to 31 # grep PATTERN /etc/passwd | awk -F":" '{ print $5 }' 32 # or 33 # awk -F: '/PATTERN/ {print $5}' 34 # or 35 # awk -F: '($1 == "username") { print $5 }' # real name from username 36 # However, it might not be as instructive. 37 38 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >There is an alternate, and perhaps less confusing method of redirecting a function's <TT CLASS="FILENAME" >stdin</TT >. This involves redirecting the <TT CLASS="FILENAME" >stdin</TT > to an embedded bracketed code block within the function. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Instead of: 2 Function () 3 { 4 ... 5 } < file 6 7 # Try this: 8 Function () 9 { 10 { 11 ... 12 } < file 13 } 14 15 # Similarly, 16 17 Function () # This works. 18 { 19 { 20 echo $* 21 } | tr a b 22 } 23 24 Function () # This doesn't work. 25 { 26 echo $* 27 } | tr a b # A nested code block is mandatory here. 28 29 30 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Emmanuel Rouat's <A HREF="sample-bashrc.html" >sample <TT CLASS="FILENAME" >bashrc</TT > file</A > contains some instructive examples of functions.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18474" HREF="functions.html#AEN18474" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The <B CLASS="COMMAND" >return</B > command is a Bash <A HREF="internal.html#BUILTINREF" >builtin</A >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="process-sub.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="localvar.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Process Substitution</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Local Variables</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/globbingref.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Globbing</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Regular Expressions" HREF="regexp.html"><LINK REL="PREVIOUS" TITLE="Regular Expressions" HREF="regexp.html"><LINK REL="NEXT" TITLE="Here Documents" HREF="here-docs.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="regexp.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 18. Regular Expressions</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="here-docs.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="GLOBBINGREF" ></A >18.2. Globbing</H1 ><P ><A NAME="GLOBBINGREF2" ></A ></P ><P >Bash itself cannot recognize Regular Expressions. Inside scripts, it is commands and utilities -- such as <A HREF="sedawk.html#SEDREF" >sed</A > and <A HREF="awk.html#AWKREF" >awk</A > -- that interpret RE's.</P ><P >Bash <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >does</I ></SPAN > carry out <I CLASS="FIRSTTERM" >filename expansion</I > <A NAME="AEN17572" HREF="#FTN.AEN17572" >[1]</A > -- a process known as <I CLASS="FIRSTTERM" >globbing</I > -- but this does <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > use the standard RE set. Instead, globbing recognizes and expands <I CLASS="FIRSTTERM" >wild cards</I >. Globbing interprets the standard wild card characters <A NAME="AEN17581" HREF="#FTN.AEN17581" >[2]</A > -- <A HREF="special-chars.html#ASTERISKREF" >*</A > and <A HREF="special-chars.html#WILDCARDQU" >?</A >, character lists in square brackets, and certain other special characters (such as <SPAN CLASS="TOKEN" >^</SPAN > for negating the sense of a match). <A NAME="WDOTFILEWC" ></A >There are important limitations on wild card characters in globbing, however. Strings containing <TT CLASS="REPLACEABLE" ><I >*</I ></TT > will not match filenames that start with a dot, as, for example, <A HREF="sample-bashrc.html" ><TT CLASS="FILENAME" >.bashrc</TT ></A >. <A NAME="AEN17592" HREF="#FTN.AEN17592" >[3]</A > Likewise, the <TT CLASS="REPLACEABLE" ><I >?</I ></TT > has a different meaning in globbing than as part of an RE.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 2 -rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 a.1 -rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 b.1 -rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 c.1 -rw-rw-r-- 1 bozo bozo 466 Aug 6 17:48 t2.sh -rw-rw-r-- 1 bozo bozo 758 Jul 30 09:02 test1.txt</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l t?.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-rw-rw-r-- 1 bozo bozo 466 Aug 6 17:48 t2.sh</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l [ab]*</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 a.1 -rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 b.1</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l [a-c]*</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 a.1 -rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 b.1 -rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 c.1</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l [^ab]*</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 c.1 -rw-rw-r-- 1 bozo bozo 466 Aug 6 17:48 t2.sh -rw-rw-r-- 1 bozo bozo 758 Jul 30 09:02 test1.txt</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l {b*,c*,*est*}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 b.1 -rw-rw-r-- 1 bozo bozo 0 Aug 6 18:42 c.1 -rw-rw-r-- 1 bozo bozo 758 Jul 30 09:02 test1.txt</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Bash performs filename expansion on unquoted command-line arguments. The <A HREF="internal.html#ECHOREF" >echo</A > command demonstrates this.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo *</B ></TT > <TT CLASS="COMPUTEROUTPUT" >a.1 b.1 c.1 t2.sh test1.txt</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo t*</B ></TT > <TT CLASS="COMPUTEROUTPUT" >t2.sh test1.txt</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo t?.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >t2.sh</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It is possible to modify the way Bash interprets special characters in globbing. A <B CLASS="COMMAND" >set -f</B > command disables globbing, and the <TT CLASS="OPTION" >nocaseglob</TT > and <TT CLASS="OPTION" >nullglob</TT > options to <A HREF="internal.html#SHOPTREF" >shopt</A > change globbing behavior.</P ></TD ></TR ></TABLE ></DIV ><P >See also <A HREF="loops.html#LISTGLOB" >Example 11-5</A >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="HANDLINGFNAMES" ></A >Filenames with embedded <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A > can cause <I CLASS="FIRSTTERM" >globbing</I > to choke. <A HREF="http://www.dwheeler.com/essays/filenames-in-shell.html" TARGET="_top" >David Wheeler</A > shows how to avoid many such pitfalls.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 IFS="$(printf '\n\t')" # Remove space. 2 3 # Correct glob use: 4 # Always use for-loop, prefix glob, check if exists file. 5 for file in ./* ; do # Use ./* ... NEVER bare * 6 if [ -e "$file" ] ; then # Check whether file exists. 7 COMMAND ... "$file" ... 8 fi 9 done 10 11 # This example taken from David Wheeler's site, with permission.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN17572" HREF="globbingref.html#AEN17572" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><I CLASS="FIRSTTERM" >Filename expansion</I > means expanding filename patterns or templates containing special characters. For example, <TT CLASS="FILENAME" >example.???</TT > might expand to <TT CLASS="FILENAME" >example.001</TT > and/or <TT CLASS="FILENAME" >example.txt</TT >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN17581" HREF="globbingref.html#AEN17581" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="WILDCARDDEF" ></A >A <I CLASS="FIRSTTERM" >wild card</I > character, analogous to a wild card in poker, can represent (almost) any other character.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN17592" HREF="globbingref.html#AEN17592" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P > Filename expansion <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >can</I ></SPAN > match dotfiles, but only if the pattern explicitly includes the dot as a literal character. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 ~/[.]bashrc # Will not expand to ~/.bashrc 2 ~/?bashrc # Neither will this. 3 # Wild cards and metacharacters will NOT 4 #+ expand to a dot in globbing. 5 6 ~/.[b]ashrc # Will expand to ~/.bashrc 7 ~/.ba?hrc # Likewise. 8 ~/.bashr* # Likewise. 9 10 # Setting the "dotglob" option turns this off. 11 12 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="regexp.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="here-docs.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Regular Expressions</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="regexp.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Here Documents</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/gotchas.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Gotchas</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Options" HREF="options.html"><LINK REL="NEXT" TITLE="Scripting With Style" HREF="scrstyle.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="options.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="scrstyle.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="GOTCHAS" ></A >Chapter 34. Gotchas</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Turandot: <I CLASS="FOREIGNPHRASE" >Gli enigmi sono tre, la morte una!</I ></I ></P ><P ><I >Caleph: <I CLASS="FOREIGNPHRASE" >No, no! Gli enigmi sono tre, una la vita!</I ></I ></P ><P ><I >--Puccini</I ></P ></I ></TD ></TR ></TABLE ><P ><A NAME="BASH3GOTCHA" ></A ></P ><P >Here are some (non-recommended!) scripting practices that will bring excitement into an otherwise dull life.</P ><UL ><LI ><P ><A NAME="INAPPVN" ></A ></P ><P >Assigning reserved words or characters to variable names.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 case=value0 # Causes problems. 2 23skidoo=value1 # Also problems. 3 # Variable names starting with a digit are reserved by the shell. 4 # Try _23skidoo=value1. Starting variables with an underscore is okay. 5 6 # However . . . using just an underscore will not work. 7 _=25 8 echo $_ # $_ is a special variable set to last arg of last command. 9 # But . . . _ is a valid function name! 10 11 xyz((!*=value2 # Causes severe problems. 12 # As of version 3 of Bash, periods are not allowed within variable names.</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P >Using a hyphen or other reserved characters in a variable name (or function name).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var-1=23 2 # Use 'var_1' instead. 3 4 function-whatever () # Error 5 # Use 'function_whatever ()' instead. 6 7 8 # As of version 3 of Bash, periods are not allowed within function names. 9 function.whatever () # Error 10 # Use 'functionWhatever ()' instead.</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P >Using the same name for a variable and a function. This can make a script difficult to understand.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 do_something () 2 { 3 echo "This function does something with \"$1\"." 4 } 5 6 do_something=do_something 7 8 do_something do_something 9 10 # All this is legal, but highly confusing.</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="WSBAD" ></A >Using <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A > inappropriately. In contrast to other programming languages, Bash can be quite finicky about whitespace.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var1 = 23 # 'var1=23' is correct. 2 # On line above, Bash attempts to execute command "var1" 3 # with the arguments "=" and "23". 4 5 let c = $a - $b # Instead: let c=$a-$b or let "c = $a - $b" 6 7 if [ $a -le 5] # if [ $a -le 5 ] is correct. 8 # ^^ if [ "$a" -le 5 ] is even better. 9 # [[ $a -le 5 ]] also works.</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="OMITSEMICOLON" ></A ></P ><P >Not terminating with a <A HREF="special-chars.html#SEMICOLONREF" >semicolon</A > the final command in a <A HREF="special-chars.html#CODEBLOCKREF" >code block within curly brackets</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 { ls -l; df; echo "Done." } 2 # bash: syntax error: unexpected end of file 3 4 { ls -l; df; echo "Done."; } 5 # ^ ### Final command needs semicolon.</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="UNINITVAR" ></A ></P ><P > Assuming uninitialized variables (variables before a value is assigned to them) are <SPAN CLASS="QUOTE" >"zeroed out"</SPAN >. An uninitialized variable has a value of <I CLASS="FIRSTTERM" >null</I >, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > zero.</P ><P ><A NAME="BASH4.2-UNINITIALIZED" ></A ></P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo "uninitialized_var = $uninitialized_var" 4 # uninitialized_var = 5 6 # However . . . 7 # if $BASH_VERSION ≥ 4.2; then 8 9 if [[ ! -v uninitialized_var ]] 10 then 11 uninitialized_var=0 # Initialize it to zero! 12 fi 13 14 </PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="EQDIF" ></A ></P ><P >Mixing up <I CLASS="FIRSTTERM" >=</I > and <I CLASS="FIRSTTERM" >-eq</I > in a test. Remember, <I CLASS="FIRSTTERM" >=</I > is for comparing literal variables and <I CLASS="FIRSTTERM" >-eq</I > for integers.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ "$a" = 273 ] # Is $a an integer or string? 2 if [ "$a" -eq 273 ] # If $a is an integer. 3 4 # Sometimes you can interchange -eq and = without adverse consequences. 5 # However . . . 6 7 8 a=273.0 # Not an integer. 9 10 if [ "$a" = 273 ] 11 then 12 echo "Comparison works." 13 else 14 echo "Comparison does not work." 15 fi # Comparison does not work. 16 17 # Same with a=" 273" and a="0273". 18 19 20 # Likewise, problems trying to use "-eq" with non-integer values. 21 22 if [ "$a" -eq 273.0 ] 23 then 24 echo "a = $a" 25 fi # Aborts with an error message. 26 # test.sh: [: 273.0: integer expression expected</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="NUMSTRCOMPNE" ></A ></P ><P >Misusing <A HREF="comparison-ops.html#SCOMPARISON1" >string comparison</A > operators.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BADOP" ></A ><P ><B >Example 34-1. Numerical and string comparison are not equivalent</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # bad-op.sh: Trying to use a string comparison on integers. 3 4 echo 5 number=1 6 7 # The following while-loop has two errors: 8 #+ one blatant, and the other subtle. 9 10 while [ "$number" < 5 ] # Wrong! Should be: while [ "$number" -lt 5 ] 11 do 12 echo -n "$number " 13 let "number += 1" 14 done 15 # Attempt to run this bombs with the error message: 16 #+ bad-op.sh: line 10: 5: No such file or directory 17 # Within single brackets, "<" must be escaped, 18 #+ and even then, it's still wrong for comparing integers. 19 20 echo "---------------------" 21 22 while [ "$number" \< 5 ] # 1 2 3 4 23 do # 24 echo -n "$number " # It *seems* to work, but . . . 25 let "number += 1" #+ it actually does an ASCII comparison, 26 done #+ rather than a numerical one. 27 28 echo; echo "---------------------" 29 30 # This can cause problems. For example: 31 32 lesser=5 33 greater=105 34 35 if [ "$greater" \< "$lesser" ] 36 then 37 echo "$greater is less than $lesser" 38 fi # 105 is less than 5 39 # In fact, "105" actually is less than "5" 40 #+ in a string comparison (ASCII sort order). 41 42 echo 43 44 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></LI ><LI ><P ><A NAME="LETBAD" ></A ></P ><P >Attempting to use <A HREF="internal.html#LETREF" >let</A > to set string variables.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 let "a = hello, you" 2 echo "$a" # 0</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P ><A NAME="FAILQUOTE" ></A ></P ><P >Sometimes variables within <SPAN CLASS="QUOTE" >"test"</SPAN > brackets ([ ]) need to be quoted (double quotes). Failure to do so may cause unexpected behavior. See <A HREF="comparison-ops.html#STRTEST" >Example 7-6</A >, <A HREF="redircb.html#REDIR2" >Example 20-5</A >, and <A HREF="variables2.html#ARGLIST" >Example 9-6</A >.</P ></LI ><LI ><P ><A NAME="FAILNOTQUOTE" ></A ></P ><P >Quoting a variable containing whitespace <A HREF="quoting.html#WSQUO" >prevents splitting</A >. Sometimes this produces <A HREF="quoting.html#VARSPLITTING" >unintended consequences</A >.</P ></LI ><LI ><P ><A NAME="EXECPERM" ></A ></P ><P >Commands issued from a script may fail to execute because the script owner lacks execute permission for them. If a user cannot invoke a command from the command-line, then putting it into a script will likewise fail. Try changing the attributes of the command in question, perhaps even setting the suid bit (as <I CLASS="FIRSTTERM" >root</I >, of course).</P ></LI ><LI ><P ><A NAME="DASHNREDR" ></A ></P ><P >Attempting to use <B CLASS="COMMAND" >-</B > as a redirection operator (which it is not) will usually result in an unpleasant surprise.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 command1 2> - | command2 2 # Trying to redirect error output of command1 into a pipe . . . 3 # . . . will not work. 4 5 command1 2>& - | command2 # Also futile. 6 7 Thanks, S.C.</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P ><A NAME="LATEVERF" ></A ></P ><P >Using Bash <A HREF="bash2.html#BASH2REF" >version 2+</A > functionality may cause a bailout with error messages. Older Linux machines may have version 1.XX of Bash as the default installation.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 minimum_version=2 4 # Since Chet Ramey is constantly adding features to Bash, 5 # you may set $minimum_version to 2.XX, 3.XX, or whatever is appropriate. 6 E_BAD_VERSION=80 7 8 if [ "$BASH_VERSION" \< "$minimum_version" ] 9 then 10 echo "This script works only with Bash, version $minimum or greater." 11 echo "Upgrade strongly recommended." 12 exit $E_BAD_VERSION 13 fi 14 15 ...</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P >Using Bash-specific functionality in a <A HREF="why-shell.html#BASHDEF" >Bourne shell</A > script (<TT CLASS="USERINPUT" ><B >#!/bin/sh</B ></TT >) on a non-Linux machine <A HREF="gotchas.html#BINSH" >may cause unexpected behavior</A >. A Linux system usually aliases <B CLASS="COMMAND" >sh</B > to <B CLASS="COMMAND" >bash</B >, but this does not necessarily hold true for a generic UNIX machine.</P ></LI ><LI ><P ><A NAME="UNDOCF" ></A ></P ><P >Using undocumented features in Bash turns out to be a dangerous practice. In previous releases of this book there were several scripts that depended on the <SPAN CLASS="QUOTE" >"feature"</SPAN > that, although the maximum value of an <A HREF="exit-status.html#EXITSTATUSREF" >exit</A > or <A HREF="functions.html#RETURNREF" >return</A > value was 255, that limit did not apply to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >negative</I ></SPAN > integers. Unfortunately, in version 2.05b and later, that loophole disappeared. See <A HREF="functions.html#RETURNTEST" >Example 24-9</A >.</P ></LI ><LI ><P ><A NAME="GOTCHAEXITVALANAMALIES" ></A ></P ><P >In certain contexts, a misleading <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > may be returned. This may occur when <A HREF="localvar.html#EXITVALANOMALY01" >setting a local variable within a function</A > or when <A HREF="internal.html#EXITVALANOMALY02" >assigning an arithmetic value to a variable</A >.</P ></LI ><LI ><P ><A NAME="ARXS1" ></A >The <A HREF="tests.html#ARXS" >exit status of an arithmetic expression</A > is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > equivalent to an <I CLASS="FIRSTTERM" >error code</I >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var=1 && ((--var)) && echo $var 2 # ^^^^^^^^^ Here the and-list terminates with exit status 1. 3 # $var doesn't echo! 4 echo $? # 1</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P ><A NAME="DOSNEWLINES" ></A ></P ><P > A script with DOS-type newlines (<TT CLASS="REPLACEABLE" ><I >\r\n</I ></TT >) will fail to execute, since <TT CLASS="USERINPUT" ><B >#!/bin/bash\r\n</B ></TT > is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > recognized, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > the same as the expected <TT CLASS="USERINPUT" ><B >#!/bin/bash\n</B ></TT >. The fix is to convert the script to UNIX-style newlines.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo "Here" 4 5 unix2dos $0 # Script changes itself to DOS format. 6 chmod 755 $0 # Change back to execute permission. 7 # The 'unix2dos' command removes execute permission. 8 9 ./$0 # Script tries to run itself again. 10 # But it won't work as a DOS file. 11 12 echo "There" 13 14 exit 0</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="BINSH" ></A ></P ><P >A shell script headed by <TT CLASS="USERINPUT" ><B >#!/bin/sh</B ></TT > will not run in full Bash-compatibility mode. Some Bash-specific functions might be disabled. Scripts that need complete access to all the Bash-specific extensions should start with <TT CLASS="USERINPUT" ><B >#!/bin/bash</B ></TT >.</P ></LI ><LI ><P ><A HREF="here-docs.html#INDENTEDLS" >Putting whitespace in front of the terminating limit string</A > of a <A HREF="here-docs.html#HEREDOCREF" >here document</A > will cause unexpected behavior in a script.</P ></LI ><LI ><P ><A NAME="RVTCAUTION2" ></A >Putting more than one <I CLASS="FIRSTTERM" >echo</I > statement in a function <A HREF="assortedtips.html#RVT" >whose output is captured</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 add2 () 2 { 3 echo "Whatever ... " # Delete this line! 4 let "retval = $1 + $2" 5 echo $retval 6 } 7 8 num1=12 9 num2=43 10 echo "Sum of $num1 and $num2 = $(add2 $num1 $num2)" 11 12 # Sum of 12 and 43 = Whatever ... 13 # 55 14 15 # The "echoes" concatenate.</PRE ></TD ></TR ></TABLE > This <A HREF="assortedtips.html#RVTCAUTION" >will not work</A >.</P ></LI ><LI ><P ><A NAME="PARCHILDPROBREF" ></A ></P ><P >A script may not <B CLASS="COMMAND" >export</B > variables back to its <A HREF="internal.html#FORKREF" >parent process</A >, the shell, or to the environment. Just as we learned in biology, a child process can inherit from a parent, but not vice versa.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 WHATEVER=/home/bozo 2 export WHATEVER 3 exit 0</PRE ></TD ></TR ></TABLE > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><B CLASS="COMMAND" >echo $WHATEVER</B > <TT CLASS="COMPUTEROUTPUT" ></TT > <TT CLASS="PROMPT" >bash$ </TT ></PRE ></TD ></TR ></TABLE > </P ><P > Sure enough, back at the command prompt, $WHATEVER remains unset. </P ></LI ><LI ><P ><A NAME="VARSUBSH" ></A ></P ><P >Setting and manipulating variables in a <A HREF="subshells.html#SUBSHELLSREF" >subshell</A >, then attempting to use those same variables outside the scope of the subshell will result an unpleasant surprise.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SUBPIT" ></A ><P ><B >Example 34-2. Subshell Pitfalls</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Pitfalls of variables in a subshell. 3 4 outer_variable=outer 5 echo 6 echo "outer_variable = $outer_variable" 7 echo 8 9 ( 10 # Begin subshell 11 12 echo "outer_variable inside subshell = $outer_variable" 13 inner_variable=inner # Set 14 echo "inner_variable inside subshell = $inner_variable" 15 outer_variable=inner # Will value change globally? 16 echo "outer_variable inside subshell = $outer_variable" 17 18 # Will 'exporting' make a difference? 19 # export inner_variable 20 # export outer_variable 21 # Try it and see. 22 23 # End subshell 24 ) 25 26 echo 27 echo "inner_variable outside subshell = $inner_variable" # Unset. 28 echo "outer_variable outside subshell = $outer_variable" # Unchanged. 29 echo 30 31 exit 0 32 33 # What happens if you uncomment lines 19 and 20? 34 # Does it make a difference?</PRE ></TD ></TR ></TABLE ><HR></DIV ></LI ><LI ><P ><A NAME="BADREAD0" ></A ></P ><P ><A HREF="special-chars.html#PIPEREF" >Piping</A > <B CLASS="COMMAND" >echo</B > output to a <A HREF="internal.html#READREF" >read</A > may produce unexpected results. In this scenario, the <B CLASS="COMMAND" >read</B > acts as if it were running in a subshell. Instead, use the <A HREF="internal.html#SETREF" >set</A > command (as in <A HREF="internal.html#SETPOS" >Example 15-18</A >).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BADREAD" ></A ><P ><B >Example 34-3. Piping the output of <I CLASS="FIRSTTERM" >echo</I > to a <I CLASS="FIRSTTERM" >read</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # badread.sh: 3 # Attempting to use 'echo and 'read' 4 #+ to assign variables non-interactively. 5 6 # shopt -s lastpipe 7 8 a=aaa 9 b=bbb 10 c=ccc 11 12 echo "one two three" | read a b c 13 # Try to reassign a, b, and c. 14 15 echo 16 echo "a = $a" # a = aaa 17 echo "b = $b" # b = bbb 18 echo "c = $c" # c = ccc 19 # Reassignment failed. 20 21 ### However . . . 22 ## Uncommenting line 6: 23 # shopt -s lastpipe 24 ##+ fixes the problem! 25 ### This is a new feature in Bash, version 4.2. 26 27 # ------------------------------ 28 29 # Try the following alternative. 30 31 var=`echo "one two three"` 32 set -- $var 33 a=$1; b=$2; c=$3 34 35 echo "-------" 36 echo "a = $a" # a = one 37 echo "b = $b" # b = two 38 echo "c = $c" # c = three 39 # Reassignment succeeded. 40 41 # ------------------------------ 42 43 # Note also that an echo to a 'read' works within a subshell. 44 # However, the value of the variable changes *only* within the subshell. 45 46 a=aaa # Starting all over again. 47 b=bbb 48 c=ccc 49 50 echo; echo 51 echo "one two three" | ( read a b c; 52 echo "Inside subshell: "; echo "a = $a"; echo "b = $b"; echo "c = $c" ) 53 # a = one 54 # b = two 55 # c = three 56 echo "-----------------" 57 echo "Outside subshell: " 58 echo "a = $a" # a = aaa 59 echo "b = $b" # b = bbb 60 echo "c = $c" # c = ccc 61 echo 62 63 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="PIPELOOP" ></A ></P ><P >In fact, as Anthony Richardson points out, piping to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >any</I ></SPAN > loop can cause a similar problem.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Loop piping troubles. 2 # This example by Anthony Richardson, 3 #+ with addendum by Wilbert Berendsen. 4 5 6 foundone=false 7 find $HOME -type f -atime +30 -size 100k | 8 while true 9 do 10 read f 11 echo "$f is over 100KB and has not been accessed in over 30 days" 12 echo "Consider moving the file to archives." 13 foundone=true 14 # ------------------------------------ 15 echo "Subshell level = $BASH_SUBSHELL" 16 # Subshell level = 1 17 # Yes, we're inside a subshell. 18 # ------------------------------------ 19 done 20 21 # foundone will always be false here since it is 22 #+ set to true inside a subshell 23 if [ $foundone = false ] 24 then 25 echo "No files need archiving." 26 fi 27 28 # =====================Now, here is the correct way:================= 29 30 foundone=false 31 for f in $(find $HOME -type f -atime +30 -size 100k) # No pipe here. 32 do 33 echo "$f is over 100KB and has not been accessed in over 30 days" 34 echo "Consider moving the file to archives." 35 foundone=true 36 done 37 38 if [ $foundone = false ] 39 then 40 echo "No files need archiving." 41 fi 42 43 # ==================And here is another alternative================== 44 45 # Places the part of the script that reads the variables 46 #+ within a code block, so they share the same subshell. 47 # Thank you, W.B. 48 49 find $HOME -type f -atime +30 -size 100k | { 50 foundone=false 51 while read f 52 do 53 echo "$f is over 100KB and has not been accessed in over 30 days" 54 echo "Consider moving the file to archives." 55 foundone=true 56 done 57 58 if ! $foundone 59 then 60 echo "No files need archiving." 61 fi 62 }</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="PTAILGREP" ></A ></P ><P > A lookalike problem occurs when trying to write the <TT CLASS="FILENAME" >stdout</TT > of a <B CLASS="COMMAND" >tail -f</B > piped to <A HREF="textproc.html#GREPREF" >grep</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 tail -f /var/log/messages | grep "$ERROR_MSG" >> error.log 2 # The "error.log" file will not have anything written to it. 3 # As Samuli Kaipiainen points out, this results from grep 4 #+ buffering its output. 5 # The fix is to add the "--line-buffered" parameter to grep.</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><A NAME="SUIDSCR" ></A ></P ><P >Using <SPAN CLASS="QUOTE" >"suid"</SPAN > commands within scripts is risky, as it may compromise system security. <A NAME="AEN19993" HREF="#FTN.AEN19993" >[1]</A > </P ></LI ><LI ><P ><A NAME="CGIREF" ></A ></P ><P >Using shell scripts for CGI programming may be problematic. Shell script variables are not <SPAN CLASS="QUOTE" >"typesafe,"</SPAN > and this can cause undesirable behavior as far as CGI is concerned. Moreover, it is difficult to <SPAN CLASS="QUOTE" >"cracker-proof"</SPAN > shell scripts.</P ></LI ><LI ><P >Bash does not handle the <A HREF="internal.html#DOUBLESLASHREF" >double slash (<SPAN CLASS="TOKEN" >//</SPAN >) string</A > correctly.</P ></LI ><LI ><P ><A NAME="GNUREF" ></A ></P ><P >Bash scripts written for Linux or BSD systems may need fixups to run on a commercial UNIX machine. Such scripts often employ the GNU set of commands and filters, which have greater functionality than their generic UNIX counterparts. This is particularly true of such text processing utilites as <A HREF="textproc.html#TRREF" >tr</A >.</P ></LI ><LI ><P ><A NAME="UPDATEBREAKS" ></A ></P ><P >Sadly, updates to Bash itself have broken older scripts that <A HREF="manipulatingvars.html#PARAGRAPHSPACE" >used to work perfectly fine</A >. Let us recall <A HREF="gotchas.html#UNDOCF" >how risky it is to use undocumented Bash features</A >.</P ></LI ></UL ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Danger is near thee --</I ></P ><P ><I >Beware, beware, beware, beware.</I ></P ><P ><I >Many brave hearts are asleep in the deep.</I ></P ><P ><I >So beware --</I ></P ><P ><I >Beware.</I ></P ><P ><I >--A.J. Lamb and H.W. Petrie</I ></P ></I ></TD ></TR ></TABLE ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN19993" HREF="gotchas.html#AEN19993" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Setting the <A HREF="fto.html#SUIDREF" >suid</A > permission on the script itself has no effect in Linux and most other UNIX flavors.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="options.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="scrstyle.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Options</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Scripting With Style</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/here-docs.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Here Documents</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Globbing" HREF="globbingref.html"><LINK REL="NEXT" TITLE="I/O Redirection" HREF="io-redirection.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="globbingref.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="io-redirection.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="HERE-DOCS" ></A >Chapter 19. Here Documents</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Here and now, boys.</I ></P ><P ><I >--Aldous Huxley, <I CLASS="FIRSTTERM" >Island</I ></I ></P ></I ></TD ></TR ></TABLE ><P ><A NAME="HEREDOCREF" ></A ></P ><P >A <I CLASS="FIRSTTERM" >here document</I > is a special-purpose code block. It uses a form of <A HREF="io-redirection.html#IOREDIRREF" >I/O redirection</A > to feed a command list to an interactive program or a command, such as <A HREF="communications.html#FTPREF" >ftp</A >, <A HREF="external.html#CATREF" >cat</A >, or the <I CLASS="FIRSTTERM" >ex</I > text editor.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 COMMAND <<InputComesFromHERE 2 ... 3 ... 4 ... 5 InputComesFromHERE</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="LIMITSTRINGREF" ></A ></P ><P >A <I CLASS="FIRSTTERM" >limit string</I > delineates (frames) the command list. The special symbol <SPAN CLASS="TOKEN" ><<</SPAN > precedes the limit string. This has the effect of redirecting the output of a command block into the <TT CLASS="FILENAME" >stdin</TT > of the program or command. It is similar to <TT CLASS="USERINPUT" ><B >interactive-program < command-file</B ></TT >, where <TT CLASS="FILENAME" >command-file</TT > contains <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 command #1 2 command #2 3 ...</PRE ></TD ></TR ></TABLE ></P ><P >The <I CLASS="FIRSTTERM" >here document</I > equivalent looks like this: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 interactive-program <<LimitString 2 command #1 3 command #2 4 ... 5 LimitString</PRE ></TD ></TR ></TABLE ></P ><P >Choose a <I CLASS="FIRSTTERM" >limit string</I > sufficiently unusual that it will not occur anywhere in the command list and confuse matters.</P ><P >Note that <I CLASS="FIRSTTERM" >here documents</I > may sometimes be used to good effect with non-interactive utilities and commands, such as, for example, <A HREF="system.html#WALLREF" >wall</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX70" ></A ><P ><B >Example 19-1. <I CLASS="FIRSTTERM" >broadcast</I >: Sends message to everyone logged in</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 wall <<zzz23EndOfMessagezzz23 4 E-mail your noontime orders for pizza to the system administrator. 5 (Add an extra dollar for anchovy or mushroom topping.) 6 # Additional message text goes here. 7 # Note: 'wall' prints comment lines. 8 zzz23EndOfMessagezzz23 9 10 # Could have been done more efficiently by 11 # wall <message-file 12 # However, embedding the message template in a script 13 #+ is a quick-and-dirty one-off solution. 14 15 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="VIHERE" ></A ></P ><P >Even such unlikely candidates as the <I CLASS="FIRSTTERM" >vi</I > text editor lend themselves to <I CLASS="FIRSTTERM" >here documents</I >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX69" ></A ><P ><B >Example 19-2. <I CLASS="FIRSTTERM" >dummyfile</I >: Creates a 2-line dummy file</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Noninteractive use of 'vi' to edit a file. 4 # Emulates 'sed'. 5 6 E_BADARGS=85 7 8 if [ -z "$1" ] 9 then 10 echo "Usage: `basename $0` filename" 11 exit $E_BADARGS 12 fi 13 14 TARGETFILE=$1 15 16 # Insert 2 lines in file, then save. 17 #--------Begin here document-----------# 18 vi $TARGETFILE <<x23LimitStringx23 19 i 20 This is line 1 of the example file. 21 This is line 2 of the example file. 22 ^[ 23 ZZ 24 x23LimitStringx23 25 #----------End here document-----------# 26 27 # Note that ^[ above is a literal escape 28 #+ typed by Control-V <Esc>. 29 30 # Bram Moolenaar points out that this may not work with 'vim' 31 #+ because of possible problems with terminal interaction. 32 33 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P > The above script could just as effectively have been implemented with <B CLASS="COMMAND" >ex</B >, rather than <B CLASS="COMMAND" >vi</B >. <A NAME="EXSCRIPTREF" ></A ><I CLASS="FIRSTTERM" >Here documents</I > containing a list of <B CLASS="COMMAND" >ex</B > commands are common enough to form their own category, known as <I CLASS="FIRSTTERM" >ex scripts</I >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Replace all instances of "Smith" with "Jones" 3 #+ in files with a ".txt" filename suffix. 4 5 ORIGINAL=Smith 6 REPLACEMENT=Jones 7 8 for word in $(fgrep -l $ORIGINAL *.txt) 9 do 10 # ------------------------------------- 11 ex $word <<EOF 12 :%s/$ORIGINAL/$REPLACEMENT/g 13 :wq 14 EOF 15 # :%s is the "ex" substitution command. 16 # :wq is write-and-quit. 17 # ------------------------------------- 18 done</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="CATSCRIPTREF" ></A ></P ><P >Analogous to <SPAN CLASS="QUOTE" >"ex scripts"</SPAN > are <I CLASS="FIRSTTERM" >cat scripts</I >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX71" ></A ><P ><B >Example 19-3. Multi-line message using <I CLASS="FIRSTTERM" >cat</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # 'echo' is fine for printing single line messages, 4 #+ but somewhat problematic for for message blocks. 5 # A 'cat' here document overcomes this limitation. 6 7 cat <<End-of-message 8 ------------------------------------- 9 This is line 1 of the message. 10 This is line 2 of the message. 11 This is line 3 of the message. 12 This is line 4 of the message. 13 This is the last line of the message. 14 ------------------------------------- 15 End-of-message 16 17 # Replacing line 7, above, with 18 #+ cat > $Newfile <<End-of-message 19 #+ ^^^^^^^^^^ 20 #+ writes the output to the file $Newfile, rather than to stdout. 21 22 exit 0 23 24 25 #-------------------------------------------- 26 # Code below disabled, due to "exit 0" above. 27 28 # S.C. points out that the following also works. 29 echo "------------------------------------- 30 This is line 1 of the message. 31 This is line 2 of the message. 32 This is line 3 of the message. 33 This is line 4 of the message. 34 This is the last line of the message. 35 -------------------------------------" 36 # However, text may not include double quotes unless they are escaped.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="LIMITSTRDASH" ></A ></P ><P >The <TT CLASS="OPTION" >-</TT > option to mark a here document limit string (<TT CLASS="USERINPUT" ><B ><<-LimitString</B ></TT >) suppresses leading tabs (but not spaces) in the output. This may be useful in making a script more readable.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX71A" ></A ><P ><B >Example 19-4. Multi-line message, with tabs suppressed</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Same as previous example, but... 3 4 # The - option to a here document <<- 5 #+ suppresses leading tabs in the body of the document, 6 #+ but *not* spaces. 7 8 cat <<-ENDOFMESSAGE 9 This is line 1 of the message. 10 This is line 2 of the message. 11 This is line 3 of the message. 12 This is line 4 of the message. 13 This is the last line of the message. 14 ENDOFMESSAGE 15 # The output of the script will be flush left. 16 # Leading tab in each line will not show. 17 18 # Above 5 lines of "message" prefaced by a tab, not spaces. 19 # Spaces not affected by <<- . 20 21 # Note that this option has no effect on *embedded* tabs. 22 23 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="HEREPASSP" ></A ></P ><P >A <I CLASS="FIRSTTERM" >here document</I > supports parameter and command substitution. It is therefore possible to pass different parameters to the body of the here document, changing its output accordingly.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX71B" ></A ><P ><B >Example 19-5. Here document with replaceable parameters</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Another 'cat' here document, using parameter substitution. 3 4 # Try it with no command-line parameters, ./scriptname 5 # Try it with one command-line parameter, ./scriptname Mortimer 6 # Try it with one two-word quoted command-line parameter, 7 # ./scriptname "Mortimer Jones" 8 9 CMDLINEPARAM=1 # Expect at least command-line parameter. 10 11 if [ $# -ge $CMDLINEPARAM ] 12 then 13 NAME=$1 # If more than one command-line param, 14 #+ then just take the first. 15 else 16 NAME="John Doe" # Default, if no command-line parameter. 17 fi 18 19 RESPONDENT="the author of this fine script" 20 21 22 cat <<Endofmessage 23 24 Hello, there, $NAME. 25 Greetings to you, $NAME, from $RESPONDENT. 26 27 # This comment shows up in the output (why?). 28 29 Endofmessage 30 31 # Note that the blank lines show up in the output. 32 # So does the comment. 33 34 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="HEREPARAMSUB" ></A ></P ><P >This is a useful script containing a <I CLASS="FIRSTTERM" >here document</I > with parameter substitution.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX72" ></A ><P ><B >Example 19-6. Upload a file pair to <I CLASS="FIRSTTERM" >Sunsite</I > incoming directory</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # upload.sh 3 4 # Upload file pair (Filename.lsm, Filename.tar.gz) 5 #+ to incoming directory at Sunsite/UNC (ibiblio.org). 6 # Filename.tar.gz is the tarball itself. 7 # Filename.lsm is the descriptor file. 8 # Sunsite requires "lsm" file, otherwise will bounce contributions. 9 10 11 E_ARGERROR=85 12 13 if [ -z "$1" ] 14 then 15 echo "Usage: `basename $0` Filename-to-upload" 16 exit $E_ARGERROR 17 fi 18 19 20 Filename=`basename $1` # Strips pathname out of file name. 21 22 Server="ibiblio.org" 23 Directory="/incoming/Linux" 24 # These need not be hard-coded into script, 25 #+ but may instead be changed to command-line argument. 26 27 Password="your.e-mail.address" # Change above to suit. 28 29 ftp -n $Server <<End-Of-Session 30 # -n option disables auto-logon 31 32 user anonymous "$Password" # If this doesn't work, then try: 33 # quote user anonymous "$Password" 34 binary 35 bell # Ring 'bell' after each file transfer. 36 cd $Directory 37 put "$Filename.lsm" 38 put "$Filename.tar.gz" 39 bye 40 End-Of-Session 41 42 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="HEREESC" ></A ></P ><P >Quoting or escaping the <SPAN CLASS="QUOTE" >"limit string"</SPAN > at the head of a here document disables parameter substitution within its body. The reason for this is that <I CLASS="FIRSTTERM" >quoting/escaping the limit string</I > effectively <A HREF="escapingsection.html#ESCP" >escapes</A > the <SPAN CLASS="TOKEN" >$</SPAN >, <SPAN CLASS="TOKEN" >`</SPAN >, and <SPAN CLASS="TOKEN" >\</SPAN > <A HREF="special-chars.html#SCHARLIST" >special characters</A >, and causes them to be interpreted literally. (Thank you, Allen Halsey, for pointing this out.)</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX71C" ></A ><P ><B >Example 19-7. Parameter substitution turned off</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # A 'cat' here-document, but with parameter substitution disabled. 3 4 NAME="John Doe" 5 RESPONDENT="the author of this fine script" 6 7 cat <<'Endofmessage' 8 9 Hello, there, $NAME. 10 Greetings to you, $NAME, from $RESPONDENT. 11 12 Endofmessage 13 14 # No parameter substitution when the "limit string" is quoted or escaped. 15 # Either of the following at the head of the here document would have 16 #+ the same effect. 17 # cat <<"Endofmessage" 18 # cat <<\Endofmessage 19 20 21 22 # And, likewise: 23 24 cat <<"SpecialCharTest" 25 26 Directory listing would follow 27 if limit string were not quoted. 28 `ls -l` 29 30 Arithmetic expansion would take place 31 if limit string were not quoted. 32 $((5 + 3)) 33 34 A a single backslash would echo 35 if limit string were not quoted. 36 \\ 37 38 SpecialCharTest 39 40 41 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="HERELIT" ></A ></P ><P >Disabling parameter substitution permits outputting literal text. Generating scripts or even program code is one use for this.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="GENERATESCRIPT" ></A ><P ><B >Example 19-8. A script that generates another script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # generate-script.sh 3 # Based on an idea by Albert Reiner. 4 5 OUTFILE=generated.sh # Name of the file to generate. 6 7 8 # ----------------------------------------------------------- 9 # 'Here document containing the body of the generated script. 10 ( 11 cat <<'EOF' 12 #!/bin/bash 13 14 echo "This is a generated shell script." 15 # Note that since we are inside a subshell, 16 #+ we can't access variables in the "outside" script. 17 18 echo "Generated file will be named: $OUTFILE" 19 # Above line will not work as normally expected 20 #+ because parameter expansion has been disabled. 21 # Instead, the result is literal output. 22 23 a=7 24 b=3 25 26 let "c = $a * $b" 27 echo "c = $c" 28 29 exit 0 30 EOF 31 ) > $OUTFILE 32 # ----------------------------------------------------------- 33 34 # Quoting the 'limit string' prevents variable expansion 35 #+ within the body of the above 'here document.' 36 # This permits outputting literal strings in the output file. 37 38 if [ -f "$OUTFILE" ] 39 then 40 chmod 755 $OUTFILE 41 # Make the generated file executable. 42 else 43 echo "Problem in creating file: \"$OUTFILE\"" 44 fi 45 46 # This method also works for generating 47 #+ C programs, Perl programs, Python programs, Makefiles, 48 #+ and the like. 49 50 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="HERECS" ></A ></P ><P > It is possible to set a variable from the output of a here document. This is actually a devious form of <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 variable=$(cat <<SETVAR 2 This variable 3 runs over multiple lines. 4 SETVAR 5 ) 6 7 echo "$variable"</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="HEREFUNC" ></A ></P ><P >A here document can supply input to a function in the same script.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="HF" ></A ><P ><B >Example 19-9. Here documents and functions</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # here-function.sh 3 4 GetPersonalData () 5 { 6 read firstname 7 read lastname 8 read address 9 read city 10 read state 11 read zipcode 12 } # This certainly appears to be an interactive function, but . . . 13 14 15 # Supply input to the above function. 16 GetPersonalData <<RECORD001 17 Bozo 18 Bozeman 19 2726 Nondescript Dr. 20 Bozeman 21 MT 22 21226 23 RECORD001 24 25 26 echo 27 echo "$firstname $lastname" 28 echo "$address" 29 echo "$city, $state $zipcode" 30 echo 31 32 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="ANONHEREDOC0" ></A ></P ><P >It is possible to use <SPAN CLASS="TOKEN" >:</SPAN > as a dummy command accepting output from a here document. This, in effect, creates an <SPAN CLASS="QUOTE" >"anonymous"</SPAN > here document.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ANONHEREDOC" ></A ><P ><B >Example 19-10. <SPAN CLASS="QUOTE" >"Anonymous"</SPAN > Here Document</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 : <<TESTVARIABLES 4 ${HOSTNAME?}${USER?}${MAIL?} # Print error message if one of the variables not set. 5 TESTVARIABLES 6 7 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="CBLOCK1" ></A ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A variation of the above technique permits <SPAN CLASS="QUOTE" >"commenting out"</SPAN > blocks of code.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="COMMENTBLOCK" ></A ><P ><B >Example 19-11. Commenting out a block of code</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # commentblock.sh 3 4 : <<COMMENTBLOCK 5 echo "This line will not echo." 6 This is a comment line missing the "#" prefix. 7 This is another comment line missing the "#" prefix. 8 9 &*@!!++= 10 The above line will cause no error message, 11 because the Bash interpreter will ignore it. 12 COMMENTBLOCK 13 14 echo "Exit value of above \"COMMENTBLOCK\" is $?." # 0 15 # No error shown. 16 echo 17 18 19 # The above technique also comes in useful for commenting out 20 #+ a block of working code for debugging purposes. 21 # This saves having to put a "#" at the beginning of each line, 22 #+ then having to go back and delete each "#" later. 23 # Note that the use of of colon, above, is optional. 24 25 echo "Just before commented-out code block." 26 # The lines of code between the double-dashed lines will not execute. 27 # =================================================================== 28 : <<DEBUGXXX 29 for file in * 30 do 31 cat "$file" 32 done 33 DEBUGXXX 34 # =================================================================== 35 echo "Just after commented-out code block." 36 37 exit 0 38 39 40 41 ###################################################################### 42 # Note, however, that if a bracketed variable is contained within 43 #+ the commented-out code block, 44 #+ then this could cause problems. 45 # for example: 46 47 48 #/!/bin/bash 49 50 : <<COMMENTBLOCK 51 echo "This line will not echo." 52 &*@!!++= 53 ${foo_bar_bazz?} 54 $(rm -rf /tmp/foobar/) 55 $(touch my_build_directory/cups/Makefile) 56 COMMENTBLOCK 57 58 59 $ sh commented-bad.sh 60 commented-bad.sh: line 3: foo_bar_bazz: parameter null or not set 61 62 # The remedy for this is to strong-quote the 'COMMENTBLOCK' in line 49, above. 63 64 : <<'COMMENTBLOCK' 65 66 # Thank you, Kurt Pfeifle, for pointing this out.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="HSELFDOC" ></A ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Yet another twist of this nifty trick makes <SPAN CLASS="QUOTE" >"self-documenting"</SPAN > scripts possible.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="SELFDOCUMENT" ></A ><P ><B >Example 19-12. A self-documenting script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # self-document.sh: self-documenting script 3 # Modification of "colm.sh". 4 5 DOC_REQUEST=70 6 7 if [ "$1" = "-h" -o "$1" = "--help" ] # Request help. 8 then 9 echo; echo "Usage: $0 [directory-name]"; echo 10 sed --silent -e '/DOCUMENTATIONXX$/,/^DOCUMENTATIONXX$/p' "$0" | 11 sed -e '/DOCUMENTATIONXX$/d'; exit $DOC_REQUEST; fi 12 13 14 : <<DOCUMENTATIONXX 15 List the statistics of a specified directory in tabular format. 16 --------------------------------------------------------------- 17 The command-line parameter gives the directory to be listed. 18 If no directory specified or directory specified cannot be read, 19 then list the current working directory. 20 21 DOCUMENTATIONXX 22 23 if [ -z "$1" -o ! -r "$1" ] 24 then 25 directory=. 26 else 27 directory="$1" 28 fi 29 30 echo "Listing of "$directory":"; echo 31 (printf "PERMISSIONS LINKS OWNER GROUP SIZE MONTH DAY HH:MM PROG-NAME\n" \ 32 ; ls -l "$directory" | sed 1d) | column -t 33 34 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Using a <A HREF="here-docs.html#CATSCRIPTREF" >cat script</A > is an alternate way of accomplishing this.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 DOC_REQUEST=70 2 3 if [ "$1" = "-h" -o "$1" = "--help" ] # Request help. 4 then # Use a "cat script" . . . 5 cat <<DOCUMENTATIONXX 6 List the statistics of a specified directory in tabular format. 7 --------------------------------------------------------------- 8 The command-line parameter gives the directory to be listed. 9 If no directory specified or directory specified cannot be read, 10 then list the current working directory. 11 12 DOCUMENTATIONXX 13 exit $DOC_REQUEST 14 fi</PRE ></TD ></TR ></TABLE > </P ><P >See also <A HREF="contributed-scripts.html#ISSPAMMER2" >Example A-28</A >, <A HREF="contributed-scripts.html#PETALS" >Example A-40</A >, <A HREF="contributed-scripts.html#QKY" >Example A-41</A >, and <A HREF="contributed-scripts.html#NIM" >Example A-42</A > for more examples of self-documenting scripts.</P ><P ><A NAME="HERETEMP" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Here documents create temporary files, but these files are deleted after opening and are not accessible to any other process.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >bash -c 'lsof -a -p $$ -d0' << EOF</B ></TT > <TT CLASS="PROMPT" >> </TT ><TT CLASS="USERINPUT" ><B >EOF</B ></TT > <TT CLASS="COMPUTEROUTPUT" >lsof 1213 bozo 0r REG 3,5 0 30386 /tmp/t1213-0-sh (deleted)</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Some utilities will not work inside a <I CLASS="FIRSTTERM" >here document</I >.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="INDENTEDLS" ></A ></P ><DIV CLASS="WARNING" ><TABLE CLASS="WARNING" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/warning.png" HSPACE="5" ALT="Warning"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The closing <I CLASS="FIRSTTERM" >limit string</I >, on the final line of a here document, must start in the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >first</I ></SPAN > character position. There can be <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >no leading whitespace</I ></SPAN >. Trailing whitespace after the limit string likewise causes unexpected behavior. The whitespace prevents the limit string from being recognized. <A NAME="AEN17822" HREF="#FTN.AEN17822" >[1]</A > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo "----------------------------------------------------------------------" 4 5 cat <<LimitString 6 echo "This is line 1 of the message inside the here document." 7 echo "This is line 2 of the message inside the here document." 8 echo "This is the final line of the message inside the here document." 9 LimitString 10 #^^^^Indented limit string. Error! This script will not behave as expected. 11 12 echo "----------------------------------------------------------------------" 13 14 # These comments are outside the 'here document', 15 #+ and should not echo. 16 17 echo "Outside the here document." 18 19 exit 0 20 21 echo "This line had better not echo." # Follows an 'exit' command.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="EXCLLS" ></A >Some people very cleverly use a single <SPAN CLASS="TOKEN" >!</SPAN > as a limit string. But, that's not necessarily a good idea.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # This works. 2 cat <<! 3 Hello! 4 ! Three more exclamations !!! 5 ! 6 7 8 # But . . . 9 cat <<! 10 Hello! 11 Single exclamation point follows! 12 ! 13 ! 14 # Crashes with an error message. 15 16 17 # However, the following will work. 18 cat <<EOF 19 Hello! 20 Single exclamation point follows! 21 ! 22 EOF 23 # It's safer to use a multi-character limit string.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><P >For those tasks too complex for a <I CLASS="FIRSTTERM" >here document</I >, consider using the <TT CLASS="REPLACEABLE" ><I >expect</I ></TT > scripting language, which was specifically designed for feeding input into interactive programs.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="AEN17837" ></A >19.1. Here Strings</H1 ><P ><A NAME="HERESTRINGSREF" ></A ></P ><A NAME="AEN17841" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" ><P CLASS="LITERALLAYOUT" >A <I CLASS="FIRSTTERM" >here string</I > can be considered as a stripped-down form of a <I CLASS="FIRSTTERM" >here document</I >.<br> It consists of nothing more than <B CLASS="COMMAND" >COMMAND <<< $WORD</B >,<br> where <TT CLASS="VARNAME" >$WORD</TT > is expanded and fed to the <TT CLASS="FILENAME" >stdin</TT > of <B CLASS="COMMAND" >COMMAND</B >.<br> </P ></BLOCKQUOTE ><P >As a simple example, consider this alternative to the <A HREF="internal.html#ECHOGREPREF" >echo-grep</A > construction.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Instead of: 2 if echo "$VAR" | grep -q txt # if [[ $VAR = *txt* ]] 3 # etc. 4 5 # Try: 6 if grep -q "txt" <<< "$VAR" 7 then # ^^^ 8 echo "$VAR contains the substring sequence \"txt\"" 9 fi 10 # Thank you, Sebastian Kaminski, for the suggestion.</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="HSREAD" ></A ></P ><P >Or, in combination with <A HREF="internal.html#READREF" >read</A >:</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 String="This is a string of words." 2 3 read -r -a Words <<< "$String" 4 # The -a option to "read" 5 #+ assigns the resulting values to successive members of an array. 6 7 echo "First word in String is: ${Words[0]}" # This 8 echo "Second word in String is: ${Words[1]}" # is 9 echo "Third word in String is: ${Words[2]}" # a 10 echo "Fourth word in String is: ${Words[3]}" # string 11 echo "Fifth word in String is: ${Words[4]}" # of 12 echo "Sixth word in String is: ${Words[5]}" # words. 13 echo "Seventh word in String is: ${Words[6]}" # (null) 14 # Past end of $String. 15 16 # Thank you, Francisco Lobo, for the suggestion.</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="HSLOOP" ></A >It is, of course, possible to feed the output of a <I CLASS="FIRSTTERM" >here string</I > into the <TT CLASS="FILENAME" >stdin</TT > of a <A HREF="loops.html#LOOPREF00" >loop</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # As Seamus points out . . . 2 3 ArrayVar=( element0 element1 element2 {A..D} ) 4 5 while read element ; do 6 echo "$element" 1>&2 7 done <<< $(echo ${ArrayVar[*]}) 8 9 # element0 element1 element2 A B C D</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="HSPRE" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="PREPENDEX" ></A ><P ><B >Example 19-13. Prepending a line to a file</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # prepend.sh: Add text at beginning of file. 3 # 4 # Example contributed by Kenny Stauffer, 5 #+ and slightly modified by document author. 6 7 8 E_NOSUCHFILE=85 9 10 read -p "File: " file # -p arg to 'read' displays prompt. 11 if [ ! -e "$file" ] 12 then # Bail out if no such file. 13 echo "File $file not found." 14 exit $E_NOSUCHFILE 15 fi 16 17 read -p "Title: " title 18 cat - $file <<<$title > $file.new 19 20 echo "Modified file is $file.new" 21 22 exit # Ends script execution. 23 24 from 'man bash': 25 Here Strings 26 A variant of here documents, the format is: 27 28 <<<word 29 30 The word is expanded and supplied to the command on its standard input. 31 32 33 Of course, the following also works: 34 sed -e '1i\ 35 Title: ' $file</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="MAILBOXGREP" ></A ><P ><B >Example 19-14. Parsing a mailbox</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Script by Francisco Lobo, 3 #+ and slightly modified and commented by ABS Guide author. 4 # Used in ABS Guide with permission. (Thank you!) 5 6 # This script will not run under Bash versions -lt 3.0. 7 8 9 E_MISSING_ARG=87 10 if [ -z "$1" ] 11 then 12 echo "Usage: $0 mailbox-file" 13 exit $E_MISSING_ARG 14 fi 15 16 mbox_grep() # Parse mailbox file. 17 { 18 declare -i body=0 match=0 19 declare -a date sender 20 declare mail header value 21 22 23 while IFS= read -r mail 24 # ^^^^ Reset $IFS. 25 # Otherwise "read" will strip leading & trailing space from its input. 26 27 do 28 if [[ $mail =~ ^From ]] # Match "From" field in message. 29 then 30 (( body = 0 )) # "Zero out" variables. 31 (( match = 0 )) 32 unset date 33 34 elif (( body )) 35 then 36 (( match )) 37 # echo "$mail" 38 # Uncomment above line if you want entire body 39 #+ of message to display. 40 41 elif [[ $mail ]]; then 42 IFS=: read -r header value <<< "$mail" 43 # ^^^ "here string" 44 45 case "$header" in 46 [Ff][Rr][Oo][Mm] ) [[ $value =~ "$2" ]] && (( match++ )) ;; 47 # Match "From" line. 48 [Dd][Aa][Tt][Ee] ) read -r -a date <<< "$value" ;; 49 # ^^^ 50 # Match "Date" line. 51 [Rr][Ee][Cc][Ee][Ii][Vv][Ee][Dd] ) read -r -a sender <<< "$value" ;; 52 # ^^^ 53 # Match IP Address (may be spoofed). 54 esac 55 56 else 57 (( body++ )) 58 (( match )) && 59 echo "MESSAGE ${date:+of: ${date[*]} }" 60 # Entire $date array ^ 61 echo "IP address of sender: ${sender[1]}" 62 # Second field of "Received" line ^ 63 64 fi 65 66 67 done < "$1" # Redirect stdout of file into loop. 68 } 69 70 71 mbox_grep "$1" # Send mailbox file to function. 72 73 exit $? 74 75 # Exercises: 76 # --------- 77 # 1) Break the single function, above, into multiple functions, 78 #+ for the sake of readability. 79 # 2) Add additional parsing to the script, checking for various keywords. 80 81 82 83 $ mailbox_grep.sh scam_mail 84 MESSAGE of Thu, 5 Jan 2006 08:00:56 -0500 (EST) 85 IP address of sender: 196.3.62.4</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Exercise: Find other uses for <I CLASS="FIRSTTERM" >here strings</I >, such as, for example, <A HREF="mathc.html#GOLDENRATIO" >feeding input to <I CLASS="FIRSTTERM" >dc</I ></A >.</P ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN17822" HREF="here-docs.html#AEN17822" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Except, as Dennis Benzinger points out, if <A HREF="here-docs.html#LIMITSTRDASH" >using <B CLASS="COMMAND" ><<-</B > to suppress tabs</A >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="globbingref.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="io-redirection.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Globbing</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >I/O Redirection</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/histcommands.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >History Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Localization" HREF="localization.html"><LINK REL="NEXT" TITLE="Sample .bashrc and .bash_profile Files" HREF="sample-bashrc.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="localization.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="sample-bashrc.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="HISTCOMMANDS" ></A >Appendix L. History Commands</H1 ><P >The Bash shell provides command-line tools for editing and manipulating a user's <I CLASS="FIRSTTERM" >command history</I >. This is primarily a convenience, a means of saving keystrokes.</P ><P >Bash history commands: <OL TYPE="1" ><LI ><P ><B CLASS="COMMAND" >history</B ></P ></LI ><LI ><P ><B CLASS="COMMAND" >fc</B ></P ></LI ></OL > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >history</B ></TT > <TT CLASS="COMPUTEROUTPUT" > 1 mount /mnt/cdrom 2 cd /mnt/cdrom 3 ls ...</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Internal variables associated with Bash history commands: <OL TYPE="1" ><LI ><P >$HISTCMD</P ></LI ><LI ><P >$HISTCONTROL</P ></LI ><LI ><P >$HISTIGNORE</P ></LI ><LI ><P >$HISTFILE</P ></LI ><LI ><P >$HISTFILESIZE</P ></LI ><LI ><P >$HISTSIZE</P ></LI ><LI ><P >$HISTTIMEFORMAT (Bash, ver. 3.0 or later)</P ></LI ><LI ><P >!!</P ></LI ><LI ><P >!$</P ></LI ><LI ><P >!#</P ></LI ><LI ><P >!N</P ></LI ><LI ><P >!-N</P ></LI ><LI ><P >!STRING</P ></LI ><LI ><P >!?STRING?</P ></LI ><LI ><P >^STRING^string^</P ></LI ></OL > </P ><P >Unfortunately, the Bash history tools find no use in scripting.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # history.sh 3 # A (vain) attempt to use the 'history' command in a script. 4 5 history # No output. 6 7 var=$(history); echo "$var" # $var is empty. 8 9 # History commands are, by default, disabled within a script. 10 # However, as dhw points out, 11 #+ set -o history 12 #+ enables the history mechanism. 13 14 set -o history 15 var=$(history); echo "$var" # 1 var=$(history)</PRE ></TD ></TR ></TABLE > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >./history.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >(no output)</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The <A HREF="http://samrowe.com/wordpress/advancing-in-the-bash-shell/" TARGET="_top" >Advancing in the Bash Shell</A > site gives a good introduction to the use of history commands in Bash.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="localization.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="sample-bashrc.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Localization</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Sample <TT CLASS="FILENAME" >.bashrc</TT > and <TT CLASS="FILENAME" >.bash_profile</TT > Files</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/index.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Advanced Bash-Scripting Guide</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="NEXT" TITLE="Introduction" HREF="part1.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="BOOK" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="BOOK" ><A NAME="AEN1" ></A ><DIV CLASS="TITLEPAGE" ><H1 CLASS="TITLE" ><A NAME="AEN2" >Advanced Bash-Scripting Guide</A ></H1 ><H2 CLASS="SUBTITLE" >An in-depth exploration of the art of shell scripting</H2 >Version <SPAN CLASS="RELEASEINFO" >10<BR></SPAN ><P CLASS="PUBDATE" >10 Mar 2014<BR></P ><H3 CLASS="AUTHOR" ><A NAME="AEN5" >Mendel Cooper</A ></H3 ><DIV CLASS="AFFILIATION" ><SPAN CLASS="ORGNAME" ><BR></SPAN ><DIV CLASS="ADDRESS" ><P CLASS="ADDRESS" >thegrendel.abs@gmail.com</P ></DIV ></DIV ><DIV ><DIV CLASS="ABSTRACT" ><A NAME="AEN31" ></A ><P >This tutorial assumes no previous knowledge of scripting or programming, yet progresses rapidly toward an intermediate/advanced level of instruction <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >. . . all the while sneaking in little nuggets of <SPAN CLASS="TRADEMARK" >UNIX</SPAN >® wisdom and lore</I ></SPAN >. It serves as a textbook, a manual for self-study, and as a reference and source of knowledge on shell scripting techniques. The exercises and heavily-commented examples invite active reader participation, under the premise that <TT CLASS="USERINPUT" ><B >the only way to really learn scripting is to write scripts</B ></TT >.</P ><P >This book is suitable for classroom use as a general introduction to programming concepts.</P ><P >This document is herewith granted to the Public Domain. <TT CLASS="USERINPUT" ><B >No copyright!</B ></TT ></P ></DIV ></DIV ><HR></DIV ><H1 ><A NAME="AEN39" ></A >Dedication</H1 ><P >For Anita, the source of all the magic</P ><DIV CLASS="TOC" ><DL ><DT ><B >Table of Contents</B ></DT ><DT >Part 1. <A HREF="part1.html" >Introduction</A ></DT ><DD ><DL ><DT >1. <A HREF="why-shell.html" >Shell Programming!</A ></DT ><DT >2. <A HREF="sha-bang.html" >Starting Off With a Sha-Bang</A ></DT ><DD ><DL ><DT >2.1. <A HREF="sha-bang.html#INVOKING" >Invoking the script</A ></DT ><DT >2.2. <A HREF="prelimexer.html" >Preliminary Exercises</A ></DT ></DL ></DD ></DL ></DD ><DT >Part 2. <A HREF="part2.html" >Basics</A ></DT ><DD ><DL ><DT >3. <A HREF="special-chars.html" >Special Characters</A ></DT ><DT >4. <A HREF="variables.html" >Introduction to Variables and Parameters</A ></DT ><DD ><DL ><DT >4.1. <A HREF="variables.html#VARSUBN" >Variable Substitution</A ></DT ><DT >4.2. <A HREF="varassignment.html" >Variable Assignment</A ></DT ><DT >4.3. <A HREF="untyped.html" >Bash Variables Are Untyped</A ></DT ><DT >4.4. <A HREF="othertypesv.html" >Special Variable Types</A ></DT ></DL ></DD ><DT >5. <A HREF="quoting.html" >Quoting</A ></DT ><DD ><DL ><DT >5.1. <A HREF="quoting.html#QUOTINGVAR" >Quoting Variables</A ></DT ><DT >5.2. <A HREF="escapingsection.html" >Escaping</A ></DT ></DL ></DD ><DT >6. <A HREF="exit-status.html" >Exit and Exit Status</A ></DT ><DT >7. <A HREF="tests.html" >Tests</A ></DT ><DD ><DL ><DT >7.1. <A HREF="tests.html#TESTCONSTRUCTS" >Test Constructs</A ></DT ><DT >7.2. <A HREF="fto.html" >File test operators</A ></DT ><DT >7.3. <A HREF="comparison-ops.html" >Other Comparison Operators</A ></DT ><DT >7.4. <A HREF="nestedifthen.html" >Nested <TT CLASS="REPLACEABLE" ><I >if/then</I ></TT > Condition Tests</A ></DT ><DT >7.5. <A HREF="testtest.html" >Testing Your Knowledge of Tests</A ></DT ></DL ></DD ><DT >8. <A HREF="operations.html" >Operations and Related Topics</A ></DT ><DD ><DL ><DT >8.1. <A HREF="operations.html#OPS" >Operators</A ></DT ><DT >8.2. <A HREF="numerical-constants.html" >Numerical Constants</A ></DT ><DT >8.3. <A HREF="dblparens.html" >The Double-Parentheses Construct</A ></DT ><DT >8.4. <A HREF="opprecedence.html" >Operator Precedence</A ></DT ></DL ></DD ></DL ></DD ><DT >Part 3. <A HREF="part3.html" >Beyond the Basics</A ></DT ><DD ><DL ><DT >9. <A HREF="variables2.html" >Another Look at Variables</A ></DT ><DD ><DL ><DT >9.1. <A HREF="variables2.html#INTERNALVARIABLES" >Internal Variables</A ></DT ><DT >9.2. <A HREF="declareref.html" >Typing variables: <B CLASS="COMMAND" >declare</B > or <B CLASS="COMMAND" >typeset</B ></A ></DT ><DT >9.3. <A HREF="randomvar.html" >$RANDOM: generate random integer</A ></DT ></DL ></DD ><DT >10. <A HREF="manipulatingvars.html" >Manipulating Variables</A ></DT ><DD ><DL ><DT >10.1. <A HREF="manipulatingvars.html#STRING-MANIPULATION" >Manipulating Strings</A ></DT ><DT >10.2. <A HREF="parameter-substitution.html" >Parameter Substitution</A ></DT ></DL ></DD ><DT >11. <A HREF="loops.html" >Loops and Branches</A ></DT ><DD ><DL ><DT >11.1. <A HREF="loops.html#LOOPS1" >Loops</A ></DT ><DT >11.2. <A HREF="nestedloops.html" >Nested Loops</A ></DT ><DT >11.3. <A HREF="loopcontrol.html" >Loop Control</A ></DT ><DT >11.4. <A HREF="testbranch.html" >Testing and Branching</A ></DT ></DL ></DD ><DT >12. <A HREF="commandsub.html" >Command Substitution</A ></DT ><DT >13. <A HREF="arithexp.html" >Arithmetic Expansion</A ></DT ><DT >14. <A HREF="recess-time.html" >Recess Time</A ></DT ></DL ></DD ><DT >Part 4. <A HREF="part4.html" >Commands</A ></DT ><DD ><DL ><DT >15. <A HREF="internal.html" >Internal Commands and Builtins</A ></DT ><DD ><DL ><DT >15.1. <A HREF="internal.html#AEN9644" >Job Control Commands</A ></DT ></DL ></DD ><DT >16. <A HREF="external.html" >External Filters, Programs and Commands</A ></DT ><DD ><DL ><DT >16.1. <A HREF="external.html#BASIC" >Basic Commands</A ></DT ><DT >16.2. <A HREF="moreadv.html" >Complex Commands</A ></DT ><DT >16.3. <A HREF="timedate.html" >Time / Date Commands</A ></DT ><DT >16.4. <A HREF="textproc.html" >Text Processing Commands</A ></DT ><DT >16.5. <A HREF="filearchiv.html" >File and Archiving Commands</A ></DT ><DT >16.6. <A HREF="communications.html" >Communications Commands</A ></DT ><DT >16.7. <A HREF="terminalccmds.html" >Terminal Control Commands</A ></DT ><DT >16.8. <A HREF="mathc.html" >Math Commands</A ></DT ><DT >16.9. <A HREF="extmisc.html" >Miscellaneous Commands</A ></DT ></DL ></DD ><DT >17. <A HREF="system.html" >System and Administrative Commands</A ></DT ><DD ><DL ><DT >17.1. <A HREF="system.html#SYSSCRIPTS" >Analyzing a System Script</A ></DT ></DL ></DD ></DL ></DD ><DT >Part 5. <A HREF="part5.html" >Advanced Topics</A ></DT ><DD ><DL ><DT >18. <A HREF="regexp.html" >Regular Expressions</A ></DT ><DD ><DL ><DT >18.1. <A HREF="regexp.html#AEN17129" >A Brief Introduction to Regular Expressions</A ></DT ><DT >18.2. <A HREF="globbingref.html" >Globbing</A ></DT ></DL ></DD ><DT >19. <A HREF="here-docs.html" >Here Documents</A ></DT ><DD ><DL ><DT >19.1. <A HREF="here-docs.html#AEN17837" >Here Strings</A ></DT ></DL ></DD ><DT >20. <A HREF="io-redirection.html" >I/O Redirection</A ></DT ><DD ><DL ><DT >20.1. <A HREF="io-redirection.html#AEN17974" >Using <I CLASS="FIRSTTERM" >exec</I ></A ></DT ><DT >20.2. <A HREF="redircb.html" >Redirecting Code Blocks</A ></DT ><DT >20.3. <A HREF="redirapps.html" >Applications</A ></DT ></DL ></DD ><DT >21. <A HREF="subshells.html" >Subshells</A ></DT ><DT >22. <A HREF="restricted-sh.html" >Restricted Shells</A ></DT ><DT >23. <A HREF="process-sub.html" >Process Substitution</A ></DT ><DT >24. <A HREF="functions.html" >Functions</A ></DT ><DD ><DL ><DT >24.1. <A HREF="functions.html#COMPLEXFUNCT" >Complex Functions and Function Complexities</A ></DT ><DT >24.2. <A HREF="localvar.html" >Local Variables</A ></DT ><DT >24.3. <A HREF="recurnolocvar.html" >Recursion Without Local Variables</A ></DT ></DL ></DD ><DT >25. <A HREF="aliases.html" >Aliases</A ></DT ><DT >26. <A HREF="list-cons.html" >List Constructs</A ></DT ><DT >27. <A HREF="arrays.html" >Arrays</A ></DT ><DT >28. <A HREF="ivr.html" >Indirect References</A ></DT ><DT >29. <A HREF="devproc.html" ><TT CLASS="FILENAME" >/dev</TT > and <TT CLASS="FILENAME" >/proc</TT ></A ></DT ><DD ><DL ><DT >29.1. <A HREF="devproc.html#DEVREF1" ><TT CLASS="FILENAME" >/dev</TT ></A ></DT ><DT >29.2. <A HREF="procref1.html" ><TT CLASS="FILENAME" >/proc</TT ></A ></DT ></DL ></DD ><DT >30. <A HREF="networkprogramming.html" >Network Programming</A ></DT ><DT >31. <A HREF="zeros.html" >Of Zeros and Nulls</A ></DT ><DT >32. <A HREF="debugging.html" >Debugging</A ></DT ><DT >33. <A HREF="options.html" >Options</A ></DT ><DT >34. <A HREF="gotchas.html" >Gotchas</A ></DT ><DT >35. <A HREF="scrstyle.html" >Scripting With Style</A ></DT ><DD ><DL ><DT >35.1. <A HREF="scrstyle.html#UNOFFICIALST" >Unofficial Shell Scripting Stylesheet</A ></DT ></DL ></DD ><DT >36. <A HREF="miscellany.html" >Miscellany</A ></DT ><DD ><DL ><DT >36.1. <A HREF="miscellany.html#INTANDNONINT" >Interactive and non-interactive shells and scripts</A ></DT ><DT >36.2. <A HREF="wrapper.html" >Shell Wrappers</A ></DT ><DT >36.3. <A HREF="testsandcomparisons.html" >Tests and Comparisons: Alternatives</A ></DT ><DT >36.4. <A HREF="recursionsct.html" >Recursion: a script calling itself</A ></DT ><DT >36.5. <A HREF="colorizing.html" ><SPAN CLASS="QUOTE" >"Colorizing"</SPAN > Scripts</A ></DT ><DT >36.6. <A HREF="optimizations.html" >Optimizations</A ></DT ><DT >36.7. <A HREF="assortedtips.html" >Assorted Tips</A ></DT ><DT >36.8. <A HREF="securityissues.html" >Security Issues</A ></DT ><DT >36.9. <A HREF="portabilityissues.html" >Portability Issues</A ></DT ><DT >36.10. <A HREF="winscript.html" >Shell Scripting Under Windows</A ></DT ></DL ></DD ><DT >37. <A HREF="bash2.html" >Bash, versions 2, 3, and 4</A ></DT ><DD ><DL ><DT >37.1. <A HREF="bash2.html#BASHVER2" >Bash, version 2</A ></DT ><DT >37.2. <A HREF="bashver3.html" >Bash, version 3</A ></DT ><DT >37.3. <A HREF="bashver4.html" >Bash, version 4</A ></DT ></DL ></DD ></DL ></DD ><DT >38. <A HREF="endnotes.html" >Endnotes</A ></DT ><DD ><DL ><DT >38.1. <A HREF="endnotes.html#AUTHORSNOTE" >Author's Note</A ></DT ><DT >38.2. <A HREF="aboutauthor.html" >About the Author</A ></DT ><DT >38.3. <A HREF="wherehelp.html" >Where to Go For Help</A ></DT ><DT >38.4. <A HREF="toolsused.html" >Tools Used to Produce This Book</A ></DT ><DD ><DL ><DT >38.4.1. <A HREF="toolsused.html#SOFTWARE-HARDWARE" >Hardware</A ></DT ><DT >38.4.2. <A HREF="toolsused.html#SOFTWARE-PRINTWARE" >Software and Printware</A ></DT ></DL ></DD ><DT >38.5. <A HREF="credits.html" >Credits</A ></DT ><DT >38.6. <A HREF="disclaimer.html" >Disclaimer</A ></DT ></DL ></DD ><DT ><A HREF="biblio.html" >Bibliography</A ></DT ><DT >A. <A HREF="contributed-scripts.html" >Contributed Scripts</A ></DT ><DT >B. <A HREF="refcards.html" >Reference Cards</A ></DT ><DT >C. <A HREF="sedawk.html" >A Sed and Awk Micro-Primer</A ></DT ><DD ><DL ><DT >C.1. <A HREF="sedawk.html#AEN23170" >Sed</A ></DT ><DT >C.2. <A HREF="awk.html" >Awk</A ></DT ></DL ></DD ><DT >D. <A HREF="pathmanagement.html" >Parsing and Managing Pathnames</A ></DT ><DT >E. <A HREF="exitcodes.html" >Exit Codes With Special Meanings</A ></DT ><DT >F. <A HREF="ioredirintro.html" >A Detailed Introduction to I/O and I/O Redirection</A ></DT ><DT >G. <A HREF="command-line-options.html" >Command-Line Options</A ></DT ><DD ><DL ><DT >G.1. <A HREF="command-line-options.html#STANDARD-OPTIONS" >Standard Command-Line Options</A ></DT ><DT >G.2. <A HREF="bash-options.html" >Bash Command-Line Options</A ></DT ></DL ></DD ><DT >H. <A HREF="files.html" >Important Files</A ></DT ><DT >I. <A HREF="systemdirs.html" >Important System Directories</A ></DT ><DT >J. <A HREF="tabexpansion.html" >An Introduction to Programmable Completion</A ></DT ><DT >K. <A HREF="localization.html" >Localization</A ></DT ><DT >L. <A HREF="histcommands.html" >History Commands</A ></DT ><DT >M. <A HREF="sample-bashrc.html" >Sample <TT CLASS="FILENAME" >.bashrc</TT > and <TT CLASS="FILENAME" >.bash_profile</TT > Files</A ></DT ><DT >N. <A HREF="dosbatch.html" >Converting DOS Batch Files to Shell Scripts</A ></DT ><DT >O. <A HREF="exercises.html" >Exercises</A ></DT ><DD ><DL ><DT >O.1. <A HREF="exercises.html#SCRIPTANALYSIS" >Analyzing Scripts</A ></DT ><DT >O.2. <A HREF="writingscripts.html" >Writing Scripts</A ></DT ></DL ></DD ><DT >P. <A HREF="revisionhistory.html" >Revision History</A ></DT ><DT >Q. <A HREF="mirrorsites.html" >Download and Mirror Sites</A ></DT ><DT >R. <A HREF="todolist.html" >To Do List</A ></DT ><DT >S. <A HREF="copyright.html" >Copyright</A ></DT ><DT >T. <A HREF="asciitable.html" >ASCII Table</A ></DT ><DT ><A HREF="xrefindex.html" >Index</A ></DT ></DL ></DIV ><DIV CLASS="LOT" ><DL CLASS="LOT" ><DT ><B >List of Tables</B ></DT ><DT >8-1. <A HREF="opprecedence.html#AEN4294" >Operator Precedence</A ></DT ><DT >15-1. <A HREF="internal.html#JOBIDTABLE" >Job identifiers</A ></DT ><DT >33-1. <A HREF="options.html#AEN19601" >Bash options</A ></DT ><DT >36-1. <A HREF="colorizing.html#AEN20327" >Numbers representing colors in Escape Sequences</A ></DT ><DT >B-1. <A HREF="refcards.html#AEN22402" >Special Shell Variables</A ></DT ><DT >B-2. <A HREF="refcards.html#AEN22473" >TEST Operators: Binary Comparison</A ></DT ><DT >B-3. <A HREF="refcards.html#AEN22593" >TEST Operators: Files</A ></DT ><DT >B-4. <A HREF="refcards.html#AEN22728" >Parameter Substitution and Expansion</A ></DT ><DT >B-5. <A HREF="refcards.html#AEN22828" >String Operations</A ></DT ><DT >B-6. <A HREF="refcards.html#AEN22979" >Miscellaneous Constructs</A ></DT ><DT >C-1. <A HREF="sedawk.html#AEN23200" >Basic sed operators</A ></DT ><DT >C-2. <A HREF="sedawk.html#AEN23271" >Examples of sed operators</A ></DT ><DT >E-1. <A HREF="exitcodes.html#AEN23549" ><I CLASS="FIRSTTERM" >Reserved</I > Exit Codes</A ></DT ><DT >N-1. <A HREF="dosbatch.html#AEN24336" >Batch file keywords / variables / operators, and their shell equivalents</A ></DT ><DT >N-2. <A HREF="dosbatch.html#AEN24545" >DOS commands and their UNIX equivalents</A ></DT ><DT >P-1. <A HREF="revisionhistory.html#AEN25364" >Revision History</A ></DT ></DL ></DIV ><DIV CLASS="LOT" ><DL CLASS="LOT" ><DT ><B >List of Examples</B ></DT ><DT >2-1. <A HREF="sha-bang.html#EX1" ><I CLASS="FIRSTTERM" >cleanup</I >: A script to clean up log files in /var/log</A ></DT ><DT >2-2. <A HREF="sha-bang.html#EX1A" ><I CLASS="FIRSTTERM" >cleanup</I >: An improved clean-up script</A ></DT ><DT >2-3. <A HREF="sha-bang.html#EX2" ><I CLASS="FIRSTTERM" >cleanup</I >: An enhanced and generalized version of above scripts.</A ></DT ><DT >3-1. <A HREF="special-chars.html#EX8" >Code blocks and I/O redirection</A ></DT ><DT >3-2. <A HREF="special-chars.html#RPMCHECK" >Saving the output of a code block to a file</A ></DT ><DT >3-3. <A HREF="special-chars.html#BGLOOP" >Running a loop in the background</A ></DT ><DT >3-4. <A HREF="special-chars.html#EX58" >Backup of all files changed in last day</A ></DT ><DT >4-1. <A HREF="variables.html#EX9" >Variable assignment and substitution</A ></DT ><DT >4-2. <A HREF="varassignment.html#EX15" >Plain Variable Assignment</A ></DT ><DT >4-3. <A HREF="varassignment.html#EX16" >Variable Assignment, plain and fancy</A ></DT ><DT >4-4. <A HREF="untyped.html#INTORSTRING" >Integer or string?</A ></DT ><DT >4-5. <A HREF="othertypesv.html#EX17" >Positional Parameters</A ></DT ><DT >4-6. <A HREF="othertypesv.html#EX18" ><I CLASS="FIRSTTERM" >wh</I >, <I CLASS="FIRSTTERM" > whois</I > domain name lookup</A ></DT ><DT >4-7. <A HREF="othertypesv.html#EX19" >Using <I CLASS="FIRSTTERM" >shift</I ></A ></DT ><DT >5-1. <A HREF="quoting.html#WEIRDVARS" >Echoing Weird Variables</A ></DT ><DT >5-2. <A HREF="escapingsection.html#ESCAPED" >Escaped Characters</A ></DT ><DT >5-3. <A HREF="escapingsection.html#BASHEK" >Detecting key-presses</A ></DT ><DT >6-1. <A HREF="exit-status.html#EX5" >exit / exit status</A ></DT ><DT >6-2. <A HREF="exit-status.html#NEGCOND" >Negating a condition using <SPAN CLASS="TOKEN" >!</SPAN ></A ></DT ><DT >7-1. <A HREF="tests.html#EX10" >What is truth?</A ></DT ><DT >7-2. <A HREF="tests.html#EX11" >Equivalence of <I CLASS="FIRSTTERM" >test</I >, <TT CLASS="FILENAME" >/usr/bin/test</TT >, <SPAN CLASS="TOKEN" >[ ]</SPAN >, and <TT CLASS="FILENAME" >/usr/bin/[</TT ></A ></DT ><DT >7-3. <A HREF="tests.html#ARITHTESTS" >Arithmetic Tests using <SPAN CLASS="TOKEN" >(( ))</SPAN ></A ></DT ><DT >7-4. <A HREF="fto.html#BROKENLINK" >Testing for broken links</A ></DT ><DT >7-5. <A HREF="comparison-ops.html#EX13" >Arithmetic and string comparisons</A ></DT ><DT >7-6. <A HREF="comparison-ops.html#STRTEST" >Testing whether a string is <I CLASS="FIRSTTERM" >null</I ></A ></DT ><DT >7-7. <A HREF="comparison-ops.html#EX14" ><I CLASS="FIRSTTERM" >zmore</I ></A ></DT ><DT >8-1. <A HREF="operations.html#GCD" >Greatest common divisor</A ></DT ><DT >8-2. <A HREF="operations.html#ARITHOPS" >Using Arithmetic Operations</A ></DT ><DT >8-3. <A HREF="operations.html#ANDOR" >Compound Condition Tests Using && and ||</A ></DT ><DT >8-4. <A HREF="numerical-constants.html#NUMBERS" >Representation of numerical constants</A ></DT ><DT >8-5. <A HREF="dblparens.html#CVARS" >C-style manipulation of variables</A ></DT ><DT >9-1. <A HREF="variables2.html#IFSH" >$IFS and whitespace</A ></DT ><DT >9-2. <A HREF="variables2.html#TMDIN" >Timed Input</A ></DT ><DT >9-3. <A HREF="variables2.html#TIMEOUT" >Once more, timed input</A ></DT ><DT >9-4. <A HREF="variables2.html#TOUT" >Timed <I CLASS="FIRSTTERM" >read</I ></A ></DT ><DT >9-5. <A HREF="variables2.html#AMIROOT" >Am I root?</A ></DT ><DT >9-6. <A HREF="variables2.html#ARGLIST" ><I CLASS="FIRSTTERM" >arglist</I >: Listing arguments with $* and $@</A ></DT ><DT >9-7. <A HREF="variables2.html#INCOMPAT" >Inconsistent <TT CLASS="VARNAME" >$*</TT > and <TT CLASS="VARNAME" >$@</TT > behavior</A ></DT ><DT >9-8. <A HREF="variables2.html#IFSEMPTY" ><TT CLASS="VARNAME" >$*</TT > and <TT CLASS="VARNAME" >$@</TT > when <TT CLASS="VARNAME" >$IFS</TT > is empty</A ></DT ><DT >9-9. <A HREF="variables2.html#USCREF" >Underscore variable</A ></DT ><DT >9-10. <A HREF="declareref.html#EX20" >Using <I CLASS="FIRSTTERM" >declare</I > to type variables</A ></DT ><DT >9-11. <A HREF="randomvar.html#EX21" >Generating random numbers</A ></DT ><DT >9-12. <A HREF="randomvar.html#PICKCARD" >Picking a random card from a deck</A ></DT ><DT >9-13. <A HREF="randomvar.html#BROWNIAN" >Brownian Motion Simulation</A ></DT ><DT >9-14. <A HREF="randomvar.html#RANDOMBETWEEN" >Random between values</A ></DT ><DT >9-15. <A HREF="randomvar.html#RANDOMTEST" >Rolling a single die with RANDOM</A ></DT ><DT >9-16. <A HREF="randomvar.html#SEEDINGRANDOM" >Reseeding RANDOM</A ></DT ><DT >9-17. <A HREF="randomvar.html#RANDOM2" >Pseudorandom numbers, using <A HREF="awk.html#AWKREF" >awk</A ></A ></DT ><DT >10-1. <A HREF="manipulatingvars.html#PARAGRAPHSPACE" >Inserting a blank line between paragraphs in a text file</A ></DT ><DT >10-2. <A HREF="manipulatingvars.html#RANDSTRING" >Generating an 8-character <SPAN CLASS="QUOTE" >"random"</SPAN > string</A ></DT ><DT >10-3. <A HREF="manipulatingvars.html#CVT" >Converting graphic file formats, with filename change</A ></DT ><DT >10-4. <A HREF="manipulatingvars.html#RA2OGG" >Converting streaming audio files to <I CLASS="FIRSTTERM" >ogg</I ></A ></DT ><DT >10-5. <A HREF="manipulatingvars.html#GETOPTSIMPLE" >Emulating <I CLASS="FIRSTTERM" >getopt</I ></A ></DT ><DT >10-6. <A HREF="manipulatingvars.html#SUBSTRINGEX" >Alternate ways of extracting and locating substrings</A ></DT ><DT >10-7. <A HREF="parameter-substitution.html#EX6" >Using parameter substitution and error messages</A ></DT ><DT >10-8. <A HREF="parameter-substitution.html#USAGEMESSAGE" >Parameter substitution and <SPAN CLASS="QUOTE" >"usage"</SPAN > messages</A ></DT ><DT >10-9. <A HREF="parameter-substitution.html#LENGTH" >Length of a variable</A ></DT ><DT >10-10. <A HREF="parameter-substitution.html#PATTMATCHING" >Pattern matching in parameter substitution</A ></DT ><DT >10-11. <A HREF="parameter-substitution.html#RFE" >Renaming file extensions<SPAN CLASS="TOKEN" >:</SPAN ></A ></DT ><DT >10-12. <A HREF="parameter-substitution.html#EX7" >Using pattern matching to parse arbitrary strings</A ></DT ><DT >10-13. <A HREF="parameter-substitution.html#VARMATCH" >Matching patterns at prefix or suffix of string</A ></DT ><DT >11-1. <A HREF="loops.html#EX22" >Simple <I CLASS="FIRSTTERM" >for</I > loops</A ></DT ><DT >11-2. <A HREF="loops.html#EX22A" ><I CLASS="FIRSTTERM" >for</I > loop with two parameters in each [list] element</A ></DT ><DT >11-3. <A HREF="loops.html#FILEINFO" ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Fileinfo:</I ></SPAN > operating on a file list contained in a variable</A ></DT ><DT >11-4. <A HREF="loops.html#FILEINFO01" >Operating on a parameterized file list</A ></DT ><DT >11-5. <A HREF="loops.html#LISTGLOB" >Operating on files with a <I CLASS="FIRSTTERM" >for</I > loop</A ></DT ><DT >11-6. <A HREF="loops.html#EX23" >Missing <TT CLASS="USERINPUT" ><B >in [list]</B ></TT > in a <I CLASS="FIRSTTERM" >for</I > loop</A ></DT ><DT >11-7. <A HREF="loops.html#FORLOOPCMD" >Generating the <TT CLASS="USERINPUT" ><B >[list]</B ></TT > in a <I CLASS="FIRSTTERM" >for</I > loop with command substitution</A ></DT ><DT >11-8. <A HREF="loops.html#BINGREP" >A <I CLASS="FIRSTTERM" >grep</I > replacement for binary files</A ></DT ><DT >11-9. <A HREF="loops.html#USERLIST" >Listing all users on the system</A ></DT ><DT >11-10. <A HREF="loops.html#FINDSTRING" >Checking all the binaries in a directory for authorship</A ></DT ><DT >11-11. <A HREF="loops.html#SYMLINKS" >Listing the <I CLASS="FIRSTTERM" >symbolic links</I > in a directory</A ></DT ><DT >11-12. <A HREF="loops.html#SYMLINKS2" >Symbolic links in a directory, saved to a file</A ></DT ><DT >11-13. <A HREF="loops.html#FORLOOPC" >A C-style <I CLASS="FIRSTTERM" >for</I > loop</A ></DT ><DT >11-14. <A HREF="loops.html#EX24" >Using <I CLASS="FIRSTTERM" >efax</I > in batch mode</A ></DT ><DT >11-15. <A HREF="loops.html#EX25" >Simple <I CLASS="FIRSTTERM" >while</I > loop</A ></DT ><DT >11-16. <A HREF="loops.html#EX26" >Another <I CLASS="FIRSTTERM" >while</I > loop</A ></DT ><DT >11-17. <A HREF="loops.html#EX26A" ><I CLASS="FIRSTTERM" >while</I > loop with multiple conditions</A ></DT ><DT >11-18. <A HREF="loops.html#WHLOOPC" >C-style syntax in a <I CLASS="FIRSTTERM" >while</I > loop</A ></DT ><DT >11-19. <A HREF="loops.html#EX27" ><I CLASS="FIRSTTERM" >until</I > loop</A ></DT ><DT >11-20. <A HREF="nestedloops.html#NESTEDLOOP" >Nested Loop</A ></DT ><DT >11-21. <A HREF="loopcontrol.html#EX28" >Effects of <I CLASS="FIRSTTERM" >break</I > and <B CLASS="COMMAND" >continue</B > in a loop</A ></DT ><DT >11-22. <A HREF="loopcontrol.html#BREAKLEVELS" >Breaking out of multiple loop levels</A ></DT ><DT >11-23. <A HREF="loopcontrol.html#CONTINUELEVELS" >Continuing at a higher loop level</A ></DT ><DT >11-24. <A HREF="loopcontrol.html#CONTINUENEX" >Using <I CLASS="FIRSTTERM" >continue N</I > in an actual task</A ></DT ><DT >11-25. <A HREF="testbranch.html#EX29" >Using <I CLASS="FIRSTTERM" >case</I ></A ></DT ><DT >11-26. <A HREF="testbranch.html#EX30" >Creating menus using <I CLASS="FIRSTTERM" >case</I ></A ></DT ><DT >11-27. <A HREF="testbranch.html#CASECMD" >Using <I CLASS="FIRSTTERM" >command substitution</I > to generate the <I CLASS="FIRSTTERM" >case</I > variable</A ></DT ><DT >11-28. <A HREF="testbranch.html#MATCHSTRING" >Simple string matching</A ></DT ><DT >11-29. <A HREF="testbranch.html#ISALPHA" >Checking for alphabetic input</A ></DT ><DT >11-30. <A HREF="testbranch.html#EX31" >Creating menus using <I CLASS="FIRSTTERM" >select</I ></A ></DT ><DT >11-31. <A HREF="testbranch.html#EX32" >Creating menus using <I CLASS="FIRSTTERM" >select</I > in a function</A ></DT ><DT >12-1. <A HREF="commandsub.html#STUPSCR" >Stupid script tricks</A ></DT ><DT >12-2. <A HREF="commandsub.html#CSUBLOOP" >Generating a variable from a loop</A ></DT ><DT >12-3. <A HREF="commandsub.html#AGRAM2" >Finding anagrams</A ></DT ><DT >15-1. <A HREF="internal.html#SPAWNSCR" >A script that spawns multiple instances of itself</A ></DT ><DT >15-2. <A HREF="internal.html#EX47" ><I CLASS="FIRSTTERM" >printf</I > in action</A ></DT ><DT >15-3. <A HREF="internal.html#EX36" >Variable assignment, using <I CLASS="FIRSTTERM" >read</I ></A ></DT ><DT >15-4. <A HREF="internal.html#READNOVAR" >What happens when <I CLASS="FIRSTTERM" >read</I > has no variable</A ></DT ><DT >15-5. <A HREF="internal.html#READR" >Multi-line input to <I CLASS="FIRSTTERM" >read</I ></A ></DT ><DT >15-6. <A HREF="internal.html#ARROWDETECT" >Detecting the arrow keys</A ></DT ><DT >15-7. <A HREF="internal.html#READREDIR" >Using <I CLASS="FIRSTTERM" >read</I > with <A HREF="io-redirection.html#IOREDIRREF" >file redirection</A ></A ></DT ><DT >15-8. <A HREF="internal.html#READPIPE" >Problems reading from a pipe</A ></DT ><DT >15-9. <A HREF="internal.html#EX37" >Changing the current working directory</A ></DT ><DT >15-10. <A HREF="internal.html#EX46" >Letting <I CLASS="FIRSTTERM" >let</I > do arithmetic.</A ></DT ><DT >15-11. <A HREF="internal.html#EX43" >Showing the effect of <I CLASS="FIRSTTERM" >eval</I ></A ></DT ><DT >15-12. <A HREF="internal.html#ARRCHOICE" >Using <I CLASS="FIRSTTERM" >eval</I > to select among variables</A ></DT ><DT >15-13. <A HREF="internal.html#ECHOPARAMS" ><I CLASS="FIRSTTERM" >Echoing</I > the <I CLASS="FIRSTTERM" >command-line parameters</I ></A ></DT ><DT >15-14. <A HREF="internal.html#EX44" >Forcing a log-off</A ></DT ><DT >15-15. <A HREF="internal.html#ROT14" >A version of <I CLASS="FIRSTTERM" >rot13</I ></A ></DT ><DT >15-16. <A HREF="internal.html#EX34" >Using <I CLASS="FIRSTTERM" >set</I > with positional parameters</A ></DT ><DT >15-17. <A HREF="internal.html#REVPOSPARAMS" >Reversing the positional parameters</A ></DT ><DT >15-18. <A HREF="internal.html#SETPOS" >Reassigning the positional parameters</A ></DT ><DT >15-19. <A HREF="internal.html#UNS" ><SPAN CLASS="QUOTE" >"Unsetting"</SPAN > a variable</A ></DT ><DT >15-20. <A HREF="internal.html#COLTOTALER3" >Using <I CLASS="FIRSTTERM" >export</I > to pass a variable to an embedded <I CLASS="FIRSTTERM" >awk</I > script</A ></DT ><DT >15-21. <A HREF="internal.html#EX33" >Using <I CLASS="FIRSTTERM" >getopts</I > to read the options/arguments passed to a script</A ></DT ><DT >15-22. <A HREF="internal.html#EX38" ><SPAN CLASS="QUOTE" >"Including"</SPAN > a data file</A ></DT ><DT >15-23. <A HREF="internal.html#SELFSOURCE" >A (useless) script that sources itself</A ></DT ><DT >15-24. <A HREF="internal.html#EX54" >Effects of <I CLASS="FIRSTTERM" >exec</I ></A ></DT ><DT >15-25. <A HREF="internal.html#SELFEXEC" >A script that <I CLASS="FIRSTTERM" >exec's</I > itself</A ></DT ><DT >15-26. <A HREF="internal.html#EX39" >Waiting for a process to finish before proceeding</A ></DT ><DT >15-27. <A HREF="internal.html#SELFDESTRUCT" >A script that kills itself</A ></DT ><DT >16-1. <A HREF="external.html#EX40" >Using <I CLASS="FIRSTTERM" >ls</I > to create a table of contents for burning a <SPAN CLASS="ABBREV" >CDR</SPAN > disk</A ></DT ><DT >16-2. <A HREF="external.html#HELLOL" >Hello or Good-bye</A ></DT ><DT >16-3. <A HREF="moreadv.html#EX57" ><I CLASS="FIRSTTERM" >Badname</I >, eliminate file names in current directory containing bad characters and <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A >.</A ></DT ><DT >16-4. <A HREF="moreadv.html#IDELETE" >Deleting a file by its <I CLASS="FIRSTTERM" >inode</I > number</A ></DT ><DT >16-5. <A HREF="moreadv.html#EX41" >Logfile: Using <I CLASS="FIRSTTERM" >xargs</I > to monitor system log</A ></DT ><DT >16-6. <A HREF="moreadv.html#EX42" >Copying files in current directory to another</A ></DT ><DT >16-7. <A HREF="moreadv.html#KILLBYNAME" >Killing processes by name</A ></DT ><DT >16-8. <A HREF="moreadv.html#WF2" >Word frequency analysis using <I CLASS="FIRSTTERM" >xargs</I ></A ></DT ><DT >16-9. <A HREF="moreadv.html#EX45" >Using <I CLASS="FIRSTTERM" >expr</I ></A ></DT ><DT >16-10. <A HREF="timedate.html#EX51" >Using <I CLASS="FIRSTTERM" >date</I ></A ></DT ><DT >16-11. <A HREF="timedate.html#DATECALC" ><I CLASS="FIRSTTERM" >Date</I > calculations</A ></DT ><DT >16-12. <A HREF="textproc.html#WF" >Word Frequency Analysis</A ></DT ><DT >16-13. <A HREF="textproc.html#SCRIPTDETECTOR" >Which files are scripts?</A ></DT ><DT >16-14. <A HREF="textproc.html#RND" >Generating 10-digit random numbers</A ></DT ><DT >16-15. <A HREF="textproc.html#EX12" >Using <I CLASS="FIRSTTERM" >tail</I > to monitor the system log</A ></DT ><DT >16-16. <A HREF="textproc.html#FROMSH" >Printing out the <I CLASS="FIRSTTERM" >From</I > lines in stored e-mail messages</A ></DT ><DT >16-17. <A HREF="textproc.html#GRP" >Emulating <I CLASS="FIRSTTERM" >grep</I > in a script</A ></DT ><DT >16-18. <A HREF="textproc.html#CWSOLVER" >Crossword puzzle solver</A ></DT ><DT >16-19. <A HREF="textproc.html#DICTLOOKUP" >Looking up definitions in Webster's 1913 Dictionary</A ></DT ><DT >16-20. <A HREF="textproc.html#LOOKUP" >Checking words in a list for validity</A ></DT ><DT >16-21. <A HREF="textproc.html#EX49" ><I CLASS="FIRSTTERM" >toupper</I >: Transforms a file to all uppercase.</A ></DT ><DT >16-22. <A HREF="textproc.html#LOWERCASE" ><I CLASS="FIRSTTERM" >lowercase</I >: Changes all filenames in working directory to lowercase.</A ></DT ><DT >16-23. <A HREF="textproc.html#DU" ><I CLASS="FIRSTTERM" >du</I >: DOS to UNIX text file conversion.</A ></DT ><DT >16-24. <A HREF="textproc.html#ROT13" ><I CLASS="FIRSTTERM" >rot13</I >: ultra-weak encryption.</A ></DT ><DT >16-25. <A HREF="textproc.html#CRYPTOQUOTE" >Generating <SPAN CLASS="QUOTE" >"Crypto-Quote"</SPAN > Puzzles</A ></DT ><DT >16-26. <A HREF="textproc.html#EX50" >Formatted file listing.</A ></DT ><DT >16-27. <A HREF="textproc.html#COL" >Using <I CLASS="FIRSTTERM" >column</I > to format a directory listing</A ></DT ><DT >16-28. <A HREF="textproc.html#LNUM" ><I CLASS="FIRSTTERM" >nl</I >: A self-numbering script.</A ></DT ><DT >16-29. <A HREF="textproc.html#MANVIEW" ><I CLASS="FIRSTTERM" >manview</I >: Viewing formatted manpages</A ></DT ><DT >16-30. <A HREF="filearchiv.html#EX48" >Using <I CLASS="FIRSTTERM" >cpio</I > to move a directory tree</A ></DT ><DT >16-31. <A HREF="filearchiv.html#DERPM" >Unpacking an <I CLASS="FIRSTTERM" >rpm</I > archive</A ></DT ><DT >16-32. <A HREF="filearchiv.html#STRIPC" >Stripping comments from C program files</A ></DT ><DT >16-33. <A HREF="filearchiv.html#WHAT" >Exploring <TT CLASS="FILENAME" >/usr/X11R6/bin</TT ></A ></DT ><DT >16-34. <A HREF="filearchiv.html#WSTRINGS" >An <SPAN CLASS="QUOTE" >"improved"</SPAN > <I CLASS="FIRSTTERM" >strings</I > command</A ></DT ><DT >16-35. <A HREF="filearchiv.html#FILECOMP" >Using <I CLASS="FIRSTTERM" >cmp</I > to compare two files within a script.</A ></DT ><DT >16-36. <A HREF="filearchiv.html#EX35" ><I CLASS="FIRSTTERM" >basename</I > and <I CLASS="FIRSTTERM" >dirname</I ></A ></DT ><DT >16-37. <A HREF="filearchiv.html#SPLITCOPY" >A script that copies itself in sections</A ></DT ><DT >16-38. <A HREF="filearchiv.html#FILEINTEGRITY" >Checking file integrity</A ></DT ><DT >16-39. <A HREF="filearchiv.html#EX52" >Uudecoding encoded files</A ></DT ><DT >16-40. <A HREF="communications.html#SPAMLOOKUP" >Finding out where to report a spammer</A ></DT ><DT >16-41. <A HREF="communications.html#ISSPAMMER" >Analyzing a spam domain</A ></DT ><DT >16-42. <A HREF="communications.html#QUOTEFETCH" >Getting a stock quote</A ></DT ><DT >16-43. <A HREF="communications.html#FC4UPD" >Updating FC4</A ></DT ><DT >16-44. <A HREF="communications.html#REMOTE" >Using <I CLASS="FIRSTTERM" >ssh</I ></A ></DT ><DT >16-45. <A HREF="communications.html#SELFMAILER" >A script that mails itself</A ></DT ><DT >16-46. <A HREF="mathc.html#PRIMES2" >Generating prime numbers</A ></DT ><DT >16-47. <A HREF="mathc.html#MONTHLYPMT" >Monthly Payment on a Mortgage</A ></DT ><DT >16-48. <A HREF="mathc.html#BASE" >Base Conversion</A ></DT ><DT >16-49. <A HREF="mathc.html#ALTBC" >Invoking <I CLASS="FIRSTTERM" >bc</I > using a <I CLASS="FIRSTTERM" >here document</I ></A ></DT ><DT >16-50. <A HREF="mathc.html#CANNON" >Calculating PI</A ></DT ><DT >16-51. <A HREF="mathc.html#HEXCONVERT" >Converting a decimal number to hexadecimal</A ></DT ><DT >16-52. <A HREF="mathc.html#FACTR" >Factoring</A ></DT ><DT >16-53. <A HREF="mathc.html#HYPOT" >Calculating the hypotenuse of a triangle</A ></DT ><DT >16-54. <A HREF="extmisc.html#EX53" >Using <I CLASS="FIRSTTERM" >seq</I > to generate loop arguments</A ></DT ><DT >16-55. <A HREF="extmisc.html#LETTERCOUNT" >Letter Count"</A ></DT ><DT >16-56. <A HREF="extmisc.html#EX33A" >Using <I CLASS="FIRSTTERM" >getopt</I > to parse command-line options</A ></DT ><DT >16-57. <A HREF="extmisc.html#SELFCOPY" >A script that copies itself</A ></DT ><DT >16-58. <A HREF="extmisc.html#EXERCISINGDD" >Exercising <I CLASS="FIRSTTERM" >dd</I ></A ></DT ><DT >16-59. <A HREF="extmisc.html#DDKEYPRESS" >Capturing Keystrokes</A ></DT ><DT >16-60. <A HREF="extmisc.html#RPSDCARD" >Preparing a bootable SD card for the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Raspberry Pi</I ></SPAN ></A ></DT ><DT >16-61. <A HREF="extmisc.html#BLOTOUT" >Securely deleting a file</A ></DT ><DT >16-62. <A HREF="extmisc.html#TEMPFILENAME" >Filename generator</A ></DT ><DT >16-63. <A HREF="extmisc.html#UNITCONVERSION" >Converting meters to miles</A ></DT ><DT >16-64. <A HREF="extmisc.html#M4" >Using <I CLASS="FIRSTTERM" >m4</I ></A ></DT ><DT >17-1. <A HREF="system.html#SETNEWPW" >Setting a new password</A ></DT ><DT >17-2. <A HREF="system.html#ERASE" >Setting an <I CLASS="FIRSTTERM" >erase</I > character</A ></DT ><DT >17-3. <A HREF="system.html#SECRETPW" ><I CLASS="FIRSTTERM" >secret password</I >: Turning off terminal echoing</A ></DT ><DT >17-4. <A HREF="system.html#KEYPRESS" >Keypress detection</A ></DT ><DT >17-5. <A HREF="system.html#ISCAN" >Checking a remote server for <I CLASS="FIRSTTERM" >identd</I ></A ></DT ><DT >17-6. <A HREF="system.html#KILLPROCESS" ><I CLASS="FIRSTTERM" >pidof</I > helps kill a process</A ></DT ><DT >17-7. <A HREF="system.html#ISOMOUNTREF" >Checking a CD image</A ></DT ><DT >17-8. <A HREF="system.html#CREATEFS" >Creating a filesystem in a file</A ></DT ><DT >17-9. <A HREF="system.html#ADDDRV" >Adding a new hard drive</A ></DT ><DT >17-10. <A HREF="system.html#ROT13A" >Using <I CLASS="FIRSTTERM" >umask</I > to hide an output file from prying eyes</A ></DT ><DT >17-11. <A HREF="system.html#BACKLIGHT" ><I CLASS="FIRSTTERM" >Backlight</I >: changes the brightness of the (laptop) screen backlight</A ></DT ><DT >17-12. <A HREF="system.html#EX55" ><I CLASS="FIRSTTERM" >killall</I >, from <TT CLASS="FILENAME" >/etc/rc.d/init.d</TT ></A ></DT ><DT >19-1. <A HREF="here-docs.html#EX70" ><I CLASS="FIRSTTERM" >broadcast</I >: Sends message to everyone logged in</A ></DT ><DT >19-2. <A HREF="here-docs.html#EX69" ><I CLASS="FIRSTTERM" >dummyfile</I >: Creates a 2-line dummy file</A ></DT ><DT >19-3. <A HREF="here-docs.html#EX71" >Multi-line message using <I CLASS="FIRSTTERM" >cat</I ></A ></DT ><DT >19-4. <A HREF="here-docs.html#EX71A" >Multi-line message, with tabs suppressed</A ></DT ><DT >19-5. <A HREF="here-docs.html#EX71B" >Here document with replaceable parameters</A ></DT ><DT >19-6. <A HREF="here-docs.html#EX72" >Upload a file pair to <I CLASS="FIRSTTERM" >Sunsite</I > incoming directory</A ></DT ><DT >19-7. <A HREF="here-docs.html#EX71C" >Parameter substitution turned off</A ></DT ><DT >19-8. <A HREF="here-docs.html#GENERATESCRIPT" >A script that generates another script</A ></DT ><DT >19-9. <A HREF="here-docs.html#HF" >Here documents and functions</A ></DT ><DT >19-10. <A HREF="here-docs.html#ANONHEREDOC" ><SPAN CLASS="QUOTE" >"Anonymous"</SPAN > Here Document</A ></DT ><DT >19-11. <A HREF="here-docs.html#COMMENTBLOCK" >Commenting out a block of code</A ></DT ><DT >19-12. <A HREF="here-docs.html#SELFDOCUMENT" >A self-documenting script</A ></DT ><DT >19-13. <A HREF="here-docs.html#PREPENDEX" >Prepending a line to a file</A ></DT ><DT >19-14. <A HREF="here-docs.html#MAILBOXGREP" >Parsing a mailbox</A ></DT ><DT >20-1. <A HREF="io-redirection.html#REDIR1" >Redirecting <TT CLASS="FILENAME" >stdin</TT > using <I CLASS="FIRSTTERM" >exec</I ></A ></DT ><DT >20-2. <A HREF="io-redirection.html#REASSIGNSTDOUT" >Redirecting <TT CLASS="FILENAME" >stdout</TT > using <I CLASS="FIRSTTERM" >exec</I ></A ></DT ><DT >20-3. <A HREF="io-redirection.html#UPPERCONV" >Redirecting both <TT CLASS="FILENAME" >stdin</TT > and <TT CLASS="FILENAME" >stdout</TT > in the same script with <I CLASS="FIRSTTERM" >exec</I ></A ></DT ><DT >20-4. <A HREF="io-redirection.html#AVOIDSUBSHELL" >Avoiding a subshell</A ></DT ><DT >20-5. <A HREF="redircb.html#REDIR2" >Redirected <I CLASS="FIRSTTERM" >while</I > loop</A ></DT ><DT >20-6. <A HREF="redircb.html#REDIR2A" >Alternate form of redirected <I CLASS="FIRSTTERM" >while</I > loop</A ></DT ><DT >20-7. <A HREF="redircb.html#REDIR3" >Redirected <I CLASS="FIRSTTERM" >until</I > loop</A ></DT ><DT >20-8. <A HREF="redircb.html#REDIR4" >Redirected <I CLASS="FIRSTTERM" >for</I > loop</A ></DT ><DT >20-9. <A HREF="redircb.html#REDIR4A" >Redirected <I CLASS="FIRSTTERM" >for</I > loop (both <TT CLASS="FILENAME" >stdin</TT > and <TT CLASS="FILENAME" >stdout</TT > redirected)</A ></DT ><DT >20-10. <A HREF="redircb.html#REDIR5" >Redirected <I CLASS="FIRSTTERM" >if/then</I > test</A ></DT ><DT >20-11. <A HREF="redircb.html#NAMESDATA" >Data file <I CLASS="FIRSTTERM" >names.data</I > for above examples</A ></DT ><DT >20-12. <A HREF="redirapps.html#LOGEVENTS" >Logging events</A ></DT ><DT >21-1. <A HREF="subshells.html#SUBSHELL" >Variable scope in a subshell</A ></DT ><DT >21-2. <A HREF="subshells.html#ALLPROFS" >List User Profiles</A ></DT ><DT >21-3. <A HREF="subshells.html#PARALLEL-PROCESSES" >Running parallel processes in subshells</A ></DT ><DT >22-1. <A HREF="restricted-sh.html#RESTRICTED" >Running a script in restricted mode</A ></DT ><DT >23-1. <A HREF="process-sub.html#WRPS" >Code block redirection without forking</A ></DT ><DT >23-2. <A HREF="process-sub.html#PSUBP" >Redirecting the output of <I CLASS="FIRSTTERM" >process substitution</I > into a loop.</A ></DT ><DT >24-1. <A HREF="functions.html#EX59" >Simple functions</A ></DT ><DT >24-2. <A HREF="functions.html#EX60" >Function Taking Parameters</A ></DT ><DT >24-3. <A HREF="functions.html#FUNCCMDLINEARG" >Functions and command-line args passed to the script</A ></DT ><DT >24-4. <A HREF="functions.html#INDFUNC" >Passing an indirect reference to a function</A ></DT ><DT >24-5. <A HREF="functions.html#DEREFERENCECL" >Dereferencing a parameter passed to a function</A ></DT ><DT >24-6. <A HREF="functions.html#REFPARAMS" >Again, dereferencing a parameter passed to a function</A ></DT ><DT >24-7. <A HREF="functions.html#MAX" >Maximum of two numbers</A ></DT ><DT >24-8. <A HREF="functions.html#EX61" >Converting numbers to Roman numerals</A ></DT ><DT >24-9. <A HREF="functions.html#RETURNTEST" >Testing large return values in a function</A ></DT ><DT >24-10. <A HREF="functions.html#MAX2" >Comparing two large integers</A ></DT ><DT >24-11. <A HREF="functions.html#REALNAME" >Real name from username</A ></DT ><DT >24-12. <A HREF="localvar.html#EX62" >Local variable visibility</A ></DT ><DT >24-13. <A HREF="localvar.html#RECURSIONDEMO" >Demonstration of a simple recursive function</A ></DT ><DT >24-14. <A HREF="localvar.html#RECURSIONDEMO2" >Another simple demonstration</A ></DT ><DT >24-15. <A HREF="localvar.html#EX63" >Recursion, using a local variable</A ></DT ><DT >24-16. <A HREF="recurnolocvar.html#FIBO" ><I CLASS="FIRSTTERM" >The Fibonacci Sequence</I ></A ></DT ><DT >24-17. <A HREF="recurnolocvar.html#HANOI" ><I CLASS="FIRSTTERM" >The Towers of Hanoi</I ></A ></DT ><DT >25-1. <A HREF="aliases.html#AL" >Aliases within a script</A ></DT ><DT >25-2. <A HREF="aliases.html#UNAL" ><I CLASS="FIRSTTERM" >unalias</I >: Setting and unsetting an alias</A ></DT ><DT >26-1. <A HREF="list-cons.html#EX64" >Using an <I CLASS="FIRSTTERM" >and list</I > to test for command-line arguments</A ></DT ><DT >26-2. <A HREF="list-cons.html#ANDLIST2" >Another command-line arg test using an <I CLASS="FIRSTTERM" >and list</I ></A ></DT ><DT >26-3. <A HREF="list-cons.html#EX65" >Using <I CLASS="FIRSTTERM" >or lists</I > in combination with an <I CLASS="FIRSTTERM" >and list</I ></A ></DT ><DT >27-1. <A HREF="arrays.html#EX66" >Simple array usage</A ></DT ><DT >27-2. <A HREF="arrays.html#POEM" >Formatting a poem</A ></DT ><DT >27-3. <A HREF="arrays.html#ARRAYOPS" >Various array operations</A ></DT ><DT >27-4. <A HREF="arrays.html#ARRAYSTROPS" >String operations on arrays</A ></DT ><DT >27-5. <A HREF="arrays.html#SCRIPTARRAY" >Loading the contents of a script into an array</A ></DT ><DT >27-6. <A HREF="arrays.html#EX67" >Some special properties of arrays</A ></DT ><DT >27-7. <A HREF="arrays.html#EMPTYARRAY" >Of empty arrays and empty elements</A ></DT ><DT >27-8. <A HREF="arrays.html#ARRAYASSIGN" >Initializing arrays</A ></DT ><DT >27-9. <A HREF="arrays.html#COPYARRAY" >Copying and concatenating arrays</A ></DT ><DT >27-10. <A HREF="arrays.html#ARRAYAPPEND" >More on concatenating arrays</A ></DT ><DT >27-11. <A HREF="arrays.html#BUBBLE" >The Bubble Sort</A ></DT ><DT >27-12. <A HREF="arrays.html#EMBARR" >Embedded arrays and indirect references</A ></DT ><DT >27-13. <A HREF="arrays.html#EX68" >The Sieve of Eratosthenes</A ></DT ><DT >27-14. <A HREF="arrays.html#EX68A" >The Sieve of Eratosthenes, Optimized</A ></DT ><DT >27-15. <A HREF="arrays.html#STACKEX" >Emulating a push-down stack</A ></DT ><DT >27-16. <A HREF="arrays.html#QFUNCTION" >Complex array application: <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Exploring a weird mathematical series</I ></SPAN ></A ></DT ><DT >27-17. <A HREF="arrays.html#TWODIM" >Simulating a two-dimensional array, then tilting it</A ></DT ><DT >28-1. <A HREF="ivr.html#INDREF" >Indirect Variable References</A ></DT ><DT >28-2. <A HREF="ivr.html#COLTOTALER2" >Passing an indirect reference to <I CLASS="FIRSTTERM" >awk</I ></A ></DT ><DT >29-1. <A HREF="devproc.html#DEVTCP" >Using <TT CLASS="FILENAME" >/dev/tcp</TT > for troubleshooting</A ></DT ><DT >29-2. <A HREF="devproc.html#MUSICSCR" >Playing music</A ></DT ><DT >29-3. <A HREF="procref1.html#PIDID" >Finding the process associated with a PID</A ></DT ><DT >29-4. <A HREF="procref1.html#CONSTAT" >On-line connect status</A ></DT ><DT >30-1. <A HREF="networkprogramming.html#TESTCGI" >Print the server environment</A ></DT ><DT >30-2. <A HREF="networkprogramming.html#IPADDRESSES" >IP addresses</A ></DT ><DT >31-1. <A HREF="zeros.html#COOKIES" >Hiding the cookie jar</A ></DT ><DT >31-2. <A HREF="zeros.html#EX73" >Setting up a swapfile using <TT CLASS="FILENAME" >/dev/zero</TT ></A ></DT ><DT >31-3. <A HREF="zeros.html#RAMDISK" >Creating a ramdisk</A ></DT ><DT >32-1. <A HREF="debugging.html#EX74" >A buggy script</A ></DT ><DT >32-2. <A HREF="debugging.html#MISSINGKEYWORD" >Missing <A HREF="internal.html#KEYWORDREF" >keyword</A ></A ></DT ><DT >32-3. <A HREF="debugging.html#EX75" ><I CLASS="FIRSTTERM" >test24</I >: another buggy script</A ></DT ><DT >32-4. <A HREF="debugging.html#ASSERT" >Testing a condition with an <I CLASS="FIRSTTERM" >assert</I ></A ></DT ><DT >32-5. <A HREF="debugging.html#EX76" >Trapping at exit</A ></DT ><DT >32-6. <A HREF="debugging.html#ONLINE" >Cleaning up after <B CLASS="KEYCAP" >Control-C</B ></A ></DT ><DT >32-7. <A HREF="debugging.html#PROGRESSBAR2" >A Simple Implementation of a Progress Bar</A ></DT ><DT >32-8. <A HREF="debugging.html#VARTRACE" >Tracing a variable</A ></DT ><DT >32-9. <A HREF="debugging.html#MULTIPLEPROC" >Running multiple processes (on an SMP box)</A ></DT ><DT >34-1. <A HREF="gotchas.html#BADOP" >Numerical and string comparison are not equivalent</A ></DT ><DT >34-2. <A HREF="gotchas.html#SUBPIT" >Subshell Pitfalls</A ></DT ><DT >34-3. <A HREF="gotchas.html#BADREAD" >Piping the output of <I CLASS="FIRSTTERM" >echo</I > to a <I CLASS="FIRSTTERM" >read</I ></A ></DT ><DT >36-1. <A HREF="wrapper.html#EX3" ><I CLASS="FIRSTTERM" >shell wrapper</I ></A ></DT ><DT >36-2. <A HREF="wrapper.html#EX4" >A slightly more complex <I CLASS="FIRSTTERM" >shell wrapper</I ></A ></DT ><DT >36-3. <A HREF="wrapper.html#LOGGINGWRAPPER" >A generic <I CLASS="FIRSTTERM" >shell wrapper</I > that writes to a logfile</A ></DT ><DT >36-4. <A HREF="wrapper.html#PRASC" >A <I CLASS="FIRSTTERM" >shell wrapper</I > around an awk script</A ></DT ><DT >36-5. <A HREF="wrapper.html#COLTOTALER" >A <I CLASS="FIRSTTERM" >shell wrapper</I > around another awk script</A ></DT ><DT >36-6. <A HREF="wrapper.html#EX56" >Perl embedded in a <I CLASS="FIRSTTERM" >Bash</I > script</A ></DT ><DT >36-7. <A HREF="wrapper.html#BASHANDPERL" >Bash and Perl scripts combined</A ></DT ><DT >36-8. <A HREF="wrapper.html#EX56PY" >Python embedded in a <I CLASS="FIRSTTERM" >Bash</I > script</A ></DT ><DT >36-9. <A HREF="wrapper.html#SPEECH0" >A script that speaks</A ></DT ><DT >36-10. <A HREF="recursionsct.html#RECURSE" >A (useless) script that recursively calls itself</A ></DT ><DT >36-11. <A HREF="recursionsct.html#PBOOK" >A (useful) script that recursively calls itself</A ></DT ><DT >36-12. <A HREF="recursionsct.html#USRMNT" >Another (useful) script that recursively calls itself</A ></DT ><DT >36-13. <A HREF="colorizing.html#EX30A" >A <SPAN CLASS="QUOTE" >"colorized"</SPAN > address database</A ></DT ><DT >36-14. <A HREF="colorizing.html#DRAW-BOX" >Drawing a box</A ></DT ><DT >36-15. <A HREF="colorizing.html#COLORECHO" >Echoing colored text</A ></DT ><DT >36-16. <A HREF="colorizing.html#HORSERACE" >A <SPAN CLASS="QUOTE" >"horserace"</SPAN > game</A ></DT ><DT >36-17. <A HREF="assortedtips.html#PROGRESSBAR" >A Progress Bar</A ></DT ><DT >36-18. <A HREF="assortedtips.html#MULTIPLICATION" >Return value trickery</A ></DT ><DT >36-19. <A HREF="assortedtips.html#SUMPRODUCT" >Even more return value trickery</A ></DT ><DT >36-20. <A HREF="assortedtips.html#ARRFUNC" >Passing and returning arrays</A ></DT ><DT >36-21. <A HREF="assortedtips.html#AGRAM" >Fun with anagrams</A ></DT ><DT >36-22. <A HREF="assortedtips.html#DIALOG" >Widgets invoked from a shell script</A ></DT ><DT >36-23. <A HREF="portabilityissues.html#TESTSUITE" >Test Suite</A ></DT ><DT >37-1. <A HREF="bash2.html#EX77" >String expansion</A ></DT ><DT >37-2. <A HREF="bash2.html#EX78" >Indirect variable references - the new way</A ></DT ><DT >37-3. <A HREF="bash2.html#RESISTOR" >Simple database application, using indirect variable referencing</A ></DT ><DT >37-4. <A HREF="bash2.html#CARDS" >Using arrays and other miscellaneous trickery to deal four random hands from a deck of cards</A ></DT ><DT >37-5. <A HREF="bashver4.html#FETCHADDRESS" >A simple address database</A ></DT ><DT >37-6. <A HREF="bashver4.html#FETCHADDRESS2" >A somewhat more elaborate address database</A ></DT ><DT >37-7. <A HREF="bashver4.html#CASE4" >Testing characters</A ></DT ><DT >37-8. <A HREF="bashver4.html#READN" >Reading N characters</A ></DT ><DT >37-9. <A HREF="bashver4.html#HERECOMMSUB" >Using a <I CLASS="FIRSTTERM" >here document</I > to set a variable</A ></DT ><DT >37-10. <A HREF="bashver4.html#LASTPIPEOPT" >Piping input to a <A HREF="internal.html#READREF" >read</A ></A ></DT ><DT >37-11. <A HREF="bashver4.html#NEGARRAY" >Negative array indices</A ></DT ><DT >37-12. <A HREF="bashver4.html#NEGOFFSET" >Negative parameter in string-extraction construct</A ></DT ><DT >A-1. <A HREF="contributed-scripts.html#MAILFORMAT" ><I CLASS="FIRSTTERM" >mailformat</I >: Formatting an e-mail message</A ></DT ><DT >A-2. <A HREF="contributed-scripts.html#RN" ><I CLASS="FIRSTTERM" >rn</I >: A simple-minded file renaming utility</A ></DT ><DT >A-3. <A HREF="contributed-scripts.html#BLANKRENAME" ><I CLASS="FIRSTTERM" >blank-rename</I >: Renames filenames containing blanks</A ></DT ><DT >A-4. <A HREF="contributed-scripts.html#ENCRYPTEDPW" ><I CLASS="FIRSTTERM" >encryptedpw</I >: Uploading to an ftp site, using a locally encrypted password</A ></DT ><DT >A-5. <A HREF="contributed-scripts.html#COPYCD" ><I CLASS="FIRSTTERM" >copy-cd</I >: Copying a data CD</A ></DT ><DT >A-6. <A HREF="contributed-scripts.html#COLLATZ" >Collatz series</A ></DT ><DT >A-7. <A HREF="contributed-scripts.html#DAYSBETWEEN" ><I CLASS="FIRSTTERM" >days-between</I >: Days between two dates</A ></DT ><DT >A-8. <A HREF="contributed-scripts.html#MAKEDICT" >Making a <I CLASS="FIRSTTERM" >dictionary</I ></A ></DT ><DT >A-9. <A HREF="contributed-scripts.html#SOUNDEX" >Soundex conversion</A ></DT ><DT >A-10. <A HREF="contributed-scripts.html#LIFESLOW" ><I CLASS="FIRSTTERM" >Game of Life</I ></A ></DT ><DT >A-11. <A HREF="contributed-scripts.html#GEN0DATA" >Data file for <I CLASS="FIRSTTERM" >Game of Life</I ></A ></DT ><DT >A-12. <A HREF="contributed-scripts.html#BEHEAD" ><I CLASS="FIRSTTERM" >behead</I >: Removing mail and news message headers</A ></DT ><DT >A-13. <A HREF="contributed-scripts.html#PW" ><I CLASS="FIRSTTERM" >password</I >: Generating random 8-character passwords</A ></DT ><DT >A-14. <A HREF="contributed-scripts.html#FIFO" ><I CLASS="FIRSTTERM" >fifo</I >: Making daily backups, using named pipes</A ></DT ><DT >A-15. <A HREF="contributed-scripts.html#PRIMES" >Generating prime numbers using the modulo operator</A ></DT ><DT >A-16. <A HREF="contributed-scripts.html#TREE" ><I CLASS="FIRSTTERM" >tree</I >: Displaying a directory tree</A ></DT ><DT >A-17. <A HREF="contributed-scripts.html#TREE2" ><I CLASS="FIRSTTERM" >tree2</I >: Alternate directory tree script</A ></DT ><DT >A-18. <A HREF="contributed-scripts.html#STRING" ><I CLASS="FIRSTTERM" >string functions</I >: C-style string functions</A ></DT ><DT >A-19. <A HREF="contributed-scripts.html#DIRECTORYINFO" >Directory information</A ></DT ><DT >A-20. <A HREF="contributed-scripts.html#HASHLIB" >Library of hash functions</A ></DT ><DT >A-21. <A HREF="contributed-scripts.html#HASHEXAMPLE" >Colorizing text using hash functions</A ></DT ><DT >A-22. <A HREF="contributed-scripts.html#HASHEX2" >More on hash functions</A ></DT ><DT >A-23. <A HREF="contributed-scripts.html#USBINST" >Mounting USB keychain storage devices</A ></DT ><DT >A-24. <A HREF="contributed-scripts.html#TOHTML" >Converting to HTML</A ></DT ><DT >A-25. <A HREF="contributed-scripts.html#ARCHIVWEBLOGS" >Preserving weblogs</A ></DT ><DT >A-26. <A HREF="contributed-scripts.html#PROTECTLITERAL" >Protecting literal strings</A ></DT ><DT >A-27. <A HREF="contributed-scripts.html#UNPROTECTLITERAL" >Unprotecting literal strings</A ></DT ><DT >A-28. <A HREF="contributed-scripts.html#ISSPAMMER2" >Spammer Identification</A ></DT ><DT >A-29. <A HREF="contributed-scripts.html#WHX" >Spammer Hunt</A ></DT ><DT >A-30. <A HREF="contributed-scripts.html#WGETTER2" >Making <I CLASS="FIRSTTERM" >wget</I > easier to use</A ></DT ><DT >A-31. <A HREF="contributed-scripts.html#BASHPODDER" >A <I CLASS="FIRSTTERM" >podcasting</I > script</A ></DT ><DT >A-32. <A HREF="contributed-scripts.html#NIGHTLYBACKUP" >Nightly backup to a firewire HD</A ></DT ><DT >A-33. <A HREF="contributed-scripts.html#CDLL" >An expanded <I CLASS="FIRSTTERM" >cd</I > command</A ></DT ><DT >A-34. <A HREF="contributed-scripts.html#SOUNDCARDON" >A soundcard setup script</A ></DT ><DT >A-35. <A HREF="contributed-scripts.html#FINDSPLIT" >Locating split paragraphs in a text file</A ></DT ><DT >A-36. <A HREF="contributed-scripts.html#INSERTIONSORT" >Insertion sort</A ></DT ><DT >A-37. <A HREF="contributed-scripts.html#STDDEV" >Standard Deviation</A ></DT ><DT >A-38. <A HREF="contributed-scripts.html#PADSW" >A <I CLASS="FIRSTTERM" >pad</I > file generator for shareware authors</A ></DT ><DT >A-39. <A HREF="contributed-scripts.html#MANED" >A <I CLASS="FIRSTTERM" >man page</I > editor</A ></DT ><DT >A-40. <A HREF="contributed-scripts.html#PETALS" >Petals Around the Rose</A ></DT ><DT >A-41. <A HREF="contributed-scripts.html#QKY" >Quacky: a Perquackey-type word game</A ></DT ><DT >A-42. <A HREF="contributed-scripts.html#NIM" >Nim</A ></DT ><DT >A-43. <A HREF="contributed-scripts.html#STOPWATCH" >A command-line stopwatch</A ></DT ><DT >A-44. <A HREF="contributed-scripts.html#HOMEWORK" >An all-purpose shell scripting homework assignment solution</A ></DT ><DT >A-45. <A HREF="contributed-scripts.html#KTOUR" >The Knight's Tour</A ></DT ><DT >A-46. <A HREF="contributed-scripts.html#MSQUARE" >Magic Squares</A ></DT ><DT >A-47. <A HREF="contributed-scripts.html#FIFTEEN" >Fifteen Puzzle</A ></DT ><DT >A-48. <A HREF="contributed-scripts.html#HANOI2" ><I CLASS="FIRSTTERM" >The Towers of Hanoi, graphic version</I ></A ></DT ><DT >A-49. <A HREF="contributed-scripts.html#HANOI2A" ><I CLASS="FIRSTTERM" >The Towers of Hanoi, alternate graphic version</I ></A ></DT ><DT >A-50. <A HREF="contributed-scripts.html#USEGETOPT" >An alternate version of the <A HREF="manipulatingvars.html#GETOPTSIMPLE" >getopt-simple.sh</A > script</A ></DT ><DT >A-51. <A HREF="contributed-scripts.html#USEGETOPT2" >The version of the <I CLASS="FIRSTTERM" >UseGetOpt.sh</I > example used in the <A HREF="tabexpansion.html" >Tab Expansion appendix</A ></A ></DT ><DT >A-52. <A HREF="contributed-scripts.html#SHOWALLC" >Cycling through all the possible color backgrounds</A ></DT ><DT >A-53. <A HREF="contributed-scripts.html#SAMORSE" >Morse Code Practice</A ></DT ><DT >A-54. <A HREF="contributed-scripts.html#BASE64" >Base64 encoding/decoding</A ></DT ><DT >A-55. <A HREF="contributed-scripts.html#SEDAPPEND" >Inserting text in a file using <I CLASS="FIRSTTERM" >sed</I ></A ></DT ><DT >A-56. <A HREF="contributed-scripts.html#GRONSFELD" >The Gronsfeld Cipher</A ></DT ><DT >A-57. <A HREF="contributed-scripts.html#BINGO" >Bingo Number Generator</A ></DT ><DT >A-58. <A HREF="contributed-scripts.html#BASICSREVIEWED" >Basics Reviewed</A ></DT ><DT >A-59. <A HREF="contributed-scripts.html#TESTEXECTIME" >Testing execution times of various commands</A ></DT ><DT >A-60. <A HREF="contributed-scripts.html#ASSOCARRTEST" >Associative arrays vs. conventional arrays (execution times)</A ></DT ><DT >C-1. <A HREF="awk.html#LETTERCOUNT2" >Counting Letter Occurrences</A ></DT ><DT >J-1. <A HREF="tabexpansion.html#USEGETOPTEX" >Completion script for <I CLASS="FIRSTTERM" >UseGetOpt.sh</I ></A ></DT ><DT >M-1. <A HREF="sample-bashrc.html#BASHRC" >Sample <TT CLASS="FILENAME" >.bashrc</TT > file</A ></DT ><DT >M-2. <A HREF="sample-bashrc.html#BASHPROF" ><TT CLASS="FILENAME" >.bash_profile</TT > file</A ></DT ><DT >N-1. <A HREF="dosbatch.html#VIEWDAT" >VIEWDATA.BAT: DOS Batch File</A ></DT ><DT >N-2. <A HREF="dosbatch.html#VIEWDATA" ><I CLASS="FIRSTTERM" >viewdata.sh</I >: Shell Script Conversion of VIEWDATA.BAT</A ></DT ><DT >T-1. <A HREF="asciitable.html#ASCIISH" >A script that generates an ASCII table</A ></DT ><DT >T-2. <A HREF="asciitable.html#ASCII2SH" >Another ASCII table script</A ></DT ><DT >T-3. <A HREF="asciitable.html#ASCII3SH" >A third ASCII table script, using <I CLASS="FIRSTTERM" >awk</I ></A ></DT ></DL ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" > </TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="part1.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" > </TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Introduction</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/internal.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Internal Commands and Builtins</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Commands" HREF="part4.html"><LINK REL="PREVIOUS" TITLE="Commands" HREF="part4.html"><LINK REL="NEXT" TITLE="External Filters, Programs and Commands" HREF="external.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="part4.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="external.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="INTERNAL" ></A >Chapter 15. Internal Commands and Builtins</H1 ><P ><A NAME="BUILTINREF" ></A >A <I CLASS="FIRSTTERM" >builtin</I > is a <B CLASS="COMMAND" >command</B > contained within the Bash tool set, literally <I CLASS="FIRSTTERM" >built in</I >. This is either for performance reasons -- builtins execute faster than external commands, which usually require <I CLASS="FIRSTTERM" >forking off</I > <A NAME="AEN8607" HREF="#FTN.AEN8607" >[1]</A > a separate process -- or because a particular builtin needs direct access to the shell internals.</P ><P ><A NAME="FORKREF" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN8611" ></A ><P ><A NAME="PARENTREF" ></A >When a command or the shell itself initiates (or <I CLASS="FIRSTTERM" >spawns</I >) a new subprocess to carry out a task, this is called <I CLASS="FIRSTTERM" >forking</I >. This new process is the <I CLASS="FIRSTTERM" >child</I >, and the process that <I CLASS="FIRSTTERM" >forked</I > it off is the <I CLASS="FIRSTTERM" >parent</I >. While the <I CLASS="FIRSTTERM" >child process</I > is doing its work, the <I CLASS="FIRSTTERM" >parent process</I > is still executing.</P ><P >Note that while a <I CLASS="FIRSTTERM" >parent process</I > gets the <I CLASS="FIRSTTERM" >process ID</I > of the <I CLASS="FIRSTTERM" >child process</I >, and can thus pass arguments to it, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >the reverse is not true</I ></SPAN >. <A HREF="gotchas.html#PARCHILDPROBREF" >This can create problems that are subtle and hard to track down.</A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SPAWNSCR" ></A ><P ><B >Example 15-1. A script that spawns multiple instances of itself</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # spawn.sh 3 4 5 PIDS=$(pidof sh $0) # Process IDs of the various instances of this script. 6 P_array=( $PIDS ) # Put them in an array (why?). 7 echo $PIDS # Show process IDs of parent and child processes. 8 let "instances = ${#P_array[*]} - 1" # Count elements, less 1. 9 # Why subtract 1? 10 echo "$instances instance(s) of this script running." 11 echo "[Hit Ctl-C to exit.]"; echo 12 13 14 sleep 1 # Wait. 15 sh $0 # Play it again, Sam. 16 17 exit 0 # Not necessary; script will never get to here. 18 # Why not? 19 20 # After exiting with a Ctl-C, 21 #+ do all the spawned instances of the script die? 22 # If so, why? 23 24 # Note: 25 # ---- 26 # Be careful not to run this script too long. 27 # It will eventually eat up too many system resources. 28 29 # Is having a script spawn multiple instances of itself 30 #+ an advisable scripting technique. 31 # Why or why not?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="BLTINFRK" ></A ></P ><P >Generally, a Bash <I CLASS="FIRSTTERM" >builtin</I > does not fork a subprocess when it executes within a script. An external system command or filter in a script usually <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >will</I ></SPAN > fork a subprocess.</P ></DIV ></TD ></TR ></TABLE ><P >A builtin may be a synonym to a system command of the same name, but Bash reimplements it internally. For example, the Bash <B CLASS="COMMAND" >echo</B > command is not the same as <TT CLASS="FILENAME" >/bin/echo</TT >, although their behavior is almost identical. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo "This line uses the \"echo\" builtin." 4 /bin/echo "This line uses the /bin/echo system command."</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="KEYWORDREF" ></A >A <I CLASS="FIRSTTERM" >keyword</I > is a <I CLASS="FIRSTTERM" >reserved</I > word, token or operator. Keywords have a special meaning to the shell, and indeed are the building blocks of the shell's syntax. As examples, <I CLASS="FIRSTTERM" >for</I >, <I CLASS="FIRSTTERM" >while</I >, <I CLASS="FIRSTTERM" >do</I >, and <I CLASS="FIRSTTERM" >!</I > are keywords. Similar to a <A HREF="internal.html#BUILTINREF" >builtin</A >, a keyword is hard-coded into Bash, but unlike a <I CLASS="FIRSTTERM" >builtin</I >, a keyword is not in itself a command, but <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >a subunit of a command construct</I ></SPAN >. <A NAME="AEN8650" HREF="#FTN.AEN8650" >[2]</A > </P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="INTIO1" ></A >I/O</B ></P ><DL ><DT ><A NAME="ECHOREF" ></A ><B CLASS="COMMAND" >echo</B ></DT ><DD ><P >prints (to <TT CLASS="FILENAME" >stdout</TT >) an expression or variable (see <A HREF="variables.html#EX9" >Example 4-1</A >). <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo Hello 2 echo $a</PRE ></TD ></TR ></TABLE ></P ><P >An <B CLASS="COMMAND" >echo</B > requires the <TT CLASS="OPTION" >-e</TT > option to print escaped characters. See <A HREF="escapingsection.html#ESCAPED" >Example 5-2</A >.</P ><P >Normally, each <B CLASS="COMMAND" >echo</B > command prints a terminal newline, but the <TT CLASS="OPTION" >-n</TT > option suppresses this.</P ><P ><A NAME="ECHOGREPREF" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >An <B CLASS="COMMAND" >echo</B > can be used to feed a sequence of commands down a pipe.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if echo "$VAR" | grep -q txt # if [[ $VAR = *txt* ]] 2 then 3 echo "$VAR contains the substring sequence \"txt\"" 4 fi</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="ECHOCS" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >An <B CLASS="COMMAND" >echo</B >, in combination with <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A > can set a variable.</P ><P ><TT CLASS="USERINPUT" ><B >a=`echo "HELLO" | tr A-Z a-z`</B ></TT ></P ><P >See also <A HREF="textproc.html#LOWERCASE" >Example 16-22</A >, <A HREF="moreadv.html#EX57" >Example 16-3</A >, <A HREF="mathc.html#MONTHLYPMT" >Example 16-47</A >, and <A HREF="mathc.html#BASE" >Example 16-48</A >.</P ></TD ></TR ></TABLE ></DIV ><P >Be aware that <B CLASS="COMMAND" >echo `command`</B > deletes any linefeeds that the output of <TT CLASS="REPLACEABLE" ><I >command</I ></TT > generates.</P ><P >The <A HREF="variables2.html#IFSREF" >$IFS</A > (internal field separator) variable normally contains <SPAN CLASS="TOKEN" >\n</SPAN > (linefeed) as one of its set of <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A > characters. Bash therefore splits the output of <TT CLASS="REPLACEABLE" ><I >command</I ></TT > at linefeeds into arguments to <B CLASS="COMMAND" >echo</B >. Then <B CLASS="COMMAND" >echo</B > outputs these arguments, separated by spaces.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l /usr/share/apps/kjezz/sounds</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-rw-r--r-- 1 root root 1407 Nov 7 2000 reflect.au -rw-r--r-- 1 root root 362 Nov 7 2000 seconds.au</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo `ls -l /usr/share/apps/kjezz/sounds`</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 40 -rw-r--r-- 1 root root 716 Nov 7 2000 reflect.au -rw-r--r-- 1 root root ...</TT > </PRE ></TD ></TR ></TABLE > </P ><P > So, how can we embed a linefeed within an <A HREF="internal.html#ECHOREF" >echoed</A > character string? <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Embedding a linefeed? 2 echo "Why doesn't this string \n split on two lines?" 3 # Doesn't split. 4 5 # Let's try something else. 6 7 echo 8 9 echo $"A line of text containing 10 a linefeed." 11 # Prints as two distinct lines (embedded linefeed). 12 # But, is the "$" variable prefix really necessary? 13 14 echo 15 16 echo "This string splits 17 on two lines." 18 # No, the "$" is not needed. 19 20 echo 21 echo "---------------" 22 echo 23 24 echo -n $"Another line of text containing 25 a linefeed." 26 # Prints as two distinct lines (embedded linefeed). 27 # Even the -n option fails to suppress the linefeed here. 28 29 echo 30 echo 31 echo "---------------" 32 echo 33 echo 34 35 # However, the following doesn't work as expected. 36 # Why not? Hint: Assignment to a variable. 37 string1=$"Yet another line of text containing 38 a linefeed (maybe)." 39 40 echo $string1 41 # Yet another line of text containing a linefeed (maybe). 42 # ^ 43 # Linefeed becomes a space. 44 45 # Thanks, Steve Parker, for pointing this out.</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="BINECHO" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This command is a shell builtin, and not the same as <TT CLASS="FILENAME" >/bin/echo</TT >, although its behavior is similar.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >type -a echo</B ></TT > <TT CLASS="COMPUTEROUTPUT" >echo is a shell builtin echo is /bin/echo</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="PRINTFREF" ></A ><B CLASS="COMMAND" >printf</B ></DT ><DD ><P >The <B CLASS="COMMAND" >printf</B >, formatted print, command is an enhanced <B CLASS="COMMAND" >echo</B >. It is a limited variant of the <I CLASS="FIRSTTERM" >C</I > language <TT CLASS="FUNCTION" >printf()</TT > library function, and its syntax is somewhat different.</P ><P ><B CLASS="COMMAND" >printf</B > <TT CLASS="REPLACEABLE" ><I >format-string</I ></TT >... <TT CLASS="REPLACEABLE" ><I >parameter</I ></TT >... </P ><P >This is the Bash <I CLASS="FIRSTTERM" >builtin</I > version of the <TT CLASS="FILENAME" >/bin/printf</TT > or <TT CLASS="FILENAME" >/usr/bin/printf</TT > command. See the <B CLASS="COMMAND" >printf</B > <A HREF="external.html#MANREF" >manpage</A > (of the system command) for in-depth coverage.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Older versions of Bash may not support <B CLASS="COMMAND" >printf</B >.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX47" ></A ><P ><B >Example 15-2. <I CLASS="FIRSTTERM" >printf</I > in action</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # printf demo 3 4 declare -r PI=3.14159265358979 # Read-only variable, i.e., a constant. 5 declare -r DecimalConstant=31373 6 7 Message1="Greetings," 8 Message2="Earthling." 9 10 echo 11 12 printf "Pi to 2 decimal places = %1.2f" $PI 13 echo 14 printf "Pi to 9 decimal places = %1.9f" $PI # It even rounds off correctly. 15 16 printf "\n" # Prints a line feed, 17 # Equivalent to 'echo' . . . 18 19 printf "Constant = \t%d\n" $DecimalConstant # Inserts tab (\t). 20 21 printf "%s %s \n" $Message1 $Message2 22 23 echo 24 25 # ==========================================# 26 # Simulation of C function, sprintf(). 27 # Loading a variable with a formatted string. 28 29 echo 30 31 Pi12=$(printf "%1.12f" $PI) 32 echo "Pi to 12 decimal places = $Pi12" # Roundoff error! 33 34 Msg=`printf "%s %s \n" $Message1 $Message2` 35 echo $Msg; echo $Msg 36 37 # As it happens, the 'sprintf' function can now be accessed 38 #+ as a loadable module to Bash, 39 #+ but this is not portable. 40 41 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Formatting error messages is a useful application of <B CLASS="COMMAND" >printf</B ></P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 E_BADDIR=85 2 3 var=nonexistent_directory 4 5 error() 6 { 7 printf "$@" >&2 8 # Formats positional params passed, and sends them to stderr. 9 echo 10 exit $E_BADDIR 11 } 12 13 cd $var || error $"Can't cd to %s." "$var" 14 15 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><P >See also <A HREF="assortedtips.html#PROGRESSBAR" >Example 36-17</A >.</P ></DD ><DT ><A NAME="READREF" ></A ><B CLASS="COMMAND" >read</B ></DT ><DD ><P ><SPAN CLASS="QUOTE" >"Reads"</SPAN > the value of a variable from <TT CLASS="FILENAME" >stdin</TT >, that is, interactively fetches input from the keyboard. The <TT CLASS="OPTION" >-a</TT > option lets <B CLASS="COMMAND" >read</B > get array variables (see <A HREF="arrays.html#EX67" >Example 27-6</A >).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX36" ></A ><P ><B >Example 15-3. Variable assignment, using <I CLASS="FIRSTTERM" >read</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # "Reading" variables. 3 4 echo -n "Enter the value of variable 'var1': " 5 # The -n option to echo suppresses newline. 6 7 read var1 8 # Note no '$' in front of var1, since it is being set. 9 10 echo "var1 = $var1" 11 12 13 echo 14 15 # A single 'read' statement can set multiple variables. 16 echo -n "Enter the values of variables 'var2' and 'var3' " 17 echo =n "(separated by a space or tab): " 18 read var2 var3 19 echo "var2 = $var2 var3 = $var3" 20 # If you input only one value, 21 #+ the other variable(s) will remain unset (null). 22 23 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >A <B CLASS="COMMAND" >read</B > without an associated variable assigns its input to the dedicated variable <A HREF="variables2.html#REPLYREF" >$REPLY</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="READNOVAR" ></A ><P ><B >Example 15-4. What happens when <I CLASS="FIRSTTERM" >read</I > has no variable</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # read-novar.sh 3 4 echo 5 6 # -------------------------- # 7 echo -n "Enter a value: " 8 read var 9 echo "\"var\" = "$var"" 10 # Everything as expected here. 11 # -------------------------- # 12 13 echo 14 15 # ------------------------------------------------------------------- # 16 echo -n "Enter another value: " 17 read # No variable supplied for 'read', therefore... 18 #+ Input to 'read' assigned to default variable, $REPLY. 19 var="$REPLY" 20 echo "\"var\" = "$var"" 21 # This is equivalent to the first code block. 22 # ------------------------------------------------------------------- # 23 24 echo 25 echo "=========================" 26 echo 27 28 29 # This example is similar to the "reply.sh" script. 30 # However, this one shows that $REPLY is available 31 #+ even after a 'read' to a variable in the conventional way. 32 33 34 # ================================================================= # 35 36 # In some instances, you might wish to discard the first value read. 37 # In such cases, simply ignore the $REPLY variable. 38 39 { # Code block. 40 read # Line 1, to be discarded. 41 read line2 # Line 2, saved in variable. 42 } <$0 43 echo "Line 2 of this script is:" 44 echo "$line2" # # read-novar.sh 45 echo # #!/bin/bash line discarded. 46 47 # See also the soundcard-on.sh script. 48 49 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Normally, inputting a <TT CLASS="USERINPUT" ><B >\</B ></TT > suppresses a newline during input to a <B CLASS="COMMAND" >read</B >. The <TT CLASS="OPTION" >-r</TT > option causes an inputted <TT CLASS="USERINPUT" ><B >\</B ></TT > to be interpreted literally.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="READR" ></A ><P ><B >Example 15-5. Multi-line input to <I CLASS="FIRSTTERM" >read</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo 4 5 echo "Enter a string terminated by a \\, then press <ENTER>." 6 echo "Then, enter a second string (no \\ this time), and again press <ENTER>." 7 8 read var1 # The "\" suppresses the newline, when reading $var1. 9 # first line \ 10 # second line 11 12 echo "var1 = $var1" 13 # var1 = first line second line 14 15 # For each line terminated by a "\" 16 #+ you get a prompt on the next line to continue feeding characters into var1. 17 18 echo; echo 19 20 echo "Enter another string terminated by a \\ , then press <ENTER>." 21 read -r var2 # The -r option causes the "\" to be read literally. 22 # first line \ 23 24 echo "var2 = $var2" 25 # var2 = first line \ 26 27 # Data entry terminates with the first <ENTER>. 28 29 echo 30 31 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="READOPTIONS" ></A ></P ><P >The <B CLASS="COMMAND" >read</B > command has some interesting options that permit echoing a prompt and even reading keystrokes without hitting <B CLASS="KEYCAP" >ENTER</B >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Read a keypress without hitting ENTER. 2 3 read -s -n1 -p "Hit a key " keypress 4 echo; echo "Keypress was "\"$keypress\""." 5 6 # -s option means do not echo input. 7 # -n N option means accept only N characters of input. 8 # -p option means echo the following prompt before reading input. 9 10 # Using these options is tricky, since they need to be in the correct order.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="READARROW" ></A ></P ><P >The <TT CLASS="OPTION" >-n</TT > option to <B CLASS="COMMAND" >read</B > also allows detection of the <B CLASS="KEYCAP" >arrow keys</B > and certain of the other unusual keys.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ARROWDETECT" ></A ><P ><B >Example 15-6. Detecting the arrow keys</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # arrow-detect.sh: Detects the arrow keys, and a few more. 3 # Thank you, Sandro Magi, for showing me how. 4 5 # -------------------------------------------- 6 # Character codes generated by the keypresses. 7 arrowup='\[A' 8 arrowdown='\[B' 9 arrowrt='\[C' 10 arrowleft='\[D' 11 insert='\[2' 12 delete='\[3' 13 # -------------------------------------------- 14 15 SUCCESS=0 16 OTHER=65 17 18 echo -n "Press a key... " 19 # May need to also press ENTER if a key not listed above pressed. 20 read -n3 key # Read 3 characters. 21 22 echo -n "$key" | grep "$arrowup" #Check if character code detected. 23 if [ "$?" -eq $SUCCESS ] 24 then 25 echo "Up-arrow key pressed." 26 exit $SUCCESS 27 fi 28 29 echo -n "$key" | grep "$arrowdown" 30 if [ "$?" -eq $SUCCESS ] 31 then 32 echo "Down-arrow key pressed." 33 exit $SUCCESS 34 fi 35 36 echo -n "$key" | grep "$arrowrt" 37 if [ "$?" -eq $SUCCESS ] 38 then 39 echo "Right-arrow key pressed." 40 exit $SUCCESS 41 fi 42 43 echo -n "$key" | grep "$arrowleft" 44 if [ "$?" -eq $SUCCESS ] 45 then 46 echo "Left-arrow key pressed." 47 exit $SUCCESS 48 fi 49 50 echo -n "$key" | grep "$insert" 51 if [ "$?" -eq $SUCCESS ] 52 then 53 echo "\"Insert\" key pressed." 54 exit $SUCCESS 55 fi 56 57 echo -n "$key" | grep "$delete" 58 if [ "$?" -eq $SUCCESS ] 59 then 60 echo "\"Delete\" key pressed." 61 exit $SUCCESS 62 fi 63 64 65 echo " Some other key pressed." 66 67 exit $OTHER 68 69 # ========================================= # 70 71 # Mark Alexander came up with a simplified 72 #+ version of the above script (Thank you!). 73 # It eliminates the need for grep. 74 75 #!/bin/bash 76 77 uparrow=$'\x1b[A' 78 downarrow=$'\x1b[B' 79 leftarrow=$'\x1b[D' 80 rightarrow=$'\x1b[C' 81 82 read -s -n3 -p "Hit an arrow key: " x 83 84 case "$x" in 85 $uparrow) 86 echo "You pressed up-arrow" 87 ;; 88 $downarrow) 89 echo "You pressed down-arrow" 90 ;; 91 $leftarrow) 92 echo "You pressed left-arrow" 93 ;; 94 $rightarrow) 95 echo "You pressed right-arrow" 96 ;; 97 esac 98 99 exit $? 100 101 # ========================================= # 102 103 # Antonio Macchi has a simpler alternative. 104 105 #!/bin/bash 106 107 while true 108 do 109 read -sn1 a 110 test "$a" == `echo -en "\e"` || continue 111 read -sn1 a 112 test "$a" == "[" || continue 113 read -sn1 a 114 case "$a" in 115 A) echo "up";; 116 B) echo "down";; 117 C) echo "right";; 118 D) echo "left";; 119 esac 120 done 121 122 # ========================================= # 123 124 # Exercise: 125 # -------- 126 # 1) Add detection of the "Home," "End," "PgUp," and "PgDn" keys.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="OPTION" >-n</TT > option to <B CLASS="COMMAND" >read</B > will not detect the <B CLASS="KEYCAP" >ENTER</B > (newline) key.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="READTIMED" ></A ></P ><P >The <TT CLASS="OPTION" >-t</TT > option to <B CLASS="COMMAND" >read</B > permits timed input (see <A HREF="variables2.html#TOUT" >Example 9-4</A > and <A HREF="contributed-scripts.html#QKY" >Example A-41</A >).</P ><P ><A NAME="READFD" ></A >The <TT CLASS="OPTION" >-u</TT > option takes the <A HREF="io-redirection.html#FDREF" >file descriptor</A > of the target file.</P ><P ><A NAME="READREDIR0" ></A ></P ><P >The <B CLASS="COMMAND" >read</B > command may also <SPAN CLASS="QUOTE" >"read"</SPAN > its variable value from a file <A HREF="io-redirection.html#IOREDIRREF" >redirected</A > to <TT CLASS="FILENAME" >stdin</TT >. If the file contains more than one line, only the first line is assigned to the variable. If <B CLASS="COMMAND" >read</B > has more than one parameter, then each of these variables gets assigned a successive <A HREF="special-chars.html#WHITESPACEREF" >whitespace-delineated</A > string. Caution!</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="READREDIR" ></A ><P ><B >Example 15-7. Using <I CLASS="FIRSTTERM" >read</I > with <A HREF="io-redirection.html#IOREDIRREF" >file redirection</A ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 read var1 <data-file 4 echo "var1 = $var1" 5 # var1 set to the entire first line of the input file "data-file" 6 7 read var2 var3 <data-file 8 echo "var2 = $var2 var3 = $var3" 9 # Note non-intuitive behavior of "read" here. 10 # 1) Rewinds back to the beginning of input file. 11 # 2) Each variable is now set to a corresponding string, 12 # separated by whitespace, rather than to an entire line of text. 13 # 3) The final variable gets the remainder of the line. 14 # 4) If there are more variables to be set than whitespace-terminated strings 15 # on the first line of the file, then the excess variables remain empty. 16 17 echo "------------------------------------------------" 18 19 # How to resolve the above problem with a loop: 20 while read line 21 do 22 echo "$line" 23 done <data-file 24 # Thanks, Heiner Steven for pointing this out. 25 26 echo "------------------------------------------------" 27 28 # Use $IFS (Internal Field Separator variable) to split a line of input to 29 # "read", if you do not want the default to be whitespace. 30 31 echo "List of all users:" 32 OIFS=$IFS; IFS=: # /etc/passwd uses ":" for field separator. 33 while read name passwd uid gid fullname ignore 34 do 35 echo "$name ($fullname)" 36 done </etc/passwd # I/O redirection. 37 IFS=$OIFS # Restore original $IFS. 38 # This code snippet also by Heiner Steven. 39 40 41 42 # Setting the $IFS variable within the loop itself 43 #+ eliminates the need for storing the original $IFS 44 #+ in a temporary variable. 45 # Thanks, Dim Segebart, for pointing this out. 46 echo "------------------------------------------------" 47 echo "List of all users:" 48 49 while IFS=: read name passwd uid gid fullname ignore 50 do 51 echo "$name ($fullname)" 52 done </etc/passwd # I/O redirection. 53 54 echo 55 echo "\$IFS still $IFS" 56 57 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="PIPEREADREF0" ></A ></P ><P ><A HREF="special-chars.html#PIPEREF" >Piping</A > output to a <I CLASS="FIRSTTERM" >read</I >, using <A HREF="internal.html#ECHOREF" >echo</A > to set variables <A HREF="gotchas.html#BADREAD0" >will fail</A >.</P ><P ><A NAME="READPIPEREF" ></A >Yet, piping the output of <A HREF="external.html#CATREF" >cat</A > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >seems</I ></SPAN > to work.</P ><P ><A NAME="WHILEREADREF" ></A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat file1 file2 | 2 while read line 3 do 4 echo $line 5 done</PRE ></TD ></TR ></TABLE ></P ><P >However, as Bjön Eriksson shows:</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="READPIPE" ></A ><P ><B >Example 15-8. Problems reading from a pipe</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/sh 2 # readpipe.sh 3 # This example contributed by Bjon Eriksson. 4 5 ### shopt -s lastpipe 6 7 last="(null)" 8 cat $0 | 9 while read line 10 do 11 echo "{$line}" 12 last=$line 13 done 14 15 echo 16 echo "++++++++++++++++++++++" 17 printf "\nAll done, last: $last\n" # The output of this line 18 #+ changes if you uncomment line 5. 19 # (Bash, version -ge 4.2 required.) 20 21 exit 0 # End of code. 22 # (Partial) output of script follows. 23 # The 'echo' supplies extra brackets. 24 25 ############################################# 26 27 ./readpipe.sh 28 29 {#!/bin/sh} 30 {last="(null)"} 31 {cat $0 |} 32 {while read line} 33 {do} 34 {echo "{$line}"} 35 {last=$line} 36 {done} 37 {printf "nAll done, last: $lastn"} 38 39 40 All done, last: (null) 41 42 The variable (last) is set within the loop/subshell 43 but its value does not persist outside the loop.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The <I CLASS="FIRSTTERM" >gendiff</I > script, usually found in <TT CLASS="FILENAME" >/usr/bin</TT > on many Linux distros, pipes the output of <A HREF="moreadv.html#FINDREF" >find</A > to a <I CLASS="FIRSTTERM" >while read</I > construct. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 find $1 \( -name "*$2" -o -name ".*$2" \) -print | 2 while read f; do 3 . . .</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It is possible to <I CLASS="FIRSTTERM" >paste</I > text into the input field of a <I CLASS="FIRSTTERM" >read</I > (but <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > multiple lines!). See <A HREF="contributed-scripts.html#PADSW" >Example A-38</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="INTFILESYSTEM1" ></A >Filesystem</B ></P ><DL ><DT ><A NAME="CDREF" ></A ><B CLASS="COMMAND" >cd</B ></DT ><DD ><P >The familiar <B CLASS="COMMAND" >cd</B > change directory command finds use in scripts where execution of a command requires being in a specified directory.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 (cd /source/directory && tar cf - . ) | (cd /dest/directory && tar xpvf -)</PRE ></TD ></TR ></TABLE > [from the <A HREF="special-chars.html#COXEX" >previously cited</A > example by Alan Cox]</P ><P >The <TT CLASS="OPTION" >-P</TT > (physical) option to <B CLASS="COMMAND" >cd</B > causes it to ignore symbolic links.</P ><P ><B CLASS="COMMAND" >cd -</B > changes to <A HREF="variables2.html#OLDPWD" >$OLDPWD</A >, the previous working directory.</P ><P ><A NAME="DOUBLESLASHREF" ></A ></P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >cd</B > command does not function as expected when presented with two forward slashes. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cd //</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >pwd</B ></TT > <TT CLASS="COMPUTEROUTPUT" >//</TT > </PRE ></TD ></TR ></TABLE > The output should, of course, be <TT CLASS="COMPUTEROUTPUT" >/</TT >. This is a problem both from the command-line and in a script.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="PWD2REF" ></A ><B CLASS="COMMAND" >pwd</B ></DT ><DD ><P >Print Working Directory. This gives the user's (or script's) current directory (see <A HREF="internal.html#EX37" >Example 15-9</A >). The effect is identical to reading the value of the builtin variable <A HREF="variables2.html#PWDREF" >$PWD</A >.</P ></DD ><DT ><A NAME="DIRSD" ></A ><B CLASS="COMMAND" >pushd</B >, <B CLASS="COMMAND" >popd</B >, <B CLASS="COMMAND" >dirs</B ></DT ><DD ><P >This command set is a mechanism for bookmarking working directories, a means of moving back and forth through directories in an orderly manner. A pushdown <A HREF="variables2.html#STACKDEFREF" >stack</A > is used to keep track of directory names. Options allow various manipulations of the directory stack.</P ><P ><A NAME="PUSHDREF" ></A ><TT CLASS="USERINPUT" ><B >pushd dir-name</B ></TT > pushes the path <TT CLASS="REPLACEABLE" ><I >dir-name</I ></TT > onto the directory stack (to the <I CLASS="FIRSTTERM" >top</I > of the stack) and simultaneously changes the current working directory to <TT CLASS="REPLACEABLE" ><I >dir-name</I ></TT ></P ><P ><A NAME="POPDREF" ></A ><B CLASS="COMMAND" >popd</B > removes (pops) the top directory path name off the directory stack and simultaneously changes the current working directory to the directory now at the <I CLASS="FIRSTTERM" >top</I > of the stack.</P ><P ><A NAME="DIRSREF" ></A ><B CLASS="COMMAND" >dirs</B > lists the contents of the directory stack (compare this with the <A HREF="variables2.html#DIRSTACKREF" >$DIRSTACK</A > variable). A successful <B CLASS="COMMAND" >pushd</B > or <B CLASS="COMMAND" >popd</B > will automatically invoke <B CLASS="COMMAND" >dirs</B >.</P ><P >Scripts that require various changes to the current working directory without hard-coding the directory name changes can make good use of these commands. Note that the implicit <TT CLASS="VARNAME" >$DIRSTACK</TT > array variable, accessible from within a script, holds the contents of the directory stack. </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX37" ></A ><P ><B >Example 15-9. Changing the current working directory</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 dir1=/usr/local 4 dir2=/var/spool 5 6 pushd $dir1 7 # Will do an automatic 'dirs' (list directory stack to stdout). 8 echo "Now in directory `pwd`." # Uses back-quoted 'pwd'. 9 10 # Now, do some stuff in directory 'dir1'. 11 pushd $dir2 12 echo "Now in directory `pwd`." 13 14 # Now, do some stuff in directory 'dir2'. 15 echo "The top entry in the DIRSTACK array is $DIRSTACK." 16 popd 17 echo "Now back in directory `pwd`." 18 19 # Now, do some more stuff in directory 'dir1'. 20 popd 21 echo "Now back in original working directory `pwd`." 22 23 exit 0 24 25 # What happens if you don't 'popd' -- then exit the script? 26 # Which directory do you end up in? Why?</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="INTVAR1" ></A >Variables</B ></P ><DL ><DT ><A NAME="LETREF" ></A ><B CLASS="COMMAND" >let</B ></DT ><DD ><P >The <B CLASS="COMMAND" >let</B > command carries out <I CLASS="FIRSTTERM" >arithmetic</I > operations on variables. <A NAME="AEN9009" HREF="#FTN.AEN9009" >[3]</A > In many cases, it functions as a less complex version of <A HREF="moreadv.html#EXPRREF" >expr</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX46" ></A ><P ><B >Example 15-10. Letting <I CLASS="FIRSTTERM" >let</I > do arithmetic.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo 4 5 let a=11 # Same as 'a=11' 6 let a=a+5 # Equivalent to let "a = a + 5" 7 # (Double quotes and spaces make it more readable.) 8 echo "11 + 5 = $a" # 16 9 10 let "a <<= 3" # Equivalent to let "a = a << 3" 11 echo "\"\$a\" (=16) left-shifted 3 places = $a" 12 # 128 13 14 let "a /= 4" # Equivalent to let "a = a / 4" 15 echo "128 / 4 = $a" # 32 16 17 let "a -= 5" # Equivalent to let "a = a - 5" 18 echo "32 - 5 = $a" # 27 19 20 let "a *= 10" # Equivalent to let "a = a * 10" 21 echo "27 * 10 = $a" # 270 22 23 let "a %= 8" # Equivalent to let "a = a % 8" 24 echo "270 modulo 8 = $a (270 / 8 = 33, remainder $a)" 25 # 6 26 27 28 # Does "let" permit C-style operators? 29 # Yes, just as the (( ... )) double-parentheses construct does. 30 31 let a++ # C-style (post) increment. 32 echo "6++ = $a" # 6++ = 7 33 let a-- # C-style decrement. 34 echo "7-- = $a" # 7-- = 6 35 # Of course, ++a, etc., also allowed . . . 36 echo 37 38 39 # Trinary operator. 40 41 # Note that $a is 6, see above. 42 let "t = a<7?7:11" # True 43 echo $t # 7 44 45 let a++ 46 let "t = a<7?7:11" # False 47 echo $t # 11 48 49 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="EXITVALANOMALY02" ></A ></P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <I CLASS="FIRSTTERM" >let</I > command can, in certain contexts, return a surprising <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Evgeniy Ivanov points out: 2 3 var=0 4 echo $? # 0 5 # As expected. 6 7 let var++ 8 echo $? # 1 9 # The command was successful, so why isn't $?=0 ??? 10 # Anomaly! 11 12 let var++ 13 echo $? # 0 14 # As expected. 15 16 17 # Likewise . . . 18 19 let var=0 20 echo $? # 1 21 # The command was successful, so why isn't $?=0 ??? 22 23 # However, as Jeff Gorak points out, 24 #+ this is part of the design spec for 'let' . . . 25 # "If the last ARG evaluates to 0, let returns 1; 26 # let returns 0 otherwise." ['help let']</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="EVALREF" ></A ><B CLASS="COMMAND" >eval</B ></DT ><DD ><P ><TT CLASS="USERINPUT" ><B >eval arg1 [arg2] ... [argN]</B ></TT ></P ><P >Combines the arguments in an expression or list of expressions and <TT CLASS="REPLACEABLE" ><I >evaluates</I ></TT > them. Any variables within the expression are expanded. The net result is to <B CLASS="COMMAND" >convert a string into a command</B >.</P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >eval</B > command can be used for code generation from the command-line or within a script. </P ></TD ></TR ></TABLE ></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >command_string="ps ax"</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >process="ps ax"</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >eval "$command_string" | grep "$process"</B ></TT > <TT CLASS="COMPUTEROUTPUT" >26973 pts/3 R+ 0:00 grep --color ps ax 26974 pts/3 R+ 0:00 ps ax</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="EVALFORCED" ></A ></P ><P >Each invocation of <I CLASS="FIRSTTERM" >eval</I > forces a re-<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >evaluation</I ></SPAN > of its arguments. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 a='$b' 2 b='$c' 3 c=d 4 5 echo $a # $b 6 # First level. 7 eval echo $a # $c 8 # Second level. 9 eval eval echo $a # d 10 # Third level. 11 12 # Thank you, E. Choroba.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="EVALEFF" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX43" ></A ><P ><B >Example 15-11. Showing the effect of <I CLASS="FIRSTTERM" >eval</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Exercising "eval" ... 3 4 y=`eval ls -l` # Similar to y=`ls -l` 5 echo $y #+ but linefeeds removed because "echoed" variable is unquoted. 6 echo 7 echo "$y" # Linefeeds preserved when variable is quoted. 8 9 echo; echo 10 11 y=`eval df` # Similar to y=`df` 12 echo $y #+ but linefeeds removed. 13 14 # When LF's not preserved, it may make it easier to parse output, 15 #+ using utilities such as "awk". 16 17 echo 18 echo "===========================================================" 19 echo 20 21 eval "`seq 3 | sed -e 's/.*/echo var&=ABCDEFGHIJ/'`" 22 # var1=ABCDEFGHIJ 23 # var2=ABCDEFGHIJ 24 # var3=ABCDEFGHIJ 25 26 echo 27 echo "===========================================================" 28 echo 29 30 31 # Now, showing how to do something useful with "eval" . . . 32 # (Thank you, E. Choroba!) 33 34 version=3.4 # Can we split the version into major and minor 35 #+ part in one command? 36 echo "version = $version" 37 eval major=${version/./;minor=} # Replaces '.' in version by ';minor=' 38 # The substitution yields '3; minor=4' 39 #+ so eval does minor=4, major=3 40 echo Major: $major, minor: $minor # Major: 3, minor: 4</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="ARRCHOICE0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ARRCHOICE" ></A ><P ><B >Example 15-12. Using <I CLASS="FIRSTTERM" >eval</I > to select among variables</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # arr-choice.sh 3 4 # Passing arguments to a function to select 5 #+ one particular variable out of a group. 6 7 arr0=( 10 11 12 13 14 15 ) 8 arr1=( 20 21 22 23 24 25 ) 9 arr2=( 30 31 32 33 34 35 ) 10 # 0 1 2 3 4 5 Element number (zero-indexed) 11 12 13 choose_array () 14 { 15 eval array_member=\${arr${array_number}[element_number]} 16 # ^ ^^^^^^^^^^^^ 17 # Using eval to construct the name of a variable, 18 #+ in this particular case, an array name. 19 20 echo "Element $element_number of array $array_number is $array_member" 21 } # Function can be rewritten to take parameters. 22 23 array_number=0 # First array. 24 element_number=3 25 choose_array # 13 26 27 array_number=2 # Third array. 28 element_number=4 29 choose_array # 34 30 31 array_number=3 # Null array (arr3 not allocated). 32 element_number=4 33 choose_array # (null) 34 35 # Thank you, Antonio Macchi, for pointing this out.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ECHOPARAMS" ></A ><P ><B >Example 15-13. <I CLASS="FIRSTTERM" >Echoing</I > the <I CLASS="FIRSTTERM" >command-line parameters</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # echo-params.sh 3 4 # Call this script with a few command-line parameters. 5 # For example: 6 # sh echo-params.sh first second third fourth fifth 7 8 params=$# # Number of command-line parameters. 9 param=1 # Start at first command-line param. 10 11 while [ "$param" -le "$params" ] 12 do 13 echo -n "Command-line parameter " 14 echo -n \$$param # Gives only the *name* of variable. 15 # ^^^ # $1, $2, $3, etc. 16 # Why? 17 # \$ escapes the first "$" 18 #+ so it echoes literally, 19 #+ and $param dereferences "$param" . . . 20 #+ . . . as expected. 21 echo -n " = " 22 eval echo \$$param # Gives the *value* of variable. 23 # ^^^^ ^^^ # The "eval" forces the *evaluation* 24 #+ of \$$ 25 #+ as an indirect variable reference. 26 27 (( param ++ )) # On to the next. 28 done 29 30 exit $? 31 32 # ================================================= 33 34 $ sh echo-params.sh first second third fourth fifth 35 Command-line parameter $1 = first 36 Command-line parameter $2 = second 37 Command-line parameter $3 = third 38 Command-line parameter $4 = fourth 39 Command-line parameter $5 = fifth</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX44" ></A ><P ><B >Example 15-14. Forcing a log-off</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Killing ppp to force a log-off. 3 # For dialup connection, of course. 4 5 # Script should be run as root user. 6 7 SERPORT=ttyS3 8 # Depending on the hardware and even the kernel version, 9 #+ the modem port on your machine may be different -- 10 #+ /dev/ttyS1 or /dev/ttyS2. 11 12 13 killppp="eval kill -9 `ps ax | awk '/ppp/ { print $1 }'`" 14 # -------- process ID of ppp ------- 15 16 $killppp # This variable is now a command. 17 18 19 # The following operations must be done as root user. 20 21 chmod 666 /dev/$SERPORT # Restore r+w permissions, or else what? 22 # Since doing a SIGKILL on ppp changed the permissions on the serial port, 23 #+ we restore permissions to previous state. 24 25 rm /var/lock/LCK..$SERPORT # Remove the serial port lock file. Why? 26 27 exit $? 28 29 # Exercises: 30 # --------- 31 # 1) Have script check whether root user is invoking it. 32 # 2) Do a check on whether the process to be killed 33 #+ is actually running before attempting to kill it. 34 # 3) Write an alternate version of this script based on 'fuser': 35 #+ if [ fuser -s /dev/modem ]; then . . .</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ROT14" ></A ><P ><B >Example 15-15. A version of <I CLASS="FIRSTTERM" >rot13</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # A version of "rot13" using 'eval'. 3 # Compare to "rot13.sh" example. 4 5 setvar_rot_13() # "rot13" scrambling 6 { 7 local varname=$1 varvalue=$2 8 eval $varname='$(echo "$varvalue" | tr a-z n-za-m)' 9 } 10 11 12 setvar_rot_13 var "foobar" # Run "foobar" through rot13. 13 echo $var # sbbone 14 15 setvar_rot_13 var "$var" # Run "sbbone" through rot13. 16 # Back to original variable. 17 echo $var # foobar 18 19 # This example by Stephane Chazelas. 20 # Modified by document author. 21 22 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Here is another example of using <I CLASS="FIRSTTERM" >eval</I > to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >evaluate</I ></SPAN > a complex expression, this one from an earlier version of YongYe's <A HREF="https://github.com/yongye/shell/blob/master/Tetris_Game.sh" TARGET="_top" >Tetris game script</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 eval ${1}+=\"${x} ${y} \"</PRE ></TD ></TR ></TABLE > </P ><P ><A HREF="contributed-scripts.html#SAMORSE" >Example A-53</A > uses <I CLASS="FIRSTTERM" >eval</I > to convert <A HREF="arrays.html#ARRAYREF" >array</A > elements into a command list.</P ><P >The <I CLASS="FIRSTTERM" >eval</I > command occurs in the older version of <A HREF="ivr.html#IVRREF" >indirect referencing</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 eval var=\$$var</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <I CLASS="FIRSTTERM" >eval</I > command can be used to <A HREF="bashver3.html#BRACEEXPREF3" >parameterize <I CLASS="FIRSTTERM" >brace expansion</I ></A >.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="EVALRISK" ></A ></P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >eval</B > command can be risky, and normally should be avoided when there exists a reasonable alternative. An <TT CLASS="USERINPUT" ><B >eval $COMMANDS</B ></TT > executes the contents of <TT CLASS="REPLACEABLE" ><I >COMMANDS</I ></TT >, which may contain such unpleasant surprises as <B CLASS="COMMAND" >rm -rf *</B >. Running an <B CLASS="COMMAND" >eval</B > on unfamiliar code written by persons unknown is living dangerously.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SETREF" ></A ><B CLASS="COMMAND" >set</B ></DT ><DD ><P >The <B CLASS="COMMAND" >set</B > command changes the value of internal script variables/options. One use for this is to toggle <A HREF="options.html#OPTIONSREF" >option flags</A > which help determine the behavior of the script. Another application for it is to reset the <A HREF="variables2.html#POSPARAMREF" >positional parameters</A > that a script sees as the result of a command (<TT CLASS="USERINPUT" ><B >set `command`</B ></TT >). The script can then parse the <A HREF="special-chars.html#FIELDREF" >fields</A > of the command output.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX34" ></A ><P ><B >Example 15-16. Using <I CLASS="FIRSTTERM" >set</I > with positional parameters</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ex34.sh 3 # Script "set-test" 4 5 # Invoke this script with three command-line parameters, 6 # for example, "sh ex34.sh one two three". 7 8 echo 9 echo "Positional parameters before set \`uname -a\` :" 10 echo "Command-line argument #1 = $1" 11 echo "Command-line argument #2 = $2" 12 echo "Command-line argument #3 = $3" 13 14 15 set `uname -a` # Sets the positional parameters to the output 16 # of the command `uname -a` 17 18 echo 19 echo +++++ 20 echo $_ # +++++ 21 # Flags set in script. 22 echo $- # hB 23 # Anomalous behavior? 24 echo 25 26 echo "Positional parameters after set \`uname -a\` :" 27 # $1, $2, $3, etc. reinitialized to result of `uname -a` 28 echo "Field #1 of 'uname -a' = $1" 29 echo "Field #2 of 'uname -a' = $2" 30 echo "Field #3 of 'uname -a' = $3" 31 echo \#\#\# 32 echo $_ # ### 33 echo 34 35 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >More fun with positional parameters.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="REVPOSPARAMS" ></A ><P ><B >Example 15-17. Reversing the positional parameters</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # revposparams.sh: Reverse positional parameters. 3 # Script by Dan Jacobson, with stylistic revisions by document author. 4 5 6 set a\ b c d\ e; 7 # ^ ^ Spaces escaped 8 # ^ ^ Spaces not escaped 9 OIFS=$IFS; IFS=:; 10 # ^ Saving old IFS and setting new one. 11 12 echo 13 14 until [ $# -eq 0 ] 15 do # Step through positional parameters. 16 echo "### k0 = "$k"" # Before 17 k=$1:$k; # Append each pos param to loop variable. 18 # ^ 19 echo "### k = "$k"" # After 20 echo 21 shift; 22 done 23 24 set $k # Set new positional parameters. 25 echo - 26 echo $# # Count of positional parameters. 27 echo - 28 echo 29 30 for i # Omitting the "in list" sets the variable -- i -- 31 #+ to the positional parameters. 32 do 33 echo $i # Display new positional parameters. 34 done 35 36 IFS=$OIFS # Restore IFS. 37 38 # Question: 39 # Is it necessary to set an new IFS, internal field separator, 40 #+ in order for this script to work properly? 41 # What happens if you don't? Try it. 42 # And, why use the new IFS -- a colon -- in line 17, 43 #+ to append to the loop variable? 44 # What is the purpose of this? 45 46 exit 0 47 48 $ ./revposparams.sh 49 50 ### k0 = 51 ### k = a b 52 53 ### k0 = a b 54 ### k = c a b 55 56 ### k0 = c a b 57 ### k = d e c a b 58 59 - 60 3 61 - 62 63 d e 64 c 65 a b</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Invoking <B CLASS="COMMAND" >set</B > without any options or arguments simply lists all the <A HREF="othertypesv.html#ENVREF" >environmental</A > and other variables that have been initialized.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >set</B ></TT > <TT CLASS="COMPUTEROUTPUT" >AUTHORCOPY=/home/bozo/posts BASH=/bin/bash BASH_VERSION=$'2.05.8(1)-release' ... XAUTHORITY=/home/bozo/.Xauthority _=/etc/bashrc variable22=abc variable23=xzy</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Using <B CLASS="COMMAND" >set</B > with the <TT CLASS="OPTION" >--</TT > option explicitly assigns the contents of a variable to the positional parameters. If no variable follows the <TT CLASS="OPTION" >--</TT > it <I CLASS="FIRSTTERM" >unsets</I > the positional parameters.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SETPOS" ></A ><P ><B >Example 15-18. Reassigning the positional parameters</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 variable="one two three four five" 4 5 set -- $variable 6 # Sets positional parameters to the contents of "$variable". 7 8 first_param=$1 9 second_param=$2 10 shift; shift # Shift past first two positional params. 11 # shift 2 also works. 12 remaining_params="$*" 13 14 echo 15 echo "first parameter = $first_param" # one 16 echo "second parameter = $second_param" # two 17 echo "remaining parameters = $remaining_params" # three four five 18 19 echo; echo 20 21 # Again. 22 set -- $variable 23 first_param=$1 24 second_param=$2 25 echo "first parameter = $first_param" # one 26 echo "second parameter = $second_param" # two 27 28 # ====================================================== 29 30 set -- 31 # Unsets positional parameters if no variable specified. 32 33 first_param=$1 34 second_param=$2 35 echo "first parameter = $first_param" # (null value) 36 echo "second parameter = $second_param" # (null value) 37 38 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="loops.html#EX22A" >Example 11-2</A > and <A HREF="extmisc.html#EX33A" >Example 16-56</A >.</P ></DD ><DT ><A NAME="UNSETREF" ></A ><B CLASS="COMMAND" >unset</B ></DT ><DD ><P >The <B CLASS="COMMAND" >unset</B > command deletes a shell variable, effectively setting it to <I CLASS="FIRSTTERM" >null</I >. Note that this command does not affect positional parameters.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >unset PATH</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $PATH</B ></TT > <TT CLASS="COMPUTEROUTPUT" > </TT > <TT CLASS="PROMPT" >bash$ </TT ></PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="UNS" ></A ><P ><B >Example 15-19. <SPAN CLASS="QUOTE" >"Unsetting"</SPAN > a variable</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # unset.sh: Unsetting a variable. 3 4 variable=hello # Initialized. 5 echo "variable = $variable" 6 7 unset variable # Unset. 8 # In this particular context, 9 #+ same effect as: variable= 10 echo "(unset) variable = $variable" # $variable is null. 11 12 if [ -z "$variable" ] # Try a string-length test. 13 then 14 echo "\$variable has zero length." 15 fi 16 17 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >In most contexts, an <I CLASS="FIRSTTERM" >undeclared</I > variable and one that has been <I CLASS="FIRSTTERM" >unset</I > are equivalent. However, the <A HREF="parameter-substitution.html#UNDDR" > ${parameter:-default}</A > parameter substitution construct can distinguish between the two.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="EXPORTREF" ></A ><B CLASS="COMMAND" >export</B ></DT ><DD ><P ><A NAME="EXPORTREF2" ></A ></P ><P >The <B CLASS="COMMAND" >export</B > <A NAME="AEN9199" HREF="#FTN.AEN9199" >[4]</A > command makes available variables to all child processes of the running script or shell. One important use of the <B CLASS="COMMAND" >export</B > command is in <A HREF="files.html#FILESREF1" >startup files</A >, to initialize and make accessible <A HREF="othertypesv.html#ENVREF" >environmental variables</A > to subsequent user processes.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Unfortunately, <A HREF="gotchas.html#PARCHILDPROBREF" > there is no way to export variables back to the parent process</A >, to the process that called or invoked the script or shell.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="EXPORTAWK" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="COLTOTALER3" ></A ><P ><B >Example 15-20. Using <I CLASS="FIRSTTERM" >export</I > to pass a variable to an embedded <I CLASS="FIRSTTERM" >awk</I > script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Yet another version of the "column totaler" script (col-totaler.sh) 4 #+ that adds up a specified column (of numbers) in the target file. 5 # This uses the environment to pass a script variable to 'awk' . . . 6 #+ and places the awk script in a variable. 7 8 9 ARGS=2 10 E_WRONGARGS=85 11 12 if [ $# -ne "$ARGS" ] # Check for proper number of command-line args. 13 then 14 echo "Usage: `basename $0` filename column-number" 15 exit $E_WRONGARGS 16 fi 17 18 filename=$1 19 column_number=$2 20 21 #===== Same as original script, up to this point =====# 22 23 export column_number 24 # Export column number to environment, so it's available for retrieval. 25 26 27 # ----------------------------------------------- 28 awkscript='{ total += $ENVIRON["column_number"] } 29 END { print total }' 30 # Yes, a variable can hold an awk script. 31 # ----------------------------------------------- 32 33 # Now, run the awk script. 34 awk "$awkscript" "$filename" 35 36 # Thanks, Stephane Chazelas. 37 38 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It is possible to initialize and export variables in the same operation, as in <B CLASS="COMMAND" >export var1=xxx</B >.</P ><P >However, as Greg Keraunen points out, in certain situations this may have a different effect than setting a variable, then exporting it.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >export var=(a b); echo ${var[0]}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >(a b)</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >var=(a b); export var; echo ${var[0]}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >a</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A variable to be exported may require special treatment. See <A HREF="sample-bashrc.html#BASHPROF" >Example M-2</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="DECLARE2REF" ></A ><B CLASS="COMMAND" >declare</B >, <B CLASS="COMMAND" >typeset</B ></DT ><DD ><P >The <A HREF="declareref.html" >declare</A > and <A HREF="declareref.html" >typeset</A > commands specify and/or restrict properties of variables.</P ></DD ><DT ><A NAME="READONLYREF" ></A ><B CLASS="COMMAND" >readonly</B ></DT ><DD ><P >Same as <A HREF="declareref.html" >declare -r</A >, sets a variable as read-only, or, in effect, as a constant. Attempts to change the variable fail with an error message. This is the shell analog of the <I CLASS="FIRSTTERM" >C</I > language <B CLASS="COMMAND" >const</B > type qualifier.</P ></DD ><DT ><A NAME="GETOPTSX" ></A ><B CLASS="COMMAND" >getopts</B ></DT ><DD ><P >This powerful tool parses command-line arguments passed to the script. This is the Bash analog of the <A HREF="extmisc.html#GETOPTY" >getopt</A > external command and the <I CLASS="FIRSTTERM" >getopt</I > library function familiar to <I CLASS="FIRSTTERM" >C</I > programmers. It permits passing and concatenating multiple options <A NAME="AEN9289" HREF="#FTN.AEN9289" >[5]</A > and associated arguments to a script (for example <TT CLASS="USERINPUT" ><B >scriptname -abc -e /usr/local</B ></TT >).</P ><P ><A NAME="GETOPTSOPT" ></A ></P ><P >The <B CLASS="COMMAND" >getopts</B > construct uses two implicit variables. <TT CLASS="VARNAME" >$OPTIND</TT > is the argument pointer (<I CLASS="WORDASWORD" >OPTion INDex</I >) and <TT CLASS="VARNAME" >$OPTARG</TT > (<I CLASS="WORDASWORD" >OPTion ARGument</I >) the (optional) argument attached to an option. A colon following the option name in the declaration tags that option as having an associated argument.</P ><P >A <B CLASS="COMMAND" >getopts</B > construct usually comes packaged in a <A HREF="loops.html#WHILELOOPREF" >while loop</A >, which processes the options and arguments one at a time, then increments the implicit <TT CLASS="VARNAME" >$OPTIND</TT > variable to point to the next.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P > <OL TYPE="1" ><LI ><P >The arguments passed from the command-line to the script must be preceded by a dash (<TT CLASS="OPTION" >-</TT >). It is the prefixed <TT CLASS="OPTION" >-</TT > that lets <B CLASS="COMMAND" >getopts</B > recognize command-line arguments as <I CLASS="FIRSTTERM" >options</I >. In fact, <B CLASS="COMMAND" >getopts</B > will not process arguments without the prefixed <TT CLASS="OPTION" >-</TT >, and will terminate option processing at the first argument encountered lacking them.</P ></LI ><LI ><P >The <B CLASS="COMMAND" >getopts</B > template differs slightly from the standard <A HREF="loops.html#WHILELOOPREF" >while loop</A >, in that it lacks condition brackets.</P ></LI ><LI ><P >The <B CLASS="COMMAND" >getopts</B > construct is a highly functional replacement for the traditional <A HREF="extmisc.html#GETOPTY" >getopt</A > external command.</P ></LI ></OL > </P ></TD ></TR ></TABLE ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 while getopts ":abcde:fg" Option 2 # Initial declaration. 3 # a, b, c, d, e, f, and g are the options (flags) expected. 4 # The : after option 'e' shows it will have an argument passed with it. 5 do 6 case $Option in 7 a ) # Do something with variable 'a'. 8 b ) # Do something with variable 'b'. 9 ... 10 e) # Do something with 'e', and also with $OPTARG, 11 # which is the associated argument passed with option 'e'. 12 ... 13 g ) # Do something with variable 'g'. 14 esac 15 done 16 shift $(($OPTIND - 1)) 17 # Move argument pointer to next. 18 19 # All this is not nearly as complicated as it looks <grin>.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX33" ></A ><P ><B >Example 15-21. Using <I CLASS="FIRSTTERM" >getopts</I > to read the options/arguments passed to a script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ex33.sh: Exercising getopts and OPTIND 3 # Script modified 10/09/03 at the suggestion of Bill Gradwohl. 4 5 6 # Here we observe how 'getopts' processes command-line arguments to script. 7 # The arguments are parsed as "options" (flags) and associated arguments. 8 9 # Try invoking this script with: 10 # 'scriptname -mn' 11 # 'scriptname -oq qOption' (qOption can be some arbitrary string.) 12 # 'scriptname -qXXX -r' 13 # 14 # 'scriptname -qr' 15 #+ - Unexpected result, takes "r" as the argument to option "q" 16 # 'scriptname -q -r' 17 #+ - Unexpected result, same as above 18 # 'scriptname -mnop -mnop' - Unexpected result 19 # (OPTIND is unreliable at stating where an option came from.) 20 # 21 # If an option expects an argument ("flag:"), then it will grab 22 #+ whatever is next on the command-line. 23 24 NO_ARGS=0 25 E_OPTERROR=85 26 27 if [ $# -eq "$NO_ARGS" ] # Script invoked with no command-line args? 28 then 29 echo "Usage: `basename $0` options (-mnopqrs)" 30 exit $E_OPTERROR # Exit and explain usage. 31 # Usage: scriptname -options 32 # Note: dash (-) necessary 33 fi 34 35 36 while getopts ":mnopq:rs" Option 37 do 38 case $Option in 39 m ) echo "Scenario #1: option -m- [OPTIND=${OPTIND}]";; 40 n | o ) echo "Scenario #2: option -$Option- [OPTIND=${OPTIND}]";; 41 p ) echo "Scenario #3: option -p- [OPTIND=${OPTIND}]";; 42 q ) echo "Scenario #4: option -q-\ 43 with argument \"$OPTARG\" [OPTIND=${OPTIND}]";; 44 # Note that option 'q' must have an associated argument, 45 #+ otherwise it falls through to the default. 46 r | s ) echo "Scenario #5: option -$Option-";; 47 * ) echo "Unimplemented option chosen.";; # Default. 48 esac 49 done 50 51 shift $(($OPTIND - 1)) 52 # Decrements the argument pointer so it points to next argument. 53 # $1 now references the first non-option item supplied on the command-line 54 #+ if one exists. 55 56 exit $? 57 58 # As Bill Gradwohl states, 59 # "The getopts mechanism allows one to specify: scriptname -mnop -mnop 60 #+ but there is no reliable way to differentiate what came 61 #+ from where by using OPTIND." 62 # There are, however, workarounds.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="INTSCRBEH1" ></A >Script Behavior</B ></P ><DL ><DT ><A NAME="SOURCEREF" ></A ><B CLASS="COMMAND" >source</B >, <SPAN CLASS="TOKEN" >.</SPAN > (<A HREF="special-chars.html#DOTREF" >dot</A > command)</DT ><DD ><P >This command, when invoked from the command-line, executes a script. Within a script, a <TT CLASS="USERINPUT" ><B >source file-name</B ></TT > loads the file <TT CLASS="FILENAME" >file-name</TT >. <I CLASS="FIRSTTERM" >Sourcing</I > a file (dot-command) <I CLASS="FIRSTTERM" >imports</I > code into the script, appending to the script (same effect as the <TT CLASS="USERINPUT" ><B >#include</B ></TT > directive in a <I CLASS="FIRSTTERM" >C</I > program). The net result is the same as if the <SPAN CLASS="QUOTE" >"sourced"</SPAN > lines of code were physically present in the body of the script. This is useful in situations when multiple scripts use a common data file or function library.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX38" ></A ><P ><B >Example 15-22. <SPAN CLASS="QUOTE" >"Including"</SPAN > a data file</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Note that this example must be invoked with bash, i.e., bash ex38.sh 3 #+ not sh ex38.sh ! 4 5 . data-file # Load a data file. 6 # Same effect as "source data-file", but more portable. 7 8 # The file "data-file" must be present in current working directory, 9 #+ since it is referred to by its basename. 10 11 # Now, let's reference some data from that file. 12 13 echo "variable1 (from data-file) = $variable1" 14 echo "variable3 (from data-file) = $variable3" 15 16 let "sum = $variable2 + $variable4" 17 echo "Sum of variable2 + variable4 (from data-file) = $sum" 18 echo "message1 (from data-file) is \"$message1\"" 19 # Escaped quotes 20 echo "message2 (from data-file) is \"$message2\"" 21 22 print_message This is the message-print function in the data-file. 23 24 25 exit $?</PRE ></TD ></TR ></TABLE ><P >File <TT CLASS="FILENAME" >data-file</TT > for <A HREF="internal.html#EX38" >Example 15-22</A >, above. Must be present in same directory.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # This is a data file loaded by a script. 2 # Files of this type may contain variables, functions, etc. 3 # It loads with a 'source' or '.' command from a shell script. 4 5 # Let's initialize some variables. 6 7 variable1=23 8 variable2=474 9 variable3=5 10 variable4=97 11 12 message1="Greetings from *** line $LINENO *** of the data file!" 13 message2="Enough for now. Goodbye." 14 15 print_message () 16 { # Echoes any message passed to it. 17 18 if [ -z "$1" ] 19 then 20 return 1 # Error, if argument missing. 21 fi 22 23 echo 24 25 until [ -z "$1" ] 26 do # Step through arguments passed to function. 27 echo -n "$1" # Echo args one at a time, suppressing line feeds. 28 echo -n " " # Insert spaces between words. 29 shift # Next one. 30 done 31 32 echo 33 34 return 0 35 }</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >If the <I CLASS="FIRSTTERM" >sourced</I > file is itself an executable script, then it will run, then return control to the script that called it. A <I CLASS="FIRSTTERM" >sourced</I > executable script may use a <A HREF="functions.html#RETURNREF" >return</A > for this purpose.</P ><P ><A NAME="SOURCEPARAMS" ></A ></P ><P > Arguments may be (optionally) passed to the <I CLASS="FIRSTTERM" >sourced</I > file as <A HREF="othertypesv.html#POSPARAMREF1" >positional parameters</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 source $filename $arg1 arg2</PRE ></TD ></TR ></TABLE > </P ><P >It is even possible for a script to <I CLASS="FIRSTTERM" >source</I > itself, though this does not seem to have any practical applications.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SELFSOURCE" ></A ><P ><B >Example 15-23. A (useless) script that sources itself</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # self-source.sh: a script sourcing itself "recursively." 3 # From "Stupid Script Tricks," Volume II. 4 5 MAXPASSCNT=100 # Maximum number of execution passes. 6 7 echo -n "$pass_count " 8 # At first execution pass, this just echoes two blank spaces, 9 #+ since $pass_count still uninitialized. 10 11 let "pass_count += 1" 12 # Assumes the uninitialized variable $pass_count 13 #+ can be incremented the first time around. 14 # This works with Bash and pdksh, but 15 #+ it relies on non-portable (and possibly dangerous) behavior. 16 # Better would be to initialize $pass_count to 0 before incrementing. 17 18 while [ "$pass_count" -le $MAXPASSCNT ] 19 do 20 . $0 # Script "sources" itself, rather than calling itself. 21 # ./$0 (which would be true recursion) doesn't work here. Why? 22 done 23 24 # What occurs here is not actually recursion, 25 #+ since the script effectively "expands" itself, i.e., 26 #+ generates a new section of code 27 #+ with each pass through the 'while' loop', 28 # with each 'source' in line 20. 29 # 30 # Of course, the script interprets each newly 'sourced' "#!" line 31 #+ as a comment, and not as the start of a new script. 32 33 echo 34 35 exit 0 # The net effect is counting from 1 to 100. 36 # Very impressive. 37 38 # Exercise: 39 # -------- 40 # Write a script that uses this trick to actually do something useful.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="EXITREF" ></A ><B CLASS="COMMAND" >exit</B ></DT ><DD ><P >Unconditionally terminates a script. <A NAME="AEN9393" HREF="#FTN.AEN9393" >[6]</A > The <B CLASS="COMMAND" >exit</B > command may optionally take an integer argument, which is returned to the shell as the <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of the script. It is good practice to end all but the simplest scripts with an <TT CLASS="USERINPUT" ><B >exit 0</B ></TT >, indicating a successful run.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >If a script terminates with an <B CLASS="COMMAND" >exit</B > lacking an argument, the exit status of the script is the exit status of the last command executed in the script, not counting the <B CLASS="COMMAND" >exit</B >. This is equivalent to an <B CLASS="COMMAND" >exit $?</B >.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >An <B CLASS="COMMAND" >exit</B > command may also be used to terminate a <A HREF="subshells.html#SUBSHELLSREF" >subshell</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="EXECREF" ></A ><B CLASS="COMMAND" >exec</B ></DT ><DD ><P > This shell builtin replaces the current process with a specified command. Normally, when the shell encounters a command, it <A HREF="internal.html#FORKREF" >forks off</A > a child process to actually execute the command. Using the <B CLASS="COMMAND" >exec</B > builtin, the shell does not fork, and the command <I CLASS="FIRSTTERM" >exec</I >'ed replaces the shell. When used in a script, therefore, it forces an exit from the script when the <B CLASS="COMMAND" >exec</B >'ed command terminates. <A NAME="AEN9425" HREF="#FTN.AEN9425" >[7]</A > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX54" ></A ><P ><B >Example 15-24. Effects of <I CLASS="FIRSTTERM" >exec</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 exec echo "Exiting \"$0\" at line $LINENO." # Exit from script here. 4 # $LINENO is an internal Bash variable set to the line number it's on. 5 6 # ---------------------------------- 7 # The following lines never execute. 8 9 echo "This echo fails to echo." 10 11 exit 99 # This script will not exit here. 12 # Check exit value after script terminates 13 #+ with an 'echo $?'. 14 # It will *not* be 99.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="SELFEXEC" ></A ><P ><B >Example 15-25. A script that <I CLASS="FIRSTTERM" >exec's</I > itself</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # self-exec.sh 3 4 # Note: Set permissions on this script to 555 or 755, 5 # then call it with ./self-exec.sh or sh ./self-exec.sh. 6 7 echo 8 9 echo "This line appears ONCE in the script, yet it keeps echoing." 10 echo "The PID of this instance of the script is still $$." 11 # Demonstrates that a subshell is not forked off. 12 13 echo "==================== Hit Ctl-C to exit ====================" 14 15 sleep 1 16 17 exec $0 # Spawns another instance of this same script 18 #+ that replaces the previous one. 19 20 echo "This line will never echo!" # Why not? 21 22 exit 99 # Will not exit here! 23 # Exit code will not be 99!</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >An <B CLASS="COMMAND" >exec</B > also serves to <A HREF="io-redirection.html#USINGEXECREF" >reassign file descriptors</A >. For example, <TT CLASS="USERINPUT" ><B >exec <zzz-file</B ></TT > replaces <TT CLASS="FILENAME" >stdin</TT > with the file <TT CLASS="FILENAME" >zzz-file</TT >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="OPTION" >-exec</TT > option to <A HREF="moreadv.html#FINDREF" >find</A > is <TT CLASS="REPLACEABLE" ><I >not</I ></TT > the same as the <B CLASS="COMMAND" >exec</B > shell builtin.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SHOPTREF" ></A ><B CLASS="COMMAND" >shopt</B ></DT ><DD ><P >This command permits changing <I CLASS="FIRSTTERM" >shell options</I > on the fly (see <A HREF="aliases.html#AL" >Example 25-1</A > and <A HREF="aliases.html#UNAL" >Example 25-2</A >). It often appears in the Bash <A HREF="files.html#FILESREF1" >startup files</A >, but also has its uses in scripts. Needs <A HREF="bash2.html#BASH2REF" >version 2</A > or later of Bash.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 shopt -s cdspell 2 # Allows minor misspelling of directory names with 'cd' 3 # Option -s sets, -u unsets. 4 5 cd /hpme # Oops! Mistyped '/home'. 6 pwd # /home 7 # The shell corrected the misspelling.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><B CLASS="COMMAND" >caller</B ><A NAME="CALLERREF" ></A ></DT ><DD ><P >Putting a <B CLASS="COMMAND" >caller</B > command inside a <A HREF="functions.html#FUNCTIONREF" >function</A > echoes to <TT CLASS="FILENAME" >stdout</TT > information about the <I CLASS="FIRSTTERM" >caller</I > of that function.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 function1 () 4 { 5 # Inside function1 (). 6 caller 0 # Tell me about it. 7 } 8 9 function1 # Line 9 of script. 10 11 # 9 main test.sh 12 # ^ Line number that the function was called from. 13 # ^^^^ Invoked from "main" part of script. 14 # ^^^^^^^ Name of calling script. 15 16 caller 0 # Has no effect because it's not inside a function.</PRE ></TD ></TR ></TABLE ></P ><P >A <B CLASS="COMMAND" >caller</B > command can also return <I CLASS="FIRSTTERM" >caller</I > information from a script <A HREF="internal.html#SOURCEREF" >sourced</A > within another script. Analogous to a function, this is a <SPAN CLASS="QUOTE" >"subroutine call."</SPAN ></P ><P >You may find this command useful in debugging.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="INTCOMMAND1" ></A >Commands</B ></P ><DL ><DT ><A NAME="TRUEREF" ></A ><B CLASS="COMMAND" >true</B ></DT ><DD ><P >A command that returns a successful (<SPAN CLASS="RETURNVALUE" >zero</SPAN >) <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A >, but does nothing else. </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >true</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $?</B ></TT > <TT CLASS="COMPUTEROUTPUT" >0</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Endless loop 2 while true # alias for ":" 3 do 4 operation-1 5 operation-2 6 ... 7 operation-n 8 # Need a way to break out of loop or script will hang. 9 done</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="FALSEREF" ></A ><B CLASS="COMMAND" >false</B ></DT ><DD ><P >A command that returns an unsuccessful <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A >, but does nothing else.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >false</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $?</B ></TT > <TT CLASS="COMPUTEROUTPUT" >1</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Testing "false" 2 if false 3 then 4 echo "false evaluates \"true\"" 5 else 6 echo "false evaluates \"false\"" 7 fi 8 # false evaluates "false" 9 10 11 # Looping while "false" (null loop) 12 while false 13 do 14 # The following code will not execute. 15 operation-1 16 operation-2 17 ... 18 operation-n 19 # Nothing happens! 20 done </PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="TYPEREF" ></A ><B CLASS="COMMAND" >type [cmd]</B ></DT ><DD ><P >Similar to the <A HREF="filearchiv.html#WHICHREF" >which</A > external command, <B CLASS="COMMAND" >type cmd</B > identifies <SPAN CLASS="QUOTE" >"cmd."</SPAN > Unlike <B CLASS="COMMAND" >which</B >, <B CLASS="COMMAND" >type</B > is a Bash builtin. The useful <TT CLASS="OPTION" >-a</TT > option to <B CLASS="COMMAND" >type</B > identifies <TT CLASS="REPLACEABLE" ><I >keywords</I ></TT > and <TT CLASS="REPLACEABLE" ><I >builtins</I ></TT >, and also locates system commands with identical names.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >type '['</B ></TT > <TT CLASS="COMPUTEROUTPUT" >[ is a shell builtin</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >type -a '['</B ></TT > <TT CLASS="COMPUTEROUTPUT" >[ is a shell builtin [ is /usr/bin/[</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >type type</B ></TT > <TT CLASS="COMPUTEROUTPUT" >type is a shell builtin</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The <B CLASS="COMMAND" >type</B > command can be useful for <A HREF="special-chars.html#DEVNULLREDIRECT" >testing whether a certain command exists</A >.</P ></DD ><DT ><A NAME="HASHCMDREF" ></A ><B CLASS="COMMAND" >hash [cmds]</B ></DT ><DD ><P >Records the <I CLASS="FIRSTTERM" >path</I > name of specified commands -- in the shell <I CLASS="FIRSTTERM" >hash table</I > <A NAME="AEN9591" HREF="#FTN.AEN9591" >[8]</A > -- so the shell or script will not need to search the <A HREF="variables2.html#PATHREF" >$PATH</A > on subsequent calls to those commands. When <B CLASS="COMMAND" >hash</B > is called with no arguments, it simply lists the commands that have been hashed. The <TT CLASS="OPTION" >-r</TT > option resets the hash table.</P ></DD ><DT ><A NAME="BINDREF" ></A ><B CLASS="COMMAND" >bind</B ></DT ><DD ><P >The <B CLASS="COMMAND" >bind</B > builtin displays or modifies <I CLASS="FIRSTTERM" >readline</I > <A NAME="AEN9621" HREF="#FTN.AEN9621" >[9]</A > key bindings.</P ></DD ><DT ><A NAME="HELPREF" ></A ><B CLASS="COMMAND" >help</B ></DT ><DD ><P >Gets a short usage summary of a shell builtin. This is the counterpart to <A HREF="filearchiv.html#WHATISREF" >whatis</A >, but for builtins. The display of <I CLASS="FIRSTTERM" >help</I > information got a much-needed update in the <A HREF="bashver4.html#BASH4REF" >version 4 release</A > of Bash.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >help exit</B ></TT > <TT CLASS="COMPUTEROUTPUT" >exit: exit [n] Exit the shell with a status of N. If N is omitted, the exit status is that of the last command executed.</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="AEN9644" ></A >15.1. Job Control Commands</H1 ><P >Certain of the following job control commands take a <I CLASS="FIRSTTERM" >job identifier</I > as an argument. See the <A HREF="internal.html#JOBIDTABLE" >table</A > at end of the chapter.</P ><DIV CLASS="VARIABLELIST" ><DL ><DT ><A NAME="JOBSREF" ></A ><B CLASS="COMMAND" >jobs</B ></DT ><DD ><P >Lists the jobs running in the background, giving the <I CLASS="FIRSTTERM" >job number</I >. Not as useful as <A HREF="system.html#PPSSREF" >ps</A >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It is all too easy to confuse <I CLASS="FIRSTTERM" >jobs</I > and <I CLASS="FIRSTTERM" >processes</I >. Certain <A HREF="internal.html#BUILTINREF" >builtins</A >, such as <B CLASS="COMMAND" >kill</B >, <B CLASS="COMMAND" >disown</B >, and <B CLASS="COMMAND" >wait</B > accept either a job number or a process number as an argument. The <A HREF="internal.html#FGREF" >fg</A >, <A HREF="internal.html#BGREF" >bg</A > and <B CLASS="COMMAND" >jobs</B > commands accept only a job number.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >sleep 100 &</B ></TT > <TT CLASS="COMPUTEROUTPUT" >[1] 1384</TT > <TT CLASS="PROMPT" >bash $ </TT ><TT CLASS="USERINPUT" ><B >jobs</B ></TT > <TT CLASS="COMPUTEROUTPUT" >[1]+ Running sleep 100 &</TT ></PRE ></TD ></TR ></TABLE > </P ><P ><SPAN CLASS="QUOTE" >"1"</SPAN > is the job number (jobs are maintained by the current shell). <SPAN CLASS="QUOTE" >"1384"</SPAN > is the <A HREF="variables2.html#PPIDREF" >PID</A > or <I CLASS="FIRSTTERM" >process ID number</I > (processes are maintained by the system). To kill this job/process, either a <B CLASS="COMMAND" >kill %1</B > or a <B CLASS="COMMAND" >kill 1384</B > works.</P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Thanks, S.C.</I ></SPAN ></P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="DISOWNREF" ></A ><B CLASS="COMMAND" >disown</B ></DT ><DD ><P >Remove job(s) from the shell's table of active jobs.</P ></DD ><DT ><A NAME="FGREF" ></A ><B CLASS="COMMAND" >fg</B >, <A NAME="BGREF" ></A ><B CLASS="COMMAND" >bg</B ></DT ><DD ><P >The <B CLASS="COMMAND" >fg</B > command switches a job running in the background into the foreground. The <B CLASS="COMMAND" >bg</B > command restarts a suspended job, and runs it in the background. If no job number is specified, then the <B CLASS="COMMAND" >fg</B > or <B CLASS="COMMAND" >bg</B > command acts upon the currently running job.</P ></DD ><DT ><A NAME="WAITREF" ></A ><B CLASS="COMMAND" >wait</B ></DT ><DD ><P >Suspend script execution until all jobs running in background have terminated, or until the job number or process ID specified as an option terminates. Returns the <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of waited-for command.</P ><P >You may use the <B CLASS="COMMAND" >wait</B > command to prevent a script from exiting before a background job finishes executing (this would create a dreaded <A HREF="internal.html#ZOMBIEREF" >orphan process</A >).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX39" ></A ><P ><B >Example 15-26. Waiting for a process to finish before proceeding</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 ROOT_UID=0 # Only users with $UID 0 have root privileges. 4 E_NOTROOT=65 5 E_NOPARAMS=66 6 7 if [ "$UID" -ne "$ROOT_UID" ] 8 then 9 echo "Must be root to run this script." 10 # "Run along kid, it's past your bedtime." 11 exit $E_NOTROOT 12 fi 13 14 if [ -z "$1" ] 15 then 16 echo "Usage: `basename $0` find-string" 17 exit $E_NOPARAMS 18 fi 19 20 21 echo "Updating 'locate' database..." 22 echo "This may take a while." 23 updatedb /usr & # Must be run as root. 24 25 wait 26 # Don't run the rest of the script until 'updatedb' finished. 27 # You want the the database updated before looking up the file name. 28 29 locate $1 30 31 # Without the 'wait' command, in the worse case scenario, 32 #+ the script would exit while 'updatedb' was still running, 33 #+ leaving it as an orphan process. 34 35 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Optionally, <B CLASS="COMMAND" >wait</B > can take a <I CLASS="FIRSTTERM" >job identifier</I > as an argument, for example, <TT CLASS="REPLACEABLE" ><I >wait%1</I ></TT > or <TT CLASS="REPLACEABLE" ><I >wait $PPID</I ></TT >. <A NAME="AEN9753" HREF="#FTN.AEN9753" >[10]</A > See the <A HREF="internal.html#JOBIDTABLE" >job id table</A >.</P ><P ><A NAME="WAITHANG" ></A ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Within a script, running a command in the background with an ampersand (&) may cause the script to hang until <B CLASS="KEYCAP" >ENTER</B > is hit. This seems to occur with commands that write to <TT CLASS="FILENAME" >stdout</TT >. It can be a major annoyance. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # test.sh 3 4 ls -l & 5 echo "Done."</PRE ></TD ></TR ></TABLE > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >./test.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Done. [bozo@localhost test-scripts]$ total 1 -rwxr-xr-x 1 bozo bozo 34 Oct 11 15:09 test.sh _</TT > </PRE ></TD ></TR ></TABLE > </P ><A NAME="AEN9768" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" ><P CLASS="LITERALLAYOUT" > As Walter Brameld IV explains it:<br> <br> As far as I can tell, such scripts don't actually hang. It just<br> seems that they do because the background command writes text to<br> the console after the prompt. The user gets the impression that<br> the prompt was never displayed. Here's the sequence of events:<br> <br> 1. Script launches background command.<br> 2. Script exits.<br> 3. Shell displays the prompt.<br> 4. Background command continues running and writing text to the<br> console.<br> 5. Background command finishes.<br> 6. User doesn't see a prompt at the bottom of the output, thinks script<br> is hanging.<br> </P ></BLOCKQUOTE ><P >Placing a <B CLASS="COMMAND" >wait</B > after the background command seems to remedy this. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # test.sh 3 4 ls -l & 5 echo "Done." 6 wait</PRE ></TD ></TR ></TABLE > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >./test.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Done. [bozo@localhost test-scripts]$ total 1 -rwxr-xr-x 1 bozo bozo 34 Oct 11 15:09 test.sh</TT > </PRE ></TD ></TR ></TABLE > <A HREF="io-redirection.html#IOREDIRREF" >Redirecting</A > the output of the command to a file or even to <TT CLASS="FILENAME" >/dev/null</TT > also takes care of this problem. </P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SUSPENDREF" ></A ><B CLASS="COMMAND" >suspend</B ></DT ><DD ><P >This has a similar effect to <B CLASS="KEYCAP" >Control</B >-<B CLASS="KEYCAP" >Z</B >, but it suspends the shell (the shell's parent process should resume it at an appropriate time).</P ></DD ><DT ><A NAME="LOGOUTREF" ></A ><B CLASS="COMMAND" >logout</B ></DT ><DD ><P >Exit a login shell, optionally specifying an <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A >.</P ></DD ><DT ><A NAME="TIMESREF" ></A ><B CLASS="COMMAND" >times</B ></DT ><DD ><P >Gives statistics on the system time elapsed when executing commands, in the following form: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >0m0.020s 0m0.020s</TT ></PRE ></TD ></TR ></TABLE ></P ><P >This capability is of relatively limited value, since it is not common to profile and benchmark shell scripts.</P ></DD ><DT ><A NAME="KILLREF" ></A ><B CLASS="COMMAND" >kill</B ></DT ><DD ><P >Forcibly terminate a process by sending it an appropriate <I CLASS="FIRSTTERM" >terminate</I > signal (see <A HREF="system.html#KILLPROCESS" >Example 17-6</A >).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SELFDESTRUCT" ></A ><P ><B >Example 15-27. A script that kills itself</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # self-destruct.sh 3 4 kill $$ # Script kills its own process here. 5 # Recall that "$$" is the script's PID. 6 7 echo "This line will not echo." 8 # Instead, the shell sends a "Terminated" message to stdout. 9 10 exit 0 # Normal exit? No! 11 12 # After this script terminates prematurely, 13 #+ what exit status does it return? 14 # 15 # sh self-destruct.sh 16 # echo $? 17 # 143 18 # 19 # 143 = 128 + 15 20 # TERM signal</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="ZOMBIEREF" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><TT CLASS="USERINPUT" ><B >kill -l</B ></TT > lists all the <A HREF="debugging.html#SIGNALD" >signals</A > (as does the file <TT CLASS="FILENAME" >/usr/include/asm/signal.h</TT >). A <TT CLASS="USERINPUT" ><B >kill -9</B ></TT > is a <I CLASS="FIRSTTERM" >sure kill</I >, which will usually terminate a process that stubbornly refuses to die with a plain <B CLASS="COMMAND" >kill</B >. Sometimes, a <TT CLASS="USERINPUT" ><B >kill -15</B ></TT > works. A <I CLASS="FIRSTTERM" >zombie</I > process, that is, a child process that has terminated, but that the <A HREF="internal.html#FORKREF" >parent process</A > has not (yet) killed, cannot be killed by a logged-on user -- you can't kill something that is already dead -- but <B CLASS="COMMAND" >init</B > will generally clean it up sooner or later.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="KILLALLREF" ></A ><B CLASS="COMMAND" >killall</B ></DT ><DD ><P >The <B CLASS="COMMAND" >killall</B > command kills a running process by <I CLASS="FIRSTTERM" >name</I >, rather than by <A HREF="special-chars.html#PROCESSIDREF" >process ID</A >. If there are multiple instances of a particular command running, then doing a <I CLASS="FIRSTTERM" >killall</I > on that command will terminate them <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >all</I ></SPAN >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This refers to the <B CLASS="COMMAND" >killall</B > command in <TT CLASS="FILENAME" >/usr/bin</TT >, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > the <A HREF="system.html#KILLALL2REF" >killall script</A > in <TT CLASS="FILENAME" >/etc/rc.d/init.d</TT >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="COMMANDREF" ></A ><B CLASS="COMMAND" >command</B ></DT ><DD ><P >The <B CLASS="COMMAND" >command</B > directive disables aliases and functions for the command immediately following it.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >command ls</B ></TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This is one of three shell directives that effect script command processing. The others are <A HREF="internal.html#BLTREF" >builtin</A > and <A HREF="internal.html#ENABLEREF" >enable</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="BLTREF" ></A ><B CLASS="COMMAND" >builtin</B ></DT ><DD ><P >Invoking <B CLASS="COMMAND" >builtin BUILTIN_COMMAND</B > runs the command <TT CLASS="REPLACEABLE" ><I >BUILTIN_COMMAND</I ></TT > as a shell <A HREF="internal.html#BUILTINREF" >builtin</A >, temporarily disabling both functions and external system commands with the same name.</P ></DD ><DT ><A NAME="ENABLEREF" ></A ><B CLASS="COMMAND" >enable</B ></DT ><DD ><P >This either enables or disables a shell builtin command. As an example, <TT CLASS="REPLACEABLE" ><I >enable -n kill</I ></TT > disables the shell builtin <A HREF="internal.html#KILLREF" >kill</A >, so that when Bash subsequently encounters <I CLASS="FIRSTTERM" >kill</I >, it invokes the external command <TT CLASS="FILENAME" >/bin/kill</TT >.</P ><P ><A NAME="ENABLEREF1" ></A >The <TT CLASS="OPTION" >-a</TT > option to <I CLASS="FIRSTTERM" >enable</I > lists all the shell builtins, indicating whether or not they are enabled. The <TT CLASS="OPTION" >-f filename</TT > option lets <I CLASS="FIRSTTERM" >enable</I > load a <A HREF="internal.html#BUILTINREF" >builtin</A > as a shared library (DLL) module from a properly compiled object file. <A NAME="AEN9928" HREF="#FTN.AEN9928" >[11]</A >. </P ></DD ><DT ><A NAME="AUTOLOADREF" ></A ><B CLASS="COMMAND" >autoload</B ></DT ><DD ><P >This is a port to Bash of the <I CLASS="FIRSTTERM" >ksh</I > autoloader. With <B CLASS="COMMAND" >autoload</B > in place, a function with an <I CLASS="FIRSTTERM" >autoload</I > declaration will load from an external file at its first invocation. <A NAME="AEN9949" HREF="#FTN.AEN9949" >[12]</A > This saves system resources.</P ><P >Note that <I CLASS="FIRSTTERM" >autoload</I > is not a part of the core Bash installation. It needs to be loaded in with <TT CLASS="REPLACEABLE" ><I >enable -f</I ></TT > (see above).</P ></DD ></DL ></DIV ><P ><A NAME="JOBIDTABLE0" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="JOBIDTABLE" ></A ><P ><B >Table 15-1. Job identifiers</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Notation</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Meaning</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >%N</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Job number [N]</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >%S</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Invocation (command-line) of job begins with string <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >S</I ></SPAN ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >%?S</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Invocation (command-line) of job contains within it string <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >S</I ></SPAN ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >%%</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="QUOTE" >"current"</SPAN > job (last job stopped in foreground or started in background)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >%+</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="QUOTE" >"current"</SPAN > job (last job stopped in foreground or started in background)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >%-</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Last job</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >$!</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Last background process</TD ></TR ></TBODY ></TABLE ><HR></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN8607" HREF="internal.html#AEN8607" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >As Nathan Coulter points out, "while forking a process is a low-cost operation, executing a new program in the newly-forked child process adds more overhead."</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN8650" HREF="internal.html#AEN8650" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >An exception to this is the <A HREF="timedate.html#TIMREF" >time</A > command, listed in the official Bash documentation as a keyword (<SPAN CLASS="QUOTE" >"reserved word"</SPAN >).</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN9009" HREF="internal.html#AEN9009" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Note that <I CLASS="FIRSTTERM" >let</I > <A HREF="gotchas.html#LETBAD" >cannot be used for setting <I CLASS="FIRSTTERM" >string</I > variables.</A ></P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN9199" HREF="internal.html#AEN9199" >[4]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >To <I CLASS="FIRSTTERM" >Export</I > information is to make it available in a more general context. See also <A HREF="subshells.html#SCOPEREF" >scope</A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN9289" HREF="internal.html#AEN9289" >[5]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >An <I CLASS="FIRSTTERM" >option</I > is an argument that acts as a flag, switching script behaviors on or off. The argument associated with a particular option indicates the behavior that the option (flag) switches on or off.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN9393" HREF="internal.html#AEN9393" >[6]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Technically, an <B CLASS="COMMAND" >exit</B > only terminates the process (or shell) in which it is running, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > the <I CLASS="FIRSTTERM" >parent process</I >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN9425" HREF="internal.html#AEN9425" >[7]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Unless the <B CLASS="COMMAND" >exec</B > is used to <A HREF="io-redirection.html#USINGEXECREF" >reassign file descriptors</A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN9591" HREF="internal.html#AEN9591" >[8]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="HASHREF" ></A ></P ><P ><I CLASS="FIRSTTERM" >Hashing</I > is a method of creating lookup keys for data stored in a table. The <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >data items themselves</I ></SPAN > are <SPAN CLASS="QUOTE" >"scrambled"</SPAN > to create keys, using one of a number of simple mathematical <I CLASS="FIRSTTERM" >algorithms</I > (methods, or recipes).</P ><P >An advantage of <I CLASS="FIRSTTERM" >hashing</I > is that it is fast. A disadvantage is that <I CLASS="FIRSTTERM" >collisions</I > -- where a single key maps to more than one data item -- are possible.</P ><P >For examples of hashing see <A HREF="contributed-scripts.html#HASHLIB" >Example A-20</A > and <A HREF="contributed-scripts.html#HASHEXAMPLE" >Example A-21</A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN9621" HREF="internal.html#AEN9621" >[9]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="READLINEREF" ></A >The <I CLASS="FIRSTTERM" >readline</I > library is what Bash uses for reading input in an interactive shell.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN9753" HREF="internal.html#AEN9753" >[10]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This only applies to <I CLASS="FIRSTTERM" >child processes</I >, of course.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN9928" HREF="internal.html#AEN9928" >[11]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The C source for a number of loadable builtins is typically found in the <TT CLASS="FILENAME" >/usr/share/doc/bash-?.??/functions</TT > directory.</P ><P >Note that the <TT CLASS="OPTION" >-f</TT > option to <B CLASS="COMMAND" >enable</B > is not <A HREF="portabilityissues.html" >portable</A > to all systems.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN9949" HREF="internal.html#AEN9949" >[12]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The same effect as <B CLASS="COMMAND" >autoload</B > can be achieved with <A HREF="declareref.html" >typeset -fu</A >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="part4.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="external.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part4.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >External Filters, Programs and Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/io-redirection.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >I/O Redirection</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Here Documents" HREF="here-docs.html"><LINK REL="NEXT" TITLE="Redirecting Code Blocks" HREF="redircb.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="here-docs.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="redircb.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="IO-REDIRECTION" ></A >Chapter 20. I/O Redirection</H1 ><P ><A NAME="IOREDIRREF" ></A ></P ><P >There are always three default <I CLASS="FIRSTTERM" >files</I > <A NAME="AEN17884" HREF="#FTN.AEN17884" >[1]</A > open, <TT CLASS="FILENAME" >stdin</TT > (the keyboard), <TT CLASS="FILENAME" >stdout</TT > (the screen), and <TT CLASS="FILENAME" >stderr</TT > (error messages output to the screen). These, and any other open files, can be redirected. Redirection simply means capturing output from a file, command, program, script, or even code block within a script (see <A HREF="special-chars.html#EX8" >Example 3-1</A > and <A HREF="special-chars.html#RPMCHECK" >Example 3-2</A >) and sending it as input to another file, command, program, or script.</P ><P ><A NAME="FDREF" ></A >Each open file gets assigned a file descriptor. <A NAME="AEN17894" HREF="#FTN.AEN17894" >[2]</A > The file descriptors for <TT CLASS="FILENAME" >stdin</TT >, <TT CLASS="FILENAME" >stdout</TT >, and <TT CLASS="FILENAME" >stderr</TT > are 0, 1, and 2, respectively. For opening additional files, there remain descriptors 3 to 9. It is sometimes useful to assign one of these additional file descriptors to <TT CLASS="FILENAME" >stdin</TT >, <TT CLASS="FILENAME" >stdout</TT >, or <TT CLASS="FILENAME" >stderr</TT > as a temporary duplicate link. <A NAME="AEN17906" HREF="#FTN.AEN17906" >[3]</A > This simplifies restoration to normal after complex redirection and reshuffling (see <A HREF="io-redirection.html#REDIR1" >Example 20-1</A >).</P ><P ><A NAME="IOREDIRECTIONREF" ></A ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 COMMAND_OUTPUT > 2 # Redirect stdout to a file. 3 # Creates the file if not present, otherwise overwrites it. 4 5 ls -lR > dir-tree.list 6 # Creates a file containing a listing of the directory tree. 7 8 : > filename 9 # The > truncates file "filename" to zero length. 10 # If file not present, creates zero-length file (same effect as 'touch'). 11 # The : serves as a dummy placeholder, producing no output. 12 13 > filename 14 # The > truncates file "filename" to zero length. 15 # If file not present, creates zero-length file (same effect as 'touch'). 16 # (Same result as ": >", above, but this does not work with some shells.) 17 18 COMMAND_OUTPUT >> 19 # Redirect stdout to a file. 20 # Creates the file if not present, otherwise appends to it. 21 22 23 # Single-line redirection commands (affect only the line they are on): 24 # -------------------------------------------------------------------- 25 26 1>filename 27 # Redirect stdout to file "filename." 28 1>>filename 29 # Redirect and append stdout to file "filename." 30 2>filename 31 # Redirect stderr to file "filename." 32 2>>filename 33 # Redirect and append stderr to file "filename." 34 &>filename 35 # Redirect both stdout and stderr to file "filename." 36 # This operator is now functional, as of Bash 4, final release. 37 38 M>N 39 # "M" is a file descriptor, which defaults to 1, if not explicitly set. 40 # "N" is a filename. 41 # File descriptor "M" is redirect to file "N." 42 M>&N 43 # "M" is a file descriptor, which defaults to 1, if not set. 44 # "N" is another file descriptor. 45 46 #============================================================================== 47 48 # Redirecting stdout, one line at a time. 49 LOGFILE=script.log 50 51 echo "This statement is sent to the log file, \"$LOGFILE\"." 1>$LOGFILE 52 echo "This statement is appended to \"$LOGFILE\"." 1>>$LOGFILE 53 echo "This statement is also appended to \"$LOGFILE\"." 1>>$LOGFILE 54 echo "This statement is echoed to stdout, and will not appear in \"$LOGFILE\"." 55 # These redirection commands automatically "reset" after each line. 56 57 58 59 # Redirecting stderr, one line at a time. 60 ERRORFILE=script.errors 61 62 bad_command1 2>$ERRORFILE # Error message sent to $ERRORFILE. 63 bad_command2 2>>$ERRORFILE # Error message appended to $ERRORFILE. 64 bad_command3 # Error message echoed to stderr, 65 #+ and does not appear in $ERRORFILE. 66 # These redirection commands also automatically "reset" after each line. 67 #=======================================================================</PRE ></TD ></TR ></TABLE ><P ><A NAME="IOREDIRECTIONREF1" ></A ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 2>&1 2 # Redirects stderr to stdout. 3 # Error messages get sent to same place as standard output. 4 >>filename 2>&1 5 bad_command >>filename 2>&1 6 # Appends both stdout and stderr to the file "filename" ... 7 2>&1 | [command(s)] 8 bad_command 2>&1 | awk '{print $5}' # found 9 # Sends stderr through a pipe. 10 # |& was added to Bash 4 as an abbreviation for 2>&1 |. 11 12 i>&j 13 # Redirects file descriptor <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >i</I ></SPAN > to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >j</I ></SPAN >. 14 # All output of file pointed to by <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >i</I ></SPAN > gets sent to file pointed to by <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >j</I ></SPAN >. 15 16 >&j 17 # Redirects, by default, file descriptor <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >1</I ></SPAN > (stdout) to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >j</I ></SPAN >. 18 # All stdout gets sent to file pointed to by <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >j</I ></SPAN >.</PRE ></TD ></TR ></TABLE ><P ><A NAME="IOREDIRECTIONREF2" ></A ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 0< FILENAME 2 < FILENAME 3 # Accept input from a file. 4 # Companion command to <SPAN CLASS="QUOTE" >">"</SPAN >, and often used in combination with it. 5 # 6 # grep search-word <filename 7 8 9 [j]<>filename 10 # Open file "filename" for reading and writing, 11 #+ and assign file descriptor "j" to it. 12 # If "filename" does not exist, create it. 13 # If file descriptor "j" is not specified, default to fd 0, stdin. 14 # 15 # An application of this is writing at a specified place in a file. 16 echo 1234567890 > File # Write string to "File". 17 exec 3<> File # Open "File" and assign fd 3 to it. 18 read -n 4 <&3 # Read only 4 characters. 19 echo -n . >&3 # Write a decimal point there. 20 exec 3>&- # Close fd 3. 21 cat File # ==> 1234.67890 22 # Random access, by golly. 23 24 25 26 | 27 # Pipe. 28 # General purpose process and command chaining tool. 29 # Similar to <SPAN CLASS="QUOTE" >">"</SPAN >, but more general in effect. 30 # Useful for chaining commands, scripts, files, and programs together. 31 cat *.txt | sort | uniq > result-file 32 # Sorts the output of all the .txt files and deletes duplicate lines, 33 # finally saves results to <SPAN CLASS="QUOTE" >"result-file"</SPAN >.</PRE ></TD ></TR ></TABLE ><P >Multiple instances of input and output redirection and/or pipes can be combined in a single command line. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 command < input-file > output-file 2 # Or the equivalent: 3 < input-file command > output-file # Although this is non-standard. 4 5 command1 | command2 | command3 > output-file</PRE ></TD ></TR ></TABLE > See <A HREF="filearchiv.html#DERPM" >Example 16-31</A > and <A HREF="contributed-scripts.html#FIFO" >Example A-14</A >.</P ><P >Multiple output streams may be redirected to one file. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 ls -yz >> command.log 2>&1 2 # Capture result of illegal options "yz" in file "command.log." 3 # Because stderr is redirected to the file, 4 #+ any error messages will also be there. 5 6 # Note, however, that the following does *not* give the same result. 7 ls -yz 2>&1 >> command.log 8 # Outputs an error message, but does not write to file. 9 # More precisely, the command output (in this case, null) 10 #+ writes to the file, but the error message goes only to stdout. 11 12 # If redirecting both stdout and stderr, 13 #+ the order of the commands makes a difference.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="CFD" ></A >Closing File Descriptors</B ></P ><DL ><DT ><SPAN CLASS="TOKEN" >n<&-</SPAN ></DT ><DD ><P >Close input file descriptor <TT CLASS="REPLACEABLE" ><I >n</I ></TT >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >0<&-</SPAN >, <SPAN CLASS="TOKEN" ><&-</SPAN ></DT ><DD ><P >Close <TT CLASS="FILENAME" >stdin</TT >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >n>&-</SPAN ></DT ><DD ><P >Close output file descriptor <TT CLASS="REPLACEABLE" ><I >n</I ></TT >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >1>&-</SPAN >, <SPAN CLASS="TOKEN" >>&-</SPAN ></DT ><DD ><P >Close <TT CLASS="FILENAME" >stdout</TT >.</P ></DD ></DL ></DIV ><P ><A NAME="FDREF2" ></A ></P ><P >Child processes inherit open file descriptors. This is why pipes work. To prevent an fd from being inherited, close it. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Redirecting only stderr to a pipe. 2 3 exec 3>&1 # Save current "value" of stdout. 4 ls -l 2>&1 >&3 3>&- | grep bad 3>&- # Close fd 3 for 'grep' (but not 'ls'). 5 # ^^^^ ^^^^ 6 exec 3>&- # Now close it for the remainder of the script. 7 8 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><P >For a more detailed introduction to I/O redirection see <A HREF="ioredirintro.html" >Appendix F</A >.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="AEN17974" ></A >20.1. Using <I CLASS="FIRSTTERM" >exec</I ></H1 ><P ><A NAME="USINGEXECREF" ></A ></P ><P >An <B CLASS="COMMAND" >exec <filename</B > command redirects <TT CLASS="FILENAME" >stdin</TT > to a file. From that point on, all <TT CLASS="FILENAME" >stdin</TT > comes from that file, rather than its normal source (usually keyboard input). This provides a method of reading a file line by line and possibly parsing each line of input using <A HREF="sedawk.html#SEDREF" >sed</A > and/or <A HREF="awk.html#AWKREF" >awk</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="REDIR1" ></A ><P ><B >Example 20-1. Redirecting <TT CLASS="FILENAME" >stdin</TT > using <I CLASS="FIRSTTERM" >exec</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Redirecting stdin using 'exec'. 3 4 5 exec 6<&0 # Link file descriptor #6 with stdin. 6 # Saves stdin. 7 8 exec < data-file # stdin replaced by file "data-file" 9 10 read a1 # Reads first line of file "data-file". 11 read a2 # Reads second line of file "data-file." 12 13 echo 14 echo "Following lines read from file." 15 echo "-------------------------------" 16 echo $a1 17 echo $a2 18 19 echo; echo; echo 20 21 exec 0<&6 6<&- 22 # Now restore stdin from fd #6, where it had been saved, 23 #+ and close fd #6 ( 6<&- ) to free it for other processes to use. 24 # 25 # <&6 6<&- also works. 26 27 echo -n "Enter data " 28 read b1 # Now "read" functions as expected, reading from normal stdin. 29 echo "Input read from stdin." 30 echo "----------------------" 31 echo "b1 = $b1" 32 33 echo 34 35 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Similarly, an <B CLASS="COMMAND" >exec >filename</B > command redirects <TT CLASS="FILENAME" >stdout</TT > to a designated file. This sends all command output that would normally go to <TT CLASS="FILENAME" >stdout</TT > to that file.</P ><DIV CLASS="IMPORTANT" ><TABLE CLASS="IMPORTANT" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/important.png" HSPACE="5" ALT="Important"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P > <B CLASS="COMMAND" >exec N > filename</B > affects the entire script or <I CLASS="FIRSTTERM" >current shell</I >. Redirection in the <A HREF="special-chars.html#PROCESSIDREF" >PID</A > of the script or shell from that point on has changed. However . . . </P ><P > <B CLASS="COMMAND" >N > filename</B > affects only the newly-forked process, not the entire script or shell. </P ><P >Thank you, Ahmed Darwish, for pointing this out.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="REASSIGNSTDOUT" ></A ><P ><B >Example 20-2. Redirecting <TT CLASS="FILENAME" >stdout</TT > using <I CLASS="FIRSTTERM" >exec</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # reassign-stdout.sh 3 4 LOGFILE=logfile.txt 5 6 exec 6>&1 # Link file descriptor #6 with stdout. 7 # Saves stdout. 8 9 exec > $LOGFILE # stdout replaced with file "logfile.txt". 10 11 # ----------------------------------------------------------- # 12 # All output from commands in this block sent to file $LOGFILE. 13 14 echo -n "Logfile: " 15 date 16 echo "-------------------------------------" 17 echo 18 19 echo "Output of \"ls -al\" command" 20 echo 21 ls -al 22 echo; echo 23 echo "Output of \"df\" command" 24 echo 25 df 26 27 # ----------------------------------------------------------- # 28 29 exec 1>&6 6>&- # Restore stdout and close file descriptor #6. 30 31 echo 32 echo "== stdout now restored to default == " 33 echo 34 ls -al 35 echo 36 37 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="UPPERCONV" ></A ><P ><B >Example 20-3. Redirecting both <TT CLASS="FILENAME" >stdin</TT > and <TT CLASS="FILENAME" >stdout</TT > in the same script with <I CLASS="FIRSTTERM" >exec</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # upperconv.sh 3 # Converts a specified input file to uppercase. 4 5 E_FILE_ACCESS=70 6 E_WRONG_ARGS=71 7 8 if [ ! -r "$1" ] # Is specified input file readable? 9 then 10 echo "Can't read from input file!" 11 echo "Usage: $0 input-file output-file" 12 exit $E_FILE_ACCESS 13 fi # Will exit with same error 14 #+ even if input file ($1) not specified (why?). 15 16 if [ -z "$2" ] 17 then 18 echo "Need to specify output file." 19 echo "Usage: $0 input-file output-file" 20 exit $E_WRONG_ARGS 21 fi 22 23 24 exec 4<&0 25 exec < $1 # Will read from input file. 26 27 exec 7>&1 28 exec > $2 # Will write to output file. 29 # Assumes output file writable (add check?). 30 31 # ----------------------------------------------- 32 cat - | tr a-z A-Z # Uppercase conversion. 33 # ^^^^^ # Reads from stdin. 34 # ^^^^^^^^^^ # Writes to stdout. 35 # However, both stdin and stdout were redirected. 36 # Note that the 'cat' can be omitted. 37 # ----------------------------------------------- 38 39 exec 1>&7 7>&- # Restore stout. 40 exec 0<&4 4<&- # Restore stdin. 41 42 # After restoration, the following line prints to stdout as expected. 43 echo "File \"$1\" written to \"$2\" as uppercase conversion." 44 45 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >I/O redirection is a clever way of avoiding the dreaded <A HREF="subshells.html#PARVIS" >inaccessible variables within a subshell</A > problem.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="AVOIDSUBSHELL" ></A ><P ><B >Example 20-4. Avoiding a subshell</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # avoid-subshell.sh 3 # Suggested by Matthew Walker. 4 5 Lines=0 6 7 echo 8 9 cat myfile.txt | while read line; 10 do { 11 echo $line 12 (( Lines++ )); # Incremented values of this variable 13 #+ inaccessible outside loop. 14 # Subshell problem. 15 } 16 done 17 18 echo "Number of lines read = $Lines" # 0 19 # Wrong! 20 21 echo "------------------------" 22 23 24 exec 3<> myfile.txt 25 while read line <&3 26 do { 27 echo "$line" 28 (( Lines++ )); # Incremented values of this variable 29 #+ accessible outside loop. 30 # No subshell, no problem. 31 } 32 done 33 exec 3>&- 34 35 echo "Number of lines read = $Lines" # 8 36 37 echo 38 39 exit 0 40 41 # Lines below not seen by script. 42 43 $ cat myfile.txt 44 45 Line 1. 46 Line 2. 47 Line 3. 48 Line 4. 49 Line 5. 50 Line 6. 51 Line 7. 52 Line 8.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN17884" HREF="io-redirection.html#AEN17884" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >By convention in UNIX and Linux, data streams and peripherals (<A HREF="devproc.html#DEVFILEREF" >device files</A >) are treated as files, in a fashion analogous to ordinary files.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN17894" HREF="io-redirection.html#AEN17894" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="FDREF1" ></A >A <I CLASS="FIRSTTERM" >file descriptor</I > is simply a number that the operating system assigns to an open file to keep track of it. Consider it a simplified type of file pointer. It is analogous to a <I CLASS="FIRSTTERM" >file handle</I > in <B CLASS="COMMAND" >C</B >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN17906" HREF="io-redirection.html#AEN17906" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Using <TT CLASS="REPLACEABLE" ><I >file descriptor 5</I ></TT > might cause problems. When Bash creates a child process, as with <A HREF="internal.html#EXECREF" >exec</A >, the child inherits fd 5 (see Chet Ramey's archived e-mail, <A HREF="http://groups.google.com/group/gnu.bash.bug/browse_thread/thread/13955daafded3b5c/18c17050087f9f37" TARGET="_top" > SUBJECT: RE: File descriptor 5 is held open</A >). Best leave this particular fd alone.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="here-docs.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="redircb.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Here Documents</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Redirecting Code Blocks</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/ioredirintro.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >A Detailed Introduction to I/O and I/O Redirection</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Exit Codes With Special Meanings" HREF="exitcodes.html"><LINK REL="NEXT" TITLE="Command-Line Options" HREF="command-line-options.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="exitcodes.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="command-line-options.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="IOREDIRINTRO" ></A >Appendix F. A Detailed Introduction to I/O and I/O Redirection</H1 ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >written by Stéphane Chazelas, and revised by the document author</I ></SPAN ></P ><P ><A NAME="STDINOUTDEF" ></A ></P ><P >A command expects the first three <A HREF="io-redirection.html#FDREF" >file descriptors</A > to be available. The first, <I CLASS="FIRSTTERM" >fd 0</I > (standard input, <TT CLASS="FILENAME" >stdin</TT >), is for reading. The other two (<I CLASS="FIRSTTERM" >fd 1</I >, <TT CLASS="FILENAME" >stdout</TT > and <I CLASS="FIRSTTERM" >fd 2</I >, <TT CLASS="FILENAME" >stderr</TT >) are for writing.</P ><P >There is a <TT CLASS="FILENAME" >stdin</TT >, <TT CLASS="FILENAME" >stdout</TT >, and a <TT CLASS="FILENAME" >stderr</TT > associated with each command. <TT CLASS="USERINPUT" ><B >ls 2>&1</B ></TT > means temporarily connecting the <TT CLASS="FILENAME" >stderr</TT > of the <B CLASS="COMMAND" >ls</B > command to the same <SPAN CLASS="QUOTE" >"resource"</SPAN > as the shell's <TT CLASS="FILENAME" >stdout</TT >.</P ><P >By convention, a command reads its input from fd 0 (<TT CLASS="FILENAME" >stdin</TT >), prints normal output to fd 1 (<TT CLASS="FILENAME" >stdout</TT >), and error ouput to fd 2 (<TT CLASS="FILENAME" >stderr</TT >). If one of those three fd's is not open, you may encounter problems:</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat /etc/passwd >&-</B ></TT > <TT CLASS="COMPUTEROUTPUT" >cat: standard output: Bad file descriptor</TT > </PRE ></TD ></TR ></TABLE ><P >For example, when <B CLASS="COMMAND" >xterm</B > runs, it first initializes itself. Before running the user's shell, <B CLASS="COMMAND" >xterm</B > opens the terminal device (/dev/pts/<n> or something similar) three times.</P ><P >At this point, Bash inherits these three file descriptors, and each command (child process) run by Bash inherits them in turn, except when you redirect the command. <A HREF="io-redirection.html#IOREDIRREF" >Redirection</A > means reassigning one of the file descriptors to another file (or a pipe, or anything permissible). File descriptors may be reassigned locally (for a command, a command group, a <A HREF="subshells.html#SUBSHELLSREF" >subshell</A >, a <A HREF="redircb.html#REDIRREF" >while or if or case or for loop</A >...), or globally, for the remainder of the shell (using <A HREF="internal.html#EXECREF" >exec</A >).</P ><P ><TT CLASS="USERINPUT" ><B >ls > /dev/null</B ></TT > means running <B CLASS="COMMAND" >ls</B > with its fd 1 connected to <TT CLASS="FILENAME" >/dev/null</TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lsof -a -p $$ -d0,1,2</B ></TT > <TT CLASS="COMPUTEROUTPUT" >COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME bash 363 bozo 0u CHR 136,1 3 /dev/pts/1 bash 363 bozo 1u CHR 136,1 3 /dev/pts/1 bash 363 bozo 2u CHR 136,1 3 /dev/pts/1</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >exec 2> /dev/null</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lsof -a -p $$ -d0,1,2</B ></TT > <TT CLASS="COMPUTEROUTPUT" >COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME bash 371 bozo 0u CHR 136,1 3 /dev/pts/1 bash 371 bozo 1u CHR 136,1 3 /dev/pts/1 bash 371 bozo 2w CHR 1,3 120 /dev/null</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >bash -c 'lsof -a -p $$ -d0,1,2' | cat</B ></TT > <TT CLASS="COMPUTEROUTPUT" >COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME lsof 379 root 0u CHR 136,1 3 /dev/pts/1 lsof 379 root 1w FIFO 0,0 7118 pipe lsof 379 root 2u CHR 136,1 3 /dev/pts/1</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "$(bash -c 'lsof -a -p $$ -d0,1,2' 2>&1)"</B ></TT > <TT CLASS="COMPUTEROUTPUT" >COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME lsof 426 root 0u CHR 136,1 3 /dev/pts/1 lsof 426 root 1w FIFO 0,0 7520 pipe lsof 426 root 2w FIFO 0,0 7520 pipe</TT ></PRE ></TD ></TR ></TABLE ></P ><P >This works for different types of redirection.</P ><P ><TT CLASS="USERINPUT" ><B >Exercise:</B ></TT > Analyze the following script. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /usr/bin/env bash 2 3 mkfifo /tmp/fifo1 /tmp/fifo2 4 while read a; do echo "FIFO1: $a"; done < /tmp/fifo1 & exec 7> /tmp/fifo1 5 exec 8> >(while read a; do echo "FD8: $a, to fd7"; done >&7) 6 7 exec 3>&1 8 ( 9 ( 10 ( 11 while read a; do echo "FIFO2: $a"; done < /tmp/fifo2 | tee /dev/stderr \ 12 | tee /dev/fd/4 | tee /dev/fd/5 | tee /dev/fd/6 >&7 & exec 3> /tmp/fifo2 13 14 echo 1st, to stdout 15 sleep 1 16 echo 2nd, to stderr >&2 17 sleep 1 18 echo 3rd, to fd 3 >&3 19 sleep 1 20 echo 4th, to fd 4 >&4 21 sleep 1 22 echo 5th, to fd 5 >&5 23 sleep 1 24 echo 6th, through a pipe | sed 's/.*/PIPE: &, to fd 5/' >&5 25 sleep 1 26 echo 7th, to fd 6 >&6 27 sleep 1 28 echo 8th, to fd 7 >&7 29 sleep 1 30 echo 9th, to fd 8 >&8 31 32 ) 4>&1 >&3 3>&- | while read a; do echo "FD4: $a"; done 1>&3 5>&- 6>&- 33 ) 5>&1 >&3 | while read a; do echo "FD5: $a"; done 1>&3 6>&- 34 ) 6>&1 >&3 | while read a; do echo "FD6: $a"; done 3>&- 35 36 rm -f /tmp/fifo1 /tmp/fifo2 37 38 39 # For each command and subshell, figure out which fd points to what. 40 # Good luck! 41 42 exit 0</PRE ></TD ></TR ></TABLE > </P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="exitcodes.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="command-line-options.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Exit Codes With Special Meanings</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Command-Line Options</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/ivr.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Indirect References</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Arrays" HREF="arrays.html"><LINK REL="NEXT" TITLE="/dev and /proc" HREF="devproc.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="arrays.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="devproc.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="IVR" ></A >Chapter 28. Indirect References</H1 ><P ><A NAME="IVRREF" ></A ></P ><P >We have seen that <A HREF="variables.html#VARSUBN" >referencing a variable</A >, <TT CLASS="VARNAME" >$var</TT >, fetches its <I CLASS="FIRSTTERM" >value</I >. <A NAME="EVALINDREF" ></A >But, what about the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >value of a value</I ></SPAN >? What about <TT CLASS="VARNAME" >$$var</TT >?</P ><P >The actual notation is <TT CLASS="REPLACEABLE" ><I >\$$var</I ></TT >, usually preceded by an <A HREF="internal.html#EVALREF" >eval</A > (and sometimes an <A HREF="internal.html#ECHOREF" >echo</A >). This is called an <I CLASS="FIRSTTERM" >indirect reference</I >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="INDREF" ></A ><P ><B >Example 28-1. Indirect Variable References</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ind-ref.sh: Indirect variable referencing. 3 # Accessing the contents of the contents of a variable. 4 5 # First, let's fool around a little. 6 7 var=23 8 9 echo "\$var = $var" # $var = 23 10 # So far, everything as expected. But ... 11 12 echo "\$\$var = $$var" # $$var = 4570var 13 # Not useful ... 14 # \$\$ expanded to PID of the script 15 # -- refer to the entry on the $$ variable -- 16 #+ and "var" is echoed as plain text. 17 # (Thank you, Jakob Bohm, for pointing this out.) 18 19 echo "\\\$\$var = \$$var" # \$$var = $23 20 # As expected. The first $ is escaped and pasted on to 21 #+ the value of var ($var = 23 ). 22 # Meaningful, but still not useful. 23 24 # Now, let's start over and do it the right way. 25 26 # ============================================== # 27 28 29 a=letter_of_alphabet # Variable "a" holds the name of another variable. 30 letter_of_alphabet=z 31 32 echo 33 34 # Direct reference. 35 echo "a = $a" # a = letter_of_alphabet 36 37 # Indirect reference. 38 eval a=\$$a 39 # ^^^ Forcing an eval(uation), and ... 40 # ^ Escaping the first $ ... 41 # ------------------------------------------------------------------------ 42 # The 'eval' forces an update of $a, sets it to the updated value of \$$a. 43 # So, we see why 'eval' so often shows up in indirect reference notation. 44 # ------------------------------------------------------------------------ 45 echo "Now a = $a" # Now a = z 46 47 echo 48 49 50 # Now, let's try changing the second-order reference. 51 52 t=table_cell_3 53 table_cell_3=24 54 echo "\"table_cell_3\" = $table_cell_3" # "table_cell_3" = 24 55 echo -n "dereferenced \"t\" = "; eval echo \$$t # dereferenced "t" = 24 56 # In this simple case, the following also works (why?). 57 # eval t=\$$t; echo "\"t\" = $t" 58 59 echo 60 61 t=table_cell_3 62 NEW_VAL=387 63 table_cell_3=$NEW_VAL 64 echo "Changing value of \"table_cell_3\" to $NEW_VAL." 65 echo "\"table_cell_3\" now $table_cell_3" 66 echo -n "dereferenced \"t\" now "; eval echo \$$t 67 # "eval" takes the two arguments "echo" and "\$$t" (set equal to $table_cell_3) 68 69 70 echo 71 72 # (Thanks, Stephane Chazelas, for clearing up the above behavior.) 73 74 75 # A more straightforward method is the ${!t} notation, discussed in the 76 #+ "Bash, version 2" section. 77 # See also ex78.sh. 78 79 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="IRRREF" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN18998" ></A ><P >Indirect referencing in Bash is a multi-step process. First, take the name of a variable: <TT CLASS="VARNAME" >varname</TT >. Then, reference it: <TT CLASS="VARNAME" >$varname</TT >. Then, reference the reference: <TT CLASS="VARNAME" >$$varname</TT >. Then, <I CLASS="FIRSTTERM" >escape</I > the first <SPAN CLASS="TOKEN" >$</SPAN >: <TT CLASS="VARNAME" >\$$varname</TT >. Finally, force a reevaluation of the expression and assign it: <B CLASS="COMMAND" >eval newvar=\$$varname</B >.</P ></DIV ></TD ></TR ></TABLE ><P >Of what practical use is indirect referencing of variables? It gives Bash a little of the functionality of <A HREF="variables.html#POINTERREF" >pointers</A > in <I CLASS="FIRSTTERM" >C</I >, for instance, in <A HREF="bash2.html#RESISTOR" >table lookup</A >. And, it also has some other very interesting applications. . . .</P ><P >Nils Radtke shows how to build <SPAN CLASS="QUOTE" >"dynamic"</SPAN > variable names and evaluate their contents. This can be useful when <A HREF="internal.html#SOURCEREF" >sourcing</A > configuration files.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 4 # --------------------------------------------- 5 # This could be "sourced" from a separate file. 6 isdnMyProviderRemoteNet=172.16.0.100 7 isdnYourProviderRemoteNet=10.0.0.10 8 isdnOnlineService="MyProvider" 9 # --------------------------------------------- 10 11 12 remoteNet=$(eval "echo \$$(echo isdn${isdnOnlineService}RemoteNet)") 13 remoteNet=$(eval "echo \$$(echo isdnMyProviderRemoteNet)") 14 remoteNet=$(eval "echo \$isdnMyProviderRemoteNet") 15 remoteNet=$(eval "echo $isdnMyProviderRemoteNet") 16 17 echo "$remoteNet" # 172.16.0.100 18 19 # ================================================================ 20 21 # And, it gets even better. 22 23 # Consider the following snippet given a variable named getSparc, 24 #+ but no such variable getIa64: 25 26 chkMirrorArchs () { 27 arch="$1"; 28 if [ "$(eval "echo \${$(echo get$(echo -ne $arch | 29 sed 's/^\(.\).*/\1/g' | tr 'a-z' 'A-Z'; echo $arch | 30 sed 's/^.\(.*\)/\1/g')):-false}")" = true ] 31 then 32 return 0; 33 else 34 return 1; 35 fi; 36 } 37 38 getSparc="true" 39 unset getIa64 40 chkMirrorArchs sparc 41 echo $? # 0 42 # True 43 44 chkMirrorArchs Ia64 45 echo $? # 1 46 # False 47 48 # Notes: 49 # ----- 50 # Even the to-be-substituted variable name part is built explicitly. 51 # The parameters to the chkMirrorArchs calls are all lower case. 52 # The variable name is composed of two parts: "get" and "Sparc" . . .</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="COLTOTALER2" ></A ><P ><B >Example 28-2. Passing an indirect reference to <I CLASS="FIRSTTERM" >awk</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Another version of the "column totaler" script 4 #+ that adds up a specified column (of numbers) in the target file. 5 # This one uses indirect references. 6 7 ARGS=2 8 E_WRONGARGS=85 9 10 if [ $# -ne "$ARGS" ] # Check for proper number of command-line args. 11 then 12 echo "Usage: `basename $0` filename column-number" 13 exit $E_WRONGARGS 14 fi 15 16 filename=$1 # Name of file to operate on. 17 column_number=$2 # Which column to total up. 18 19 #===== Same as original script, up to this point =====# 20 21 22 # A multi-line awk script is invoked by 23 # awk " 24 # ... 25 # ... 26 # ... 27 # " 28 29 30 # Begin awk script. 31 # ------------------------------------------------- 32 awk " 33 34 { total += \$${column_number} # Indirect reference 35 } 36 END { 37 print total 38 } 39 40 " "$filename" 41 # Note that awk doesn't need an eval preceding \$$. 42 # ------------------------------------------------- 43 # End awk script. 44 45 # Indirect variable reference avoids the hassles 46 #+ of referencing a shell variable within the embedded awk script. 47 # Thanks, Stephane Chazelas. 48 49 50 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This method of indirect referencing is a bit tricky. If the second order variable changes its value, then the first order variable must be properly dereferenced (as in the above example). <A NAME="IVR2" ></A >Fortunately, the <TT CLASS="REPLACEABLE" ><I >${!variable}</I ></TT > notation introduced with <A HREF="bash2.html#BASH2REF" >version 2</A > of Bash (see <A HREF="bash2.html#EX78" >Example 37-2</A > and <A HREF="contributed-scripts.html#HASHEX2" >Example A-22</A >) makes indirect referencing more intuitive.</P ></TD ></TR ></TABLE ></DIV ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN19027" ></A ><P >Bash does not support pointer arithmetic, and this severely limits the usefulness of indirect referencing. In fact, indirect referencing in a scripting language is, at best, something of an afterthought.</P ></DIV ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="arrays.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="devproc.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Arrays</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><TT CLASS="FILENAME" >/dev</TT > and <TT CLASS="FILENAME" >/proc</TT ></TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/list-cons.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >List Constructs</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Aliases" HREF="aliases.html"><LINK REL="NEXT" TITLE="Arrays" HREF="arrays.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="aliases.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="arrays.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="LIST-CONS" ></A >Chapter 26. List Constructs</H1 ><P ><A NAME="LISTCONSREF" ></A ></P ><P >The <I CLASS="FIRSTTERM" >and list</I > and <I CLASS="FIRSTTERM" >or list</I > constructs provide a means of processing a number of commands consecutively. These can effectively replace complex nested <A HREF="tests.html#TESTCONSTRUCTS1" >if/then</A > or even <A HREF="testbranch.html#CASEESAC1" >case</A > statements.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="LCONS1" ></A >Chaining together commands</B ></P ><DL ><DT >and list</DT ><DD ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 command-1 && command-2 && command-3 && ... command-n</PRE ></TD ></TR ></TABLE > Each command executes in turn, provided that the previous command has given a return value of <TT CLASS="REPLACEABLE" ><I >true</I ></TT > (zero). At the first <TT CLASS="REPLACEABLE" ><I >false</I ></TT > (non-zero) return, the command chain terminates (the first command returning <TT CLASS="REPLACEABLE" ><I >false</I ></TT > is the last one to execute).</P ><P >An interesting use of a two-condition <I CLASS="FIRSTTERM" >and list</I > from an early version of YongYe's <A HREF="http://bash.deta.in/Tetris_Game.sh" TARGET="_top" >Tetris game script</A >:</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 equation() 2 3 { # core algorithm used for doubling and halving the coordinates 4 [[ ${cdx} ]] && ((y=cy+(ccy-cdy)${2}2)) 5 eval ${1}+=\"${x} ${y} \" 6 }</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX64" ></A ><P ><B >Example 26-1. Using an <I CLASS="FIRSTTERM" >and list</I > to test for command-line arguments</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # and list 3 4 if [ ! -z "$1" ] && echo "Argument #1 = $1" && [ ! -z "$2" ] && \ 5 # ^^ ^^ ^^ 6 echo "Argument #2 = $2" 7 then 8 echo "At least 2 arguments passed to script." 9 # All the chained commands return true. 10 else 11 echo "Fewer than 2 arguments passed to script." 12 # At least one of the chained commands returns false. 13 fi 14 # Note that "if [ ! -z $1 ]" works, but its alleged equivalent, 15 # "if [ -n $1 ]" does not. 16 # However, quoting fixes this. 17 # if "[ -n "$1" ]" works. 18 # ^ ^ Careful! 19 # It is always best to QUOTE the variables being tested. 20 21 22 # This accomplishes the same thing, using "pure" if/then statements. 23 if [ ! -z "$1" ] 24 then 25 echo "Argument #1 = $1" 26 fi 27 if [ ! -z "$2" ] 28 then 29 echo "Argument #2 = $2" 30 echo "At least 2 arguments passed to script." 31 else 32 echo "Fewer than 2 arguments passed to script." 33 fi 34 # It's longer and more ponderous than using an "and list". 35 36 37 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ANDLIST2" ></A ><P ><B >Example 26-2. Another command-line arg test using an <I CLASS="FIRSTTERM" >and list</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 ARGS=1 # Number of arguments expected. 4 E_BADARGS=85 # Exit value if incorrect number of args passed. 5 6 test $# -ne $ARGS && \ 7 # ^^^^^^^^^^^^ condition #1 8 echo "Usage: `basename $0` $ARGS argument(s)" && exit $E_BADARGS 9 # ^^ 10 # If condition #1 tests true (wrong number of args passed to script), 11 #+ then the rest of the line executes, and script terminates. 12 13 # Line below executes only if the above test fails. 14 echo "Correct number of arguments passed to this script." 15 16 exit 0 17 18 # To check exit value, do a "echo $?" after script termination.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="ANDDEFAULT" ></A ></P ><P > Of course, an <I CLASS="FIRSTTERM" >and list</I > can also <I CLASS="FIRSTTERM" >set</I > variables to a default value. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 arg1=$@ && [ -z "$arg1" ] && arg1=DEFAULT 2 3 # Set $arg1 to command-line arguments, if any. 4 # But . . . set to DEFAULT if not specified on command-line.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="ORLISTREF" ></A >or list</DT ><DD ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 command-1 || command-2 || command-3 || ... command-n</PRE ></TD ></TR ></TABLE > Each command executes in turn for as long as the previous command returns <SPAN CLASS="RETURNVALUE" >false</SPAN >. At the first <SPAN CLASS="RETURNVALUE" >true</SPAN > return, the command chain terminates (the first command returning <SPAN CLASS="RETURNVALUE" >true</SPAN > is the last one to execute). This is obviously the inverse of the <SPAN CLASS="QUOTE" >"and list"</SPAN >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX65" ></A ><P ><B >Example 26-3. Using <I CLASS="FIRSTTERM" >or lists</I > in combination with an <I CLASS="FIRSTTERM" >and list</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # delete.sh, a not-so-cunning file deletion utility. 4 # Usage: delete filename 5 6 E_BADARGS=85 7 8 if [ -z "$1" ] 9 then 10 echo "Usage: `basename $0` filename" 11 exit $E_BADARGS # No arg? Bail out. 12 else 13 file=$1 # Set filename. 14 fi 15 16 17 [ ! -f "$file" ] && echo "File \"$file\" not found. \ 18 Cowardly refusing to delete a nonexistent file." 19 # AND LIST, to give error message if file not present. 20 # Note echo message continuing on to a second line after an escape. 21 22 [ ! -f "$file" ] || (rm -f $file; echo "File \"$file\" deleted.") 23 # OR LIST, to delete file if present. 24 25 # Note logic inversion above. 26 # AND LIST executes on true, OR LIST on false. 27 28 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >If the first command in an <I CLASS="FIRSTTERM" >or list</I > returns <SPAN CLASS="RETURNVALUE" >true</SPAN >, it <TT CLASS="REPLACEABLE" ><I >will</I ></TT > execute.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # ==> The following snippets from the /etc/rc.d/init.d/single 2 #+==> script by Miquel van Smoorenburg 3 #+==> illustrate use of "and" and "or" lists. 4 # ==> "Arrowed" comments added by document author. 5 6 [ -x /usr/bin/clear ] && /usr/bin/clear 7 # ==> If /usr/bin/clear exists, then invoke it. 8 # ==> Checking for the existence of a command before calling it 9 #+==> avoids error messages and other awkward consequences. 10 11 # ==> . . . 12 13 # If they want to run something in single user mode, might as well run it... 14 for i in /etc/rc1.d/S[0-9][0-9]* ; do 15 # Check if the script is there. 16 [ -x "$i" ] || continue 17 # ==> If corresponding file in $PWD *not* found, 18 #+==> then "continue" by jumping to the top of the loop. 19 20 # Reject backup files and files generated by rpm. 21 case "$1" in 22 *.rpmsave|*.rpmorig|*.rpmnew|*~|*.orig) 23 continue;; 24 esac 25 [ "$i" = "/etc/rc1.d/S00single" ] && continue 26 # ==> Set script name, but don't execute it yet. 27 $i start 28 done 29 30 # ==> . . .</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="IMPORTANT" ><TABLE CLASS="IMPORTANT" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/important.png" HSPACE="5" ALT="Important"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of an <TT CLASS="USERINPUT" ><B >and list</B ></TT > or an <TT CLASS="USERINPUT" ><B >or list</B ></TT > is the exit status of the last command executed.</P ></TD ></TR ></TABLE ></DIV ><P >Clever combinations of <I CLASS="FIRSTTERM" >and</I > and <I CLASS="FIRSTTERM" >or</I > lists are possible, but the logic may easily become convoluted and require close attention to <A HREF="opprecedence.html#OPPRECEDENCE1" >operator precedence rules</A >, and possibly extensive debugging.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 false && true || echo false # false 2 3 # Same result as 4 ( false && true ) || echo false # false 5 # But NOT 6 false && ( true || echo false ) # (nothing echoed) 7 8 # Note left-to-right grouping and evaluation of statements. 9 10 # It's usually best to avoid such complexities. 11 12 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><P >See <A HREF="contributed-scripts.html#DAYSBETWEEN" >Example A-7</A > and <A HREF="fto.html#BROKENLINK" >Example 7-4</A > for illustrations of using <TT CLASS="USERINPUT" ><B >and / or list</B ></TT > constructs to test variables.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="aliases.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="arrays.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Aliases</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Arrays</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/localization.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Localization</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="An Introduction to Programmable Completion" HREF="tabexpansion.html"><LINK REL="NEXT" TITLE="History Commands" HREF="histcommands.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="tabexpansion.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="histcommands.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="LOCALIZATION" ></A >Appendix K. Localization</H1 ><P >Localization is an undocumented Bash feature.</P ><P ><A NAME="LOCALEREF" ></A >A localized shell script echoes its text output in the language defined as the system's locale. A Linux user in Berlin, Germany, would get script output in German, whereas his cousin in Berlin, Maryland, would get output from the same script in English.</P ><P >To create a localized script, use the following template to write all messages to the user (error messages, prompts, etc.).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # localized.sh 3 # Script by Stéphane Chazelas, 4 #+ modified by Bruno Haible, bugfixed by Alfredo Pironti. 5 6 . gettext.sh 7 8 E_CDERROR=65 9 10 error() 11 { 12 printf "$@" >&2 13 exit $E_CDERROR 14 } 15 16 cd $var || error "`eval_gettext \"Can\'t cd to \\\$var.\"`" 17 # The triple backslashes (escapes) in front of $var needed 18 #+ "because eval_gettext expects a string 19 #+ where the variable values have not yet been substituted." 20 # -- per Bruno Haible 21 read -p "`gettext \"Enter the value: \"`" var 22 # ... 23 24 25 # ------------------------------------------------------------------ 26 # Alfredo Pironti comments: 27 28 # This script has been modified to not use the $"..." syntax in 29 #+ favor of the "`gettext \"...\"`" syntax. 30 # This is ok, but with the new localized.sh program, the commands 31 #+ "bash -D filename" and "bash --dump-po-string filename" 32 #+ will produce no output 33 #+ (because those command are only searching for the $"..." strings)! 34 # The ONLY way to extract strings from the new file is to use the 35 # 'xgettext' program. However, the xgettext program is buggy. 36 37 # Note that 'xgettext' has another bug. 38 # 39 # The shell fragment: 40 # gettext -s "I like Bash" 41 # will be correctly extracted, but . . . 42 # xgettext -s "I like Bash" 43 # . . . fails! 44 # 'xgettext' will extract "-s" because 45 #+ the command only extracts the 46 #+ very first argument after the 'gettext' word. 47 48 49 # Escape characters: 50 # 51 # To localize a sentence like 52 # echo -e "Hello\tworld!" 53 #+ you must use 54 # echo -e "`gettext \"Hello\\tworld\"`" 55 # The "double escape character" before the `t' is needed because 56 #+ 'gettext' will search for a string like: 'Hello\tworld' 57 # This is because gettext will read one literal `\') 58 #+ and will output a string like "Bonjour\tmonde", 59 #+ so the 'echo' command will display the message correctly. 60 # 61 # You may not use 62 # echo "`gettext -e \"Hello\tworld\"`" 63 #+ due to the xgettext bug explained above. 64 65 66 67 # Let's localize the following shell fragment: 68 # echo "-h display help and exit" 69 # 70 # First, one could do this: 71 # echo "`gettext \"-h display help and exit\"`" 72 # This way 'xgettext' will work ok, 73 #+ but the 'gettext' program will read "-h" as an option! 74 # 75 # One solution could be 76 # echo "`gettext -- \"-h display help and exit\"`" 77 # This way 'gettext' will work, 78 #+ but 'xgettext' will extract "--", as referred to above. 79 # 80 # The workaround you may use to get this string localized is 81 # echo -e "`gettext \"\\0-h display help and exit\"`" 82 # We have added a \0 (NULL) at the beginning of the sentence. 83 # This way 'gettext' works correctly, as does 'xgettext.' 84 # Moreover, the NULL character won't change the behavior 85 #+ of the 'echo' command. 86 # ------------------------------------------------------------------</PRE ></TD ></TR ></TABLE > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >bash -D localized.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >"Can't cd to %s." "Enter the value: "</TT ></PRE ></TD ></TR ></TABLE > This lists all the localized text. (The <TT CLASS="OPTION" >-D</TT > option lists double-quoted strings prefixed by a <SPAN CLASS="TOKEN" >$</SPAN >, without executing the script.)</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >bash --dump-po-strings localized.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >#: a:6 msgid "Can't cd to %s." msgstr "" #: a:7 msgid "Enter the value: " msgstr ""</TT ></PRE ></TD ></TR ></TABLE > The <TT CLASS="OPTION" >--dump-po-strings</TT > option to Bash resembles the <TT CLASS="OPTION" >-D</TT > option, but uses <A HREF="textproc.html#GETTEXTREF" >gettext</A > <SPAN CLASS="QUOTE" >"po"</SPAN > format. </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Bruno Haible points out:</P ><P >Starting with gettext-0.12.2, <B CLASS="COMMAND" >xgettext -o - localized.sh</B > is recommended instead of <B CLASS="COMMAND" >bash --dump-po-strings localized.sh</B >, because <B CLASS="COMMAND" >xgettext</B > . . .</P ><P >1. understands the gettext and eval_gettext commands (whereas bash --dump-po-strings understands only its deprecated $"..." syntax)</P ><P >2. can extract comments placed by the programmer, intended to be read by the translator.</P ><P >This shell code is then not specific to Bash any more; it works the same way with Bash 1.x and other /bin/sh implementations.</P ></TD ></TR ></TABLE ></DIV ><P >Now, build a <TT CLASS="FILENAME" >language.po</TT > file for each language that the script will be translated into, specifying the <TT CLASS="REPLACEABLE" ><I >msgstr</I ></TT >. Alfredo Pironti gives the following example:</P ><P >fr.po: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #: a:6 2 msgid "Can't cd to $var." 3 msgstr "Impossible de se positionner dans le repertoire $var." 4 #: a:7 5 msgid "Enter the value: " 6 msgstr "Entrez la valeur : " 7 8 # The string are dumped with the variable names, not with the %s syntax, 9 #+ similar to C programs. 10 #+ This is a very cool feature if the programmer uses 11 #+ variable names that make sense!</PRE ></TD ></TR ></TABLE > </P ><P >Then, run <A HREF="textproc.html#MSGFMTREF" >msgfmt</A >.</P ><P ><TT CLASS="USERINPUT" ><B >msgfmt -o localized.sh.mo fr.po</B ></TT ></P ><P >Place the resulting <TT CLASS="FILENAME" >localized.sh.mo</TT > file in the <TT CLASS="FILENAME" >/usr/local/share/locale/fr/LC_MESSAGES</TT > directory, and at the beginning of the script, insert the lines: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 TEXTDOMAINDIR=/usr/local/share/locale 2 TEXTDOMAIN=localized.sh</PRE ></TD ></TR ></TABLE > </P ><P >If a user on a French system runs the script, she will get French messages.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >With older versions of Bash or other shells, localization requires <A HREF="textproc.html#GETTEXTREF" >gettext</A >, using the <TT CLASS="OPTION" >-s</TT > option. In this case, the script becomes:</P ><P ><A NAME="GETTEXTEXAMPLE" ></A > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # localized.sh 3 4 E_CDERROR=65 5 6 error() { 7 local format=$1 8 shift 9 printf "$(gettext -s "$format")" "$@" >&2 10 exit $E_CDERROR 11 } 12 cd $var || error "Can't cd to %s." "$var" 13 read -p "$(gettext -s "Enter the value: ")" var 14 # ...</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><P >The <TT CLASS="VARNAME" >TEXTDOMAIN</TT > and <TT CLASS="VARNAME" >TEXTDOMAINDIR</TT > variables need to be set and exported to the environment. This should be done within the script itself.</P ><P >---</P ><P >This appendix written by Stéphane Chazelas, with modifications suggested by Alfredo Pironti, and by Bruno Haible, maintainer of GNU <A HREF="textproc.html#GETTEXTREF" >gettext</A >.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="tabexpansion.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="histcommands.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >An Introduction to Programmable Completion</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >History Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/localvar.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Local Variables</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Functions" HREF="functions.html"><LINK REL="PREVIOUS" TITLE="Functions" HREF="functions.html"><LINK REL="NEXT" TITLE="Recursion Without Local Variables" HREF="recurnolocvar.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="functions.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 24. Functions</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="recurnolocvar.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="LOCALVAR" ></A >24.2. Local Variables</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="LOCALREF1" ></A >What makes a variable <I CLASS="FIRSTTERM" >local</I >?</B ></P ><DL ><DT >local variables</DT ><DD ><P >A variable declared as <I CLASS="FIRSTTERM" >local</I > is one that is visible only within the <A HREF="special-chars.html#CODEBLOCKREF" >block of code</A > in which it appears. It has local <A HREF="subshells.html#SCOPEREF" >scope</A >. In a function, a <I CLASS="FIRSTTERM" >local variable</I > has meaning only within that function block. <A NAME="AEN18568" HREF="#FTN.AEN18568" >[1]</A > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX62" ></A ><P ><B >Example 24-12. Local variable visibility</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ex62.sh: Global and local variables inside a function. 3 4 func () 5 { 6 local loc_var=23 # Declared as local variable. 7 echo # Uses the 'local' builtin. 8 echo "\"loc_var\" in function = $loc_var" 9 global_var=999 # Not declared as local. 10 # Therefore, defaults to global. 11 echo "\"global_var\" in function = $global_var" 12 } 13 14 func 15 16 # Now, to see if local variable "loc_var" exists outside the function. 17 18 echo 19 echo "\"loc_var\" outside function = $loc_var" 20 # $loc_var outside function = 21 # No, $loc_var not visible globally. 22 echo "\"global_var\" outside function = $global_var" 23 # $global_var outside function = 999 24 # $global_var is visible globally. 25 echo 26 27 exit 0 28 # In contrast to C, a Bash variable declared inside a function 29 #+ is local ONLY if declared as such.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Before a function is called, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >all</I ></SPAN > variables declared within the function are invisible outside the body of the function, not just those explicitly declared as <I CLASS="FIRSTTERM" >local</I >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 func () 4 { 5 global_var=37 # Visible only within the function block 6 #+ before the function has been called. 7 } # END OF FUNCTION 8 9 echo "global_var = $global_var" # global_var = 10 # Function "func" has not yet been called, 11 #+ so $global_var is not visible here. 12 13 func 14 echo "global_var = $global_var" # global_var = 37 15 # Has been set by function call.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="EXITVALANOMALY01" ></A ></P ><P >As Evgeniy Ivanov points out, when declaring and setting a local variable in a single command, apparently the order of operations is to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >first set the variable, and only afterwards restrict it to local scope</I ></SPAN >. This is reflected in the <A HREF="exit-status.html#EXITSTATUSREF" >return value</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo "==OUTSIDE Function (global)==" 4 t=$(exit 1) 5 echo $? # 1 6 # As expected. 7 echo 8 9 function0 () 10 { 11 12 echo "==INSIDE Function==" 13 echo "Global" 14 t0=$(exit 1) 15 echo $? # 1 16 # As expected. 17 18 echo 19 echo "Local declared & assigned in same command." 20 local t1=$(exit 1) 21 echo $? # 0 22 # Unexpected! 23 # Apparently, the variable assignment takes place before 24 #+ the local declaration. 25 #+ The return value is for the latter. 26 27 echo 28 echo "Local declared, then assigned (separate commands)." 29 local t2 30 t2=$(exit 1) 31 echo $? # 1 32 # As expected. 33 34 } 35 36 function0</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="LOCVARRECUR" ></A >24.2.1. Local variables and recursion.</H2 ><P ><A NAME="RECURSIONREF0" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN18598" ></A ><P ><A NAME="RECURSIONREF" ></A ></P ><P ><I CLASS="FIRSTTERM" >Recursion</I > is an interesting and sometimes useful form of <I CLASS="FIRSTTERM" >self-reference</I >. <A HREF="biblio.html#MAYERREF" >Herbert Mayer</A > defines it as <SPAN CLASS="QUOTE" >". . . expressing an algorithm by using a simpler version of that same algorithm . . ."</SPAN ></P ><P >Consider a definition defined in terms of itself, <A NAME="AEN18607" HREF="#FTN.AEN18607" >[2]</A > an expression implicit in its own expression, <A NAME="AEN18610" HREF="#FTN.AEN18610" >[3]</A > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >a snake swallowing its own tail</I ></SPAN >, <A NAME="AEN18614" HREF="#FTN.AEN18614" >[4]</A > or . . . a function that calls itself. <A NAME="AEN18617" HREF="#FTN.AEN18617" >[5]</A > </P ><P ><A NAME="RECURSIONDEMO0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RECURSIONDEMO" ></A ><P ><B >Example 24-13. Demonstration of a simple recursive function</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # recursion-demo.sh 3 # Demonstration of recursion. 4 5 RECURSIONS=9 # How many times to recurse. 6 r_count=0 # Must be global. Why? 7 8 recurse () 9 { 10 var="$1" 11 12 while [ "$var" -ge 0 ] 13 do 14 echo "Recursion count = "$r_count" +-+ \$var = "$var"" 15 (( var-- )); (( r_count++ )) 16 recurse "$var" # Function calls itself (recurses) 17 done #+ until what condition is met? 18 } 19 20 recurse $RECURSIONS 21 22 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="RECURSIONDEMO02" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RECURSIONDEMO2" ></A ><P ><B >Example 24-14. Another simple demonstration</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # recursion-def.sh 3 # A script that defines "recursion" in a rather graphic way. 4 5 RECURSIONS=10 6 r_count=0 7 sp=" " 8 9 define_recursion () 10 { 11 ((r_count++)) 12 sp="$sp"" " 13 echo -n "$sp" 14 echo "\"The act of recurring ... \"" # Per 1913 Webster's dictionary. 15 16 while [ $r_count -le $RECURSIONS ] 17 do 18 define_recursion 19 done 20 } 21 22 echo 23 echo "Recursion: " 24 define_recursion 25 echo 26 27 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ></TD ></TR ></TABLE ><P >Local variables are a useful tool for writing recursive code, but this practice generally involves a great deal of computational overhead and is definitely <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > recommended in a shell script. <A NAME="AEN18632" HREF="#FTN.AEN18632" >[6]</A > </P ><P ><A NAME="FACTORIALREF" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX63" ></A ><P ><B >Example 24-15. Recursion, using a local variable</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # factorial 4 # --------- 5 6 7 # Does bash permit recursion? 8 # Well, yes, but... 9 # It's so slow that you gotta have rocks in your head to try it. 10 11 12 MAX_ARG=5 13 E_WRONG_ARGS=85 14 E_RANGE_ERR=86 15 16 17 if [ -z "$1" ] 18 then 19 echo "Usage: `basename $0` number" 20 exit $E_WRONG_ARGS 21 fi 22 23 if [ "$1" -gt $MAX_ARG ] 24 then 25 echo "Out of range ($MAX_ARG is maximum)." 26 # Let's get real now. 27 # If you want greater range than this, 28 #+ rewrite it in a Real Programming Language. 29 exit $E_RANGE_ERR 30 fi 31 32 fact () 33 { 34 local number=$1 35 # Variable "number" must be declared as local, 36 #+ otherwise this doesn't work. 37 if [ "$number" -eq 0 ] 38 then 39 factorial=1 # Factorial of 0 = 1. 40 else 41 let "decrnum = number - 1" 42 fact $decrnum # Recursive function call (the function calls itself). 43 let "factorial = $number * $?" 44 fi 45 46 return $factorial 47 } 48 49 fact $1 50 echo "Factorial of $1 is $?." 51 52 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Also see <A HREF="contributed-scripts.html#PRIMES" >Example A-15</A > for an example of recursion in a script. Be aware that recursion is resource-intensive and executes slowly, and is therefore generally not appropriate in a script.</P ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18568" HREF="localvar.html#AEN18568" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >However, as Thomas Braunberger points out, a local variable declared in a function <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >is also visible to functions called by the parent function.</I ></SPAN ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 function1 () 4 { 5 local func1var=20 6 7 echo "Within function1, \$func1var = $func1var." 8 9 function2 10 } 11 12 function2 () 13 { 14 echo "Within function2, \$func1var = $func1var." 15 } 16 17 function1 18 19 exit 0 20 21 22 # Output of the script: 23 24 # Within function1, $func1var = 20. 25 # Within function2, $func1var = 20.</PRE ></TD ></TR ></TABLE ></P ><P >This is documented in the Bash manual:</P ><P ><SPAN CLASS="QUOTE" >"Local can only be used within a function; it makes the variable name have a visible scope restricted to that function <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >and its children</I ></SPAN >."</SPAN > [emphasis added] <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >The ABS Guide author considers this behavior to be a bug.</I ></SPAN ></P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18607" HREF="localvar.html#AEN18607" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Otherwise known as <I CLASS="FIRSTTERM" >redundancy</I >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18610" HREF="localvar.html#AEN18610" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Otherwise known as <I CLASS="FIRSTTERM" >tautology</I >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18614" HREF="localvar.html#AEN18614" >[4]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Otherwise known as a <I CLASS="FIRSTTERM" >metaphor</I >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18617" HREF="localvar.html#AEN18617" >[5]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Otherwise known as a <I CLASS="FIRSTTERM" >recursive function</I >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18632" HREF="localvar.html#AEN18632" >[6]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Too many levels of recursion may crash a script with a segfault. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Warning: Running this script could possibly lock up your system! 4 # If you're lucky, it will segfault before using up all available memory. 5 6 recursive_function () 7 { 8 echo "$1" # Makes the function do something, and hastens the segfault. 9 (( $1 < $2 )) && recursive_function $(( $1 + 1 )) $2; 10 # As long as 1st parameter is less than 2nd, 11 #+ increment 1st and recurse. 12 } 13 14 recursive_function 1 50000 # Recurse 50,000 levels! 15 # Most likely segfaults (depending on stack size, set by ulimit -m). 16 17 # Recursion this deep might cause even a C program to segfault, 18 #+ by using up all the memory allotted to the stack. 19 20 21 echo "This will probably not print." 22 exit 0 # This script will not exit normally. 23 24 # Thanks, Stéphane Chazelas.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="functions.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="recurnolocvar.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Functions</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="functions.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Recursion Without Local Variables</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/loopcontrol.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Loop Control</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Loops and Branches" HREF="loops.html"><LINK REL="PREVIOUS" TITLE="Nested Loops" HREF="nestedloops.html"><LINK REL="NEXT" TITLE="Testing and Branching" HREF="testbranch.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="nestedloops.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 11. Loops and Branches</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="testbranch.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="LOOPCONTROL" ></A >11.3. Loop Control</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Tournez cent tours, tournez mille tours,</I ></P ><P ><I >Tournez souvent et tournez toujours . . .</I ></P ><P ><I >--Verlaine, <SPAN CLASS="QUOTE" >"Chevaux de bois"</SPAN ></I ></P ></I ></TD ></TR ></TABLE ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="BRKCONT1" ></A >Commands affecting loop behavior</B ></P ><DL ><DT ><B CLASS="COMMAND" >break</B >, <B CLASS="COMMAND" >continue</B ></DT ><DD ><P >The <B CLASS="COMMAND" >break</B > and <B CLASS="COMMAND" >continue</B > loop control commands <A NAME="AEN6981" HREF="#FTN.AEN6981" >[1]</A > correspond exactly to their counterparts in other programming languages. The <B CLASS="COMMAND" >break</B > command terminates the loop (<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >breaks</I ></SPAN > out of it), while <B CLASS="COMMAND" >continue</B > causes a jump to the next <A HREF="loops.html#ITERATIONREF" >iteration</A > of the loop, skipping all the remaining commands in that particular loop cycle.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX28" ></A ><P ><B >Example 11-21. Effects of <I CLASS="FIRSTTERM" >break</I > and <B CLASS="COMMAND" >continue</B > in a loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 LIMIT=19 # Upper limit 4 5 echo 6 echo "Printing Numbers 1 through 20 (but not 3 and 11)." 7 8 a=0 9 10 while [ $a -le "$LIMIT" ] 11 do 12 a=$(($a+1)) 13 14 if [ "$a" -eq 3 ] || [ "$a" -eq 11 ] # Excludes 3 and 11. 15 then 16 continue # Skip rest of this particular loop iteration. 17 fi 18 19 echo -n "$a " # This will not execute for 3 and 11. 20 done 21 22 # Exercise: 23 # Why does the loop print up to 20? 24 25 echo; echo 26 27 echo Printing Numbers 1 through 20, but something happens after 2. 28 29 ################################################################## 30 31 # Same loop, but substituting 'break' for 'continue'. 32 33 a=0 34 35 while [ "$a" -le "$LIMIT" ] 36 do 37 a=$(($a+1)) 38 39 if [ "$a" -gt 2 ] 40 then 41 break # Skip entire rest of loop. 42 fi 43 44 echo -n "$a " 45 done 46 47 echo; echo; echo 48 49 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="BREAKPARAM" ></A ></P ><P >The <B CLASS="COMMAND" >break</B > command may optionally take a parameter. A plain <B CLASS="COMMAND" >break</B > terminates only the innermost loop in which it is embedded, but a <B CLASS="COMMAND" >break N</B > breaks out of <TT CLASS="PARAMETER" ><I >N</I ></TT > levels of loop.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BREAKLEVELS" ></A ><P ><B >Example 11-22. Breaking out of multiple loop levels</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # break-levels.sh: Breaking out of loops. 3 4 # "break N" breaks out of N level loops. 5 6 for outerloop in 1 2 3 4 5 7 do 8 echo -n "Group $outerloop: " 9 10 # -------------------------------------------------------- 11 for innerloop in 1 2 3 4 5 12 do 13 echo -n "$innerloop " 14 15 if [ "$innerloop" -eq 3 ] 16 then 17 break # Try break 2 to see what happens. 18 # ("Breaks" out of both inner and outer loops.) 19 fi 20 done 21 # -------------------------------------------------------- 22 23 echo 24 done 25 26 echo 27 28 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The <B CLASS="COMMAND" >continue</B > command, similar to <B CLASS="COMMAND" >break</B >, optionally takes a parameter. A plain <B CLASS="COMMAND" >continue</B > cuts short the current iteration within its loop and begins the next. A <B CLASS="COMMAND" >continue N</B > terminates all remaining iterations at its loop level and continues with the next iteration at the loop, <TT CLASS="OPTION" >N</TT > levels above.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="CONTINUELEVELS" ></A ><P ><B >Example 11-23. Continuing at a higher loop level</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # The "continue N" command, continuing at the Nth level loop. 3 4 for outer in I II III IV V # outer loop 5 do 6 echo; echo -n "Group $outer: " 7 8 # -------------------------------------------------------------------- 9 for inner in 1 2 3 4 5 6 7 8 9 10 # inner loop 10 do 11 12 if [[ "$inner" -eq 7 && "$outer" = "III" ]] 13 then 14 continue 2 # Continue at loop on 2nd level, that is "outer loop". 15 # Replace above line with a simple "continue" 16 # to see normal loop behavior. 17 fi 18 19 echo -n "$inner " # 7 8 9 10 will not echo on "Group III." 20 done 21 # -------------------------------------------------------------------- 22 23 done 24 25 echo; echo 26 27 # Exercise: 28 # Come up with a meaningful use for "continue N" in a script. 29 30 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="CONTINUENEX" ></A ><P ><B >Example 11-24. Using <I CLASS="FIRSTTERM" >continue N</I > in an actual task</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Albert Reiner gives an example of how to use "continue N": 2 # --------------------------------------------------------- 3 4 # Suppose I have a large number of jobs that need to be run, with 5 #+ any data that is to be treated in files of a given name pattern 6 #+ in a directory. There are several machines that access 7 #+ this directory, and I want to distribute the work over these 8 #+ different boxen. 9 # Then I usually nohup something like the following on every box: 10 11 while true 12 do 13 for n in .iso.* 14 do 15 [ "$n" = ".iso.opts" ] && continue 16 beta=${n#.iso.} 17 [ -r .Iso.$beta ] && continue 18 [ -r .lock.$beta ] && sleep 10 && continue 19 lockfile -r0 .lock.$beta || continue 20 echo -n "$beta: " `date` 21 run-isotherm $beta 22 date 23 ls -alF .Iso.$beta 24 [ -r .Iso.$beta ] && rm -f .lock.$beta 25 continue 2 26 done 27 break 28 done 29 30 exit 0 31 32 # The details, in particular the sleep N, are particular to my 33 #+ application, but the general pattern is: 34 35 while true 36 do 37 for job in {pattern} 38 do 39 {job already done or running} && continue 40 {mark job as running, do job, mark job as done} 41 continue 2 42 done 43 break # Or something like `sleep 600' to avoid termination. 44 done 45 46 # This way the script will stop only when there are no more jobs to do 47 #+ (including jobs that were added during runtime). Through the use 48 #+ of appropriate lockfiles it can be run on several machines 49 #+ concurrently without duplication of calculations [which run a couple 50 #+ of hours in my case, so I really want to avoid this]. Also, as search 51 #+ always starts again from the beginning, one can encode priorities in 52 #+ the file names. Of course, one could also do this without `continue 2', 53 #+ but then one would have to actually check whether or not some job 54 #+ was done (so that we should immediately look for the next job) or not 55 #+ (in which case we terminate or sleep for a long time before checking 56 #+ for a new job).</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >continue N</B > construct is difficult to understand and tricky to use in any meaningful context. It is probably best avoided.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN6981" HREF="loopcontrol.html#AEN6981" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >These are shell <A HREF="internal.html#BUILTINREF" >builtins</A >, whereas other loop commands, such as <A HREF="loops.html#WHILELOOPREF" >while</A > and <A HREF="testbranch.html#CASEESAC1" >case</A >, are <A HREF="internal.html#KEYWORDREF" >keywords</A >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="nestedloops.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="testbranch.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Nested Loops</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="loops.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Testing and Branching</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/loops.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Loops and Branches</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Beyond the Basics" HREF="part3.html"><LINK REL="PREVIOUS" TITLE="Parameter Substitution" HREF="parameter-substitution.html"><LINK REL="NEXT" TITLE="Nested Loops" HREF="nestedloops.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="parameter-substitution.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="nestedloops.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="LOOPS" ></A >Chapter 11. Loops and Branches</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >What needs this iteration, woman?</I ></P ><P ><I >--Shakespeare, <TT CLASS="REPLACEABLE" ><I >Othello</I ></TT ></I ></P ></I ></TD ></TR ></TABLE ><P ><A NAME="LOOPREF00" ></A ></P ><P >Operations on code blocks are the key to structured and organized shell scripts. Looping and branching constructs provide the tools for accomplishing this.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="LOOPS1" ></A >11.1. Loops</H1 ><P >A <I CLASS="FIRSTTERM" >loop</I > is a block of code that <I CLASS="FIRSTTERM" >iterates</I > <A NAME="AEN6560" HREF="#FTN.AEN6560" >[1]</A > a list of commands as long as the <I CLASS="FIRSTTERM" >loop control condition</I > is true.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="FORLOOPREF1" ></A >for loops</B ></P ><DL ><DT ><B CLASS="COMMAND" >for <TT CLASS="PARAMETER" ><I >arg</I ></TT > in <TT CLASS="REPLACEABLE" ><I >[list]</I ></TT ></B ></DT ><DD ><P >This is the basic looping construct. It differs significantly from its <I CLASS="FIRSTTERM" >C</I > counterpart.</P ><P ><A NAME="DOINREF" ></A ></P ><P ><P ><B CLASS="COMMAND" >for</B > <TT CLASS="REPLACEABLE" ><I >arg</I ></TT > in [<TT CLASS="REPLACEABLE" ><I >list</I ></TT >]<BR> do <BR> <TT CLASS="REPLACEABLE" ><I > command(s)</I ></TT >... <BR> done </P ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >During each pass through the loop, <TT CLASS="REPLACEABLE" ><I >arg</I ></TT > takes on the value of each successive variable in the <TT CLASS="REPLACEABLE" ><I >list</I ></TT >.</P ></TD ></TR ></TABLE ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 for arg in "$var1" "$var2" "$var3" ... "$varN" 2 # In pass 1 of the loop, arg = $var1 3 # In pass 2 of the loop, arg = $var2 4 # In pass 3 of the loop, arg = $var3 5 # ... 6 # In pass N of the loop, arg = $varN 7 8 # Arguments in [list] quoted to prevent possible word splitting.</PRE ></TD ></TR ></TABLE ></P ><P >The argument <TT CLASS="REPLACEABLE" ><I >list</I ></TT > may contain <A HREF="special-chars.html#ASTERISKREF" >wild cards</A >.</P ><P ><A NAME="NEEDSEMICOLON" ></A ></P ><P >If <I CLASS="FIRSTTERM" >do</I > is on same line as <I CLASS="FIRSTTERM" >for</I >, there needs to be a semicolon after list.</P ><P ><P ><B CLASS="COMMAND" >for</B > <TT CLASS="REPLACEABLE" ><I >arg</I ></TT > in [<TT CLASS="REPLACEABLE" ><I >list</I ></TT >] ; do <BR></P ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX22" ></A ><P ><B >Example 11-1. Simple <I CLASS="FIRSTTERM" >for</I > loops</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Listing the planets. 3 4 for planet in Mercury Venus Earth Mars Jupiter Saturn Uranus Neptune Pluto 5 do 6 echo $planet # Each planet on a separate line. 7 done 8 9 echo; echo 10 11 for planet in "Mercury Venus Earth Mars Jupiter Saturn Uranus Neptune Pluto" 12 # All planets on same line. 13 # Entire 'list' enclosed in quotes creates a single variable. 14 # Why? Whitespace incorporated into the variable. 15 do 16 echo $planet 17 done 18 19 echo; echo "Whoops! Pluto is no longer a planet!" 20 21 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="MULTPARAML" ></A ></P ><P >Each <TT CLASS="USERINPUT" ><B >[list]</B ></TT > element may contain multiple parameters. This is useful when processing parameters in groups. In such cases, use the <A HREF="internal.html#SETREF" >set</A > command (see <A HREF="internal.html#EX34" >Example 15-16</A >) to force parsing of each <TT CLASS="USERINPUT" ><B >[list]</B ></TT > element and assignment of each component to the positional parameters.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX22A" ></A ><P ><B >Example 11-2. <I CLASS="FIRSTTERM" >for</I > loop with two parameters in each [list] element</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Planets revisited. 3 4 # Associate the name of each planet with its distance from the sun. 5 6 for planet in "Mercury 36" "Venus 67" "Earth 93" "Mars 142" "Jupiter 483" 7 do 8 set -- $planet # Parses variable "planet" 9 #+ and sets positional parameters. 10 # The "--" prevents nasty surprises if $planet is null or 11 #+ begins with a dash. 12 13 # May need to save original positional parameters, 14 #+ since they get overwritten. 15 # One way of doing this is to use an array, 16 # original_params=("$@") 17 18 echo "$1 $2,000,000 miles from the sun" 19 #-------two tabs---concatenate zeroes onto parameter $2 20 done 21 22 # (Thanks, S.C., for additional clarification.) 23 24 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="PARAMLI" ></A ></P ><P >A variable may supply the <TT CLASS="USERINPUT" ><B >[list]</B ></TT > in a <I CLASS="FIRSTTERM" >for loop</I >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="FILEINFO" ></A ><P ><B >Example 11-3. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Fileinfo:</I ></SPAN > operating on a file list contained in a variable</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # fileinfo.sh 3 4 FILES="/usr/sbin/accept 5 /usr/sbin/pwck 6 /usr/sbin/chroot 7 /usr/bin/fakefile 8 /sbin/badblocks 9 /sbin/ypbind" # List of files you are curious about. 10 # Threw in a dummy file, /usr/bin/fakefile. 11 12 echo 13 14 for file in $FILES 15 do 16 17 if [ ! -e "$file" ] # Check if file exists. 18 then 19 echo "$file does not exist."; echo 20 continue # On to next. 21 fi 22 23 ls -l $file | awk '{ print $8 " file size: " $5 }' # Print 2 fields. 24 whatis `basename $file` # File info. 25 # Note that the whatis database needs to have been set up for this to work. 26 # To do this, as root run /usr/bin/makewhatis. 27 echo 28 done 29 30 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="PARAMLI2" ></A ></P ><P >The <TT CLASS="USERINPUT" ><B >[list]</B ></TT > in a <I CLASS="FIRSTTERM" >for loop</I > may be parameterized.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="FILEINFO01" ></A ><P ><B >Example 11-4. Operating on a parameterized file list</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 filename="*txt" 4 5 for file in $filename 6 do 7 echo "Contents of $file" 8 echo "---" 9 cat "$file" 10 echo 11 done</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="LIGLOB" ></A ></P ><P >If the <TT CLASS="USERINPUT" ><B >[list]</B ></TT > in a <I CLASS="FIRSTTERM" >for loop</I > contains wild cards (<SPAN CLASS="TOKEN" >*</SPAN > and <SPAN CLASS="TOKEN" >?</SPAN >) used in filename expansion, then <A HREF="globbingref.html" >globbing</A > takes place.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="LISTGLOB" ></A ><P ><B >Example 11-5. Operating on files with a <I CLASS="FIRSTTERM" >for</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # list-glob.sh: Generating [list] in a for-loop, using "globbing" ... 3 # Globbing = filename expansion. 4 5 echo 6 7 for file in * 8 # ^ Bash performs filename expansion 9 #+ on expressions that globbing recognizes. 10 do 11 ls -l "$file" # Lists all files in $PWD (current directory). 12 # Recall that the wild card character "*" matches every filename, 13 #+ however, in "globbing," it doesn't match dot-files. 14 15 # If the pattern matches no file, it is expanded to itself. 16 # To prevent this, set the nullglob option 17 #+ (shopt -s nullglob). 18 # Thanks, S.C. 19 done 20 21 echo; echo 22 23 for file in [jx]* 24 do 25 rm -f $file # Removes only files beginning with "j" or "x" in $PWD. 26 echo "Removed file \"$file\"". 27 done 28 29 echo 30 31 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="OMITLIST" ></A ></P ><P >Omitting the <TT CLASS="USERINPUT" ><B >in [list]</B ></TT > part of a <I CLASS="FIRSTTERM" >for loop</I > causes the loop to operate on <SPAN CLASS="TOKEN" >$@</SPAN > -- the <A HREF="variables2.html#POSPARAMREF" > positional parameters</A >. A particularly clever illustration of this is <A HREF="contributed-scripts.html#PRIMES" >Example A-15</A >. See also <A HREF="internal.html#REVPOSPARAMS" >Example 15-17</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX23" ></A ><P ><B >Example 11-6. Missing <TT CLASS="USERINPUT" ><B >in [list]</B ></TT > in a <I CLASS="FIRSTTERM" >for</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Invoke this script both with and without arguments, 4 #+ and see what happens. 5 6 for a 7 do 8 echo -n "$a " 9 done 10 11 # The 'in list' missing, therefore the loop operates on '$@' 12 #+ (command-line argument list, including whitespace). 13 14 echo 15 16 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="LOOPCS" ></A ></P ><P >It is possible to use <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A > to generate the <TT CLASS="USERINPUT" ><B >[list]</B ></TT > in a <I CLASS="FIRSTTERM" >for loop</I >. See also <A HREF="extmisc.html#EX53" >Example 16-54</A >, <A HREF="loops.html#SYMLINKS" >Example 11-11</A > and <A HREF="mathc.html#BASE" >Example 16-48</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="FORLOOPCMD" ></A ><P ><B >Example 11-7. Generating the <TT CLASS="USERINPUT" ><B >[list]</B ></TT > in a <I CLASS="FIRSTTERM" >for</I > loop with command substitution</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # for-loopcmd.sh: for-loop with [list] 3 #+ generated by command substitution. 4 5 NUMBERS="9 7 3 8 37.53" 6 7 for number in `echo $NUMBERS` # for number in 9 7 3 8 37.53 8 do 9 echo -n "$number " 10 done 11 12 echo 13 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Here is a somewhat more complex example of using command substitution to create the <TT CLASS="USERINPUT" ><B >[list]</B ></TT >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BINGREP" ></A ><P ><B >Example 11-8. A <I CLASS="FIRSTTERM" >grep</I > replacement for binary files</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # bin-grep.sh: Locates matching strings in a binary file. 3 4 # A "grep" replacement for binary files. 5 # Similar effect to "grep -a" 6 7 E_BADARGS=65 8 E_NOFILE=66 9 10 if [ $# -ne 2 ] 11 then 12 echo "Usage: `basename $0` search_string filename" 13 exit $E_BADARGS 14 fi 15 16 if [ ! -f "$2" ] 17 then 18 echo "File \"$2\" does not exist." 19 exit $E_NOFILE 20 fi 21 22 23 IFS=$'\012' # Per suggestion of Anton Filippov. 24 # was: IFS="\n" 25 for word in $( strings "$2" | grep "$1" ) 26 # The "strings" command lists strings in binary files. 27 # Output then piped to "grep", which tests for desired string. 28 do 29 echo $word 30 done 31 32 # As S.C. points out, lines 23 - 30 could be replaced with the simpler 33 # strings "$2" | grep "$1" | tr -s "$IFS" '[\n*]' 34 35 36 # Try something like "./bin-grep.sh mem /bin/ls" 37 #+ to exercise this script. 38 39 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >More of the same.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="USERLIST" ></A ><P ><B >Example 11-9. Listing all users on the system</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # userlist.sh 3 4 PASSWORD_FILE=/etc/passwd 5 n=1 # User number 6 7 for name in $(awk 'BEGIN{FS=":"}{print $1}' < "$PASSWORD_FILE" ) 8 # Field separator = : ^^^^^^ 9 # Print first field ^^^^^^^^ 10 # Get input from password file /etc/passwd ^^^^^^^^^^^^^^^^^ 11 do 12 echo "USER #$n = $name" 13 let "n += 1" 14 done 15 16 17 # USER #1 = root 18 # USER #2 = bin 19 # USER #3 = daemon 20 # ... 21 # USER #33 = bozo 22 23 exit $? 24 25 # Discussion: 26 # ---------- 27 # How is it that an ordinary user, or a script run by same, 28 #+ can read /etc/passwd? (Hint: Check the /etc/passwd file permissions.) 29 # Is this a security hole? Why or why not?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Yet another example of the <TT CLASS="USERINPUT" ><B >[list]</B ></TT > resulting from command substitution.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="FINDSTRING" ></A ><P ><B >Example 11-10. Checking all the binaries in a directory for authorship</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # findstring.sh: 3 # Find a particular string in the binaries in a specified directory. 4 5 directory=/usr/bin/ 6 fstring="Free Software Foundation" # See which files come from the FSF. 7 8 for file in $( find $directory -type f -name '*' | sort ) 9 do 10 strings -f $file | grep "$fstring" | sed -e "s%$directory%%" 11 # In the "sed" expression, 12 #+ it is necessary to substitute for the normal "/" delimiter 13 #+ because "/" happens to be one of the characters filtered out. 14 # Failure to do so gives an error message. (Try it.) 15 done 16 17 exit $? 18 19 # Exercise (easy): 20 # --------------- 21 # Convert this script to take command-line parameters 22 #+ for $directory and $fstring.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >A final example of <TT CLASS="USERINPUT" ><B >[list]</B ></TT > / command substitution, but this time the <SPAN CLASS="QUOTE" >"command"</SPAN > is a <A HREF="functions.html#FUNCTIONREF" >function</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 generate_list () 2 { 3 echo "one two three" 4 } 5 6 for word in $(generate_list) # Let "word" grab output of function. 7 do 8 echo "$word" 9 done 10 11 # one 12 # two 13 # three</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="LOOPREDIR" ></A ></P ><P >The output of a <I CLASS="FIRSTTERM" >for loop</I > may be piped to a command or commands.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SYMLINKS" ></A ><P ><B >Example 11-11. Listing the <I CLASS="FIRSTTERM" >symbolic links</I > in a directory</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # symlinks.sh: Lists symbolic links in a directory. 3 4 5 directory=${1-`pwd`} 6 # Defaults to current working directory, 7 #+ if not otherwise specified. 8 # Equivalent to code block below. 9 # ---------------------------------------------------------- 10 # ARGS=1 # Expect one command-line argument. 11 # 12 # if [ $# -ne "$ARGS" ] # If not 1 arg... 13 # then 14 # directory=`pwd` # current working directory 15 # else 16 # directory=$1 17 # fi 18 # ---------------------------------------------------------- 19 20 echo "symbolic links in directory \"$directory\"" 21 22 for file in "$( find $directory -type l )" # -type l = symbolic links 23 do 24 echo "$file" 25 done | sort # Otherwise file list is unsorted. 26 # Strictly speaking, a loop isn't really necessary here, 27 #+ since the output of the "find" command is expanded into a single word. 28 # However, it's easy to understand and illustrative this way. 29 30 # As Dominik 'Aeneas' Schnitzer points out, 31 #+ failing to quote $( find $directory -type l ) 32 #+ will choke on filenames with embedded whitespace. 33 # containing whitespace. 34 35 exit 0 36 37 38 # -------------------------------------------------------- 39 # Jean Helou proposes the following alternative: 40 41 echo "symbolic links in directory \"$directory\"" 42 # Backup of the current IFS. One can never be too cautious. 43 OLDIFS=$IFS 44 IFS=: 45 46 for file in $(find $directory -type l -printf "%p$IFS") 47 do # ^^^^^^^^^^^^^^^^ 48 echo "$file" 49 done|sort 50 51 # And, James "Mike" Conley suggests modifying Helou's code thusly: 52 53 OLDIFS=$IFS 54 IFS='' # Null IFS means no word breaks 55 for file in $( find $directory -type l ) 56 do 57 echo $file 58 done | sort 59 60 # This works in the "pathological" case of a directory name having 61 #+ an embedded colon. 62 # "This also fixes the pathological case of the directory name having 63 #+ a colon (or space in earlier example) as well." 64 </PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The <TT CLASS="FILENAME" >stdout</TT > of a loop may be <A HREF="io-redirection.html#IOREDIRREF" >redirected</A > to a file, as this slight modification to the previous example shows.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SYMLINKS2" ></A ><P ><B >Example 11-12. Symbolic links in a directory, saved to a file</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # symlinks.sh: Lists symbolic links in a directory. 3 4 OUTFILE=symlinks.list # save-file 5 6 directory=${1-`pwd`} 7 # Defaults to current working directory, 8 #+ if not otherwise specified. 9 10 11 echo "symbolic links in directory \"$directory\"" > "$OUTFILE" 12 echo "---------------------------" >> "$OUTFILE" 13 14 for file in "$( find $directory -type l )" # -type l = symbolic links 15 do 16 echo "$file" 17 done | sort >> "$OUTFILE" # stdout of loop 18 # ^^^^^^^^^^^^^ redirected to save file. 19 20 # echo "Output file = $OUTFILE" 21 22 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="LOOPCSTYLE" ></A ></P ><P >There is an alternative syntax to a <I CLASS="FIRSTTERM" >for loop</I > that will look very familiar to C programmers. This requires <A HREF="dblparens.html#DBLPARENSREF" >double parentheses</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="FORLOOPC" ></A ><P ><B >Example 11-13. A C-style <I CLASS="FIRSTTERM" >for</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Multiple ways to count up to 10. 3 4 echo 5 6 # Standard syntax. 7 for a in 1 2 3 4 5 6 7 8 9 10 8 do 9 echo -n "$a " 10 done 11 12 echo; echo 13 14 # +==========================================+ 15 16 # Using "seq" ... 17 for a in `seq 10` 18 do 19 echo -n "$a " 20 done 21 22 echo; echo 23 24 # +==========================================+ 25 26 # Using brace expansion ... 27 # Bash, version 3+. 28 for a in {1..10} 29 do 30 echo -n "$a " 31 done 32 33 echo; echo 34 35 # +==========================================+ 36 37 # Now, let's do the same, using C-like syntax. 38 39 LIMIT=10 40 41 for ((a=1; a <= LIMIT ; a++)) # Double parentheses, and naked "LIMIT" 42 do 43 echo -n "$a " 44 done # A construct borrowed from ksh93. 45 46 echo; echo 47 48 # +=========================================================================+ 49 50 # Let's use the C "comma operator" to increment two variables simultaneously. 51 52 for ((a=1, b=1; a <= LIMIT ; a++, b++)) 53 do # The comma concatenates operations. 54 echo -n "$a-$b " 55 done 56 57 echo; echo 58 59 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="arrays.html#QFUNCTION" >Example 27-16</A >, <A HREF="arrays.html#TWODIM" >Example 27-17</A >, and <A HREF="contributed-scripts.html#COLLATZ" >Example A-6</A >.</P ><P >---</P ><P >Now, a <I CLASS="FIRSTTERM" >for loop</I > used in a <SPAN CLASS="QUOTE" >"real-life"</SPAN > context.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX24" ></A ><P ><B >Example 11-14. Using <I CLASS="FIRSTTERM" >efax</I > in batch mode</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Faxing (must have 'efax' package installed). 3 4 EXPECTED_ARGS=2 5 E_BADARGS=85 6 MODEM_PORT="/dev/ttyS2" # May be different on your machine. 7 # ^^^^^ PCMCIA modem card default port. 8 9 if [ $# -ne $EXPECTED_ARGS ] 10 # Check for proper number of command-line args. 11 then 12 echo "Usage: `basename $0` phone# text-file" 13 exit $E_BADARGS 14 fi 15 16 17 if [ ! -f "$2" ] 18 then 19 echo "File $2 is not a text file." 20 # File is not a regular file, or does not exist. 21 exit $E_BADARGS 22 fi 23 24 25 fax make $2 # Create fax-formatted files from text files. 26 27 for file in $(ls $2.0*) # Concatenate the converted files. 28 # Uses wild card (filename "globbing") 29 #+ in variable list. 30 do 31 fil="$fil $file" 32 done 33 34 efax -d "$MODEM_PORT" -t "T$1" $fil # Finally, do the work. 35 # Trying adding -o1 if above line fails. 36 37 38 # As S.C. points out, the for-loop can be eliminated with 39 # efax -d /dev/ttyS2 -o1 -t "T$1" $2.0* 40 #+ but it's not quite as instructive [grin]. 41 42 exit $? # Also, efax sends diagnostic messages to stdout.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="NODODONE" ></A >The <A HREF="internal.html#KEYWORDREF" >keywords</A > <B CLASS="COMMAND" >do</B > and <B CLASS="COMMAND" >done</B > delineate the <I CLASS="FIRSTTERM" >for-loop</I > command block. However, these may, in certain contexts, be omitted by framing the command block within <A HREF="special-chars.html#CODEBLOCKREF" >curly brackets</A > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 for((n=1; n<=10; n++)) 2 # No do! 3 { 4 echo -n "* $n *" 5 } 6 # No done! 7 8 9 # Outputs: 10 # * 1 ** 2 ** 3 ** 4 ** 5 ** 6 ** 7 ** 8 ** 9 ** 10 * 11 # And, echo $? returns 0, so Bash does not register an error. 12 13 14 echo 15 16 17 # But, note that in a classic for-loop: for n in [list] ... 18 #+ a terminal semicolon is required. 19 20 for n in 1 2 3 21 { echo -n "$n "; } 22 # ^ 23 24 25 # Thank you, YongYe, for pointing this out.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="WHILELOOPREF" ></A ><B CLASS="COMMAND" >while</B ></DT ><DD ><P >This construct tests for a condition at the top of a loop, and keeps looping as long as that condition is true (returns a <SPAN CLASS="RETURNVALUE" >0</SPAN > <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A >). In contrast to a <A HREF="loops.html#FORLOOPREF1" >for loop</A >, a <I CLASS="FIRSTTERM" >while loop</I > finds use in situations where the number of loop repetitions is not known beforehand.</P ><P ><P ><B CLASS="COMMAND" >while</B > [<TT CLASS="REPLACEABLE" ><I > condition </I ></TT >]<BR> do <BR> <TT CLASS="REPLACEABLE" ><I > command(s)</I ></TT >... <BR> done </P ></P ><P >The bracket construct in a <I CLASS="FIRSTTERM" >while loop</I > is nothing more than our old friend, the <A HREF="tests.html#TESTCONSTRUCTS1" >test brackets</A > used in an <I CLASS="FIRSTTERM" >if/then</I > test. In fact, a <I CLASS="FIRSTTERM" >while loop</I > can legally use the more versatile <A HREF="tests.html#DBLBRACKETS" >double-brackets construct</A > (while [[ condition ]]).</P ><P ><A NAME="WHILENEEDSEMI" ></A ></P ><P ><A HREF="loops.html#NEEDSEMICOLON" >As is the case with <I CLASS="FIRSTTERM" >for loops</I ></A >, placing the <I CLASS="FIRSTTERM" >do</I > on the same line as the condition test requires a semicolon.</P ><P ><P ><B CLASS="COMMAND" >while</B > [<TT CLASS="REPLACEABLE" ><I > condition </I ></TT >] ; do </P ></P ><P >Note that the <I CLASS="FIRSTTERM" >test brackets</I > <A HREF="loops.html#WHILENOBRACKETS" >are <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > mandatory</A > in a <I CLASS="FIRSTTERM" >while</I > loop. See, for example, the <A HREF="internal.html#GETOPTSX" >getopts construct</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX25" ></A ><P ><B >Example 11-15. Simple <I CLASS="FIRSTTERM" >while</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 var0=0 4 LIMIT=10 5 6 while [ "$var0" -lt "$LIMIT" ] 7 # ^ ^ 8 # Spaces, because these are "test-brackets" . . . 9 do 10 echo -n "$var0 " # -n suppresses newline. 11 # ^ Space, to separate printed out numbers. 12 13 var0=`expr $var0 + 1` # var0=$(($var0+1)) also works. 14 # var0=$((var0 + 1)) also works. 15 # let "var0 += 1" also works. 16 done # Various other methods also work. 17 18 echo 19 20 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX26" ></A ><P ><B >Example 11-16. Another <I CLASS="FIRSTTERM" >while</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo 4 # Equivalent to: 5 while [ "$var1" != "end" ] # while test "$var1" != "end" 6 do 7 echo "Input variable #1 (end to exit) " 8 read var1 # Not 'read $var1' (why?). 9 echo "variable #1 = $var1" # Need quotes because of "#" . . . 10 # If input is 'end', echoes it here. 11 # Does not test for termination condition until top of loop. 12 echo 13 done 14 15 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="WHMULTCOND" ></A ></P ><P >A <I CLASS="FIRSTTERM" >while loop</I > may have multiple conditions. Only the final condition determines when the loop terminates. This necessitates a slightly different loop syntax, however.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX26A" ></A ><P ><B >Example 11-17. <I CLASS="FIRSTTERM" >while</I > loop with multiple conditions</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 var1=unset 4 previous=$var1 5 6 while echo "previous-variable = $previous" 7 echo 8 previous=$var1 9 [ "$var1" != end ] # Keeps track of what $var1 was previously. 10 # Four conditions on *while*, but only the final one controls loop. 11 # The *last* exit status is the one that counts. 12 do 13 echo "Input variable #1 (end to exit) " 14 read var1 15 echo "variable #1 = $var1" 16 done 17 18 # Try to figure out how this all works. 19 # It's a wee bit tricky. 20 21 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="WLOOPCSTYLE" ></A ></P ><P >As with a <I CLASS="FIRSTTERM" >for loop</I >, a <I CLASS="FIRSTTERM" >while loop</I > may employ C-style syntax by using the double-parentheses construct (see also <A HREF="dblparens.html#CVARS" >Example 8-5</A >).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="WHLOOPC" ></A ><P ><B >Example 11-18. C-style syntax in a <I CLASS="FIRSTTERM" >while</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # wh-loopc.sh: Count to 10 in a "while" loop. 3 4 LIMIT=10 # 10 iterations. 5 a=1 6 7 while [ "$a" -le $LIMIT ] 8 do 9 echo -n "$a " 10 let "a+=1" 11 done # No surprises, so far. 12 13 echo; echo 14 15 # +=================================================================+ 16 17 # Now, we'll repeat with C-like syntax. 18 19 ((a = 1)) # a=1 20 # Double parentheses permit space when setting a variable, as in C. 21 22 while (( a <= LIMIT )) # Double parentheses, 23 do #+ and no "$" preceding variables. 24 echo -n "$a " 25 ((a += 1)) # let "a+=1" 26 # Yes, indeed. 27 # Double parentheses permit incrementing a variable with C-like syntax. 28 done 29 30 echo 31 32 # C and Java programmers can feel right at home in Bash. 33 34 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="WHILEFUNC" ></A ></P ><P > Inside its test brackets, a <I CLASS="FIRSTTERM" >while loop</I > can call a <A HREF="functions.html#FUNCTIONREF" >function</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 t=0 2 3 condition () 4 { 5 ((t++)) 6 7 if [ $t -lt 5 ] 8 then 9 return 0 # true 10 else 11 return 1 # false 12 fi 13 } 14 15 while condition 16 # ^^^^^^^^^ 17 # Function call -- four loop iterations. 18 do 19 echo "Still going: t = $t" 20 done 21 22 # Still going: t = 1 23 # Still going: t = 2 24 # Still going: t = 3 25 # Still going: t = 4</PRE ></TD ></TR ></TABLE > </P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN6856" ></A ><P ><A NAME="WHILENOBRACKETS" ></A ></P ><P >Similar to the <A HREF="tests.html#IFGREPREF" >if-test</A > construct, a <I CLASS="FIRSTTERM" >while</I > loop can omit the test brackets. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 while condition 2 do 3 command(s) ... 4 done</PRE ></TD ></TR ></TABLE ></P ></DIV ></TD ></TR ></TABLE ><P ><A NAME="WHILEREADREF2" ></A ></P ><P >By coupling the power of the <A HREF="internal.html#READREF" >read</A > command with a <I CLASS="FIRSTTERM" >while loop</I >, we get the handy <A HREF="internal.html#WHILEREADREF" >while read</A > construct, useful for reading and parsing files.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat $filename | # Supply input from a file. 2 while read line # As long as there is another line to read ... 3 do 4 ... 5 done 6 7 # =========== Snippet from "sd.sh" example script ========== # 8 9 while read value # Read one data point at a time. 10 do 11 rt=$(echo "scale=$SC; $rt + $value" | bc) 12 (( ct++ )) 13 done 14 15 am=$(echo "scale=$SC; $rt / $ct" | bc) 16 17 echo $am; return $ct # This function "returns" TWO values! 18 # Caution: This little trick will not work if $ct > 255! 19 # To handle a larger number of data points, 20 #+ simply comment out the "return $ct" above. 21 } <"$datafile" # Feed in data file.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="WHREDIR" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A <I CLASS="FIRSTTERM" >while loop</I > may have its <TT CLASS="FILENAME" >stdin</TT > <A HREF="redircb.html#REDIRREF" >redirected to a file</A > by a <SPAN CLASS="TOKEN" ><</SPAN > at its end.</P ><P >A <I CLASS="FIRSTTERM" >while loop</I > may have its <TT CLASS="FILENAME" >stdin</TT > <A HREF="internal.html#READPIPEREF" > supplied by a pipe</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="UNTILLOOPREF" ></A ><B CLASS="COMMAND" >until</B ></DT ><DD ><P >This construct tests for a condition at the top of a loop, and keeps looping as long as that condition is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >false</I ></SPAN > (opposite of <I CLASS="FIRSTTERM" >while loop</I >).</P ><P ><P ><B CLASS="COMMAND" >until</B > [<TT CLASS="REPLACEABLE" ><I > condition-is-true </I ></TT >]<BR> do <BR> <TT CLASS="REPLACEABLE" ><I > command(s)</I ></TT >... <BR> done </P ></P ><P >Note that an <I CLASS="FIRSTTERM" >until loop</I > tests for the terminating condition at the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >top</I ></SPAN > of the loop, differing from a similar construct in some programming languages.</P ><P >As is the case with <I CLASS="FIRSTTERM" >for loops</I >, placing the <I CLASS="FIRSTTERM" >do</I > on the same line as the condition test requires a semicolon.</P ><P ><P ><B CLASS="COMMAND" >until</B > [<TT CLASS="REPLACEABLE" ><I > condition-is-true </I ></TT >] ; do </P ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX27" ></A ><P ><B >Example 11-19. <I CLASS="FIRSTTERM" >until</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 END_CONDITION=end 4 5 until [ "$var1" = "$END_CONDITION" ] 6 # Tests condition here, at top of loop. 7 do 8 echo "Input variable #1 " 9 echo "($END_CONDITION to exit)" 10 read var1 11 echo "variable #1 = $var1" 12 echo 13 done 14 15 # --- # 16 17 # As with "for" and "while" loops, 18 #+ an "until" loop permits C-like test constructs. 19 20 LIMIT=10 21 var=0 22 23 until (( var > LIMIT )) 24 do # ^^ ^ ^ ^^ No brackets, no $ prefixing variables. 25 echo -n "$var " 26 (( var++ )) 27 done # 0 1 2 3 4 5 6 7 8 9 10 28 29 30 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ></DL ></DIV ><P ><A NAME="CHOOSELOOP" ></A ></P ><P >How to choose between a <I CLASS="FIRSTTERM" >for</I > loop or a <I CLASS="FIRSTTERM" >while</I > loop or <I CLASS="FIRSTTERM" >until</I > loop? In <B CLASS="COMMAND" >C</B >, you would typically use a <I CLASS="FIRSTTERM" >for</I > loop when the number of loop iterations is known beforehand. With <I CLASS="FIRSTTERM" >Bash</I >, however, the situation is fuzzier. The Bash <I CLASS="FIRSTTERM" >for</I > loop is more loosely structured and more flexible than its equivalent in other languages. Therefore, feel free to use whatever type of loop gets the job done in the simplest way.</P ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN6560" HREF="loops.html#AEN6560" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="ITERATIONREF" ></A ><I CLASS="FIRSTTERM" >Iteration</I >: Repeated execution of a command or group of commands, usually -- but not always, <I CLASS="FIRSTTERM" >while</I > a given condition holds, or <I CLASS="FIRSTTERM" >until</I > a given condition is met.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="parameter-substitution.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="nestedloops.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Parameter Substitution</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part3.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Nested Loops</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/manipulatingvars.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Manipulating Variables</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Beyond the Basics" HREF="part3.html"><LINK REL="PREVIOUS" TITLE="$RANDOM: generate random integer" HREF="randomvar.html"><LINK REL="NEXT" TITLE="Parameter Substitution" HREF="parameter-substitution.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="randomvar.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="parameter-substitution.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="MANIPULATINGVARS" ></A >Chapter 10. Manipulating Variables</H1 ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="STRING-MANIPULATION" ></A >10.1. Manipulating Strings</H1 ><P ><A NAME="STRINGMANIP" ></A ></P ><P >Bash supports a surprising number of string manipulation operations. Unfortunately, these tools lack a unified focus. Some are a subset of <A HREF="parameter-substitution.html#PARAMSUBREF" >parameter substitution</A >, and others fall under the functionality of the UNIX <A HREF="moreadv.html#EXPRREF" >expr</A > command. This results in inconsistent command syntax and overlap of functionality, not to mention confusion.</P ><DIV CLASS="VARIABLELIST" ><P ><B >String Length</B ></P ><DL ><DT >${#string}</DT ><DD ><P ></P ></DD ><DT >expr length $string</DT ><DD ><P ><A NAME="STRLEN" ></A >These are the equivalent of <I CLASS="FIRSTTERM" >strlen()</I > in <I CLASS="FIRSTTERM" >C</I >.</P ></DD ><DT >expr "$string" : '.*'</DT ><DD ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 3 echo ${#stringZ} # 15 4 echo `expr length $stringZ` # 15 5 echo `expr "$stringZ" : '.*'` # 15</PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="PARAGRAPHSPACE" ></A ><P ><B >Example 10-1. Inserting a blank line between paragraphs in a text file</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # paragraph-space.sh 3 # Ver. 2.1, Reldate 29Jul12 [fixup] 4 5 # Inserts a blank line between paragraphs of a single-spaced text file. 6 # Usage: $0 <FILENAME 7 8 MINLEN=60 # Change this value? It's a judgment call. 9 # Assume lines shorter than $MINLEN characters ending in a period 10 #+ terminate a paragraph. See exercises below. 11 12 while read line # For as many lines as the input file has ... 13 do 14 echo "$line" # Output the line itself. 15 16 len=${#line} 17 if [[ "$len" -lt "$MINLEN" && "$line" =~ [*{\.}]$ ]] 18 # if [[ "$len" -lt "$MINLEN" && "$line" =~ \[*\.\] ]] 19 # An update to Bash broke the previous version of this script. Ouch! 20 # Thank you, Halim Srama, for pointing this out and suggesting a fix. 21 then echo # Add a blank line immediately 22 fi #+ after a short line terminated by a period. 23 done 24 25 exit 26 27 # Exercises: 28 # --------- 29 # 1) The script usually inserts a blank line at the end 30 #+ of the target file. Fix this. 31 # 2) Line 17 only considers periods as sentence terminators. 32 # Modify this to include other common end-of-sentence characters, 33 #+ such as ?, !, and ".</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="VARIABLELIST" ><P ><B >Length of Matching Substring at Beginning of String</B ></P ><DL ><DT ><A NAME="EXPRMATCH" ></A >expr match "$string" '$substring'</DT ><DD ><P ><TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > is a <A HREF="regexp.html#REGEXREF" >regular expression</A >.</P ></DD ><DT >expr "$string" : '$substring'</DT ><DD ><P ><TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > is a regular expression.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 # |------| 3 # 12345678 4 5 echo `expr match "$stringZ" 'abc[A-Z]*.2'` # 8 6 echo `expr "$stringZ" : 'abc[A-Z]*.2'` # 8</PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B >Index</B ></P ><DL ><DT ><A NAME="SUBSTRINGINDEX2" ></A >expr index $string $substring</DT ><DD ><P >Numerical position in $string of first character in $substring that matches.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 # 123456 ... 3 echo `expr index "$stringZ" C12` # 6 4 # C position. 5 6 echo `expr index "$stringZ" 1c` # 3 7 # 'c' (in #3 position) matches before '1'.</PRE ></TD ></TR ></TABLE ></P ><P >This is the near equivalent of <I CLASS="FIRSTTERM" >strchr()</I > in <I CLASS="FIRSTTERM" >C</I >.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B >Substring Extraction</B ></P ><DL ><DT ><A NAME="SUBSTREXTR01" ></A >${string:position}</DT ><DD ><P >Extracts substring from <TT CLASS="REPLACEABLE" ><I >$string</I ></TT > at <TT CLASS="REPLACEABLE" ><I >$position</I ></TT >.</P ><P >If the <TT CLASS="VARNAME" >$string</TT > parameter is <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >*</SPAN >"</SPAN > or <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >@</SPAN >"</SPAN >, then this extracts the <A HREF="variables2.html#POSPARAMREF" >positional parameters</A >, <A NAME="AEN5987" HREF="#FTN.AEN5987" >[1]</A > starting at <TT CLASS="VARNAME" >$position</TT >.</P ></DD ><DT ><A NAME="SUBSTREXTR02" ></A >${string:position:length}</DT ><DD ><P >Extracts <TT CLASS="REPLACEABLE" ><I >$length</I ></TT > characters of substring from <TT CLASS="REPLACEABLE" ><I >$string</I ></TT > at <TT CLASS="REPLACEABLE" ><I >$position</I ></TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 # 0123456789..... 3 # 0-based indexing. 4 5 echo ${stringZ:0} # abcABC123ABCabc 6 echo ${stringZ:1} # bcABC123ABCabc 7 echo ${stringZ:7} # 23ABCabc 8 9 echo ${stringZ:7:3} # 23A 10 # Three characters of substring. 11 12 13 14 # Is it possible to index from the right end of the string? 15 16 echo ${stringZ:-4} # abcABC123ABCabc 17 # Defaults to full string, as in ${parameter:-default}. 18 # However . . . 19 20 echo ${stringZ:(-4)} # Cabc 21 echo ${stringZ: -4} # Cabc 22 # Now, it works. 23 # Parentheses or added space "escape" the position parameter. 24 25 # Thank you, Dan Jacobson, for pointing this out.</PRE ></TD ></TR ></TABLE > </P ><P >The <I CLASS="FIRSTTERM" >position</I > and <I CLASS="FIRSTTERM" >length</I > arguments can be <SPAN CLASS="QUOTE" >"parameterized,"</SPAN > that is, represented as a variable, rather than as a numerical constant.</P ><P ><A NAME="RANDSTRING0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RANDSTRING" ></A ><P ><B >Example 10-2. Generating an 8-character <SPAN CLASS="QUOTE" >"random"</SPAN > string</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # rand-string.sh 3 # Generating an 8-character "random" string. 4 5 if [ -n "$1" ] # If command-line argument present, 6 then #+ then set start-string to it. 7 str0="$1" 8 else # Else use PID of script as start-string. 9 str0="$$" 10 fi 11 12 POS=2 # Starting from position 2 in the string. 13 LEN=8 # Extract eight characters. 14 15 str1=$( echo "$str0" | md5sum | md5sum ) 16 # Doubly scramble ^^^^^^ ^^^^^^ 17 #+ by piping and repiping to md5sum. 18 19 randstring="${str1:$POS:$LEN}" 20 # Can parameterize ^^^^ ^^^^ 21 22 echo "$randstring" 23 24 exit $? 25 26 # bozo$ ./rand-string.sh my-password 27 # 1bdd88c4 28 29 # No, this is is not recommended 30 #+ as a method of generating hack-proof passwords.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="SUBSTREXTRP" ></A ></P ><P >If the <TT CLASS="VARNAME" >$string</TT > parameter is <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >*</SPAN >"</SPAN > or <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >@</SPAN >"</SPAN >, then this extracts a maximum of <TT CLASS="VARNAME" >$length</TT > positional parameters, starting at <TT CLASS="VARNAME" >$position</TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo ${*:2} # Echoes second and following positional parameters. 2 echo ${@:2} # Same as above. 3 4 echo ${*:2:3} # Echoes three positional parameters, starting at second.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT >expr substr $string $position $length</DT ><DD ><P >Extracts <TT CLASS="REPLACEABLE" ><I >$length</I ></TT > characters from <TT CLASS="REPLACEABLE" ><I >$string</I ></TT > starting at <TT CLASS="REPLACEABLE" ><I >$position</I ></TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 # 123456789...... 3 # 1-based indexing. 4 5 echo `expr substr $stringZ 1 2` # ab 6 echo `expr substr $stringZ 4 3` # ABC</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="EXPRPAREN" ></A ></P ></DD ><DT >expr match "$string" '\($substring\)'</DT ><DD ><P >Extracts <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > at beginning of <TT CLASS="REPLACEABLE" ><I >$string</I ></TT >, where <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > is a <A HREF="regexp.html#REGEXREF" >regular expression</A >.</P ></DD ><DT >expr "$string" : '\($substring\)'</DT ><DD ><P >Extracts <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > at beginning of <TT CLASS="REPLACEABLE" ><I >$string</I ></TT >, where <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > is a regular expression.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 # ======= 3 4 echo `expr match "$stringZ" '\(.[b-c]*[A-Z]..[0-9]\)'` # abcABC1 5 echo `expr "$stringZ" : '\(.[b-c]*[A-Z]..[0-9]\)'` # abcABC1 6 echo `expr "$stringZ" : '\(.......\)'` # abcABC1 7 # All of the above forms give an identical result.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT >expr match "$string" '.*\($substring\)'</DT ><DD ><P >Extracts <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > at <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >end</I ></SPAN > of <TT CLASS="REPLACEABLE" ><I >$string</I ></TT >, where <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > is a regular expression.</P ></DD ><DT >expr "$string" : '.*\($substring\)'</DT ><DD ><P >Extracts <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > at <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >end</I ></SPAN > of <TT CLASS="REPLACEABLE" ><I >$string</I ></TT >, where <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > is a regular expression.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 # ====== 3 4 echo `expr match "$stringZ" '.*\([A-C][A-C][A-C][a-c]*\)'` # ABCabc 5 echo `expr "$stringZ" : '.*\(......\)'` # ABCabc</PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B >Substring Removal</B ></P ><DL ><DT >${string#substring}</DT ><DD ><P >Deletes shortest match of <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > from <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >front</I ></SPAN > of <TT CLASS="REPLACEABLE" ><I >$string</I ></TT >.</P ></DD ><DT >${string##substring}</DT ><DD ><P >Deletes longest match of <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > from <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >front</I ></SPAN > of <TT CLASS="REPLACEABLE" ><I >$string</I ></TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 # |----| shortest 3 # |----------| longest 4 5 echo ${stringZ#a*C} # 123ABCabc 6 # Strip out shortest match between 'a' and 'C'. 7 8 echo ${stringZ##a*C} # abc 9 # Strip out longest match between 'a' and 'C'. 10 11 12 13 # You can parameterize the substrings. 14 15 X='a*C' 16 17 echo ${stringZ#$X} # 123ABCabc 18 echo ${stringZ##$X} # abc 19 # As above.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT >${string%substring}</DT ><DD ><P >Deletes shortest match of <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > from <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >back</I ></SPAN > of <TT CLASS="REPLACEABLE" ><I >$string</I ></TT >.</P ><P >For example: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Rename all filenames in $PWD with "TXT" suffix to a "txt" suffix. 2 # For example, "file1.TXT" becomes "file1.txt" . . . 3 4 SUFF=TXT 5 suff=txt 6 7 for i in $(ls *.$SUFF) 8 do 9 mv -f $i ${i%.$SUFF}.$suff 10 # Leave unchanged everything *except* the shortest pattern match 11 #+ starting from the right-hand-side of the variable $i . . . 12 done ### This could be condensed into a "one-liner" if desired. 13 14 # Thank you, Rory Winston.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT >${string%%substring}</DT ><DD ><P >Deletes longest match of <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > from <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >back</I ></SPAN > of <TT CLASS="REPLACEABLE" ><I >$string</I ></TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 # || shortest 3 # |------------| longest 4 5 echo ${stringZ%b*c} # abcABC123ABCa 6 # Strip out shortest match between 'b' and 'c', from back of $stringZ. 7 8 echo ${stringZ%%b*c} # a 9 # Strip out longest match between 'b' and 'c', from back of $stringZ.</PRE ></TD ></TR ></TABLE > </P ><P >This operator is useful for generating filenames.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="CVT" ></A ><P ><B >Example 10-3. Converting graphic file formats, with filename change</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # cvt.sh: 3 # Converts all the MacPaint image files in a directory to "pbm" format. 4 5 # Uses the "macptopbm" binary from the "netpbm" package, 6 #+ which is maintained by Brian Henderson (bryanh@giraffe-data.com). 7 # Netpbm is a standard part of most Linux distros. 8 9 OPERATION=macptopbm 10 SUFFIX=pbm # New filename suffix. 11 12 if [ -n "$1" ] 13 then 14 directory=$1 # If directory name given as a script argument... 15 else 16 directory=$PWD # Otherwise use current working directory. 17 fi 18 19 # Assumes all files in the target directory are MacPaint image files, 20 #+ with a ".mac" filename suffix. 21 22 for file in $directory/* # Filename globbing. 23 do 24 filename=${file%.*c} # Strip ".mac" suffix off filename 25 #+ ('.*c' matches everything 26 #+ between '.' and 'c', inclusive). 27 $OPERATION $file > "$filename.$SUFFIX" 28 # Redirect conversion to new filename. 29 rm -f $file # Delete original files after converting. 30 echo "$filename.$SUFFIX" # Log what is happening to stdout. 31 done 32 33 exit 0 34 35 # Exercise: 36 # -------- 37 # As it stands, this script converts *all* the files in the current 38 #+ working directory. 39 # Modify it to work *only* on files with a ".mac" suffix. 40 41 42 43 # *** And here's another way to do it. *** # 44 45 #!/bin/bash 46 # Batch convert into different graphic formats. 47 # Assumes imagemagick installed (standard in most Linux distros). 48 49 INFMT=png # Can be tif, jpg, gif, etc. 50 OUTFMT=pdf # Can be tif, jpg, gif, pdf, etc. 51 52 for pic in *"$INFMT" 53 do 54 p2=$(ls "$pic" | sed -e s/\.$INFMT//) 55 # echo $p2 56 convert "$pic" $p2.$OUTFMT 57 done 58 59 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="RA2OGG" ></A ><P ><B >Example 10-4. Converting streaming audio files to <I CLASS="FIRSTTERM" >ogg</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ra2ogg.sh: Convert streaming audio files (*.ra) to ogg. 3 4 # Uses the "mplayer" media player program: 5 # http://www.mplayerhq.hu/homepage 6 # Uses the "ogg" library and "oggenc": 7 # http://www.xiph.org/ 8 # 9 # This script may need appropriate codecs installed, such as sipr.so ... 10 # Possibly also the compat-libstdc++ package. 11 12 13 OFILEPREF=${1%%ra} # Strip off the "ra" suffix. 14 OFILESUFF=wav # Suffix for wav file. 15 OUTFILE="$OFILEPREF""$OFILESUFF" 16 E_NOARGS=85 17 18 if [ -z "$1" ] # Must specify a filename to convert. 19 then 20 echo "Usage: `basename $0` [filename]" 21 exit $E_NOARGS 22 fi 23 24 25 ########################################################################## 26 mplayer "$1" -ao pcm:file=$OUTFILE 27 oggenc "$OUTFILE" # Correct file extension automatically added by oggenc. 28 ########################################################################## 29 30 rm "$OUTFILE" # Delete intermediate *.wav file. 31 # If you want to keep it, comment out above line. 32 33 exit $? 34 35 # Note: 36 # ---- 37 # On a Website, simply clicking on a *.ram streaming audio file 38 #+ usually only downloads the URL of the actual *.ra audio file. 39 # You can then use "wget" or something similar 40 #+ to download the *.ra file itself. 41 42 43 # Exercises: 44 # --------- 45 # As is, this script converts only *.ra filenames. 46 # Add flexibility by permitting use of *.ram and other filenames. 47 # 48 # If you're really ambitious, expand the script 49 #+ to do automatic downloads and conversions of streaming audio files. 50 # Given a URL, batch download streaming audio files (using "wget") 51 #+ and convert them on the fly.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="GETOPTSIMPLE1" ></A ></P ><P >A simple emulation of <A HREF="extmisc.html#GETOPTY" >getopt</A > using substring-extraction constructs.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="GETOPTSIMPLE" ></A ><P ><B >Example 10-5. Emulating <I CLASS="FIRSTTERM" >getopt</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # getopt-simple.sh 3 # Author: Chris Morgan 4 # Used in the ABS Guide with permission. 5 6 7 getopt_simple() 8 { 9 echo "getopt_simple()" 10 echo "Parameters are '$*'" 11 until [ -z "$1" ] 12 do 13 echo "Processing parameter of: '$1'" 14 if [ ${1:0:1} = '/' ] 15 then 16 tmp=${1:1} # Strip off leading '/' . . . 17 parameter=${tmp%%=*} # Extract name. 18 value=${tmp##*=} # Extract value. 19 echo "Parameter: '$parameter', value: '$value'" 20 eval $parameter=$value 21 fi 22 shift 23 done 24 } 25 26 # Pass all options to getopt_simple(). 27 getopt_simple $* 28 29 echo "test is '$test'" 30 echo "test2 is '$test2'" 31 32 exit 0 # See also, UseGetOpt.sh, a modified version of this script. 33 34 --- 35 36 sh getopt_example.sh /test=value1 /test2=value2 37 38 Parameters are '/test=value1 /test2=value2' 39 Processing parameter of: '/test=value1' 40 Parameter: 'test', value: 'value1' 41 Processing parameter of: '/test2=value2' 42 Parameter: 'test2', value: 'value2' 43 test is 'value1' 44 test2 is 'value2' 45 </PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B >Substring Replacement</B ></P ><DL ><DT ><A NAME="SUBSTRREPL00" ></A >${string/substring/replacement}</DT ><DD ><P > Replace first <I CLASS="FIRSTTERM" >match</I > of <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > with <TT CLASS="REPLACEABLE" ><I >$replacement</I ></TT >. <A NAME="AEN6164" HREF="#FTN.AEN6164" >[2]</A > </P ></DD ><DT ><A NAME="SUBSTRREPL01" ></A >${string//substring/replacement}</DT ><DD ><P >Replace all matches of <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > with <TT CLASS="REPLACEABLE" ><I >$replacement</I ></TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 3 echo ${stringZ/abc/xyz} # xyzABC123ABCabc 4 # Replaces first match of 'abc' with 'xyz'. 5 6 echo ${stringZ//abc/xyz} # xyzABC123ABCxyz 7 # Replaces all matches of 'abc' with # 'xyz'. 8 9 echo --------------- 10 echo "$stringZ" # abcABC123ABCabc 11 echo --------------- 12 # The string itself is not altered! 13 14 # Can the match and replacement strings be parameterized? 15 match=abc 16 repl=000 17 echo ${stringZ/$match/$repl} # 000ABC123ABCabc 18 # ^ ^ ^^^ 19 echo ${stringZ//$match/$repl} # 000ABC123ABC000 20 # Yes! ^ ^ ^^^ ^^^ 21 22 echo 23 24 # What happens if no $replacement string is supplied? 25 echo ${stringZ/abc} # ABC123ABCabc 26 echo ${stringZ//abc} # ABC123ABC 27 # A simple deletion takes place.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="SUBSTRREPL02" ></A >${string/#substring/replacement}</DT ><DD ><P >If <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > matches <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >front</I ></SPAN > end of <TT CLASS="REPLACEABLE" ><I >$string</I ></TT >, substitute <TT CLASS="REPLACEABLE" ><I >$replacement</I ></TT > for <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT >.</P ></DD ><DT ><A NAME="SUBSTRREPL03" ></A >${string/%substring/replacement}</DT ><DD ><P >If <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > matches <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >back</I ></SPAN > end of <TT CLASS="REPLACEABLE" ><I >$string</I ></TT >, substitute <TT CLASS="REPLACEABLE" ><I >$replacement</I ></TT > for <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 stringZ=abcABC123ABCabc 2 3 echo ${stringZ/#abc/XYZ} # XYZABC123ABCabc 4 # Replaces front-end match of 'abc' with 'XYZ'. 5 6 echo ${stringZ/%abc/XYZ} # abcABC123ABCXYZ 7 # Replaces back-end match of 'abc' with 'XYZ'.</PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="AWKSTRINGMANIP" ></A >10.1.1. Manipulating strings using awk</H2 ><P ><A NAME="AWKSTRINGMANIP2" ></A ></P ><P >A Bash script may invoke the string manipulation facilities of <A HREF="awk.html#AWKREF" >awk</A > as an alternative to using its built-in operations.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SUBSTRINGEX" ></A ><P ><B >Example 10-6. Alternate ways of extracting and locating substrings</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # substring-extraction.sh 3 4 String=23skidoo1 5 # 012345678 Bash 6 # 123456789 awk 7 # Note different string indexing system: 8 # Bash numbers first character of string as 0. 9 # Awk numbers first character of string as 1. 10 11 echo ${String:2:4} # position 3 (0-1-2), 4 characters long 12 # skid 13 14 # The awk equivalent of ${string:pos:length} is substr(string,pos,length). 15 echo | awk ' 16 { print substr("'"${String}"'",3,4) # skid 17 } 18 ' 19 # Piping an empty "echo" to awk gives it dummy input, 20 #+ and thus makes it unnecessary to supply a filename. 21 22 echo "----" 23 24 # And likewise: 25 26 echo | awk ' 27 { print index("'"${String}"'", "skid") # 3 28 } # (skid starts at position 3) 29 ' # The awk equivalent of "expr index" ... 30 31 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="STRFDISC" ></A >10.1.2. Further Reference</H2 ><P >For more on string manipulation in scripts, refer to <A HREF="parameter-substitution.html" >Section 10.2</A > and the <A HREF="moreadv.html#EXPEXTRSUB" >relevant section</A > of the <A HREF="moreadv.html#EXPRREF" >expr</A > command listing.</P ><P >Script examples: <OL TYPE="1" ><LI ><P ><A HREF="moreadv.html#EX45" >Example 16-9</A ></P ></LI ><LI ><P ><A HREF="parameter-substitution.html#LENGTH" >Example 10-9</A ></P ></LI ><LI ><P ><A HREF="parameter-substitution.html#PATTMATCHING" >Example 10-10</A ></P ></LI ><LI ><P ><A HREF="parameter-substitution.html#RFE" >Example 10-11</A ></P ></LI ><LI ><P ><A HREF="parameter-substitution.html#VARMATCH" >Example 10-13</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#INSERTIONSORT" >Example A-36</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#QKY" >Example A-41</A ></P ></LI ></OL > </P ></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN5987" HREF="manipulatingvars.html#AEN5987" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This applies to either command-line arguments or parameters passed to a <A HREF="functions.html#FUNCTIONREF" >function</A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN6164" HREF="manipulatingvars.html#AEN6164" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Note that <TT CLASS="REPLACEABLE" ><I >$substring</I ></TT > and <TT CLASS="REPLACEABLE" ><I >$replacement</I ></TT > may refer to either <I CLASS="FIRSTTERM" >literal strings</I > or <I CLASS="FIRSTTERM" >variables</I >, depending on context. See the first usage example.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="randomvar.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="parameter-substitution.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >$RANDOM: generate random integer</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part3.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Parameter Substitution</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/mathc.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Math Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="External Filters, Programs and Commands" HREF="external.html"><LINK REL="PREVIOUS" TITLE="Terminal Control Commands" HREF="terminalccmds.html"><LINK REL="NEXT" TITLE="Miscellaneous Commands" HREF="extmisc.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="terminalccmds.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 16. External Filters, Programs and Commands</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="extmisc.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="MATHC" ></A >16.8. Math Commands</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="MATHCOMMANDLISTING1" ></A ><SPAN CLASS="QUOTE" >"Doing the numbers"</SPAN ></B ></P ><DL ><DT ><A NAME="FACTORREF" ></A ><B CLASS="COMMAND" >factor</B ></DT ><DD ><P >Decompose an integer into prime factors.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >factor 27417</B ></TT > <TT CLASS="COMPUTEROUTPUT" >27417: 3 13 19 37</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="PRIMES2" ></A ><P ><B >Example 16-46. Generating prime numbers</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # primes2.sh 3 4 # Generating prime numbers the quick-and-easy way, 5 #+ without resorting to fancy algorithms. 6 7 CEILING=10000 # 1 to 10000 8 PRIME=0 9 E_NOTPRIME= 10 11 is_prime () 12 { 13 local factors 14 factors=( $(factor $1) ) # Load output of `factor` into array. 15 16 if [ -z "${factors[2]}" ] 17 # Third element of "factors" array: 18 #+ ${factors[2]} is 2nd factor of argument. 19 # If it is blank, then there is no 2nd factor, 20 #+ and the argument is therefore prime. 21 then 22 return $PRIME # 0 23 else 24 return $E_NOTPRIME # null 25 fi 26 } 27 28 echo 29 for n in $(seq $CEILING) 30 do 31 if is_prime $n 32 then 33 printf %5d $n 34 fi # ^ Five positions per number suffices. 35 done # For a higher $CEILING, adjust upward, as necessary. 36 37 echo 38 39 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="BCREF" ></A ><B CLASS="COMMAND" >bc</B ></DT ><DD ><P >Bash can't handle floating point calculations, and it lacks operators for certain important mathematical functions. Fortunately, <B CLASS="COMMAND" >bc</B > gallops to the rescue.</P ><P >Not just a versatile, arbitrary precision calculation utility, <B CLASS="COMMAND" >bc</B > offers many of the facilities of a programming language. It has a syntax vaguely resembling <B CLASS="COMMAND" >C</B >.</P ><P >Since it is a fairly well-behaved UNIX utility, and may therefore be used in a <A HREF="special-chars.html#PIPEREF" >pipe</A >, <B CLASS="COMMAND" >bc</B > comes in handy in scripts.</P ><P ><A NAME="BCTEMPLATE" ></A ></P ><P >Here is a simple template for using <B CLASS="COMMAND" >bc</B > to calculate a script variable. This uses <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="USERINPUT" ><B >variable=$(echo "OPTIONS; OPERATIONS" | bc)</B ></TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="MONTHLYPMT0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="MONTHLYPMT" ></A ><P ><B >Example 16-47. Monthly Payment on a Mortgage</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # monthlypmt.sh: Calculates monthly payment on a mortgage. 3 4 5 # This is a modification of code in the 6 #+ "mcalc" (mortgage calculator) package, 7 #+ by Jeff Schmidt 8 #+ and 9 #+ Mendel Cooper (yours truly, the ABS Guide author). 10 # http://www.ibiblio.org/pub/Linux/apps/financial/mcalc-1.6.tar.gz 11 12 echo 13 echo "Given the principal, interest rate, and term of a mortgage," 14 echo "calculate the monthly payment." 15 16 bottom=1.0 17 18 echo 19 echo -n "Enter principal (no commas) " 20 read principal 21 echo -n "Enter interest rate (percent) " # If 12%, enter "12", not ".12". 22 read interest_r 23 echo -n "Enter term (months) " 24 read term 25 26 27 interest_r=$(echo "scale=9; $interest_r/100.0" | bc) # Convert to decimal. 28 # ^^^^^^^^^^^^^^^^^ Divide by 100. 29 # "scale" determines how many decimal places. 30 31 interest_rate=$(echo "scale=9; $interest_r/12 + 1.0" | bc) 32 33 34 top=$(echo "scale=9; $principal*$interest_rate^$term" | bc) 35 # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 36 # Standard formula for figuring interest. 37 38 echo; echo "Please be patient. This may take a while." 39 40 let "months = $term - 1" 41 # ==================================================================== 42 for ((x=$months; x > 0; x--)) 43 do 44 bot=$(echo "scale=9; $interest_rate^$x" | bc) 45 bottom=$(echo "scale=9; $bottom+$bot" | bc) 46 # bottom = $(($bottom + $bot")) 47 done 48 # ==================================================================== 49 50 # -------------------------------------------------------------------- 51 # Rick Boivie pointed out a more efficient implementation 52 #+ of the above loop, which decreases computation time by 2/3. 53 54 # for ((x=1; x <= $months; x++)) 55 # do 56 # bottom=$(echo "scale=9; $bottom * $interest_rate + 1" | bc) 57 # done 58 59 60 # And then he came up with an even more efficient alternative, 61 #+ one that cuts down the run time by about 95%! 62 63 # bottom=`{ 64 # echo "scale=9; bottom=$bottom; interest_rate=$interest_rate" 65 # for ((x=1; x <= $months; x++)) 66 # do 67 # echo 'bottom = bottom * interest_rate + 1' 68 # done 69 # echo 'bottom' 70 # } | bc` # Embeds a 'for loop' within command substitution. 71 # -------------------------------------------------------------------------- 72 # On the other hand, Frank Wang suggests: 73 # bottom=$(echo "scale=9; ($interest_rate^$term-1)/($interest_rate-1)" | bc) 74 75 # Because . . . 76 # The algorithm behind the loop 77 #+ is actually a sum of geometric proportion series. 78 # The sum formula is e0(1-q^n)/(1-q), 79 #+ where e0 is the first element and q=e(n+1)/e(n) 80 #+ and n is the number of elements. 81 # -------------------------------------------------------------------------- 82 83 84 # let "payment = $top/$bottom" 85 payment=$(echo "scale=2; $top/$bottom" | bc) 86 # Use two decimal places for dollars and cents. 87 88 echo 89 echo "monthly payment = \$$payment" # Echo a dollar sign in front of amount. 90 echo 91 92 93 exit 0 94 95 96 # Exercises: 97 # 1) Filter input to permit commas in principal amount. 98 # 2) Filter input to permit interest to be entered as percent or decimal. 99 # 3) If you are really ambitious, 100 #+ expand this script to print complete amortization tables.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="BASE0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BASE" ></A ><P ><B >Example 16-48. Base Conversion</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 ########################################################################### 3 # Shellscript: base.sh - print number to different bases (Bourne Shell) 4 # Author : Heiner Steven (heiner.steven@odn.de) 5 # Date : 07-03-95 6 # Category : Desktop 7 # $Id: base.sh,v 1.2 2000/02/06 19:55:35 heiner Exp $ 8 # ==> Above line is RCS ID info. 9 ########################################################################### 10 # Description 11 # 12 # Changes 13 # 21-03-95 stv fixed error occuring with 0xb as input (0.2) 14 ########################################################################### 15 16 # ==> Used in ABS Guide with the script author's permission. 17 # ==> Comments added by ABS Guide author. 18 19 NOARGS=85 20 PN=`basename "$0"` # Program name 21 VER=`echo '$Revision: 1.2 $' | cut -d' ' -f2` # ==> VER=1.2 22 23 Usage () { 24 echo "$PN - print number to different bases, $VER (stv '95) 25 usage: $PN [number ...] 26 27 If no number is given, the numbers are read from standard input. 28 A number may be 29 binary (base 2) starting with 0b (i.e. 0b1100) 30 octal (base 8) starting with 0 (i.e. 014) 31 hexadecimal (base 16) starting with 0x (i.e. 0xc) 32 decimal otherwise (i.e. 12)" >&2 33 exit $NOARGS 34 } # ==> Prints usage message. 35 36 Msg () { 37 for i # ==> in [list] missing. Why? 38 do echo "$PN: $i" >&2 39 done 40 } 41 42 Fatal () { Msg "$@"; exit 66; } 43 44 PrintBases () { 45 # Determine base of the number 46 for i # ==> in [list] missing... 47 do # ==> so operates on command-line arg(s). 48 case "$i" in 49 0b*) ibase=2;; # binary 50 0x*|[a-f]*|[A-F]*) ibase=16;; # hexadecimal 51 0*) ibase=8;; # octal 52 [1-9]*) ibase=10;; # decimal 53 *) 54 Msg "illegal number $i - ignored" 55 continue;; 56 esac 57 58 # Remove prefix, convert hex digits to uppercase (bc needs this). 59 number=`echo "$i" | sed -e 's:^0[bBxX]::' | tr '[a-f]' '[A-F]'` 60 # ==> Uses ":" as sed separator, rather than "/". 61 62 # Convert number to decimal 63 dec=`echo "ibase=$ibase; $number" | bc` # ==> 'bc' is calculator utility. 64 case "$dec" in 65 [0-9]*) ;; # number ok 66 *) continue;; # error: ignore 67 esac 68 69 # Print all conversions in one line. 70 # ==> 'here document' feeds command list to 'bc'. 71 echo `bc <<! 72 obase=16; "hex="; $dec 73 obase=10; "dec="; $dec 74 obase=8; "oct="; $dec 75 obase=2; "bin="; $dec 76 ! 77 ` | sed -e 's: : :g' 78 79 done 80 } 81 82 while [ $# -gt 0 ] 83 # ==> Is a "while loop" really necessary here, 84 # ==>+ since all the cases either break out of the loop 85 # ==>+ or terminate the script. 86 # ==> (Above comment by Paulo Marcel Coelho Aragao.) 87 do 88 case "$1" in 89 --) shift; break;; 90 -h) Usage;; # ==> Help message. 91 -*) Usage;; 92 *) break;; # First number 93 esac # ==> Error checking for illegal input might be appropriate. 94 shift 95 done 96 97 if [ $# -gt 0 ] 98 then 99 PrintBases "$@" 100 else # Read from stdin. 101 while read line 102 do 103 PrintBases $line 104 done 105 fi 106 107 108 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="BCHEREDOC" ></A ></P ><P >An alternate method of invoking <B CLASS="COMMAND" >bc</B > involves using a <A HREF="here-docs.html#HEREDOCREF" >here document</A > embedded within a <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A > block. This is especially appropriate when a script needs to pass a list of options and commands to <B CLASS="COMMAND" >bc</B >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 variable=`bc << LIMIT_STRING 2 options 3 statements 4 operations 5 LIMIT_STRING 6 ` 7 8 ...or... 9 10 11 variable=$(bc << LIMIT_STRING 12 options 13 statements 14 operations 15 LIMIT_STRING 16 )</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ALTBC" ></A ><P ><B >Example 16-49. Invoking <I CLASS="FIRSTTERM" >bc</I > using a <I CLASS="FIRSTTERM" >here document</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Invoking 'bc' using command substitution 3 # in combination with a 'here document'. 4 5 6 var1=`bc << EOF 7 18.33 * 19.78 8 EOF 9 ` 10 echo $var1 # 362.56 11 12 13 # $( ... ) notation also works. 14 v1=23.53 15 v2=17.881 16 v3=83.501 17 v4=171.63 18 19 var2=$(bc << EOF 20 scale = 4 21 a = ( $v1 + $v2 ) 22 b = ( $v3 * $v4 ) 23 a * b + 15.35 24 EOF 25 ) 26 echo $var2 # 593487.8452 27 28 29 var3=$(bc -l << EOF 30 scale = 9 31 s ( 1.7 ) 32 EOF 33 ) 34 # Returns the sine of 1.7 radians. 35 # The "-l" option calls the 'bc' math library. 36 echo $var3 # .991664810 37 38 39 # Now, try it in a function... 40 hypotenuse () # Calculate hypotenuse of a right triangle. 41 { # c = sqrt( a^2 + b^2 ) 42 hyp=$(bc -l << EOF 43 scale = 9 44 sqrt ( $1 * $1 + $2 * $2 ) 45 EOF 46 ) 47 # Can't directly return floating point values from a Bash function. 48 # But, can echo-and-capture: 49 echo "$hyp" 50 } 51 52 hyp=$(hypotenuse 3.68 7.31) 53 echo "hypotenuse = $hyp" # 8.184039344 54 55 56 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="CANNONREF" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="CANNON" ></A ><P ><B >Example 16-50. Calculating PI</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # cannon.sh: Approximating PI by firing cannonballs. 3 4 # Author: Mendel Cooper 5 # License: Public Domain 6 # Version 2.2, reldate 13oct08. 7 8 # This is a very simple instance of a "Monte Carlo" simulation: 9 #+ a mathematical model of a real-life event, 10 #+ using pseudorandom numbers to emulate random chance. 11 12 # Consider a perfectly square plot of land, 10000 units on a side. 13 # This land has a perfectly circular lake in its center, 14 #+ with a diameter of 10000 units. 15 # The plot is actually mostly water, except for land in the four corners. 16 # (Think of it as a square with an inscribed circle.) 17 # 18 # We will fire iron cannonballs from an old-style cannon 19 #+ at the square. 20 # All the shots impact somewhere on the square, 21 #+ either in the lake or on the dry corners. 22 # Since the lake takes up most of the area, 23 #+ most of the shots will SPLASH! into the water. 24 # Just a few shots will THUD! into solid ground 25 #+ in the four corners of the square. 26 # 27 # If we take enough random, unaimed shots at the square, 28 #+ Then the ratio of SPLASHES to total shots will approximate 29 #+ the value of PI/4. 30 # 31 # The simplified explanation is that the cannon is actually 32 #+ shooting only at the upper right-hand quadrant of the square, 33 #+ i.e., Quadrant I of the Cartesian coordinate plane. 34 # 35 # 36 # Theoretically, the more shots taken, the better the fit. 37 # However, a shell script, as opposed to a compiled language 38 #+ with floating-point math built in, requires some compromises. 39 # This decreases the accuracy of the simulation. 40 41 42 DIMENSION=10000 # Length of each side of the plot. 43 # Also sets ceiling for random integers generated. 44 45 MAXSHOTS=1000 # Fire this many shots. 46 # 10000 or more would be better, but would take too long. 47 PMULTIPLIER=4.0 # Scaling factor. 48 49 declare -r M_PI=3.141592654 50 # Actual 9-place value of PI, for comparison purposes. 51 52 get_random () 53 { 54 SEED=$(head -n 1 /dev/urandom | od -N 1 | awk '{ print $2 }') 55 RANDOM=$SEED # From "seeding-random.sh" 56 #+ example script. 57 let "rnum = $RANDOM % $DIMENSION" # Range less than 10000. 58 echo $rnum 59 } 60 61 distance= # Declare global variable. 62 hypotenuse () # Calculate hypotenuse of a right triangle. 63 { # From "alt-bc.sh" example. 64 distance=$(bc -l << EOF 65 scale = 0 66 sqrt ( $1 * $1 + $2 * $2 ) 67 EOF 68 ) 69 # Setting "scale" to zero rounds down result to integer value, 70 #+ a necessary compromise in this script. 71 # It decreases the accuracy of this simulation. 72 } 73 74 75 # ========================================================== 76 # main() { 77 # "Main" code block, mimicking a C-language main() function. 78 79 # Initialize variables. 80 shots=0 81 splashes=0 82 thuds=0 83 Pi=0 84 error=0 85 86 while [ "$shots" -lt "$MAXSHOTS" ] # Main loop. 87 do 88 89 xCoord=$(get_random) # Get random X and Y coords. 90 yCoord=$(get_random) 91 hypotenuse $xCoord $yCoord # Hypotenuse of 92 #+ right-triangle = distance. 93 ((shots++)) 94 95 printf "#%4d " $shots 96 printf "Xc = %4d " $xCoord 97 printf "Yc = %4d " $yCoord 98 printf "Distance = %5d " $distance # Distance from 99 #+ center of lake 100 #+ -- the "origin" -- 101 #+ coordinate (0,0). 102 103 if [ "$distance" -le "$DIMENSION" ] 104 then 105 echo -n "SPLASH! " 106 ((splashes++)) 107 else 108 echo -n "THUD! " 109 ((thuds++)) 110 fi 111 112 Pi=$(echo "scale=9; $PMULTIPLIER*$splashes/$shots" | bc) 113 # Multiply ratio by 4.0. 114 echo -n "PI ~ $Pi" 115 echo 116 117 done 118 119 echo 120 echo "After $shots shots, PI looks like approximately $Pi" 121 # Tends to run a bit high, 122 #+ possibly due to round-off error and imperfect randomness of $RANDOM. 123 # But still usually within plus-or-minus 5% . . . 124 #+ a pretty fair rough approximation. 125 error=$(echo "scale=9; $Pi - $M_PI" | bc) 126 pct_error=$(echo "scale=2; 100.0 * $error / $M_PI" | bc) 127 echo -n "Deviation from mathematical value of PI = $error" 128 echo " ($pct_error% error)" 129 echo 130 131 # End of "main" code block. 132 # } 133 # ========================================================== 134 135 exit 0 136 137 # One might well wonder whether a shell script is appropriate for 138 #+ an application as complex and computation-intensive as a simulation. 139 # 140 # There are at least two justifications. 141 # 1) As a proof of concept: to show it can be done. 142 # 2) To prototype and test the algorithms before rewriting 143 #+ it in a compiled high-level language.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="contributed-scripts.html#STDDEV" >Example A-37</A >.</P ></DD ><DT ><A NAME="DCREF" ></A ><B CLASS="COMMAND" >dc</B ></DT ><DD ><P >The <B CLASS="COMMAND" >dc</B > (<B CLASS="COMMAND" >d</B >esk <B CLASS="COMMAND" >c</B >alculator) utility is <A HREF="variables2.html#STACKDEFREF" >stack-oriented</A > and uses RPN (<I CLASS="FIRSTTERM" >Reverse Polish Notation</I >). Like <B CLASS="COMMAND" >bc</B >, it has much of the power of a programming language.</P ><P >Similar to the procedure with <B CLASS="COMMAND" >bc</B >, <A HREF="internal.html#ECHOREF" >echo</A > a command-string to <B CLASS="COMMAND" >dc</B >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "[Printing a string ... ]P" | dc 2 # The P command prints the string between the preceding brackets. 3 4 # And now for some simple arithmetic. 5 echo "7 8 * p" | dc # 56 6 # Pushes 7, then 8 onto the stack, 7 #+ multiplies ("*" operator), then prints the result ("p" operator).</PRE ></TD ></TR ></TABLE > </P ><P >Most persons avoid <B CLASS="COMMAND" >dc</B >, because of its non-intuitive input and rather cryptic operators. Yet, it has its uses.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="HEXCONVERT" ></A ><P ><B >Example 16-51. Converting a decimal number to hexadecimal</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # hexconvert.sh: Convert a decimal number to hexadecimal. 3 4 E_NOARGS=85 # Command-line arg missing. 5 BASE=16 # Hexadecimal. 6 7 if [ -z "$1" ] 8 then # Need a command-line argument. 9 echo "Usage: $0 number" 10 exit $E_NOARGS 11 fi # Exercise: add argument validity checking. 12 13 14 hexcvt () 15 { 16 if [ -z "$1" ] 17 then 18 echo 0 19 return # "Return" 0 if no arg passed to function. 20 fi 21 22 echo ""$1" "$BASE" o p" | dc 23 # o sets radix (numerical base) of output. 24 # p prints the top of stack. 25 # For other options: 'man dc' ... 26 return 27 } 28 29 hexcvt "$1" 30 31 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Studying the <A HREF="external.html#INFOREF" >info</A > page for <B CLASS="COMMAND" >dc</B > is a painful path to understanding its intricacies. There seems to be a small, select group of <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >dc wizards</I ></SPAN > who delight in showing off their mastery of this powerful, but arcane utility.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "16i[q]sa[ln0=aln100%Pln100/snlbx]sbA0D68736142snlbxq" | dc</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Bash</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="GOLDENRATIO" ></A > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 dc <<< 10k5v1+2/p # 1.6180339887 2 # ^^^ Feed operations to dc using a Here String. 3 # ^^^ Pushes 10 and sets that as the precision (10k). 4 # ^^ Pushes 5 and takes its square root 5 # (5v, v = square root). 6 # ^^ Pushes 1 and adds it to the running total (1+). 7 # ^^ Pushes 2 and divides the running total by that (2/). 8 # ^ Pops and prints the result (p) 9 # The result is 1.6180339887 ... 10 # ... which happens to be the Pythagorean Golden Ratio, to 10 places.</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="FACTR" ></A ><P ><B >Example 16-52. Factoring</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # factr.sh: Factor a number 3 4 MIN=2 # Will not work for number smaller than this. 5 E_NOARGS=85 6 E_TOOSMALL=86 7 8 if [ -z $1 ] 9 then 10 echo "Usage: $0 number" 11 exit $E_NOARGS 12 fi 13 14 if [ "$1" -lt "$MIN" ] 15 then 16 echo "Number to factor must be $MIN or greater." 17 exit $E_TOOSMALL 18 fi 19 20 # Exercise: Add type checking (to reject non-integer arg). 21 22 echo "Factors of $1:" 23 # ------------------------------------------------------- 24 echo "$1[p]s2[lip/dli%0=1dvsr]s12sid2%0=13sidvsr[dli%0=\ 25 1lrli2+dsi!>.]ds.xd1<2" | dc 26 # ------------------------------------------------------- 27 # Above code written by Michel Charpentier <charpov@cs.unh.edu> 28 # (as a one-liner, here broken into two lines for display purposes). 29 # Used in ABS Guide with permission (thanks!). 30 31 exit 32 33 # $ sh factr.sh 270138 34 # 2 35 # 3 36 # 11 37 # 4093</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="AWKMATH" ></A ><B CLASS="COMMAND" >awk</B ></DT ><DD ><P >Yet another way of doing floating point math in a script is using <A HREF="awk.html#AWKREF" >awk's</A > built-in math functions in a <A HREF="wrapper.html#SHWRAPPER" >shell wrapper</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="HYPOT" ></A ><P ><B >Example 16-53. Calculating the hypotenuse of a triangle</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # hypotenuse.sh: Returns the "hypotenuse" of a right triangle. 3 # (square root of sum of squares of the "legs") 4 5 ARGS=2 # Script needs sides of triangle passed. 6 E_BADARGS=85 # Wrong number of arguments. 7 8 if [ $# -ne "$ARGS" ] # Test number of arguments to script. 9 then 10 echo "Usage: `basename $0` side_1 side_2" 11 exit $E_BADARGS 12 fi 13 14 15 AWKSCRIPT=' { printf( "%3.7f\n", sqrt($1*$1 + $2*$2) ) } ' 16 # command(s) / parameters passed to awk 17 18 19 # Now, pipe the parameters to awk. 20 echo -n "Hypotenuse of $1 and $2 = " 21 echo $1 $2 | awk "$AWKSCRIPT" 22 # ^^^^^^^^^^^^ 23 # An echo-and-pipe is an easy way of passing shell parameters to awk. 24 25 exit 26 27 # Exercise: Rewrite this script using 'bc' rather than awk. 28 # Which method is more intuitive?</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ></DL ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="terminalccmds.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="extmisc.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Terminal Control Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="external.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Miscellaneous Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/mirrorsites.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Download and Mirror Sites</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Revision History" HREF="revisionhistory.html"><LINK REL="NEXT" TITLE="To Do List" HREF="todolist.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="revisionhistory.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="todolist.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="MIRRORSITES" ></A >Appendix Q. Download and Mirror Sites</H1 ><P ><A NAME="WHERE_TARBALL" ></A ></P ><P >The latest update of this document, as an archived, <A HREF="filearchiv.html#BZIPREF" >bzip2-ed</A > <SPAN CLASS="QUOTE" >"tarball"</SPAN > including both the SGML source and rendered HTML, may be downloaded from the <A HREF="http://bash.deta.in/abs-guide-latest.tar.bz2" TARGET="_top" >author's home site</A >). A <A HREF="http://bash.deta.in/abs-guide.pdf" TARGET="_top" > pdf version</A > is also available (<A HREF="http://www.mediafire.com/file/xi34ape1bifcnlb/abs-guide.pdf" TARGET="_top" >mirror site</A >). There is likewise an <A HREF="http://bash.deta.in/abs-guide.epub" TARGET="_top" > epub version</A >, courtesy of Craig Barnes and Michael Satke. The <A HREF="http://bash.deta.in/Change.log" TARGET="_top" >change log</A > gives a detailed revision history. The <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >ABS Guide</I ></SPAN > even has <A HREF="http://freecode.com/projects/advancedbashscriptingguide/" TARGET="_top" > its own <TT CLASS="FILENAME" >freshmeat.net/freecode</TT > page</A > to keep track of major updates, user comments, and popularity ratings for the project.</P ><P >The legacy hosting site for this document is the <A HREF="http://www.tldp.org/LDP/abs/" TARGET="_top" >Linux Documentation Project</A >, which maintains many other Guides and HOWTOs as well.</P ><P >Many thanks to Ronny Bangsund for donating <A HREF="http://bash.deta.in/" TARGET="_top" >server space</A > to host this project.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="revisionhistory.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="todolist.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Revision History</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >To Do List</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/miscellany.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Miscellany</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Scripting With Style" HREF="scrstyle.html"><LINK REL="NEXT" TITLE="Shell Wrappers" HREF="wrapper.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="scrstyle.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="wrapper.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="MISCELLANY" ></A >Chapter 36. Miscellany</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Nobody really knows what the Bourne shell's grammar is. Even examination of the source code is little help.</I ></P ><P ><I >--Tom Duff</I ></P ></I ></TD ></TR ></TABLE ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="INTANDNONINT" ></A >36.1. Interactive and non-interactive shells and scripts</H1 ><P >An <I CLASS="FIRSTTERM" >interactive</I > shell reads commands from user input on a <TT CLASS="FILENAME" >tty</TT >. Among other things, such a shell reads startup files on activation, displays a prompt, and enables job control by default. The user can <I CLASS="FIRSTTERM" >interact</I > with the shell.</P ><P >A shell running a script is always a non-interactive shell. All the same, the script can still access its <TT CLASS="FILENAME" >tty</TT >. It is even possible to emulate an interactive shell in a script. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 MY_PROMPT='$ ' 3 while : 4 do 5 echo -n "$MY_PROMPT" 6 read line 7 eval "$line" 8 done 9 10 exit 0 11 12 # This example script, and much of the above explanation supplied by 13 # Stéphane Chazelas (thanks again).</PRE ></TD ></TR ></TABLE ></P ><P >Let us consider an <I CLASS="FIRSTTERM" >interactive</I > script to be one that requires input from the user, usually with <A HREF="internal.html#READREF" >read</A > statements (see <A HREF="internal.html#EX36" >Example 15-3</A >). <SPAN CLASS="QUOTE" >"Real life"</SPAN > is actually a bit messier than that. For now, assume an interactive script is bound to a tty, a script that a user has invoked from the console or an <I CLASS="FIRSTTERM" >xterm</I >.</P ><P >Init and startup scripts are necessarily non-interactive, since they must run without human intervention. Many administrative and system maintenance scripts are likewise non-interactive. Unvarying repetitive tasks cry out for automation by non-interactive scripts.</P ><P >Non-interactive scripts can run in the background, but interactive ones hang, waiting for input that never comes. Handle that difficulty by having an <B CLASS="COMMAND" >expect</B > script or embedded <A HREF="here-docs.html#HEREDOCREF" >here document</A > feed input to an interactive script running as a background job. In the simplest case, redirect a file to supply input to a <B CLASS="COMMAND" >read</B > statement (<B CLASS="COMMAND" >read variable <file</B >). These particular workarounds make possible general purpose scripts that run in either interactive or non-interactive modes.</P ><P >If a script needs to test whether it is running in an interactive shell, it is simply a matter of finding whether the <I CLASS="FIRSTTERM" >prompt</I > variable, <A HREF="variables2.html#PS1REF" >$PS1</A > is set. (If the user is being prompted for input, then the script needs to display a prompt.)</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ -z $PS1 ] # no prompt? 2 ### if [ -v PS1 ] # On Bash 4.2+ ... 3 then 4 # non-interactive 5 ... 6 else 7 # interactive 8 ... 9 fi</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="IITEST" ></A >Alternatively, the script can test for the presence of option <SPAN CLASS="QUOTE" >"i"</SPAN > in the <A HREF="variables2.html#FLPREF" >$-</A > flag.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 case $- in 2 *i*) # interactive shell 3 ;; 4 *) # non-interactive shell 5 ;; 6 # (Courtesy of "UNIX F.A.Q.," 1993)</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="II2TEST" ></A >However, John Lange describes an alternative method, using the <A HREF="fto.html#TERMTEST" ><SPAN CLASS="TOKEN" >-t</SPAN > <I CLASS="FIRSTTERM" >test</I > operator</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Test for a terminal! 2 3 fd=0 # stdin 4 5 # As we recall, the -t test option checks whether the stdin, [ -t 0 ], 6 #+ or stdout, [ -t 1 ], in a given script is running in a terminal. 7 if [ -t "$fd" ] 8 then 9 echo interactive 10 else 11 echo non-interactive 12 fi 13 14 15 # But, as John points out: 16 # if [ -t 0 ] works ... when you're logged in locally 17 # but fails when you invoke the command remotely via ssh. 18 # So for a true test you also have to test for a socket. 19 20 if [[ -t "$fd" || -p /dev/stdin ]] 21 then 22 echo interactive 23 else 24 echo non-interactive 25 fi</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Scripts may be forced to run in interactive mode with the <SPAN CLASS="TOKEN" >-i</SPAN > option or with a <TT CLASS="USERINPUT" ><B >#!/bin/bash -i</B ></TT > header. Be aware that this can cause erratic script behavior or show error messages even when no error is present.</P ></TD ></TR ></TABLE ></DIV ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="scrstyle.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="wrapper.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Scripting With Style</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Shell Wrappers</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/moreadv.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Complex Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="External Filters, Programs and Commands" HREF="external.html"><LINK REL="PREVIOUS" TITLE="External Filters, Programs and Commands" HREF="external.html"><LINK REL="NEXT" TITLE="Time / Date Commands" HREF="timedate.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="external.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 16. External Filters, Programs and Commands</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="timedate.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="MOREADV" ></A >16.2. Complex Commands</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="CCLISTING1" ></A >Commands for more advanced users</B ></P ><DL ><DT ><A NAME="FINDREF" ></A ><B CLASS="COMMAND" >find</B ></DT ><DD ><P ><A NAME="FINDREF0" ></A ></P ><P >-exec <TT CLASS="REPLACEABLE" ><I >COMMAND</I ></TT > \;</P ><P >Carries out <TT CLASS="REPLACEABLE" ><I >COMMAND</I ></TT > on each file that <B CLASS="COMMAND" >find</B > matches. The command sequence terminates with <SPAN CLASS="TOKEN" >;</SPAN > (the <SPAN CLASS="QUOTE" >";"</SPAN > is <A HREF="escapingsection.html#ESCP" >escaped</A > to make certain the shell passes it to <B CLASS="COMMAND" >find</B > literally, without interpreting it as a special character).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >find ~/ -name '*.txt'</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/home/bozo/.kde/share/apps/karm/karmdata.txt /home/bozo/misc/irmeyc.txt /home/bozo/test-scripts/1.txt</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="CURLYBRACKETSREF" ></A ></P ><P >If <TT CLASS="REPLACEABLE" ><I >COMMAND</I ></TT > contains <SPAN CLASS="TOKEN" >{}</SPAN >, then <B CLASS="COMMAND" >find</B > substitutes the full path name of the selected file for <SPAN CLASS="QUOTE" >"{}"</SPAN >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 find ~/ -name 'core*' -exec rm {} \; 2 # Removes all core dump files from user's home directory.</PRE ></TD ></TR ></TABLE > </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 find /home/bozo/projects -mtime -1 2 # ^ Note minus sign! 3 # Lists all files in /home/bozo/projects directory tree 4 #+ that were modified within the last day (current_day - 1). 5 # 6 find /home/bozo/projects -mtime 1 7 # Same as above, but modified *exactly* one day ago. 8 # 9 # mtime = last modification time of the target file 10 # ctime = last status change time (via 'chmod' or otherwise) 11 # atime = last access time 12 13 DIR=/home/bozo/junk_files 14 find "$DIR" -type f -atime +5 -exec rm {} \; 15 # ^ ^^ 16 # Curly brackets are placeholder for the path name output by "find." 17 # 18 # Deletes all files in "/home/bozo/junk_files" 19 #+ that have not been accessed in *at least* 5 days (plus sign ... +5). 20 # 21 # "-type filetype", where 22 # f = regular file 23 # d = directory 24 # l = symbolic link, etc. 25 # 26 # (The 'find' manpage and info page have complete option listings.)</PRE ></TD ></TR ></TABLE > </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 find /etc -exec grep '[0-9][0-9]*[.][0-9][0-9]*[.][0-9][0-9]*[.][0-9][0-9]*' {} \; 2 3 # Finds all IP addresses (xxx.xxx.xxx.xxx) in /etc directory files. 4 # There a few extraneous hits. Can they be filtered out? 5 6 # Possibly by: 7 8 find /etc -type f -exec cat '{}' \; | tr -c '.[:digit:]' '\n' \ 9 | grep '^[^.][^.]*\.[^.][^.]*\.[^.][^.]*\.[^.][^.]*$' 10 # 11 # [:digit:] is one of the character classes 12 #+ introduced with the POSIX 1003.2 standard. 13 14 # Thanks, Stéphane Chazelas. </PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="OPTION" >-exec</TT > option to <B CLASS="COMMAND" >find</B > should not be confused with the <A HREF="internal.html#EXECREF" >exec</A > shell builtin.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX57" ></A ><P ><B >Example 16-3. <I CLASS="FIRSTTERM" >Badname</I >, eliminate file names in current directory containing bad characters and <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A >.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # badname.sh 3 # Delete filenames in current directory containing bad characters. 4 5 for filename in * 6 do 7 badname=`echo "$filename" | sed -n /[\+\{\;\"\\\=\?~\(\)\<\>\&\*\|\$]/p` 8 # badname=`echo "$filename" | sed -n '/[+{;"\=?~()<>&*|$]/p'` also works. 9 # Deletes files containing these nasties: + { ; " \ = ? ~ ( ) < > & * | $ 10 # 11 rm $badname 2>/dev/null 12 # ^^^^^^^^^^^ Error messages deep-sixed. 13 done 14 15 # Now, take care of files containing all manner of whitespace. 16 find . -name "* *" -exec rm -f {} \; 17 # The path name of the file that _find_ finds replaces the "{}". 18 # The '\' ensures that the ';' is interpreted literally, as end of command. 19 20 exit 0 21 22 #--------------------------------------------------------------------- 23 # Commands below this line will not execute because of _exit_ command. 24 25 # An alternative to the above script: 26 find . -name '*[+{;"\\=?~()<>&*|$ ]*' -maxdepth 0 \ 27 -exec rm -f '{}' \; 28 # The "-maxdepth 0" option ensures that _find_ will not search 29 #+ subdirectories below $PWD. 30 31 # (Thanks, S.C.)</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="IDELETE" ></A ><P ><B >Example 16-4. Deleting a file by its <I CLASS="FIRSTTERM" >inode</I > number</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # idelete.sh: Deleting a file by its inode number. 3 4 # This is useful when a filename starts with an illegal character, 5 #+ such as ? or -. 6 7 ARGCOUNT=1 # Filename arg must be passed to script. 8 E_WRONGARGS=70 9 E_FILE_NOT_EXIST=71 10 E_CHANGED_MIND=72 11 12 if [ $# -ne "$ARGCOUNT" ] 13 then 14 echo "Usage: `basename $0` filename" 15 exit $E_WRONGARGS 16 fi 17 18 if [ ! -e "$1" ] 19 then 20 echo "File \""$1"\" does not exist." 21 exit $E_FILE_NOT_EXIST 22 fi 23 24 inum=`ls -i | grep "$1" | awk '{print $1}'` 25 # inum = inode (index node) number of file 26 # ----------------------------------------------------------------------- 27 # Every file has an inode, a record that holds its physical address info. 28 # ----------------------------------------------------------------------- 29 30 echo; echo -n "Are you absolutely sure you want to delete \"$1\" (y/n)? " 31 # The '-v' option to 'rm' also asks this. 32 read answer 33 case "$answer" in 34 [nN]) echo "Changed your mind, huh?" 35 exit $E_CHANGED_MIND 36 ;; 37 *) echo "Deleting file \"$1\".";; 38 esac 39 40 find . -inum $inum -exec rm {} \; 41 # ^^ 42 # Curly brackets are placeholder 43 #+ for text output by "find." 44 echo "File "\"$1"\" deleted!" 45 46 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The <B CLASS="COMMAND" >find</B > command also works without the <TT CLASS="OPTION" >-exec</TT > option.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Find suid root files. 3 # A strange suid file might indicate a security hole, 4 #+ or even a system intrusion. 5 6 directory="/usr/sbin" 7 # Might also try /sbin, /bin, /usr/bin, /usr/local/bin, etc. 8 permissions="+4000" # suid root (dangerous!) 9 10 11 for file in $( find "$directory" -perm "$permissions" ) 12 do 13 ls -ltF --author "$file" 14 done</PRE ></TD ></TR ></TABLE > </P ><P >See <A HREF="filearchiv.html#EX48" >Example 16-30</A >, <A HREF="special-chars.html#EX58" >Example 3-4</A >, and <A HREF="loops.html#FINDSTRING" >Example 11-10</A > for scripts using <B CLASS="COMMAND" >find</B >. Its <A HREF="external.html#MANREF" >manpage</A > provides more detail on this complex and powerful command.</P ></DD ><DT ><A NAME="XARGSREF" ></A ><B CLASS="COMMAND" >xargs</B ></DT ><DD ><P >A filter for feeding arguments to a command, and also a tool for assembling the commands themselves. It breaks a data stream into small enough chunks for filters and commands to process. Consider it as a powerful replacement for <A HREF="commandsub.html#BACKQUOTESREF" >backquotes</A >. In situations where <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A > fails with a <SPAN CLASS="ERRORNAME" >too many arguments</SPAN > error, substituting <B CLASS="COMMAND" >xargs</B > often works. <A NAME="AEN10465" HREF="#FTN.AEN10465" >[1]</A > Normally, <B CLASS="COMMAND" >xargs</B > reads from <TT CLASS="FILENAME" >stdin</TT > or from a pipe, but it can also be given the output of a file.</P ><P >The default command for <B CLASS="COMMAND" >xargs</B > is <A HREF="internal.html#ECHOREF" >echo</A >. This means that input piped to <B CLASS="COMMAND" >xargs</B > may have linefeeds and other whitespace characters stripped out.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 0 -rw-rw-r-- 1 bozo bozo 0 Jan 29 23:58 file1 -rw-rw-r-- 1 bozo bozo 0 Jan 29 23:58 file2</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l | xargs</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 0 -rw-rw-r-- 1 bozo bozo 0 Jan 29 23:58 file1 -rw-rw-r-- 1 bozo bozo 0 Jan...</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >find ~/mail -type f | xargs grep "Linux"</B ></TT > <TT CLASS="COMPUTEROUTPUT" >./misc:User-Agent: slrn/0.9.8.1 (Linux) ./sent-mail-jul-2005: hosted by the Linux Documentation Project. ./sent-mail-jul-2005: (Linux Documentation Project Site, rtf version) ./sent-mail-jul-2005: Subject: Criticism of Bozo's Windows/Linux article ./sent-mail-jul-2005: while mentioning that the Linux ext2/ext3 filesystem . . .</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><TT CLASS="USERINPUT" ><B >ls | xargs -p -l gzip</B ></TT > <A HREF="filearchiv.html#GZIPREF" >gzips</A > every file in current directory, one at a time, prompting before each operation.</P ><P ><A NAME="XARGSONEATATIME" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Note that <I CLASS="FIRSTTERM" >xargs</I > processes the arguments passed to it sequentially, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >one at a time</I ></SPAN >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >find /usr/bin | xargs file</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/usr/bin: directory /usr/bin/foomatic-ppd-options: perl script text executable . . .</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="XARGSLIMARGS" ></A ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >An interesting <I CLASS="FIRSTTERM" >xargs</I > option is <TT CLASS="OPTION" >-n <TT CLASS="REPLACEABLE" ><I >NN</I ></TT ></TT >, which limits to <TT CLASS="REPLACEABLE" ><I >NN</I ></TT > the number of arguments passed.</P ><P ><TT CLASS="USERINPUT" ><B >ls | xargs -n 8 echo</B ></TT > lists the files in the current directory in <TT CLASS="LITERAL" >8</TT > columns.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="XARGSWS" ></A ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Another useful option is <TT CLASS="OPTION" >-0</TT >, in combination with <TT CLASS="USERINPUT" ><B >find -print0</B ></TT > or <TT CLASS="USERINPUT" ><B >grep -lZ</B ></TT >. This allows handling arguments containing whitespace or quotes.</P ><P > <TT CLASS="USERINPUT" ><B >find / -type f -print0 | xargs -0 grep -liwZ GUI | xargs -0 rm -f</B ></TT > </P ><P > <TT CLASS="USERINPUT" ><B >grep -rliwZ GUI / | xargs -0 rm -f</B ></TT > </P ><P >Either of the above will remove any file containing <SPAN CLASS="QUOTE" >"GUI"</SPAN >. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >(Thanks, S.C.)</I ></SPAN ></P ><P >Or: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat /proc/"$pid"/"$OPTION" | xargs -0 echo 2 # Formats output: ^^^^^^^^^^^^^^^ 3 # From Han Holl's fixup of "get-commandline.sh" 4 #+ script in "/dev and /proc" chapter.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="XARGSMULTIPROCESS" ></A ></P ><P >The <TT CLASS="OPTION" >-P</TT > option to <I CLASS="FIRSTTERM" >xargs</I > permits running processes in parallel. This speeds up execution in a machine with a multicore CPU.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 ls *gif | xargs -t -n1 -P2 gif2png 4 # Converts all the gif images in current directory to png. 5 6 # Options: 7 # ======= 8 # -t Print command to stderr. 9 # -n1 At most 1 argument per command line. 10 # -P2 Run up to 2 processes simultaneously. 11 12 # Thank you, Roberto Polli, for the inspiration.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX41" ></A ><P ><B >Example 16-5. Logfile: Using <I CLASS="FIRSTTERM" >xargs</I > to monitor system log</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Generates a log file in current directory 4 # from the tail end of /var/log/messages. 5 6 # Note: /var/log/messages must be world readable 7 # if this script invoked by an ordinary user. 8 # #root chmod 644 /var/log/messages 9 10 LINES=5 11 12 ( date; uname -a ) >>logfile 13 # Time and machine name 14 echo ---------------------------------------------------------- >>logfile 15 tail -n $LINES /var/log/messages | xargs | fmt -s >>logfile 16 echo >>logfile 17 echo >>logfile 18 19 exit 0 20 21 # Note: 22 # ---- 23 # As Frank Wang points out, 24 #+ unmatched quotes (either single or double quotes) in the source file 25 #+ may give xargs indigestion. 26 # 27 # He suggests the following substitution for line 15: 28 # tail -n $LINES /var/log/messages | tr -d "\"'" | xargs | fmt -s >>logfile 29 30 31 32 # Exercise: 33 # -------- 34 # Modify this script to track changes in /var/log/messages at intervals 35 #+ of 20 minutes. 36 # Hint: Use the "watch" command. </PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="XARGSCURLYREF" ></A ></P ><P ><A HREF="moreadv.html#CURLYBRACKETSREF" >As in <B CLASS="COMMAND" >find</B ></A >, a curly bracket pair serves as a placeholder for replacement text.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX42" ></A ><P ><B >Example 16-6. Copying files in current directory to another</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # copydir.sh 3 4 # Copy (verbose) all files in current directory ($PWD) 5 #+ to directory specified on command-line. 6 7 E_NOARGS=85 8 9 if [ -z "$1" ] # Exit if no argument given. 10 then 11 echo "Usage: `basename $0` directory-to-copy-to" 12 exit $E_NOARGS 13 fi 14 15 ls . | xargs -i -t cp ./{} $1 16 # ^^ ^^ ^^ 17 # -t is "verbose" (output command-line to stderr) option. 18 # -i is "replace strings" option. 19 # {} is a placeholder for output text. 20 # This is similar to the use of a curly-bracket pair in "find." 21 # 22 # List the files in current directory (ls .), 23 #+ pass the output of "ls" as arguments to "xargs" (-i -t options), 24 #+ then copy (cp) these arguments ({}) to new directory ($1). 25 # 26 # The net result is the exact equivalent of 27 #+ cp * $1 28 #+ unless any of the filenames has embedded "whitespace" characters. 29 30 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="KILLBYNAME" ></A ><P ><B >Example 16-7. Killing processes by name</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # kill-byname.sh: Killing processes by name. 3 # Compare this script with kill-process.sh. 4 5 # For instance, 6 #+ try "./kill-byname.sh xterm" -- 7 #+ and watch all the xterms on your desktop disappear. 8 9 # Warning: 10 # ------- 11 # This is a fairly dangerous script. 12 # Running it carelessly (especially as root) 13 #+ can cause data loss and other undesirable effects. 14 15 E_BADARGS=66 16 17 if test -z "$1" # No command-line arg supplied? 18 then 19 echo "Usage: `basename $0` Process(es)_to_kill" 20 exit $E_BADARGS 21 fi 22 23 24 PROCESS_NAME="$1" 25 ps ax | grep "$PROCESS_NAME" | awk '{print $1}' | xargs -i kill {} 2&>/dev/null 26 # ^^ ^^ 27 28 # --------------------------------------------------------------- 29 # Notes: 30 # -i is the "replace strings" option to xargs. 31 # The curly brackets are the placeholder for the replacement. 32 # 2&>/dev/null suppresses unwanted error messages. 33 # 34 # Can grep "$PROCESS_NAME" be replaced by pidof "$PROCESS_NAME"? 35 # --------------------------------------------------------------- 36 37 exit $? 38 39 # The "killall" command has the same effect as this script, 40 #+ but using it is not quite as educational.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="WF2" ></A ><P ><B >Example 16-8. Word frequency analysis using <I CLASS="FIRSTTERM" >xargs</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # wf2.sh: Crude word frequency analysis on a text file. 3 4 # Uses 'xargs' to decompose lines of text into single words. 5 # Compare this example to the "wf.sh" script later on. 6 7 8 # Check for input file on command-line. 9 ARGS=1 10 E_BADARGS=85 11 E_NOFILE=86 12 13 if [ $# -ne "$ARGS" ] 14 # Correct number of arguments passed to script? 15 then 16 echo "Usage: `basename $0` filename" 17 exit $E_BADARGS 18 fi 19 20 if [ ! -f "$1" ] # Does file exist? 21 then 22 echo "File \"$1\" does not exist." 23 exit $E_NOFILE 24 fi 25 26 27 28 ##################################################### 29 cat "$1" | xargs -n1 | \ 30 # List the file, one word per line. 31 tr A-Z a-z | \ 32 # Shift characters to lowercase. 33 sed -e 's/\.//g' -e 's/\,//g' -e 's/ /\ 34 /g' | \ 35 # Filter out periods and commas, and 36 #+ change space between words to linefeed, 37 sort | uniq -c | sort -nr 38 # Finally remove duplicates, prefix occurrence count 39 #+ and sort numerically. 40 ##################################################### 41 42 # This does the same job as the "wf.sh" example, 43 #+ but a bit more ponderously, and it runs more slowly (why?). 44 45 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="EXPRREF" ></A ><TT CLASS="USERINPUT" ><B >expr</B ></TT ></DT ><DD ><P >All-purpose expression evaluator: Concatenates and evaluates the arguments according to the operation given (arguments must be separated by spaces). Operations may be arithmetic, comparison, string, or logical.</P ><DIV CLASS="VARIABLELIST" ><DL ><DT ><TT CLASS="USERINPUT" ><B >expr 3 + 5</B ></TT ></DT ><DD ><P >returns <TT CLASS="LITERAL" >8</TT ></P ></DD ><DT ><TT CLASS="USERINPUT" ><B >expr 5 % 3</B ></TT ></DT ><DD ><P >returns 2</P ></DD ><DT ><TT CLASS="USERINPUT" ><B >expr 1 / 0</B ></TT ></DT ><DD ><P >returns the error message, <SPAN CLASS="ERRORCODE" >expr: division by zero</SPAN ></P ><P >Illegal arithmetic operations not allowed.</P ></DD ><DT ><TT CLASS="USERINPUT" ><B >expr 5 \* 3</B ></TT ></DT ><DD ><P >returns 15</P ><P >The multiplication operator must be escaped when used in an arithmetic expression with <B CLASS="COMMAND" >expr</B >.</P ></DD ><DT ><TT CLASS="USERINPUT" ><B >y=`expr $y + 1`</B ></TT ></DT ><DD ><P >Increment a variable, with the same effect as <TT CLASS="USERINPUT" ><B >let y=y+1</B ></TT > and <TT CLASS="USERINPUT" ><B >y=$(($y+1))</B ></TT >. This is an example of <A HREF="arithexp.html#ARITHEXPREF" >arithmetic expansion</A >.</P ></DD ><DT ><A NAME="EXPEXTRSUB" ></A ><TT CLASS="USERINPUT" ><B >z=`expr substr $string $position $length`</B ></TT ></DT ><DD ><P >Extract substring of $length characters, starting at $position.</P ></DD ></DL ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX45" ></A ><P ><B >Example 16-9. Using <I CLASS="FIRSTTERM" >expr</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Demonstrating some of the uses of 'expr' 4 # ======================================= 5 6 echo 7 8 # Arithmetic Operators 9 # ---------- --------- 10 11 echo "Arithmetic Operators" 12 echo 13 a=`expr 5 + 3` 14 echo "5 + 3 = $a" 15 16 a=`expr $a + 1` 17 echo 18 echo "a + 1 = $a" 19 echo "(incrementing a variable)" 20 21 a=`expr 5 % 3` 22 # modulo 23 echo 24 echo "5 mod 3 = $a" 25 26 echo 27 echo 28 29 # Logical Operators 30 # ------- --------- 31 32 # Returns 1 if true, 0 if false, 33 #+ opposite of normal Bash convention. 34 35 echo "Logical Operators" 36 echo 37 38 x=24 39 y=25 40 b=`expr $x = $y` # Test equality. 41 echo "b = $b" # 0 ( $x -ne $y ) 42 echo 43 44 a=3 45 b=`expr $a \> 10` 46 echo 'b=`expr $a \> 10`, therefore...' 47 echo "If a > 10, b = 0 (false)" 48 echo "b = $b" # 0 ( 3 ! -gt 10 ) 49 echo 50 51 b=`expr $a \< 10` 52 echo "If a < 10, b = 1 (true)" 53 echo "b = $b" # 1 ( 3 -lt 10 ) 54 echo 55 # Note escaping of operators. 56 57 b=`expr $a \<= 3` 58 echo "If a <= 3, b = 1 (true)" 59 echo "b = $b" # 1 ( 3 -le 3 ) 60 # There is also a "\>=" operator (greater than or equal to). 61 62 63 echo 64 echo 65 66 67 68 # String Operators 69 # ------ --------- 70 71 echo "String Operators" 72 echo 73 74 a=1234zipper43231 75 echo "The string being operated upon is \"$a\"." 76 77 # length: length of string 78 b=`expr length $a` 79 echo "Length of \"$a\" is $b." 80 81 # index: position of first character in substring 82 # that matches a character in string 83 b=`expr index $a 23` 84 echo "Numerical position of first \"2\" in \"$a\" is \"$b\"." 85 86 # substr: extract substring, starting position & length specified 87 b=`expr substr $a 2 6` 88 echo "Substring of \"$a\", starting at position 2,\ 89 and 6 chars long is \"$b\"." 90 91 92 # The default behavior of the 'match' operations is to 93 #+ search for the specified match at the BEGINNING of the string. 94 # 95 # Using Regular Expressions ... 96 b=`expr match "$a" '[0-9]*'` # Numerical count. 97 echo Number of digits at the beginning of \"$a\" is $b. 98 b=`expr match "$a" '\([0-9]*\)'` # Note that escaped parentheses 99 # == == #+ trigger substring match. 100 echo "The digits at the beginning of \"$a\" are \"$b\"." 101 102 echo 103 104 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="IMPORTANT" ><TABLE CLASS="IMPORTANT" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/important.png" HSPACE="5" ALT="Important"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <A HREF="special-chars.html#NULLREF" >: (<I CLASS="FIRSTTERM" >null</I >)</A > operator can substitute for <B CLASS="COMMAND" >match</B >. For example, <TT CLASS="USERINPUT" ><B >b=`expr $a : [0-9]*`</B ></TT > is the exact equivalent of <TT CLASS="USERINPUT" ><B >b=`expr match $a [0-9]*`</B ></TT > in the above listing.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo 4 echo "String operations using \"expr \$string : \" construct" 5 echo "===================================================" 6 echo 7 8 a=1234zipper5FLIPPER43231 9 10 echo "The string being operated upon is \"`expr "$a" : '\(.*\)'`\"." 11 # Escaped parentheses grouping operator. == == 12 13 # *************************** 14 #+ Escaped parentheses 15 #+ match a substring 16 # *************************** 17 18 19 # If no escaped parentheses ... 20 #+ then 'expr' converts the string operand to an integer. 21 22 echo "Length of \"$a\" is `expr "$a" : '.*'`." # Length of string 23 24 echo "Number of digits at the beginning of \"$a\" is `expr "$a" : '[0-9]*'`." 25 26 # ------------------------------------------------------------------------- # 27 28 echo 29 30 echo "The digits at the beginning of \"$a\" are `expr "$a" : '\([0-9]*\)'`." 31 # == == 32 echo "The first 7 characters of \"$a\" are `expr "$a" : '\(.......\)'`." 33 # ===== == == 34 # Again, escaped parentheses force a substring match. 35 # 36 echo "The last 7 characters of \"$a\" are `expr "$a" : '.*\(.......\)'`." 37 # ==== end of string operator ^^ 38 # (In fact, means skip over one or more of any characters until specified 39 #+ substring found.) 40 41 echo 42 43 exit 0</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><P >The above script illustrates how <B CLASS="COMMAND" >expr</B > uses the <I CLASS="FIRSTTERM" >escaped parentheses -- \( ... \) --</I > grouping operator in tandem with <A HREF="regexp.html#REGEXREF" >regular expression</A > parsing to match a substring. Here is a another example, this time from <SPAN CLASS="QUOTE" >"real life."</SPAN > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Strip the whitespace from the beginning and end. 2 LRFDATE=`expr "$LRFDATE" : '[[:space:]]*\(.*\)[[:space:]]*$'` 3 4 # From Peter Knowles' "booklistgen.sh" script 5 #+ for converting files to Sony Librie/PRS-50X format. 6 # (http://booklistgensh.peterknowles.com)</PRE ></TD ></TR ></TABLE > </P ><P ><A HREF="wrapper.html#PERLREF" >Perl</A >, <A HREF="sedawk.html#SEDREF" >sed</A >, and <A HREF="awk.html#AWKREF" >awk</A > have far superior string parsing facilities. A short <B CLASS="COMMAND" >sed</B > or <B CLASS="COMMAND" >awk</B > <SPAN CLASS="QUOTE" >"subroutine"</SPAN > within a script (see <A HREF="wrapper.html" >Section 36.2</A >) is an attractive alternative to <B CLASS="COMMAND" >expr</B >.</P ><P >See <A HREF="manipulatingvars.html#STRING-MANIPULATION" >Section 10.1</A > for more on using <B CLASS="COMMAND" >expr</B > in string operations.</P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN10465" HREF="moreadv.html#AEN10465" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >And even when <I CLASS="FIRSTTERM" >xargs</I > is not strictly necessary, it can speed up execution of a command involving <A HREF="timedate.html#BATCHPROCREF" >batch-processing</A > of multiple files.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="external.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="timedate.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >External Filters, Programs and Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="external.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Time / Date Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/nestedifthen.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Nested if/then Condition Tests</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Tests" HREF="tests.html"><LINK REL="PREVIOUS" TITLE="Other Comparison Operators" HREF="comparison-ops.html"><LINK REL="NEXT" TITLE="Testing Your Knowledge of Tests" HREF="testtest.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="comparison-ops.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 7. Tests</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="testtest.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="NESTEDIFTHEN" ></A >7.4. Nested <TT CLASS="REPLACEABLE" ><I >if/then</I ></TT > Condition Tests</H1 ><P >Condition tests using the <TT CLASS="REPLACEABLE" ><I >if/then</I ></TT > construct may be nested. The net result is equivalent to using the <A HREF="operations.html#LOGOPS1" ><I CLASS="FIRSTTERM" >&&</I ></A > compound comparison operator.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 a=3 2 3 if [ "$a" -gt 0 ] 4 then 5 if [ "$a" -lt 5 ] 6 then 7 echo "The value of \"a\" lies somewhere between 0 and 5." 8 fi 9 fi 10 11 # Same result as: 12 13 if [ "$a" -gt 0 ] && [ "$a" -lt 5 ] 14 then 15 echo "The value of \"a\" lies somewhere between 0 and 5." 16 fi</PRE ></TD ></TR ></TABLE ></P ><P ><A HREF="bash2.html#CARDS" >Example 37-4</A > and <A HREF="system.html#BACKLIGHT" >Example 17-11</A > demonstrate nested <TT CLASS="REPLACEABLE" ><I >if/then</I ></TT > condition tests.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="comparison-ops.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="testtest.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Other Comparison Operators</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="tests.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Testing Your Knowledge of Tests</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/nestedloops.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Nested Loops</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Loops and Branches" HREF="loops.html"><LINK REL="PREVIOUS" TITLE="Loops and Branches" HREF="loops.html"><LINK REL="NEXT" TITLE="Loop Control" HREF="loopcontrol.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="loops.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 11. Loops and Branches</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="loopcontrol.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="NESTEDLOOPS" ></A >11.2. Nested Loops</H1 ><P >A <I CLASS="FIRSTTERM" >nested loop</I > is a loop within a loop, an inner loop within the body of an outer one. How this works is that the first pass of the outer loop triggers the inner loop, which executes to completion. Then the second pass of the outer loop triggers the inner loop again. This repeats until the outer loop finishes. Of course, a <I CLASS="FIRSTTERM" >break</I > within either the inner or outer loop would interrupt this process.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="NESTEDLOOP" ></A ><P ><B >Example 11-20. Nested Loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # nested-loop.sh: Nested "for" loops. 3 4 outer=1 # Set outer loop counter. 5 6 # Beginning of outer loop. 7 for a in 1 2 3 4 5 8 do 9 echo "Pass $outer in outer loop." 10 echo "---------------------" 11 inner=1 # Reset inner loop counter. 12 13 # =============================================== 14 # Beginning of inner loop. 15 for b in 1 2 3 4 5 16 do 17 echo "Pass $inner in inner loop." 18 let "inner+=1" # Increment inner loop counter. 19 done 20 # End of inner loop. 21 # =============================================== 22 23 let "outer+=1" # Increment outer loop counter. 24 echo # Space between output blocks in pass of outer loop. 25 done 26 # End of outer loop. 27 28 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See <A HREF="arrays.html#BUBBLE" >Example 27-11</A > for an illustration of nested <A HREF="loops.html#WHILELOOPREF" >while loops</A >, and <A HREF="arrays.html#EX68" >Example 27-13</A > to see a while loop nested inside an <A HREF="loops.html#UNTILLOOPREF" >until loop</A >.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="loops.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="loopcontrol.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Loops and Branches</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="loops.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Loop Control</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/networkprogramming.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Network Programming</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="/proc" HREF="procref1.html"><LINK REL="NEXT" TITLE="Of Zeros and Nulls" HREF="zeros.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="procref1.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="zeros.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="NETWORKPROGRAMMING" ></A >Chapter 30. Network Programming</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >The Net's a cross between an elephant and a white elephant sale: it never forgets, and it's always crap.</I ></P ><P ><I >--Nemo</I ></P ></I ></TD ></TR ></TABLE ><P >A Linux system has quite a number of tools for accessing, manipulating, and troubleshooting network connections. We can incorporate some of these tools into scripts -- scripts that expand our knowledge of networking, useful scripts that can facilitate the administration of a network.</P ><P ><A NAME="CGISCRIPT" ></A >Here is a simple CGI script that demonstrates connecting to a remote server.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="TESTCGI" ></A ><P ><B >Example 30-1. Print the server environment</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # test-cgi.sh 3 # by Michael Zick 4 # Used with permission 5 6 # May have to change the location for your site. 7 # (At the ISP's servers, Bash may not be in the usual place.) 8 # Other places: /usr/bin or /usr/local/bin 9 # Might even try it without any path in sha-bang. 10 11 # Disable filename globbing. 12 set -f 13 14 # Header tells browser what to expect. 15 echo Content-type: text/plain 16 echo 17 18 echo CGI/1.0 test script report: 19 echo 20 21 echo environment settings: 22 set 23 echo 24 25 echo whereis bash? 26 whereis bash 27 echo 28 29 30 echo who are we? 31 echo ${BASH_VERSINFO[*]} 32 echo 33 34 echo argc is $#. argv is "$*". 35 echo 36 37 # CGI/1.0 expected environment variables. 38 39 echo SERVER_SOFTWARE = $SERVER_SOFTWARE 40 echo SERVER_NAME = $SERVER_NAME 41 echo GATEWAY_INTERFACE = $GATEWAY_INTERFACE 42 echo SERVER_PROTOCOL = $SERVER_PROTOCOL 43 echo SERVER_PORT = $SERVER_PORT 44 echo REQUEST_METHOD = $REQUEST_METHOD 45 echo HTTP_ACCEPT = "$HTTP_ACCEPT" 46 echo PATH_INFO = "$PATH_INFO" 47 echo PATH_TRANSLATED = "$PATH_TRANSLATED" 48 echo SCRIPT_NAME = "$SCRIPT_NAME" 49 echo QUERY_STRING = "$QUERY_STRING" 50 echo REMOTE_HOST = $REMOTE_HOST 51 echo REMOTE_ADDR = $REMOTE_ADDR 52 echo REMOTE_USER = $REMOTE_USER 53 echo AUTH_TYPE = $AUTH_TYPE 54 echo CONTENT_TYPE = $CONTENT_TYPE 55 echo CONTENT_LENGTH = $CONTENT_LENGTH 56 57 exit 0 58 59 # Here document to give short instructions. 60 :<<-'_test_CGI_' 61 62 1) Drop this in your http://domain.name/cgi-bin directory. 63 2) Then, open http://domain.name/cgi-bin/test-cgi.sh. 64 65 _test_CGI_</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >For security purposes, it may be helpful to identify the IP addresses a computer is accessing.</P ><P ><A NAME="IPTABLES02" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="IPADDRESSES" ></A ><P ><B >Example 30-2. IP addresses</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ip-addresses.sh 3 # List the IP addresses your computer is connected to. 4 5 # Inspired by Greg Bledsoe's ddos.sh script, 6 # Linux Journal, 09 March 2011. 7 # URL: 8 # http://www.linuxjournal.com/content/back-dead-simple-bash-complex-ddos 9 # Greg licensed his script under the GPL2, 10 #+ and as a derivative, this script is likewise GPL2. 11 12 connection_type=TCP # Also try UDP. 13 field=2 # Which field of the output we're interested in. 14 no_match=LISTEN # Filter out records containing this. Why? 15 lsof_args=-ni # -i lists Internet-associated files. 16 # -n preserves numerical IP addresses. 17 # What happens without the -n option? Try it. 18 router="[0-9][0-9][0-9][0-9][0-9]->" 19 # Delete the router info. 20 21 lsof "$lsof_args" | grep $connection_type | grep -v "$no_match" | 22 awk '{print $9}' | cut -d : -f $field | sort | uniq | 23 sed s/"^$router"// 24 25 # Bledsoe's script assigns the output of a filtered IP list, 26 # (similar to lines 19-22, above) to a variable. 27 # He checks for multiple connections to a single IP address, 28 # then uses: 29 # 30 # iptables -I INPUT -s $ip -p tcp -j REJECT --reject-with tcp-reset 31 # 32 # ... within a 60-second delay loop to bounce packets from DDOS attacks. 33 34 35 # Exercise: 36 # -------- 37 # Use the 'iptables' command to extend this script 38 #+ to reject connection attempts from well-known spammer IP domains.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >More examples of network programming: <OL TYPE="1" ><LI ><P ><A HREF="devproc.html#NPREF" >Getting the time from <I CLASS="FIRSTTERM" >nist.gov</I ></A ></P ></LI ><LI ><P ><A HREF="devproc.html#NW001" >Downloading a URL</A ></P ></LI ><LI ><P ><A HREF="system.html#IPSCRIPT0" >A GRE tunnel</A ></P ></LI ><LI ><P ><A HREF="communications.html#PING0" >Checking if an Internet server is up</A ></P ></LI ><LI ><P ><A HREF="communications.html#ISSPAMMER" >Example 16-41</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#ISSPAMMER2" >Example A-28</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#WHX" >Example A-29</A ></P ></LI ><LI ><P ><A HREF="devproc.html#DEVTCP" >Example 29-1</A ></P ></LI ></OL > </P ><P >See also the <A HREF="system.html#NETWORKSYS1" >networking commands</A > in the <A HREF="system.html" >System and Administrative Commands</A > chapter and the <A HREF="communications.html" >communications commands</A > in the <A HREF="external.html" >External Filters, Programs and Commands</A > chapter.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="procref1.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="zeros.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><TT CLASS="FILENAME" >/proc</TT ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Of Zeros and Nulls</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/numerical-constants.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Numerical Constants</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Operations and Related Topics" HREF="operations.html"><LINK REL="PREVIOUS" TITLE="Operations and Related Topics" HREF="operations.html"><LINK REL="NEXT" TITLE="The Double-Parentheses Construct" HREF="dblparens.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="operations.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 8. Operations and Related Topics</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="dblparens.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="NUMERICAL-CONSTANTS" ></A >8.2. Numerical Constants</H1 ><P ><A NAME="NUMCONSTANTS" ></A >A shell script interprets a number as decimal (base 10), unless that number has a special prefix or notation. A number preceded by a <TT CLASS="REPLACEABLE" ><I >0</I ></TT > is <TT CLASS="REPLACEABLE" ><I >octal</I ></TT > (base 8). A number preceded by <TT CLASS="REPLACEABLE" ><I >0x</I ></TT > is <TT CLASS="REPLACEABLE" ><I >hexadecimal</I ></TT > (base 16). A number with an embedded <TT CLASS="REPLACEABLE" ><I >#</I ></TT > evaluates as <TT CLASS="REPLACEABLE" ><I >BASE#NUMBER</I ></TT > (with range and notational restrictions).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="NUMBERS" ></A ><P ><B >Example 8-4. Representation of numerical constants</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # numbers.sh: Representation of numbers in different bases. 3 4 # Decimal: the default 5 let "dec = 32" 6 echo "decimal number = $dec" # 32 7 # Nothing out of the ordinary here. 8 9 10 # Octal: numbers preceded by '0' (zero) 11 let "oct = 032" 12 echo "octal number = $oct" # 26 13 # Expresses result in decimal. 14 # --------- ------ -- ------- 15 16 17 # Hexadecimal: numbers preceded by '0x' or '0X' 18 let "hex = 0x32" 19 echo "hexadecimal number = $hex" # 50 20 21 echo $((0x9abc)) # 39612 22 # ^^ ^^ double-parentheses arithmetic expansion/evaluation 23 # Expresses result in decimal. 24 25 26 27 # Other bases: BASE#NUMBER 28 # BASE between 2 and 64. 29 # NUMBER must use symbols within the BASE range, see below. 30 31 32 let "bin = 2#111100111001101" 33 echo "binary number = $bin" # 31181 34 35 let "b32 = 32#77" 36 echo "base-32 number = $b32" # 231 37 38 let "b64 = 64#@_" 39 echo "base-64 number = $b64" # 4031 40 # This notation only works for a limited range (2 - 64) of ASCII characters. 41 # 10 digits + 26 lowercase characters + 26 uppercase characters + @ + _ 42 43 44 echo 45 46 echo $((36#zz)) $((2#10101010)) $((16#AF16)) $((53#1aA)) 47 # 1295 170 44822 3375 48 49 50 # Important note: 51 # -------------- 52 # Using a digit out of range of the specified base notation 53 #+ gives an error message. 54 55 let "bad_oct = 081" 56 # (Partial) error message output: 57 # bad_oct = 081: value too great for base (error token is "081") 58 # Octal numbers use only digits in the range 0 - 7. 59 60 exit $? # Exit value = 1 (error) 61 62 # Thanks, Rich Bartell and Stephane Chazelas, for clarification.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="operations.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="dblparens.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Operations and Related Topics</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="operations.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >The Double-Parentheses Construct</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/operations.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Operations and Related Topics</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Basics" HREF="part2.html"><LINK REL="PREVIOUS" TITLE="Testing Your Knowledge of Tests" HREF="testtest.html"><LINK REL="NEXT" TITLE="Numerical Constants" HREF="numerical-constants.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="testtest.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="numerical-constants.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="OPERATIONS" ></A >Chapter 8. Operations and Related Topics</H1 ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="OPS" ></A >8.1. Operators</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="ASNOP1" ></A >assignment</B ></P ><DL ><DT ><TT CLASS="REPLACEABLE" ><I >variable assignment</I ></TT ></DT ><DD ><P >Initializing or changing the value of a variable</P ></DD ><DT >=</DT ><DD ><P >All-purpose assignment operator, which works for both arithmetic and string assignments.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var=27 2 category=minerals # No spaces allowed after the "=".</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Do not confuse the <SPAN CLASS="QUOTE" >"="</SPAN > assignment operator with the <A HREF="comparison-ops.html#EQUALSIGNREF" >= test operator</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # = as a test operator 2 3 if [ "$string1" = "$string2" ] 4 then 5 command 6 fi 7 8 # if [ "X$string1" = "X$string2" ] is safer, 9 #+ to prevent an error message should one of the variables be empty. 10 # (The prepended "X" characters cancel out.)</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="AROPS1" ></A >arithmetic operators</B ></P ><DL ><DT ><SPAN CLASS="TOKEN" >+</SPAN ></DT ><DD ><P >plus</P ></DD ><DT ><SPAN CLASS="TOKEN" >-</SPAN ></DT ><DD ><P >minus</P ></DD ><DT ><SPAN CLASS="TOKEN" >*</SPAN ></DT ><DD ><P >multiplication</P ></DD ><DT ><SPAN CLASS="TOKEN" >/</SPAN ></DT ><DD ><P >division</P ></DD ><DT ><A NAME="EXPONENTIATIONREF" ></A ><SPAN CLASS="TOKEN" >**</SPAN ></DT ><DD ><P >exponentiation</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Bash, version 2.02, introduced the "**" exponentiation operator. 2 3 let "z=5**3" # 5 * 5 * 5 4 echo "z = $z" # z = 125</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="MODULOREF" ></A ><SPAN CLASS="TOKEN" >%</SPAN ></DT ><DD ><P >modulo, or mod (returns the <I CLASS="FIRSTTERM" >remainder</I > of an integer division operation)</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >expr 5 % 3</B ></TT > <TT CLASS="COMPUTEROUTPUT" >2</TT > </PRE ></TD ></TR ></TABLE > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >5/3 = 1, with remainder 2</I ></SPAN > </P ><P >This operator finds use in, among other things, generating numbers within a specific range (see <A HREF="randomvar.html#EX21" >Example 9-11</A > and <A HREF="randomvar.html#RANDOMTEST" >Example 9-15</A >) and formatting program output (see <A HREF="arrays.html#QFUNCTION" >Example 27-16</A > and <A HREF="contributed-scripts.html#COLLATZ" >Example A-6</A >). It can even be used to generate prime numbers, (see <A HREF="contributed-scripts.html#PRIMES" >Example A-15</A >). Modulo turns up surprisingly often in numerical recipes.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="GCD" ></A ><P ><B >Example 8-1. Greatest common divisor</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # gcd.sh: greatest common divisor 3 # Uses Euclid's algorithm 4 5 # The "greatest common divisor" (gcd) of two integers 6 #+ is the largest integer that will divide both, leaving no remainder. 7 8 # Euclid's algorithm uses successive division. 9 # In each pass, 10 #+ dividend <--- divisor 11 #+ divisor <--- remainder 12 #+ until remainder = 0. 13 # The gcd = dividend, on the final pass. 14 # 15 # For an excellent discussion of Euclid's algorithm, see 16 #+ Jim Loy's site, http://www.jimloy.com/number/euclids.htm. 17 18 19 # ------------------------------------------------------ 20 # Argument check 21 ARGS=2 22 E_BADARGS=85 23 24 if [ $# -ne "$ARGS" ] 25 then 26 echo "Usage: `basename $0` first-number second-number" 27 exit $E_BADARGS 28 fi 29 # ------------------------------------------------------ 30 31 32 gcd () 33 { 34 35 dividend=$1 # Arbitrary assignment. 36 divisor=$2 #! It doesn't matter which of the two is larger. 37 # Why not? 38 39 remainder=1 # If an uninitialized variable is used inside 40 #+ test brackets, an error message results. 41 42 until [ "$remainder" -eq 0 ] 43 do # ^^^^^^^^^^ Must be previously initialized! 44 let "remainder = $dividend % $divisor" 45 dividend=$divisor # Now repeat with 2 smallest numbers. 46 divisor=$remainder 47 done # Euclid's algorithm 48 49 } # Last $dividend is the gcd. 50 51 52 gcd $1 $2 53 54 echo; echo "GCD of $1 and $2 = $dividend"; echo 55 56 57 # Exercises : 58 # --------- 59 # 1) Check command-line arguments to make sure they are integers, 60 #+ and exit the script with an appropriate error message if not. 61 # 2) Rewrite the gcd () function to use local variables. 62 63 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="ARITHOPSCOMB" ></A ><SPAN CLASS="TOKEN" >+=</SPAN ></DT ><DD ><P ><I CLASS="FIRSTTERM" >plus-equal</I > (increment variable by a constant) <A NAME="AEN3907" HREF="#FTN.AEN3907" >[1]</A > </P ><P ><TT CLASS="USERINPUT" ><B >let "var += 5"</B ></TT > results in <TT CLASS="PARAMETER" ><I >var</I ></TT > being incremented by <TT CLASS="LITERAL" >5</TT >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >-=</SPAN ></DT ><DD ><P ><I CLASS="FIRSTTERM" >minus-equal</I > (decrement variable by a constant)</P ></DD ><DT ><SPAN CLASS="TOKEN" >*=</SPAN ></DT ><DD ><P ><I CLASS="FIRSTTERM" >times-equal</I > (multiply variable by a constant)</P ><P ><TT CLASS="USERINPUT" ><B >let "var *= 4"</B ></TT > results in <TT CLASS="PARAMETER" ><I >var</I ></TT > being multiplied by <TT CLASS="LITERAL" >4</TT >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >/=</SPAN ></DT ><DD ><P ><I CLASS="FIRSTTERM" >slash-equal</I > (divide variable by a constant)</P ></DD ><DT ><SPAN CLASS="TOKEN" >%=</SPAN ></DT ><DD ><P ><I CLASS="FIRSTTERM" >mod-equal</I > (<I CLASS="FIRSTTERM" >remainder</I > of dividing variable by a constant)</P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Arithmetic operators often occur in an <A HREF="moreadv.html#EXPRREF" >expr</A > or <A HREF="internal.html#LETREF" >let</A > expression.</I ></SPAN ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ARITHOPS" ></A ><P ><B >Example 8-2. Using Arithmetic Operations</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Counting to 11 in 10 different ways. 3 4 n=1; echo -n "$n " 5 6 let "n = $n + 1" # let "n = n + 1" also works. 7 echo -n "$n " 8 9 10 : $((n = $n + 1)) 11 # ":" necessary because otherwise Bash attempts 12 #+ to interpret "$((n = $n + 1))" as a command. 13 echo -n "$n " 14 15 (( n = n + 1 )) 16 # A simpler alternative to the method above. 17 # Thanks, David Lombard, for pointing this out. 18 echo -n "$n " 19 20 n=$(($n + 1)) 21 echo -n "$n " 22 23 : $[ n = $n + 1 ] 24 # ":" necessary because otherwise Bash attempts 25 #+ to interpret "$[ n = $n + 1 ]" as a command. 26 # Works even if "n" was initialized as a string. 27 echo -n "$n " 28 29 n=$[ $n + 1 ] 30 # Works even if "n" was initialized as a string. 31 #* Avoid this type of construct, since it is obsolete and nonportable. 32 # Thanks, Stephane Chazelas. 33 echo -n "$n " 34 35 # Now for C-style increment operators. 36 # Thanks, Frank Wang, for pointing this out. 37 38 let "n++" # let "++n" also works. 39 echo -n "$n " 40 41 (( n++ )) # (( ++n )) also works. 42 echo -n "$n " 43 44 : $(( n++ )) # : $(( ++n )) also works. 45 echo -n "$n " 46 47 : $[ n++ ] # : $[ ++n ] also works 48 echo -n "$n " 49 50 echo 51 52 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ></DL ></DIV ><P ><A NAME="INTVARREF" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Integer variables in older versions of Bash were signed <I CLASS="FIRSTTERM" >long</I > (32-bit) integers, in the range of -2147483648 to 2147483647. An operation that took a variable outside these limits gave an erroneous result.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo $BASH_VERSION # 1.14 2 3 a=2147483646 4 echo "a = $a" # a = 2147483646 5 let "a+=1" # Increment "a". 6 echo "a = $a" # a = 2147483647 7 let "a+=1" # increment "a" again, past the limit. 8 echo "a = $a" # a = -2147483648 9 # ERROR: out of range, 10 # + and the leftmost bit, the sign bit, 11 # + has been set, making the result negative.</PRE ></TD ></TR ></TABLE > </P ><P >As of version >= 2.05b, Bash supports 64-bit integers.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="NOFLOATINGPOINT" ></A ></P ><P >Bash does not understand floating point arithmetic. It treats numbers containing a decimal point as strings.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 a=1.5 2 3 let "b = $a + 1.3" # Error. 4 # t2.sh: let: b = 1.5 + 1.3: syntax error in expression 5 # (error token is ".5 + 1.3") 6 7 echo "b = $b" # b=1</PRE ></TD ></TR ></TABLE > </P ><P >Use <A HREF="mathc.html#BCREF" >bc</A > in scripts that that need floating point calculations or math library functions.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="FORMALPARA" ><P ><B >bitwise operators. </B >The bitwise operators seldom make an appearance in shell scripts. Their chief use seems to be manipulating and testing values read from ports or <A HREF="devproc.html#SOCKETREF" >sockets</A >. <SPAN CLASS="QUOTE" >"Bit flipping"</SPAN > is more relevant to compiled languages, such as C and C++, which provide direct access to system hardware. However, see <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >vladz's</I ></SPAN > ingenious use of bitwise operators in his <I CLASS="FIRSTTERM" >base64.sh</I > (<A HREF="contributed-scripts.html#BASE64" >Example A-54</A >) script. </P ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="BITWSOPS1" ></A >bitwise operators</B ></P ><DL ><DT ><SPAN CLASS="TOKEN" ><<</SPAN ></DT ><DD ><P >bitwise left shift (multiplies by <TT CLASS="LITERAL" >2</TT > for each shift position)</P ></DD ><DT ><SPAN CLASS="TOKEN" ><<=</SPAN ></DT ><DD ><P ><I CLASS="FIRSTTERM" >left-shift-equal</I ></P ><P ><TT CLASS="USERINPUT" ><B >let "var <<= 2"</B ></TT > results in <TT CLASS="PARAMETER" ><I >var</I ></TT > left-shifted <TT CLASS="LITERAL" >2</TT > bits (multiplied by <TT CLASS="LITERAL" >4</TT >)</P ></DD ><DT ><SPAN CLASS="TOKEN" >>></SPAN ></DT ><DD ><P >bitwise right shift (divides by <TT CLASS="LITERAL" >2</TT > for each shift position)</P ></DD ><DT ><SPAN CLASS="TOKEN" >>>=</SPAN ></DT ><DD ><P ><I CLASS="FIRSTTERM" >right-shift-equal</I > (inverse of <SPAN CLASS="TOKEN" ><<=</SPAN >)</P ></DD ><DT ><SPAN CLASS="TOKEN" >&</SPAN ></DT ><DD ><P >bitwise AND</P ></DD ><DT ><SPAN CLASS="TOKEN" >&=</SPAN ></DT ><DD ><P >bitwise <I CLASS="FIRSTTERM" >AND-equal</I ></P ></DD ><DT ><SPAN CLASS="TOKEN" >|</SPAN ></DT ><DD ><P >bitwise OR</P ></DD ><DT ><SPAN CLASS="TOKEN" >|=</SPAN ></DT ><DD ><P >bitwise <I CLASS="FIRSTTERM" >OR-equal</I ></P ></DD ><DT ><SPAN CLASS="TOKEN" >~</SPAN ></DT ><DD ><P >bitwise NOT</P ></DD ><DT ><SPAN CLASS="TOKEN" >^</SPAN ></DT ><DD ><P >bitwise XOR</P ></DD ><DT ><SPAN CLASS="TOKEN" >^=</SPAN ></DT ><DD ><P >bitwise <I CLASS="FIRSTTERM" >XOR-equal</I ></P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="LOGOPS1" ></A >logical (boolean) operators</B ></P ><DL ><DT ><SPAN CLASS="TOKEN" >!</SPAN ></DT ><DD ><P >NOT</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ ! -f $FILENAME ] 2 then 3 ...</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><SPAN CLASS="TOKEN" >&&</SPAN ></DT ><DD ><P >AND</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ $condition1 ] && [ $condition2 ] 2 # Same as: if [ $condition1 -a $condition2 ] 3 # Returns true if both condition1 and condition2 hold true... 4 5 if [[ $condition1 && $condition2 ]] # Also works. 6 # Note that && operator not permitted <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >inside brackets</I ></SPAN > 7 #+ of [ ... ] construct.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><SPAN CLASS="TOKEN" >&&</SPAN > may also be used, depending on context, in an <A HREF="list-cons.html#LISTCONSREF" >and list</A > to concatenate commands.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="ORREF" ></A ><SPAN CLASS="TOKEN" >||</SPAN ></DT ><DD ><P >OR</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ $condition1 ] || [ $condition2 ] 2 # Same as: if [ $condition1 -o $condition2 ] 3 # Returns true if either condition1 or condition2 holds true... 4 5 if [[ $condition1 || $condition2 ]] # Also works. 6 # Note that || operator not permitted <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >inside brackets</I ></SPAN > 7 #+ of a [ ... ] construct.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Bash tests the <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of each statement linked with a logical operator.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ANDOR" ></A ><P ><B >Example 8-3. Compound Condition Tests Using && and ||</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 a=24 4 b=47 5 6 if [ "$a" -eq 24 ] && [ "$b" -eq 47 ] 7 then 8 echo "Test #1 succeeds." 9 else 10 echo "Test #1 fails." 11 fi 12 13 # ERROR: if [ "$a" -eq 24 && "$b" -eq 47 ] 14 #+ attempts to execute ' [ "$a" -eq 24 ' 15 #+ and fails to finding matching ']'. 16 # 17 # Note: if [[ $a -eq 24 && $b -eq 24 ]] works. 18 # The double-bracket if-test is more flexible 19 #+ than the single-bracket version. 20 # (The "&&" has a different meaning in line 17 than in line 6.) 21 # Thanks, Stephane Chazelas, for pointing this out. 22 23 24 if [ "$a" -eq 98 ] || [ "$b" -eq 47 ] 25 then 26 echo "Test #2 succeeds." 27 else 28 echo "Test #2 fails." 29 fi 30 31 32 # The -a and -o options provide 33 #+ an alternative compound condition test. 34 # Thanks to Patrick Callahan for pointing this out. 35 36 37 if [ "$a" -eq 24 -a "$b" -eq 47 ] 38 then 39 echo "Test #3 succeeds." 40 else 41 echo "Test #3 fails." 42 fi 43 44 45 if [ "$a" -eq 98 -o "$b" -eq 47 ] 46 then 47 echo "Test #4 succeeds." 48 else 49 echo "Test #4 fails." 50 fi 51 52 53 a=rhino 54 b=crocodile 55 if [ "$a" = rhino ] && [ "$b" = crocodile ] 56 then 57 echo "Test #5 succeeds." 58 else 59 echo "Test #5 fails." 60 fi 61 62 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The <SPAN CLASS="TOKEN" >&&</SPAN > and <SPAN CLASS="TOKEN" >||</SPAN > operators also find use in an arithmetic context.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $(( 1 && 2 )) $((3 && 0)) $((4 || 0)) $((0 || 0))</B ></TT > <TT CLASS="COMPUTEROUTPUT" >1 0 1 0</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="MISCOP1" ></A >miscellaneous operators</B ></P ><DL ><DT ><A NAME="COMMAOP" ></A ><SPAN CLASS="TOKEN" >,</SPAN ></DT ><DD ><P >Comma operator</P ><P >The <B CLASS="COMMAND" >comma operator</B > chains together two or more arithmetic operations. All the operations are evaluated (with possible <I CLASS="FIRSTTERM" >side effects</I >. <A NAME="AEN4242" HREF="#FTN.AEN4242" >[2]</A > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 let "t1 = ((5 + 3, 7 - 1, 15 - 4))" 2 echo "t1 = $t1" ^^^^^^ # t1 = 11 3 # Here t1 is set to the result of the last operation. Why? 4 5 let "t2 = ((a = 9, 15 / 3))" # Set "a" and calculate "t2". 6 echo "t2 = $t2 a = $a" # t2 = 5 a = 9</PRE ></TD ></TR ></TABLE > </P ><P >The comma operator finds use mainly in <A HREF="loops.html#FORLOOPREF1" >for loops</A >. See <A HREF="loops.html#FORLOOPC" >Example 11-13</A >.</P ></DD ></DL ></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN3907" HREF="operations.html#AEN3907" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >In a different context, <B CLASS="COMMAND" >+=</B > can serve as a <I CLASS="FIRSTTERM" >string concatenation</I > operator. This can be useful for <A HREF="bashver3.html#PATHAPPEND" >modifying <I CLASS="FIRSTTERM" >environmental variables</I ></A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN4242" HREF="operations.html#AEN4242" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><I CLASS="FIRSTTERM" >Side effects</I > are, of course, unintended -- and usually undesirable -- consequences.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="testtest.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="numerical-constants.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Testing Your Knowledge of Tests</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part2.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Numerical Constants</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/opprecedence.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Operator Precedence</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Operations and Related Topics" HREF="operations.html"><LINK REL="PREVIOUS" TITLE="The Double-Parentheses Construct" HREF="dblparens.html"><LINK REL="NEXT" TITLE="Beyond the Basics" HREF="part3.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="dblparens.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 8. Operations and Related Topics</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="part3.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="OPPRECEDENCE" ></A >8.4. Operator Precedence</H1 ><P ><A NAME="OPPRECEDENCE1" ></A ></P ><P > In a script, operations execute in order of <I CLASS="FIRSTTERM" >precedence</I >: the higher precedence operations execute <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >before</I ></SPAN > the lower precedence ones. <A NAME="AEN4290" HREF="#FTN.AEN4290" >[1]</A > </P ><DIV CLASS="TABLE" ><HR><A NAME="AEN4294" ></A ><P ><B >Table 8-1. Operator Precedence</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Operator</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Meaning</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Comments</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" ></TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><B CLASS="COMMAND" >HIGHEST PRECEDENCE</B ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >var++ var--</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >post-increment, post-decrement</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="assortedtips.html#CSTYLE" >C-style</A > operators</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >++var --var</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >pre-increment, pre-decrement</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >! ~</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="special-chars.html#NOTREF" >negation</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >logical / bitwise, inverts sense of following operator</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >**</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="operations.html#EXPONENTIATIONREF" >exponentiation</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="operations.html#AROPS1" >arithmetic operation</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >* / %</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >multiplication, division, modulo</TD ><TD ALIGN="LEFT" VALIGN="TOP" >arithmetic operation</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >+ -</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >addition, subtraction</TD ><TD ALIGN="LEFT" VALIGN="TOP" >arithmetic operation</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" ><< >></TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >left, right shift</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="operations.html#BITWSOPS1" >bitwise</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-z -n</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >unary</I > comparison</TD ><TD ALIGN="LEFT" VALIGN="TOP" >string is/is-not <A HREF="comparison-ops.html#STRINGNULL" >null</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-e -f -t -x, etc.</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >unary</I > comparison</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="fto.html" >file-test</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >< -lt > -gt <= -le >= -ge</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >compound</I > comparison</TD ><TD ALIGN="LEFT" VALIGN="TOP" >string and integer</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-nt -ot -ef</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >compound</I > comparison</TD ><TD ALIGN="LEFT" VALIGN="TOP" >file-test</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >== -eq <A HREF="comparison-ops.html#NOTEQUAL" >!=</A > -ne</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >equality / inequality</TD ><TD ALIGN="LEFT" VALIGN="TOP" >test operators, string and integer</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >&</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >AND</TD ><TD ALIGN="LEFT" VALIGN="TOP" >bitwise</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >^</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >XOR</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >exclusive</I > OR, bitwise</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >|</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >OR</TD ><TD ALIGN="LEFT" VALIGN="TOP" >bitwise</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >&& -a</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >AND</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="operations.html#LOGOPS1" >logical</A >, <I CLASS="FIRSTTERM" >compound</I > comparison</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >|| -o</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >OR</TD ><TD ALIGN="LEFT" VALIGN="TOP" >logical, <I CLASS="FIRSTTERM" >compound</I > comparison</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >?:</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="special-chars.html#CSTRINARY" >trinary operator</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >C-style</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >=</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="varassignment.html#EQREF" >assignment</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >(do not confuse with equality <I CLASS="FIRSTTERM" >test</I >)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >*= /= %= += -= <<= >>= &=</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="operations.html#ARITHOPSCOMB" >combination assignment</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >times-equal, divide-equal, mod-equal, etc.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >,</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="operations.html#COMMAOP" >comma</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >links a sequence of operations</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" ></TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><B CLASS="COMMAND" >LOWEST PRECEDENCE</B ></TD ></TR ></TBODY ></TABLE ><HR></DIV ><P >In practice, all you really need to remember is the following:</P ><UL ><LI ><P >The <SPAN CLASS="QUOTE" >"My Dear Aunt Sally"</SPAN > mantra (<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >multiply, divide, add, subtract</I ></SPAN >) for the familiar <A HREF="operations.html#AROPS1" >arithmetic operations</A >.</P ></LI ><LI ><P >The <I CLASS="FIRSTTERM" >compound</I > logical operators, <B CLASS="COMMAND" >&&</B >, <B CLASS="COMMAND" >||</B >, <B CLASS="COMMAND" >-a</B >, and <B CLASS="COMMAND" >-o</B > have low precedence.</P ></LI ><LI ><P >The order of evaluation of equal-precedence operators is usually <I CLASS="FIRSTTERM" >left-to-right</I >.</P ></LI ></UL ><P >Now, let's utilize our knowledge of operator precedence to analyze a couple of lines from the <TT CLASS="FILENAME" >/etc/init.d/functions file</TT >, as found in the <I CLASS="FIRSTTERM" >Fedora Core</I > Linux distro.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 while [ -n "$remaining" -a "$retry" -gt 0 ]; do 2 3 # This looks rather daunting at first glance. 4 5 6 # Separate the conditions: 7 while [ -n "$remaining" -a "$retry" -gt 0 ]; do 8 # --condition 1-- ^^ --condition 2- 9 10 # If variable "$remaining" is not zero length 11 #+ AND (-a) 12 #+ variable "$retry" is greater-than zero 13 #+ then 14 #+ the [ expresion-within-condition-brackets ] returns success (0) 15 #+ and the while-loop executes an iteration. 16 # ============================================================== 17 # Evaluate "condition 1" and "condition 2" ***before*** 18 #+ ANDing them. Why? Because the AND (-a) has a lower precedence 19 #+ than the -n and -gt operators, 20 #+ and therefore gets evaluated *last*. 21 22 ################################################################# 23 24 if [ -f /etc/sysconfig/i18n -a -z "${NOLOCALE:-}" ] ; then 25 26 27 # Again, separate the conditions: 28 if [ -f /etc/sysconfig/i18n -a -z "${NOLOCALE:-}" ] ; then 29 # --condition 1--------- ^^ --condition 2----- 30 31 # If file "/etc/sysconfig/i18n" exists 32 #+ AND (-a) 33 #+ variable $NOLOCALE is zero length 34 #+ then 35 #+ the [ test-expresion-within-condition-brackets ] returns success (0) 36 #+ and the commands following execute. 37 # 38 # As before, the AND (-a) gets evaluated *last* 39 #+ because it has the lowest precedence of the operators within 40 #+ the test brackets. 41 # ============================================================== 42 # Note: 43 # ${NOLOCALE:-} is a parameter expansion that seems redundant. 44 # But, if $NOLOCALE has not been declared, it gets set to *null*, 45 #+ in effect declaring it. 46 # This makes a difference in some contexts.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >To avoid confusion or error in a complex sequence of test operators, break up the sequence into bracketed sections. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ "$v1" -gt "$v2" -o "$v1" -lt "$v2" -a -e "$filename" ] 2 # Unclear what's going on here... 3 4 if [[ "$v1" -gt "$v2" ]] || [[ "$v1" -lt "$v2" ]] && [[ -e "$filename" ]] 5 # Much better -- the condition tests are grouped in logical sections.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN4290" HREF="opprecedence.html#AEN4290" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><I CLASS="FIRSTTERM" >Precedence</I >, in this context, has approximately the same meaning as <I CLASS="FIRSTTERM" >priority</I ></P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="dblparens.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="part3.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >The Double-Parentheses Construct</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="operations.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Beyond the Basics</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/optimizations.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Optimizations</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Miscellany" HREF="miscellany.html"><LINK REL="PREVIOUS" TITLE="Colorizing Scripts" HREF="colorizing.html"><LINK REL="NEXT" TITLE="Assorted Tips" HREF="assortedtips.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="colorizing.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 36. Miscellany</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="assortedtips.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="OPTIMIZATIONS" ></A >36.6. Optimizations</H1 ><P >Most shell scripts are quick 'n dirty solutions to non-complex problems. As such, optimizing them for speed is not much of an issue. Consider the case, though, where a script carries out an important task, does it well, but runs too slowly. Rewriting it in a compiled language may not be a palatable option. The simplest fix would be to rewrite the parts of the script that slow it down. Is it possible to apply principles of code optimization even to a lowly shell script?</P ><P >Check the loops in the script. Time consumed by repetitive operations adds up quickly. If at all possible, remove time-consuming operations from within loops.</P ><P >Use <A HREF="internal.html#BUILTINREF" >builtin</A > commands in preference to system commands. Builtins execute faster and usually do not launch a subshell when invoked.</P ><P ><A NAME="CATABUSE" ></A ></P ><P >Avoid unnecessary commands, particularly in a <A HREF="special-chars.html#PIPEREF" >pipe</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat "$file" | grep "$word" 2 3 grep "$word" "$file" 4 5 # The above command-lines have an identical effect, 6 #+ but the second runs faster since it launches one fewer subprocess.</PRE ></TD ></TR ></TABLE > The <A HREF="external.html#CATREF" >cat</A > command seems especially prone to overuse in scripts.</P ><P ><A NAME="LCALL" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN20414" ></A ><P >Disabling certain Bash options can speed up scripts.</P ><P >As Erik Brandsberg points out:</P ><P >If you don't need <A HREF="bashver4.html#UNICODEREF" >Unicode</A > support, you can get potentially a 2x or more improvement in speed by simply setting the <TT CLASS="USERINPUT" ><B >LC_ALL</B ></TT > variable. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 export LC_ALL=C 2 3 [specifies the locale as ANSI C, 4 thereby disabling Unicode support] 5 6 [In an example script ...] 7 8 Without [Unicode support]: 9 erik@erik-desktop:~/capture$ time ./cap-ngrep.sh 10 live2.pcap > out.txt 11 12 real 0m20.483s 13 user 1m34.470s 14 sys 0m12.869s 15 16 With [Unicode support]: 17 erik@erik-desktop:~/capture$ time ./cap-ngrep.sh 18 live2.pcap > out.txt 19 20 real 0m50.232s 21 user 3m51.118s 22 sys 0m11.221s 23 24 A large part of the overhead that is optimized is, I believe, 25 regex match using [[ string =~ REGEX ]], 26 but it may help with other portions of the code as well. 27 I hadn't [seen it] mentioned that this optimization helped 28 with Bash, but I had seen it helped with "grep," 29 so why not try?</PRE ></TD ></TR ></TABLE ></P ></DIV ></TD ></TR ></TABLE ><P ><A NAME="OPTIMES" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Certain operators, notably <A HREF="moreadv.html#EXPRREF" >expr</A >, are very inefficient and might be replaced by <A HREF="dblparens.html" >double parentheses</A > arithmetic expansion. See <A HREF="contributed-scripts.html#TESTEXECTIME" >Example A-59</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 Math tests 2 3 math via $(( )) 4 real 0m0.294s 5 user 0m0.288s 6 sys 0m0.008s 7 8 math via expr: 9 real 1m17.879s # Much slower! 10 user 0m3.600s 11 sys 0m8.765s 12 13 math via let: 14 real 0m0.364s 15 user 0m0.372s 16 sys 0m0.000s</PRE ></TD ></TR ></TABLE ></P ><P ><A HREF="tests.html#IFTHEN" >Condition testing</A > constructs in scripts deserve close scrutiny. Substitute <A HREF="testbranch.html#CASEESAC1" >case</A > for <A HREF="tests.html#IFTHEN" >if-then</A > constructs and combine tests when possible, to minimize script execution time. Again, refer to <A HREF="contributed-scripts.html#TESTEXECTIME" >Example A-59</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 Test using "case" construct: 2 real 0m0.329s 3 user 0m0.320s 4 sys 0m0.000s 5 6 7 Test with if [], no quotes: 8 real 0m0.438s 9 user 0m0.432s 10 sys 0m0.008s 11 12 13 Test with if [], quotes: 14 real 0m0.476s 15 user 0m0.452s 16 sys 0m0.024s 17 18 19 Test with if [], using -eq: 20 real 0m0.457s 21 user 0m0.456s 22 sys 0m0.000s</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="ASSOCARRTST" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Erik Brandsberg recommends using <A HREF="bashver4.html#ASSOCARR" >associative arrays</A > in preference to conventional numeric-indexed arrays in most cases. When overwriting values in a numeric array, there is a significant performance penalty vs. associative arrays. Running a test script confirms this. See <A HREF="contributed-scripts.html#ASSOCARRTEST" >Example A-60</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 Assignment tests 2 3 Assigning a simple variable 4 real 0m0.418s 5 user 0m0.416s 6 sys 0m0.004s 7 8 Assigning a numeric index array entry 9 real 0m0.582s 10 user 0m0.564s 11 sys 0m0.016s 12 13 Overwriting a numeric index array entry 14 real 0m21.931s 15 user 0m21.913s 16 sys 0m0.016s 17 18 Linear reading of numeric index array 19 real 0m0.422s 20 user 0m0.416s 21 sys 0m0.004s 22 23 Assigning an associative array entry 24 real 0m1.800s 25 user 0m1.796s 26 sys 0m0.004s 27 28 Overwriting an associative array entry 29 real 0m1.798s 30 user 0m1.784s 31 sys 0m0.012s 32 33 Linear reading an associative array entry 34 real 0m0.420s 35 user 0m0.420s 36 sys 0m0.000s 37 38 Assigning a random number to a simple variable 39 real 0m0.402s 40 user 0m0.388s 41 sys 0m0.016s 42 43 Assigning a sparse numeric index array entry randomly into 64k cells 44 real 0m12.678s 45 user 0m12.649s 46 sys 0m0.028s 47 48 Reading sparse numeric index array entry 49 real 0m0.087s 50 user 0m0.084s 51 sys 0m0.000s 52 53 Assigning a sparse associative array entry randomly into 64k cells 54 real 0m0.698s 55 user 0m0.696s 56 sys 0m0.004s 57 58 Reading sparse associative index array entry 59 real 0m0.083s 60 user 0m0.084s 61 sys 0m0.000s</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><P >Use the <A HREF="timedate.html#TIMREF" >time</A > and <A HREF="internal.html#TIMESREF" >times</A > tools to profile computation-intensive commands. Consider rewriting time-critical code sections in C, or even in assembler.</P ><P >Try to minimize file I/O. Bash is not particularly efficient at handling files, so consider using more appropriate tools for this within the script, such as <A HREF="awk.html#AWKREF" >awk</A > or <A HREF="wrapper.html#PERLREF" >Perl</A >.</P ><P >Write your scripts in a modular and coherent form, <A NAME="AEN20452" HREF="#FTN.AEN20452" >[1]</A > so they can be reorganized and tightened up as necessary. Some of the optimization techniques applicable to high-level languages may work for scripts, but others, such as <I CLASS="FIRSTTERM" >loop unrolling</I >, are mostly irrelevant. Above all, use common sense.</P ><P >For an excellent demonstration of how optimization can dramatically reduce the execution time of a script, see <A HREF="mathc.html#MONTHLYPMT" >Example 16-47</A >.</P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN20452" HREF="optimizations.html#AEN20452" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This usually means liberal use of <A HREF="functions.html#FUNCTIONREF" >functions</A >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="colorizing.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="assortedtips.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><SPAN CLASS="QUOTE" >"Colorizing"</SPAN > Scripts</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Assorted Tips</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/options.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Options</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Debugging" HREF="debugging.html"><LINK REL="NEXT" TITLE="Gotchas" HREF="gotchas.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="debugging.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="gotchas.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="OPTIONS" ></A >Chapter 33. Options</H1 ><P ><A NAME="OPTIONSREF" ></A ></P ><P >Options are settings that change shell and/or script behavior.</P ><P >The <A HREF="internal.html#SETREF" >set</A > command enables options within a script. At the point in the script where you want the options to take effect, use <B CLASS="COMMAND" >set -o option-name</B > or, in short form, <B CLASS="COMMAND" >set -option-abbrev</B >. These two forms are equivalent.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 set -o verbose 4 # Echoes all commands before executing. 5 </PRE ></TD ></TR ></TABLE ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 set -v 4 # Exact same effect as above. 5 </PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >To <I CLASS="FIRSTTERM" >disable</I > an option within a script, use <B CLASS="COMMAND" >set +o option-name</B > or <B CLASS="COMMAND" >set +option-abbrev</B >.</P ></TD ></TR ></TABLE ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 set -o verbose 4 # Command echoing on. 5 command 6 ... 7 command 8 9 set +o verbose 10 # Command echoing off. 11 command 12 # Not echoed. 13 14 15 set -v 16 # Command echoing on. 17 command 18 ... 19 command 20 21 set +v 22 # Command echoing off. 23 command 24 25 exit 0 26 </PRE ></TD ></TR ></TABLE ></P ><P >An alternate method of enabling options in a script is to specify them immediately following the <TT CLASS="REPLACEABLE" ><I >#!</I ></TT > script header.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash -x 2 # 3 # Body of script follows. 4 </PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="INVOCATIONOPTIONSREF" ></A ></P ><P >It is also possible to enable script options from the command line. Some options that will not work with <B CLASS="COMMAND" >set</B > are available this way. Among these are <TT CLASS="REPLACEABLE" ><I >-i</I ></TT >, force script to run interactive.</P ><P ><TT CLASS="USERINPUT" ><B >bash -v script-name</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >bash -o verbose script-name</B ></TT ></P ><P >The following is a listing of some useful options. They may be specified in either abbreviated form (preceded by a single dash) or by complete name (preceded by a <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >double</I ></SPAN > dash or by <TT CLASS="OPTION" >-o</TT >).</P ><P ><A NAME="OPTIONSTABLE" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN19601" ></A ><P ><B >Table 33-1. Bash options</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Abbreviation</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Name</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Effect</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-B</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >brace expansion</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Enable</I ></SPAN > <A HREF="special-chars.html#BRACEEXPREF" >brace expansion</A > (default setting = <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >on</I ></SPAN >)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >+B</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >brace expansion</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Disable</I ></SPAN > brace expansion</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><A NAME="NOCLOBBERREF" ></A ><TT CLASS="OPTION" >-C</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >noclobber</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Prevent overwriting of files by redirection (may be overridden by <SPAN CLASS="TOKEN" >>|</SPAN >)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-D</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >(none)</TD ><TD ALIGN="LEFT" VALIGN="TOP" >List double-quoted strings prefixed by <SPAN CLASS="TOKEN" >$</SPAN >, but do not execute commands in script</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-a</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >allexport</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Export all defined variables</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-b</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >notify</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Notify when jobs running in background terminate (not of much use in a script)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-c ...</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >(none)</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Read commands from <B CLASS="COMMAND" >...</B ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >checkjobs</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" >Informs user of any open <A HREF="internal.html#JOBSREF" >jobs</A > upon shell exit. Introduced in <A HREF="bashver4.html#BASH4REF" >version 4</A > of Bash, and still <SPAN CLASS="QUOTE" >"experimental."</SPAN > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Usage:</I ></SPAN > shopt -s checkjobs (<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Caution:</I ></SPAN > may hang!)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-e</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >errexit</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Abort script at first error, when a command exits with non-zero status (except in <A HREF="loops.html#UNTILLOOPREF" >until</A > or <A HREF="loops.html#WHILELOOPREF" >while loops</A >, <A HREF="tests.html#TESTCONSTRUCTS1" >if-tests</A >, <A HREF="list-cons.html#LCONS1" >list constructs</A >)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-f</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >noglob</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Filename expansion (globbing) disabled</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >globstar</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="bashver4.html#GLOBSTARREF" ><I CLASS="FIRSTTERM" >globbing</I > star-match</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Enables the <SPAN CLASS="TOKEN" >**</SPAN > <A HREF="globbingref.html" >globbing</A > operator (<A HREF="bashver4.html#BASH4REF" >version 4+</A > of Bash). <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Usage:</I ></SPAN > shopt -s globstar</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-i</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >interactive</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Script runs in <I CLASS="FIRSTTERM" >interactive</I > mode</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-n</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >noexec</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Read commands in script, but do not execute them (syntax check)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-o Option-Name</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >(none)</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Invoke the <I CLASS="FIRSTTERM" >Option-Name</I > option</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-o posix</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >POSIX</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Change the behavior of Bash, or invoked script, to conform to <A HREF="sha-bang.html#POSIX2REF" >POSIX</A > standard.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-o pipefail</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >pipe failure</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Causes a pipeline to return the <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of the last command in the pipe that returned a non-zero return value.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-p</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >privileged</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Script runs as <SPAN CLASS="QUOTE" >"suid"</SPAN > (caution!)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-r</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >restricted</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Script runs in <I CLASS="FIRSTTERM" >restricted</I > mode (see <A HREF="restricted-sh.html" >Chapter 22</A >).</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-s</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >stdin</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Read commands from <TT CLASS="FILENAME" >stdin</TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-t</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >(none)</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Exit after first command</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-u</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >nounset</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Attempt to use undefined variable outputs error message, and forces an exit</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-v</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >verbose</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Print each command to <TT CLASS="FILENAME" >stdout</TT > before executing it</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-x</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >xtrace</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Similar to <TT CLASS="OPTION" >-v</TT >, but expands commands</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >(none)</TD ><TD ALIGN="LEFT" VALIGN="TOP" >End of options flag. All other arguments are <A HREF="variables2.html#POSPARAMREF" >positional parameters</A >.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >--</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >(none)</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Unset positional parameters. If arguments given (<TT CLASS="PARAMETER" ><I >-- arg1 arg2</I ></TT >), positional parameters set to arguments.</TD ></TR ></TBODY ></TABLE ><HR></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="debugging.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="gotchas.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Debugging</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Gotchas</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/othertypesv.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Special Variable Types</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Introduction to Variables and Parameters" HREF="variables.html"><LINK REL="PREVIOUS" TITLE="Bash Variables Are Untyped" HREF="untyped.html"><LINK REL="NEXT" TITLE="Quoting" HREF="quoting.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="untyped.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 4. Introduction to Variables and Parameters</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="quoting.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="OTHERTYPESV" ></A >4.4. Special Variable Types</H1 ><DIV CLASS="VARIABLELIST" ><DL ><DT ><TT CLASS="REPLACEABLE" ><I >Local variables</I ></TT ></DT ><DD ><P >Variables <A HREF="subshells.html#SCOPEREF" >visible</A > only within a <A HREF="special-chars.html#CODEBLOCKREF" >code block</A > or function (see also <A HREF="localvar.html#LOCALREF" >local variables</A > in <A HREF="functions.html#FUNCTIONREF" >functions</A >)</P ></DD ><DT ><A NAME="ENVREF" ></A ><TT CLASS="REPLACEABLE" ><I >Environmental variables</I ></TT ></DT ><DD ><P >Variables that affect the behavior of the shell and user interface</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >In a more general context, each <A HREF="special-chars.html#PROCESSREF" >process</A > has an <SPAN CLASS="QUOTE" >"environment"</SPAN >, that is, a group of variables that the process may reference. In this sense, the shell behaves like any other process.</P ><P >Every time a shell starts, it creates shell variables that correspond to its own environmental variables. Updating or adding new environmental variables causes the shell to update its environment, and all the shell's <I CLASS="FIRSTTERM" >child processes</I > (the commands it executes) inherit this environment.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The space allotted to the environment is limited. Creating too many environmental variables or ones that use up excessive space may cause problems.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >eval "`seq 10000 | sed -e 's/.*/export var&=ZZZZZZZZZZZZZZ/'`"</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >du</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bash: /usr/bin/du: Argument list too long</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Note: this <SPAN CLASS="QUOTE" >"error"</SPAN > has been fixed, as of kernel version 2.6.23.</P ><P >(Thank you, Stéphane Chazelas for the clarification, and for providing the above example.)</P ></TD ></TR ></TABLE ></DIV ><P >If a script sets environmental variables, they need to be <SPAN CLASS="QUOTE" >"exported,"</SPAN > that is, reported to the <I CLASS="FIRSTTERM" >environment</I > local to the script. This is the function of the <A HREF="internal.html#EXPORTREF" >export</A > command.</P ><A NAME="CHILDREF" ></A ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A script can <B CLASS="COMMAND" >export</B > variables only to child <A HREF="special-chars.html#PROCESSREF" >processes</A >, that is, only to commands or processes which that particular script initiates. A script invoked from the command-line <TT CLASS="REPLACEABLE" ><I >cannot</I ></TT > export variables back to the command-line environment. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" ><A HREF="internal.html#FORKREF" >Child processes</A > cannot export variables back to the parent processes that spawned them.</I ></SPAN ></P ><P ><A NAME="CHILDREF2" ></A ><TT CLASS="USERINPUT" ><B >Definition:</B ></TT > A <I CLASS="FIRSTTERM" >child process</I > is a subprocess launched by another process, its <A HREF="internal.html#PARENTREF" >parent</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="POSPARAMREF1" ></A ><TT CLASS="REPLACEABLE" ><I >Positional parameters</I ></TT ></DT ><DD ><P >Arguments passed to the script from the command line <A NAME="AEN2450" HREF="#FTN.AEN2450" >[1]</A > : <TT CLASS="VARNAME" >$0</TT >, <TT CLASS="VARNAME" >$1</TT >, <TT CLASS="VARNAME" >$2</TT >, <TT CLASS="VARNAME" >$3</TT > . . .</P ><P ><A NAME="SCRNAMEPARAM" ></A ><TT CLASS="VARNAME" >$0</TT > is the name of the script itself, <TT CLASS="VARNAME" >$1</TT > is the first argument, <TT CLASS="VARNAME" >$2</TT > the second, <TT CLASS="VARNAME" >$3</TT > the third, and so forth. <A NAME="AEN2464" HREF="#FTN.AEN2464" >[2]</A > <A NAME="BRACKETNOTATION" ></A > After <TT CLASS="VARNAME" >$9</TT >, the arguments must be enclosed in brackets, for example, <TT CLASS="VARNAME" >${10}</TT >, <TT CLASS="VARNAME" >${11}</TT >, <TT CLASS="VARNAME" >${12}</TT >.</P ><P >The special variables <A HREF="variables2.html#APPREF" >$* and $@</A > denote <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >all</I ></SPAN > the positional parameters.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX17" ></A ><P ><B >Example 4-5. Positional Parameters</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Call this script with at least 10 parameters, for example 4 # ./scriptname 1 2 3 4 5 6 7 8 9 10 5 MINPARAMS=10 6 7 echo 8 9 echo "The name of this script is \"$0\"." 10 # Adds ./ for current directory 11 echo "The name of this script is \"`basename $0`\"." 12 # Strips out path name info (see 'basename') 13 14 echo 15 16 if [ -n "$1" ] # Tested variable is quoted. 17 then 18 echo "Parameter #1 is $1" # Need quotes to escape # 19 fi 20 21 if [ -n "$2" ] 22 then 23 echo "Parameter #2 is $2" 24 fi 25 26 if [ -n "$3" ] 27 then 28 echo "Parameter #3 is $3" 29 fi 30 31 # ... 32 33 34 if [ -n "${10}" ] # Parameters > $9 must be enclosed in {brackets}. 35 then 36 echo "Parameter #10 is ${10}" 37 fi 38 39 echo "-----------------------------------" 40 echo "All the command-line parameters are: "$*"" 41 42 if [ $# -lt "$MINPARAMS" ] 43 then 44 echo 45 echo "This script needs at least $MINPARAMS command-line arguments!" 46 fi 47 48 echo 49 50 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><I CLASS="FIRSTTERM" >Bracket notation</I > for positional parameters leads to a fairly simple way of referencing the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >last</I ></SPAN > argument passed to a script on the command-line. This also requires <A HREF="bash2.html#VARREFNEW" >indirect referencing</A >.</P ><P ><A NAME="LASTARGREF" ></A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 args=$# # Number of args passed. 2 lastarg=${!args} 3 # Note: This is an *indirect reference* to $args ... 4 5 6 # Or: lastarg=${!#} (Thanks, Chris Monson.) 7 # This is an *indirect reference* to the $# variable. 8 # Note that lastarg=${!$#} doesn't work.</PRE ></TD ></TR ></TABLE ></P ><P >Some scripts can perform different operations, depending on which name they are invoked with. For this to work, the script needs to check <TT CLASS="VARNAME" >$0</TT >, the name it was invoked by. <A NAME="AEN2501" HREF="#FTN.AEN2501" >[3]</A > There must also exist symbolic links to all the alternate names of the script. See <A HREF="external.html#HELLOL" >Example 16-2</A >.</P ><P ><A NAME="NULLVAR" ></A ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >If a script expects a command-line parameter but is invoked without one, this may cause a <I CLASS="FIRSTTERM" >null variable assignment</I >, generally an undesirable result. One way to prevent this is to append an extra character to both sides of the assignment statement using the expected positional parameter. </P ></TD ></TR ></TABLE ></DIV ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 variable1_=$1_ # Rather than variable1=$1 2 # This will prevent an error, even if positional parameter is absent. 3 4 critical_argument01=$variable1_ 5 6 # The extra character can be stripped off later, like so. 7 variable1=${variable1_/_/} 8 # Side effects only if $variable1_ begins with an underscore. 9 # This uses one of the parameter substitution templates discussed later. 10 # (Leaving out the replacement pattern results in a deletion.) 11 12 # A more straightforward way of dealing with this is 13 #+ to simply test whether expected positional parameters have been passed. 14 if [ -z $1 ] 15 then 16 exit $E_MISSING_POS_PARAM 17 fi 18 19 20 # However, as Fabian Kreutz points out, 21 #+ the above method may have unexpected side-effects. 22 # A better method is parameter substitution: 23 # ${1:-$DefaultVal} 24 # See the "Parameter Substition" section 25 #+ in the "Variables Revisited" chapter.</PRE ></TD ></TR ></TABLE ><P >---</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX18" ></A ><P ><B >Example 4-6. <I CLASS="FIRSTTERM" >wh</I >, <I CLASS="FIRSTTERM" > whois</I > domain name lookup</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ex18.sh 3 4 # Does a 'whois domain-name' lookup on any of 3 alternate servers: 5 # ripe.net, cw.net, radb.net 6 7 # Place this script -- renamed 'wh' -- in /usr/local/bin 8 9 # Requires symbolic links: 10 # ln -s /usr/local/bin/wh /usr/local/bin/wh-ripe 11 # ln -s /usr/local/bin/wh /usr/local/bin/wh-apnic 12 # ln -s /usr/local/bin/wh /usr/local/bin/wh-tucows 13 14 E_NOARGS=75 15 16 17 if [ -z "$1" ] 18 then 19 echo "Usage: `basename $0` [domain-name]" 20 exit $E_NOARGS 21 fi 22 23 # Check script name and call proper server. 24 case `basename $0` in # Or: case ${0##*/} in 25 "wh" ) whois $1@whois.tucows.com;; 26 "wh-ripe" ) whois $1@whois.ripe.net;; 27 "wh-apnic" ) whois $1@whois.apnic.net;; 28 "wh-cw" ) whois $1@whois.cw.net;; 29 * ) echo "Usage: `basename $0` [domain-name]";; 30 esac 31 32 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >---</P ><P ><A NAME="SHIFTREF" ></A ></P ><P > The <B CLASS="COMMAND" >shift</B > command reassigns the positional parameters, in effect shifting them to the left one notch.</P ><P ><TT CLASS="VARNAME" >$1</TT > <--- <TT CLASS="VARNAME" >$2</TT >, <TT CLASS="VARNAME" >$2</TT > <--- <TT CLASS="VARNAME" >$3</TT >, <TT CLASS="VARNAME" >$3</TT > <--- <TT CLASS="VARNAME" >$4</TT >, etc.</P ><P >The old <TT CLASS="VARNAME" >$1</TT > disappears, but <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" ><TT CLASS="VARNAME" >$0</TT > (the script name) does not change</I ></SPAN >. If you use a large number of positional parameters to a script, <B CLASS="COMMAND" >shift</B > lets you access those past <TT CLASS="LITERAL" >10</TT >, although <A HREF="othertypesv.html#BRACKETNOTATION" >{bracket} notation</A > also permits this.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX19" ></A ><P ><B >Example 4-7. Using <I CLASS="FIRSTTERM" >shift</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # shft.sh: Using 'shift' to step through all the positional parameters. 3 4 # Name this script something like shft.sh, 5 #+ and invoke it with some parameters. 6 #+ For example: 7 # sh shft.sh a b c def 83 barndoor 8 9 until [ -z "$1" ] # Until all parameters used up . . . 10 do 11 echo -n "$1 " 12 shift 13 done 14 15 echo # Extra linefeed. 16 17 # But, what happens to the "used-up" parameters? 18 echo "$2" 19 # Nothing echoes! 20 # When $2 shifts into $1 (and there is no $3 to shift into $2) 21 #+ then $2 remains empty. 22 # So, it is not a parameter *copy*, but a *move*. 23 24 exit 25 26 # See also the echo-params.sh script for a "shiftless" 27 #+ alternative method of stepping through the positional params.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The <B CLASS="COMMAND" >shift</B > command can take a numerical parameter indicating how many positions to shift.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # shift-past.sh 3 4 shift 3 # Shift 3 positions. 5 # n=3; shift $n 6 # Has the same effect. 7 8 echo "$1" 9 10 exit 0 11 12 # ======================== # 13 14 15 $ sh shift-past.sh 1 2 3 4 5 16 4 17 18 # However, as Eleni Fragkiadaki, points out, 19 #+ attempting a 'shift' past the number of 20 #+ positional parameters ($#) returns an exit status of 1, 21 #+ and the positional parameters themselves do not change. 22 # This means possibly getting stuck in an endless loop. . . . 23 # For example: 24 # until [ -z "$1" ] 25 # do 26 # echo -n "$1 " 27 # shift 20 # If less than 20 pos params, 28 # done #+ then loop never ends! 29 # 30 # When in doubt, add a sanity check. . . . 31 # shift 20 || break 32 # ^^^^^^^^</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >shift</B > command works in a similar fashion on parameters passed to a <A HREF="functions.html#FUNCTIONREF" >function</A >. See <A HREF="assortedtips.html#MULTIPLICATION" >Example 36-18</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN2450" HREF="othertypesv.html#AEN2450" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Note that <A HREF="functions.html#PASSEDARGS" ><I CLASS="FIRSTTERM" >functions</I > also take positional parameters</A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN2464" HREF="othertypesv.html#AEN2464" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="ARG0" ></A >The process calling the script sets the <TT CLASS="VARNAME" >$0</TT > parameter. By convention, this parameter is the name of the script. See the <A HREF="external.html#MANREF" >manpage</A > (manual page) for <B CLASS="COMMAND" >execv</B >.</P ><P >From the <I CLASS="FIRSTTERM" >command-line</I >, however, <TT CLASS="VARNAME" >$0</TT > is the name of the shell. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $0</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bash</TT > <TT CLASS="PROMPT" >tcsh% </TT ><TT CLASS="USERINPUT" ><B >echo $0</B ></TT > <TT CLASS="COMPUTEROUTPUT" >tcsh</TT ></PRE ></TD ></TR ></TABLE ></P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN2501" HREF="othertypesv.html#AEN2501" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >If the the script is <A HREF="internal.html#SOURCEREF" >sourced</A > or <A HREF="external.html#SYMLINKREF" >symlinked</A >, then this will not work. It is safer to check <A HREF="debugging.html#BASHSOURCEREF" >$BASH_Source</A >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="untyped.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="quoting.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Bash Variables Are Untyped</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="variables.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Quoting</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/parameter-substitution.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Parameter Substitution</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Manipulating Variables" HREF="manipulatingvars.html"><LINK REL="PREVIOUS" TITLE="Manipulating Variables" HREF="manipulatingvars.html"><LINK REL="NEXT" TITLE="Loops and Branches" HREF="loops.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="manipulatingvars.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 10. Manipulating Variables</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="loops.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="PARAMETER-SUBSTITUTION" ></A >10.2. Parameter Substitution</H1 ><P ><A NAME="PARAMSUBREF" ></A ></P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="PSSUB1" ></A >Manipulating and/or expanding variables</B ></P ><DL ><DT ><TT CLASS="USERINPUT" ><B >${parameter}</B ></TT ></DT ><DD ><P >Same as <TT CLASS="REPLACEABLE" ><I >$parameter</I ></TT >, i.e., value of the variable <TT CLASS="REPLACEABLE" ><I >parameter</I ></TT >. In certain contexts, only the less ambiguous <TT CLASS="REPLACEABLE" ><I >${parameter}</I ></TT > form works.</P ><P >May be used for concatenating variables with strings.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 your_id=${USER}-on-${HOSTNAME} 2 echo "$your_id" 3 # 4 echo "Old \$PATH = $PATH" 5 PATH=${PATH}:/opt/bin # Add /opt/bin to $PATH for duration of script. 6 echo "New \$PATH = $PATH"</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="DEFPARAM1" ></A ><TT CLASS="USERINPUT" ><B >${parameter-default}</B ></TT >, <TT CLASS="USERINPUT" ><B >${parameter:-default}</B ></TT ></DT ><DD ><P >If parameter not set, use default.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var1=1 2 var2=2 3 # var3 is unset. 4 5 echo ${var1-$var2} # 1 6 echo ${var3-$var2} # 2 7 # ^ Note the $ prefix. 8 9 10 11 echo ${username-`whoami`} 12 # Echoes the result of `whoami`, if variable $username is still unset.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="UNDDR" ></A ><TT CLASS="REPLACEABLE" ><I >${parameter-default}</I ></TT > and <TT CLASS="REPLACEABLE" ><I >${parameter:-default}</I ></TT > are almost equivalent. The extra <SPAN CLASS="TOKEN" >:</SPAN > makes a difference only when <TT CLASS="PARAMETER" ><I >parameter</I ></TT > has been declared, but is null. </P ></TD ></TR ></TABLE ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # param-sub.sh 3 4 # Whether a variable has been declared 5 #+ affects triggering of the default option 6 #+ even if the variable is null. 7 8 username0= 9 echo "username0 has been declared, but is set to null." 10 echo "username0 = ${username0-`whoami`}" 11 # Will not echo. 12 13 echo 14 15 echo username1 has not been declared. 16 echo "username1 = ${username1-`whoami`}" 17 # Will echo. 18 19 username2= 20 echo "username2 has been declared, but is set to null." 21 echo "username2 = ${username2:-`whoami`}" 22 # ^ 23 # Will echo because of :- rather than just - in condition test. 24 # Compare to first instance, above. 25 26 27 # 28 29 # Once again: 30 31 variable= 32 # variable has been declared, but is set to null. 33 34 echo "${variable-0}" # (no output) 35 echo "${variable:-1}" # 1 36 # ^ 37 38 unset variable 39 40 echo "${variable-2}" # 2 41 echo "${variable:-3}" # 3 42 43 exit 0</PRE ></TD ></TR ></TABLE ></P ><P >The <I CLASS="FIRSTTERM" >default parameter</I > construct finds use in providing <SPAN CLASS="QUOTE" >"missing"</SPAN > command-line arguments in scripts.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 DEFAULT_FILENAME=generic.data 2 filename=${1:-$DEFAULT_FILENAME} 3 # If not otherwise specified, the following command block operates 4 #+ on the file "generic.data". 5 # Begin-Command-Block 6 # ... 7 # ... 8 # ... 9 # End-Command-Block 10 11 12 13 # From "hanoi2.bash" example: 14 DISKS=${1:-E_NOPARAM} # Must specify how many disks. 15 # Set $DISKS to $1 command-line-parameter, 16 #+ or to $E_NOPARAM if that is unset.</PRE ></TD ></TR ></TABLE > </P ><P >See also <A HREF="special-chars.html#EX58" >Example 3-4</A >, <A HREF="zeros.html#EX73" >Example 31-2</A >, and <A HREF="contributed-scripts.html#COLLATZ" >Example A-6</A >.</P ><P >Compare this method with <A HREF="list-cons.html#ANDDEFAULT" >using an <I CLASS="FIRSTTERM" >and list</I > to supply a default command-line argument</A >.</P ></DD ><DT ><TT CLASS="USERINPUT" ><B >${parameter=default}</B ></TT >, <TT CLASS="USERINPUT" ><B >${parameter:=default}</B ></TT ></DT ><DD ><P ><A NAME="DEFPARAM" ></A ></P ><P >If parameter not set, set it to <I CLASS="FIRSTTERM" >default</I >.</P ><P >Both forms nearly equivalent. The <SPAN CLASS="TOKEN" >:</SPAN > makes a difference only when <TT CLASS="VARNAME" >$parameter</TT > has been declared and is null, <A NAME="AEN6310" HREF="#FTN.AEN6310" >[1]</A > as above. </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo ${var=abc} # abc 2 echo ${var=xyz} # abc 3 # $var had already been set to abc, so it did not change.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="PARAMALTV" ></A ><TT CLASS="USERINPUT" ><B >${parameter+alt_value}</B ></TT >, <TT CLASS="USERINPUT" ><B >${parameter:+alt_value}</B ></TT ></DT ><DD ><P >If parameter set, use <TT CLASS="USERINPUT" ><B >alt_value</B ></TT >, else use null string.</P ><P >Both forms nearly equivalent. The <SPAN CLASS="TOKEN" >:</SPAN > makes a difference only when <TT CLASS="PARAMETER" ><I >parameter</I ></TT > has been declared and is null, see below.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "###### \${parameter+alt_value} ########" 2 echo 3 4 a=${param1+xyz} 5 echo "a = $a" # a = 6 7 param2= 8 a=${param2+xyz} 9 echo "a = $a" # a = xyz 10 11 param3=123 12 a=${param3+xyz} 13 echo "a = $a" # a = xyz 14 15 echo 16 echo "###### \${parameter:+alt_value} ########" 17 echo 18 19 a=${param4:+xyz} 20 echo "a = $a" # a = 21 22 param5= 23 a=${param5:+xyz} 24 echo "a = $a" # a = 25 # Different result from a=${param5+xyz} 26 27 param6=123 28 a=${param6:+xyz} 29 echo "a = $a" # a = xyz</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="QERRMSG" ></A ><TT CLASS="USERINPUT" ><B >${parameter?err_msg}</B ></TT >, <TT CLASS="USERINPUT" ><B >${parameter:?err_msg}</B ></TT ></DT ><DD ><P >If parameter set, use it, else print <I CLASS="FIRSTTERM" >err_msg</I > and <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >abort the script</I ></SPAN > with an <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of <SPAN CLASS="ERRORCODE" >1</SPAN >.</P ><P >Both forms nearly equivalent. The <SPAN CLASS="TOKEN" >:</SPAN > makes a difference only when <TT CLASS="PARAMETER" ><I >parameter</I ></TT > has been declared and is null, as above.</P ></DD ></DL ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX6" ></A ><P ><B >Example 10-7. Using parameter substitution and error messages</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Check some of the system's environmental variables. 4 # This is good preventative maintenance. 5 # If, for example, $USER, the name of the person at the console, is not set, 6 #+ the machine will not recognize you. 7 8 : ${HOSTNAME?} ${USER?} ${HOME?} ${MAIL?} 9 echo 10 echo "Name of the machine is $HOSTNAME." 11 echo "You are $USER." 12 echo "Your home directory is $HOME." 13 echo "Your mail INBOX is located in $MAIL." 14 echo 15 echo "If you are reading this message," 16 echo "critical environmental variables have been set." 17 echo 18 echo 19 20 # ------------------------------------------------------ 21 22 # The ${variablename?} construction can also check 23 #+ for variables set within the script. 24 25 ThisVariable=Value-of-ThisVariable 26 # Note, by the way, that string variables may be set 27 #+ to characters disallowed in their names. 28 : ${ThisVariable?} 29 echo "Value of ThisVariable is $ThisVariable". 30 31 echo; echo 32 33 34 : ${ZZXy23AB?"ZZXy23AB has not been set."} 35 # Since ZZXy23AB has not been set, 36 #+ then the script terminates with an error message. 37 38 # You can specify the error message. 39 # : ${variablename?"ERROR MESSAGE"} 40 41 42 # Same result with: dummy_variable=${ZZXy23AB?} 43 # dummy_variable=${ZZXy23AB?"ZXy23AB has not been set."} 44 # 45 # echo ${ZZXy23AB?} >/dev/null 46 47 # Compare these methods of checking whether a variable has been set 48 #+ with "set -u" . . . 49 50 51 52 echo "You will not see this message, because script already terminated." 53 54 HERE=0 55 exit $HERE # Will NOT exit here. 56 57 # In fact, this script will return an exit status (echo $?) of 1.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="USAGEMESSAGE" ></A ><P ><B >Example 10-8. Parameter substitution and <SPAN CLASS="QUOTE" >"usage"</SPAN > messages</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # usage-message.sh 3 4 : ${1?"Usage: $0 ARGUMENT"} 5 # Script exits here if command-line parameter absent, 6 #+ with following error message. 7 # usage-message.sh: 1: Usage: usage-message.sh ARGUMENT 8 9 echo "These two lines echo only if command-line parameter given." 10 echo "command-line parameter = \"$1\"" 11 12 exit 0 # Will exit here only if command-line parameter present. 13 14 # Check the exit status, both with and without command-line parameter. 15 # If command-line parameter present, then "$?" is 0. 16 # If not, then "$?" is 1.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="FORMALPARA" ><P ><B >Parameter substitution and/or expansion. </B ><A NAME="PSUB2" ></A >The following expressions are the complement to the <B CLASS="COMMAND" >match</B > <TT CLASS="REPLACEABLE" ><I >in</I ></TT > <B CLASS="COMMAND" >expr</B > string operations (see <A HREF="moreadv.html#EX45" >Example 16-9</A >). These particular ones are used mostly in parsing file path names.</P ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="PSOREX1" ></A >Variable length / Substring removal</B ></P ><DL ><DT ><TT CLASS="USERINPUT" ><B >${#var}</B ></TT ></DT ><DD ><P ><TT CLASS="USERINPUT" ><B >String length</B ></TT > (number of characters in <TT CLASS="VARNAME" >$var</TT >). For an <A HREF="arrays.html#ARRAYREF" >array</A >, <B CLASS="COMMAND" >${#array}</B > is the length of the first element in the array.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P > Exceptions: <UL ><LI ><P ><A NAME="NUMPOSPARAM" ></A ></P ><P > <B CLASS="COMMAND" >${#*}</B > and <B CLASS="COMMAND" >${#@}</B > give the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >number of positional parameters</I ></SPAN >. </P ></LI ><LI ><P > For an array, <B CLASS="COMMAND" >${#array[*]}</B > and <B CLASS="COMMAND" >${#array[@]}</B > give the number of elements in the array. </P ></LI ></UL > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="LENGTH" ></A ><P ><B >Example 10-9. Length of a variable</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # length.sh 3 4 E_NO_ARGS=65 5 6 if [ $# -eq 0 ] # Must have command-line args to demo script. 7 then 8 echo "Please invoke this script with one or more command-line arguments." 9 exit $E_NO_ARGS 10 fi 11 12 var01=abcdEFGH28ij 13 echo "var01 = ${var01}" 14 echo "Length of var01 = ${#var01}" 15 # Now, let's try embedding a space. 16 var02="abcd EFGH28ij" 17 echo "var02 = ${var02}" 18 echo "Length of var02 = ${#var02}" 19 20 echo "Number of command-line arguments passed to script = ${#@}" 21 echo "Number of command-line arguments passed to script = ${#*}" 22 23 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="PSOREX2" ></A ><TT CLASS="USERINPUT" ><B >${var#Pattern}</B ></TT >, <TT CLASS="USERINPUT" ><B >${var##Pattern}</B ></TT ></DT ><DD ><P ><A NAME="PSOREXSH" ></A ></P ><P ><B CLASS="COMMAND" >${var#Pattern} </B > Remove from <TT CLASS="VARNAME" >$var</TT > the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >shortest</I ></SPAN > part of <TT CLASS="VARNAME" >$Pattern</TT > that matches the <TT CLASS="REPLACEABLE" ><I >front end</I ></TT > of <TT CLASS="VARNAME" >$var</TT >. </P ><P ><A NAME="PSOREXLO" ></A ></P ><P ><B CLASS="COMMAND" >${var##Pattern} </B > Remove from <TT CLASS="VARNAME" >$var</TT > the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >longest</I ></SPAN > part of <TT CLASS="VARNAME" >$Pattern</TT > that matches the <TT CLASS="REPLACEABLE" ><I >front end</I ></TT > of <TT CLASS="VARNAME" >$var</TT >. </P ><P >A usage illustration from <A HREF="contributed-scripts.html#DAYSBETWEEN" >Example A-7</A >: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Function from "days-between.sh" example. 2 # Strips leading zero(s) from argument passed. 3 4 strip_leading_zero () # Strip possible leading zero(s) 5 { #+ from argument passed. 6 return=${1#0} # The "1" refers to "$1" -- passed arg. 7 } # The "0" is what to remove from "$1" -- strips zeros.</PRE ></TD ></TR ></TABLE > </P ><P >Manfred Schwarb's more elaborate variation of the above:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 strip_leading_zero2 () # Strip possible leading zero(s), since otherwise 2 { # Bash will interpret such numbers as octal values. 3 shopt -s extglob # Turn on extended globbing. 4 local val=${1##+(0)} # Use local variable, longest matching series of 0's. 5 shopt -u extglob # Turn off extended globbing. 6 _strip_leading_zero2=${val:-0} 7 # If input was 0, return 0 instead of "". 8 }</PRE ></TD ></TR ></TABLE > </P ><P >Another usage illustration:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo `basename $PWD` # Basename of current working directory. 2 echo "${PWD##*/}" # Basename of current working directory. 3 echo 4 echo `basename $0` # Name of script. 5 echo $0 # Name of script. 6 echo "${0##*/}" # Name of script. 7 echo 8 filename=test.data 9 echo "${filename##*.}" # data 10 # Extension of filename.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="PCTPATREF" ></A ><TT CLASS="USERINPUT" ><B >${var%Pattern}</B ></TT >, <TT CLASS="USERINPUT" ><B >${var%%Pattern}</B ></TT ></DT ><DD ><P ><A NAME="PCTREP1" ></A ></P ><P ><B CLASS="COMMAND" >${var%Pattern}</B > Remove from <TT CLASS="VARNAME" >$var</TT > the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >shortest</I ></SPAN > part of <TT CLASS="VARNAME" >$Pattern</TT > that matches the <TT CLASS="REPLACEABLE" ><I >back end</I ></TT > of <TT CLASS="VARNAME" >$var</TT >. </P ><P ><A NAME="PCTREP2" ></A ></P ><P ><B CLASS="COMMAND" >${var%%Pattern}</B > Remove from <TT CLASS="VARNAME" >$var</TT > the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >longest</I ></SPAN > part of <TT CLASS="VARNAME" >$Pattern</TT > that matches the <TT CLASS="REPLACEABLE" ><I >back end</I ></TT > of <TT CLASS="VARNAME" >$var</TT >. </P ></DD ></DL ></DIV ><P ><A HREF="bash2.html#BASH2REF" >Version 2</A > of Bash added additional options.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="PATTMATCHING" ></A ><P ><B >Example 10-10. Pattern matching in parameter substitution</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # patt-matching.sh 3 4 # Pattern matching using the # ## % %% parameter substitution operators. 5 6 var1=abcd12345abc6789 7 pattern1=a*c # * (wild card) matches everything between a - c. 8 9 echo 10 echo "var1 = $var1" # abcd12345abc6789 11 echo "var1 = ${var1}" # abcd12345abc6789 12 # (alternate form) 13 echo "Number of characters in ${var1} = ${#var1}" 14 echo 15 16 echo "pattern1 = $pattern1" # a*c (everything between 'a' and 'c') 17 echo "--------------" 18 echo '${var1#$pattern1} =' "${var1#$pattern1}" # d12345abc6789 19 # Shortest possible match, strips out first 3 characters abcd12345abc6789 20 # ^^^^^ |-| 21 echo '${var1##$pattern1} =' "${var1##$pattern1}" # 6789 22 # Longest possible match, strips out first 12 characters abcd12345abc6789 23 # ^^^^^ |----------| 24 25 echo; echo; echo 26 27 pattern2=b*9 # everything between 'b' and '9' 28 echo "var1 = $var1" # Still abcd12345abc6789 29 echo 30 echo "pattern2 = $pattern2" 31 echo "--------------" 32 echo '${var1%pattern2} =' "${var1%$pattern2}" # abcd12345a 33 # Shortest possible match, strips out last 6 characters abcd12345abc6789 34 # ^^^^ |----| 35 echo '${var1%%pattern2} =' "${var1%%$pattern2}" # a 36 # Longest possible match, strips out last 12 characters abcd12345abc6789 37 # ^^^^ |-------------| 38 39 # Remember, # and ## work from the left end (beginning) of string, 40 # % and %% work from the right end. 41 42 echo 43 44 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="RFE" ></A ><P ><B >Example 10-11. Renaming file extensions<SPAN CLASS="TOKEN" >:</SPAN ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # rfe.sh: Renaming file extensions. 3 # 4 # rfe old_extension new_extension 5 # 6 # Example: 7 # To rename all *.gif files in working directory to *.jpg, 8 # rfe gif jpg 9 10 11 E_BADARGS=65 12 13 case $# in 14 0|1) # The vertical bar means "or" in this context. 15 echo "Usage: `basename $0` old_file_suffix new_file_suffix" 16 exit $E_BADARGS # If 0 or 1 arg, then bail out. 17 ;; 18 esac 19 20 21 for filename in *.$1 22 # Traverse list of files ending with 1st argument. 23 do 24 mv $filename ${filename%$1}$2 25 # Strip off part of filename matching 1st argument, 26 #+ then append 2nd argument. 27 done 28 29 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="EXPREPL1" ></A >Variable expansion / Substring replacement</B ></P ><DL ><DT ></DT ><DD ><P >These constructs have been adopted from <I CLASS="FIRSTTERM" >ksh</I >.</P ></DD ><DT ><TT CLASS="USERINPUT" ><B >${var:pos}</B ></TT ></DT ><DD ><P >Variable <TT CLASS="REPLACEABLE" ><I >var</I ></TT > expanded, starting from offset <TT CLASS="REPLACEABLE" ><I >pos</I ></TT >. </P ></DD ><DT ><TT CLASS="USERINPUT" ><B >${var:pos:len}</B ></TT ></DT ><DD ><P >Expansion to a max of <TT CLASS="REPLACEABLE" ><I >len</I ></TT > characters of variable <TT CLASS="REPLACEABLE" ><I >var</I ></TT >, from offset <TT CLASS="REPLACEABLE" ><I >pos</I ></TT >. See <A HREF="contributed-scripts.html#PW" >Example A-13</A > for an example of the creative use of this operator. </P ></DD ><DT ><TT CLASS="USERINPUT" ><B >${var/Pattern/Replacement}</B ></TT ></DT ><DD ><P >First match of <TT CLASS="REPLACEABLE" ><I >Pattern</I ></TT >, within <TT CLASS="REPLACEABLE" ><I >var</I ></TT > replaced with <TT CLASS="REPLACEABLE" ><I >Replacement</I ></TT >.</P ><P >If <TT CLASS="REPLACEABLE" ><I >Replacement</I ></TT > is omitted, then the first match of <TT CLASS="REPLACEABLE" ><I >Pattern</I ></TT > is replaced by <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >nothing</I ></SPAN >, that is, deleted.</P ></DD ><DT ><TT CLASS="USERINPUT" ><B >${var//Pattern/Replacement}</B ></TT ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Global replacement. </B ><A NAME="PSGLOB" ></A > All matches of <TT CLASS="REPLACEABLE" ><I >Pattern</I ></TT >, within <TT CLASS="REPLACEABLE" ><I >var</I ></TT > replaced with <TT CLASS="REPLACEABLE" ><I >Replacement</I ></TT >.</P ></DIV ><P >As above, if <TT CLASS="REPLACEABLE" ><I >Replacement</I ></TT > is omitted, then all occurrences of <TT CLASS="REPLACEABLE" ><I >Pattern</I ></TT > are replaced by <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >nothing</I ></SPAN >, that is, deleted.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX7" ></A ><P ><B >Example 10-12. Using pattern matching to parse arbitrary strings</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 var1=abcd-1234-defg 4 echo "var1 = $var1" 5 6 t=${var1#*-*} 7 echo "var1 (with everything, up to and including first - stripped out) = $t" 8 # t=${var1#*-} works just the same, 9 #+ since # matches the shortest string, 10 #+ and * matches everything preceding, including an empty string. 11 # (Thanks, Stephane Chazelas, for pointing this out.) 12 13 t=${var1##*-*} 14 echo "If var1 contains a \"-\", returns empty string... var1 = $t" 15 16 17 t=${var1%*-*} 18 echo "var1 (with everything from the last - on stripped out) = $t" 19 20 echo 21 22 # ------------------------------------------- 23 path_name=/home/bozo/ideas/thoughts.for.today 24 # ------------------------------------------- 25 echo "path_name = $path_name" 26 t=${path_name##/*/} 27 echo "path_name, stripped of prefixes = $t" 28 # Same effect as t=`basename $path_name` in this particular case. 29 # t=${path_name%/}; t=${t##*/} is a more general solution, 30 #+ but still fails sometimes. 31 # If $path_name ends with a newline, then `basename $path_name` will not work, 32 #+ but the above expression will. 33 # (Thanks, S.C.) 34 35 t=${path_name%/*.*} 36 # Same effect as t=`dirname $path_name` 37 echo "path_name, stripped of suffixes = $t" 38 # These will fail in some cases, such as "../", "/foo////", # "foo/", "/". 39 # Removing suffixes, especially when the basename has no suffix, 40 #+ but the dirname does, also complicates matters. 41 # (Thanks, S.C.) 42 43 echo 44 45 t=${path_name:11} 46 echo "$path_name, with first 11 chars stripped off = $t" 47 t=${path_name:11:5} 48 echo "$path_name, with first 11 chars stripped off, length 5 = $t" 49 50 echo 51 52 t=${path_name/bozo/clown} 53 echo "$path_name with \"bozo\" replaced by \"clown\" = $t" 54 t=${path_name/today/} 55 echo "$path_name with \"today\" deleted = $t" 56 t=${path_name//o/O} 57 echo "$path_name with all o's capitalized = $t" 58 t=${path_name//o/} 59 echo "$path_name with all o's deleted = $t" 60 61 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><TT CLASS="USERINPUT" ><B >${var/#Pattern/Replacement}</B ></TT ></DT ><DD ><P >If <I CLASS="FIRSTTERM" >prefix</I > of <TT CLASS="REPLACEABLE" ><I >var</I ></TT > matches <TT CLASS="REPLACEABLE" ><I >Pattern</I ></TT >, then substitute <TT CLASS="REPLACEABLE" ><I >Replacement</I ></TT > for <TT CLASS="REPLACEABLE" ><I >Pattern</I ></TT >.</P ></DD ><DT ><TT CLASS="USERINPUT" ><B >${var/%Pattern/Replacement}</B ></TT ></DT ><DD ><P >If <I CLASS="FIRSTTERM" >suffix</I > of <TT CLASS="REPLACEABLE" ><I >var</I ></TT > matches <TT CLASS="REPLACEABLE" ><I >Pattern</I ></TT >, then substitute <TT CLASS="REPLACEABLE" ><I >Replacement</I ></TT > for <TT CLASS="REPLACEABLE" ><I >Pattern</I ></TT >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="VARMATCH" ></A ><P ><B >Example 10-13. Matching patterns at prefix or suffix of string</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # var-match.sh: 3 # Demo of pattern replacement at prefix / suffix of string. 4 5 v0=abc1234zip1234abc # Original variable. 6 echo "v0 = $v0" # abc1234zip1234abc 7 echo 8 9 # Match at prefix (beginning) of string. 10 v1=${v0/#abc/ABCDEF} # abc1234zip1234abc 11 # |-| 12 echo "v1 = $v1" # ABCDEF1234zip1234abc 13 # |----| 14 15 # Match at suffix (end) of string. 16 v2=${v0/%abc/ABCDEF} # abc1234zip123abc 17 # |-| 18 echo "v2 = $v2" # abc1234zip1234ABCDEF 19 # |----| 20 21 echo 22 23 # ---------------------------------------------------- 24 # Must match at beginning / end of string, 25 #+ otherwise no replacement results. 26 # ---------------------------------------------------- 27 v3=${v0/#123/000} # Matches, but not at beginning. 28 echo "v3 = $v3" # abc1234zip1234abc 29 # NO REPLACEMENT. 30 v4=${v0/%123/000} # Matches, but not at end. 31 echo "v4 = $v4" # abc1234zip1234abc 32 # NO REPLACEMENT. 33 34 exit 0 </PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="VARPREFIXM" ></A ><TT CLASS="USERINPUT" ><B >${!varprefix*}</B ></TT >, <TT CLASS="USERINPUT" ><B >${!varprefix@}</B ></TT ></DT ><DD ><P >Matches <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >names</I ></SPAN > of all previously declared variables beginning with <TT CLASS="PARAMETER" ><I >varprefix</I ></TT >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # This is a variation on indirect reference, but with a * or @. 2 # Bash, version 2.04, adds this feature. 3 4 xyz23=whatever 5 xyz24= 6 7 a=${!xyz*} # Expands to *names* of declared variables 8 # ^ ^ ^ + beginning with "xyz". 9 echo "a = $a" # a = xyz23 xyz24 10 a=${!xyz@} # Same as above. 11 echo "a = $a" # a = xyz23 xyz24 12 13 echo "---" 14 15 abc23=something_else 16 b=${!abc*} 17 echo "b = $b" # b = abc23 18 c=${!b} # Now, the more familiar type of indirect reference. 19 echo $c # something_else</PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN6310" HREF="parameter-substitution.html#AEN6310" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >If $parameter is null in a non-interactive script, it will terminate with a <A HREF="exitcodes.html#EXITCODESREF" ><SPAN CLASS="RETURNVALUE" >127</SPAN > exit status</A > (the Bash error code for <SPAN CLASS="QUOTE" >"command not found"</SPAN >).</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="manipulatingvars.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="loops.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Manipulating Variables</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="manipulatingvars.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Loops and Branches</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/part1.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Introduction</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="NEXT" TITLE="Shell Programming!" HREF="why-shell.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="PART" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="index.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="why-shell.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="PART" ><A NAME="PART1" ></A ><DIV CLASS="TITLEPAGE" ><H1 CLASS="TITLE" >Part 1. Introduction</H1 ><DIV CLASS="PARTINTRO" ><A NAME="AEN43" ></A ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Script: <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >A writing; a written document. [Obs.]</I ></SPAN ></I ></P ><P ><I >--<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Webster's Dictionary</I ></SPAN >, 1913 ed.</I ></P ></I ></TD ></TR ></TABLE ><P ><A NAME="WHATSASCRIPT" ></A ></P ><P >The shell is a command interpreter. More than just the insulating layer between the operating system kernel and the user, it's also a fairly powerful programming language. A shell program, called a <I CLASS="FIRSTTERM" >script</I >, is an easy-to-use tool for building applications by <SPAN CLASS="QUOTE" >"gluing together"</SPAN > system calls, tools, utilities, and compiled binaries. Virtually the entire repertoire of UNIX commands, utilities, and tools is available for invocation by a shell script. If that were not enough, internal shell commands, such as testing and loop constructs, lend additional power and flexibility to scripts. Shell scripts are especially well suited for administrative system tasks and other routine repetitive tasks not requiring the bells and whistles of a full-blown tightly structured programming language.</P ></DIV ><DIV CLASS="TOC" ><DL ><DT ><B >Table of Contents</B ></DT ><DT >1. <A HREF="why-shell.html" >Shell Programming!</A ></DT ><DT >2. <A HREF="sha-bang.html" >Starting Off With a Sha-Bang</A ></DT ></DL ></DIV ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="index.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="why-shell.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Advanced Bash-Scripting Guide</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Shell Programming!</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/part2.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Basics</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Preliminary Exercises" HREF="prelimexer.html"><LINK REL="NEXT" TITLE="Special Characters" HREF="special-chars.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="PART" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="prelimexer.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="special-chars.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="PART" ><A NAME="PART2" ></A ><DIV CLASS="TITLEPAGE" ><H1 CLASS="TITLE" >Part 2. Basics</H1 ><DIV CLASS="TOC" ><DL ><DT ><B >Table of Contents</B ></DT ><DT >3. <A HREF="special-chars.html" >Special Characters</A ></DT ><DT >4. <A HREF="variables.html" >Introduction to Variables and Parameters</A ></DT ><DT >5. <A HREF="quoting.html" >Quoting</A ></DT ><DT >6. <A HREF="exit-status.html" >Exit and Exit Status</A ></DT ><DT >7. <A HREF="tests.html" >Tests</A ></DT ><DT >8. <A HREF="operations.html" >Operations and Related Topics</A ></DT ></DL ></DIV ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="prelimexer.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="special-chars.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Preliminary Exercises</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Special Characters</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/part3.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Beyond the Basics</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Operator Precedence" HREF="opprecedence.html"><LINK REL="NEXT" TITLE="Another Look at Variables" HREF="variables2.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="PART" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="opprecedence.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="variables2.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="PART" ><A NAME="PART3" ></A ><DIV CLASS="TITLEPAGE" ><H1 CLASS="TITLE" >Part 3. Beyond the Basics</H1 ><DIV CLASS="TOC" ><DL ><DT ><B >Table of Contents</B ></DT ><DT >9. <A HREF="variables2.html" >Another Look at Variables</A ></DT ><DT >10. <A HREF="manipulatingvars.html" >Manipulating Variables</A ></DT ><DT >11. <A HREF="loops.html" >Loops and Branches</A ></DT ><DT >12. <A HREF="commandsub.html" >Command Substitution</A ></DT ><DT >13. <A HREF="arithexp.html" >Arithmetic Expansion</A ></DT ><DT >14. <A HREF="recess-time.html" >Recess Time</A ></DT ></DL ></DIV ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="opprecedence.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="variables2.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Operator Precedence</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Another Look at Variables</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/part4.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Recess Time" HREF="recess-time.html"><LINK REL="NEXT" TITLE="Internal Commands and Builtins" HREF="internal.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="PART" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="recess-time.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="internal.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="PART" ><A NAME="PART4" ></A ><DIV CLASS="TITLEPAGE" ><H1 CLASS="TITLE" >Part 4. Commands</H1 ><DIV CLASS="PARTINTRO" ><A NAME="AEN7439" ></A ><P ><A NAME="PART4A" ></A ></P ><P >Mastering the commands on your Linux machine is an indispensable prelude to writing effective shell scripts.</P ><P >This section covers the following commands:</P ><UL ><LI ><P ><A HREF="special-chars.html#DOTREF" >.</A > (See also <A HREF="internal.html#SOURCEREF" >source</A >)</P ></LI ><LI ><P ><A HREF="system.html#ACREF" >ac</A ></P ></LI ><LI ><P ><A HREF="system.html#USERADDREF" >adduser</A ></P ></LI ><LI ><P ><A HREF="system.html#AGETTYREF" >agetty</A ></P ></LI ><LI ><P ><A HREF="textproc.html#AGREPREF" >agrep</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#ARREF" >ar</A ></P ></LI ><LI ><P ><A HREF="system.html#ARCHREF" >arch</A ></P ></LI ><LI ><P ><A HREF="timedate.html#ATREF" >at</A ></P ></LI ><LI ><P ><A HREF="internal.html#AUTOLOADREF" >autoload</A ></P ></LI ><LI ><P ><A HREF="awk.html#AWKREF" >awk</A > (See also <A HREF="mathc.html#AWKMATH" >Using <B CLASS="COMMAND" >awk</B > for math operations</A >)</P ></LI ><LI ><P ><A HREF="system.html#BADBLOCKSREF" >badblocks</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#BANNERREF" >banner</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#BASENAMEREF" >basename</A ></P ></LI ><LI ><P ><A HREF="timedate.html#BATCHREF" >batch</A ></P ></LI ><LI ><P ><A HREF="mathc.html#BCREF" >bc</A ></P ></LI ><LI ><P ><A HREF="internal.html#BGREF" >bg</A ></P ></LI ><LI ><P ><A HREF="internal.html#BINDREF" >bind</A ></P ></LI ><LI ><P ><A HREF="textproc.html#BISONREF" >bison</A ></P ></LI ><LI ><P ><A HREF="internal.html#BLTREF" >builtin</A ></P ></LI ><LI ><P ><A HREF="textproc.html#BZGREPREF" >bzgrep</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#BZIPREF" >bzip2</A ></P ></LI ><LI ><P ><A HREF="timedate.html#CALREF" >cal</A ></P ></LI ><LI ><P ><A HREF="internal.html#CALLERREF" >caller</A ></P ></LI ><LI ><P ><A HREF="external.html#CATREF" >cat</A ></P ></LI ><LI ><P ><A HREF="internal.html#CDREF" >cd</A ></P ></LI ><LI ><P ><A HREF="external.html#CHATTRREF" >chattr</A ></P ></LI ><LI ><P ><A HREF="communications.html#CHFNREF" >chfn</A ></P ></LI ><LI ><P ><A HREF="system.html#CHGRPREF" >chgrp</A ></P ></LI ><LI ><P ><A HREF="system.html#CHKCONFIGREF" >chkconfig</A ></P ></LI ><LI ><P ><A HREF="external.html#CHMODREF" >chmod</A ></P ></LI ><LI ><P ><A HREF="system.html#CHOWNREF" >chown</A ></P ></LI ><LI ><P ><A HREF="system.html#CHROOTREF" >chroot</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#CKSUMREF" >cksum</A ></P ></LI ><LI ><P ><A HREF="terminalccmds.html#CLEARREF" >clear</A ></P ></LI ><LI ><P ><A HREF="timedate.html#CLOCKREF" >clock</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#CMPREF" >cmp</A ></P ></LI ><LI ><P ><A HREF="textproc.html#COLREF" >col</A ></P ></LI ><LI ><P ><A HREF="textproc.html#COLRMREF" >colrm</A ></P ></LI ><LI ><P ><A HREF="textproc.html#COLUMNREF" >column</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#COMMREF" >comm</A ></P ></LI ><LI ><P ><A HREF="internal.html#COMMANDREF" >command</A ></P ></LI ><LI ><P ><A HREF="tabexpansion.html#COMPGENREF" >compgen</A ></P ></LI ><LI ><P ><A HREF="tabexpansion.html#COMPLETEREF" >complete</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#COMPRESSREF" >compress</A ></P ></LI ><LI ><P ><A HREF="bashver4.html#COPROCREF" >coproc</A ></P ></LI ><LI ><P ><A HREF="external.html#CPREF" >cp</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#CPIOREF" >cpio</A ></P ></LI ><LI ><P ><A HREF="system.html#CRONREF" >cron</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#CRYPTREF" >crypt</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#CSPLITREF" >csplit</A ></P ></LI ><LI ><P ><A HREF="communications.html#CUREF" >cu</A ></P ></LI ><LI ><P ><A HREF="textproc.html#CUTREF" >cut</A ></P ></LI ><LI ><P ><A HREF="timedate.html#DATEREF" >date</A ></P ></LI ><LI ><P ><A HREF="mathc.html#DCREF" >dc</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#DDREF" >dd</A ></P ></LI ><LI ><P ><A HREF="system.html#DEBUGFSREF" >debugfs</A ></P ></LI ><LI ><P ><A HREF="declareref.html" >declare</A ></P ></LI ><LI ><P ><A HREF="system.html#DEPMODREF" >depmod</A ></P ></LI ><LI ><P ><A HREF="system.html#DFREF" >df</A ></P ></LI ><LI ><P ><A HREF="assortedtips.html#DIALOGREF" >dialog</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#DIFFREF" >diff</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#DIFF3REF" >diff3</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#DIFFSTATREF" >diffstat</A ></P ></LI ><LI ><P ><A HREF="communications.html#DIGREF" >dig</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#DIRNAMEREF" >dirname</A ></P ></LI ><LI ><P ><A HREF="internal.html#DIRSD" >dirs</A ></P ></LI ><LI ><P ><A HREF="internal.html#DISOWNREF" >disown</A ></P ></LI ><LI ><P ><A HREF="system.html#DMESGREF" >dmesg</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#DOEXECREF" >doexec</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#DOS2UNIXREF" >dos2unix</A ></P ></LI ><LI ><P ><A HREF="system.html#DUREF" >du</A ></P ></LI ><LI ><P ><A HREF="system.html#DUMPREF" >dump</A ></P ></LI ><LI ><P ><A HREF="system.html#DUMPE2FSREF" >dumpe2fs</A ></P ></LI ><LI ><P ><A HREF="system.html#E2FSCKREF" >e2fsck</A ></P ></LI ><LI ><P ><A HREF="internal.html#ECHOREF" >echo</A ></P ></LI ><LI ><P ><A HREF="textproc.html#EGREPREF" >egrep</A ></P ></LI ><LI ><P ><A HREF="internal.html#ENABLEREF" >enable</A ></P ></LI ><LI ><P ><A HREF="textproc.html#ENSCRIPTREF" >enscript</A ></P ></LI ><LI ><P ><A HREF="system.html#ENVVREF" >env</A ></P ></LI ><LI ><P ><A HREF="textproc.html#EQNREF" >eqn</A ></P ></LI ><LI ><P ><A HREF="internal.html#EVALREF" >eval</A ></P ></LI ><LI ><P ><A HREF="internal.html#EXECREF" >exec</A ></P ></LI ><LI ><P ><A HREF="internal.html#EXITREF" >exit</A > (Related topic: <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A >)</P ></LI ><LI ><P ><A HREF="textproc.html#EXPANDREF" >expand</A ></P ></LI ><LI ><P ><A HREF="internal.html#EXPORTREF" >export</A ></P ></LI ><LI ><P ><A HREF="moreadv.html#EXPRREF" >expr</A ></P ></LI ><LI ><P ><A HREF="mathc.html#FACTORREF" >factor</A ></P ></LI ><LI ><P ><A HREF="internal.html#FALSEREF" >false</A ></P ></LI ><LI ><P ><A HREF="system.html#FDFORMATREF" >fdformat</A ></P ></LI ><LI ><P ><A HREF="system.html#FDISKREF" >fdisk</A ></P ></LI ><LI ><P ><A HREF="internal.html#FGREF" >fg</A ></P ></LI ><LI ><P ><A HREF="textproc.html#FGREPREF" >fgrep</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#FILEREF" >file</A ></P ></LI ><LI ><P ><A HREF="moreadv.html#FINDREF" >find</A ></P ></LI ><LI ><P ><A HREF="communications.html#FINGERREF" >finger</A ></P ></LI ><LI ><P ><A HREF="textproc.html#FLEXREF" >flex</A ></P ></LI ><LI ><P ><A HREF="system.html#FLOCKREF" >flock</A ></P ></LI ><LI ><P ><A HREF="textproc.html#FMTREF" >fmt</A ></P ></LI ><LI ><P ><A HREF="textproc.html#FOLDREF" >fold</A ></P ></LI ><LI ><P ><A HREF="system.html#FREEREF" >free</A ></P ></LI ><LI ><P ><A HREF="system.html#FSCKREF" >fsck</A ></P ></LI ><LI ><P ><A HREF="communications.html#FTPREF" >ftp</A ></P ></LI ><LI ><P ><A HREF="system.html#FUSERREF" >fuser</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#GETFACLREF" >getfacl</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#GETOPTY" >getopt</A ></P ></LI ><LI ><P ><A HREF="internal.html#GETOPTSX" >getopts</A ></P ></LI ><LI ><P ><A HREF="textproc.html#GETTEXTREF" >gettext</A ></P ></LI ><LI ><P ><A HREF="system.html#GETTYREF" >getty</A ></P ></LI ><LI ><P ><A HREF="system.html#GNOMEMOUNTREF" >gnome-mount</A ></P ></LI ><LI ><P ><A HREF="textproc.html#GREPREF" >grep</A ></P ></LI ><LI ><P ><A HREF="textproc.html#GROFFREF" >groff</A ></P ></LI ><LI ><P ><A HREF="system.html#GROUPMODREF" >groupmod</A ></P ></LI ><LI ><P ><A HREF="system.html#GROUPSCMDREF" >groups</A > (Related topic: the <A HREF="variables2.html#GROUPSREF" >$GROUPS</A > variable)</P ></LI ><LI ><P ><A HREF="textproc.html#GSREF" >gs</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#GZIPREF" >gzip</A ></P ></LI ><LI ><P ><A HREF="system.html#HALTREF" >halt</A ></P ></LI ><LI ><P ><A HREF="internal.html#HASHCMDREF" >hash</A ></P ></LI ><LI ><P ><A HREF="system.html#HDPARMREF" >hdparm</A ></P ></LI ><LI ><P ><A HREF="textproc.html#HEADREF" >head</A ></P ></LI ><LI ><P ><A HREF="internal.html#HELPREF" >help</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#HEXDUMPREF" >hexdump</A ></P ></LI ><LI ><P ><A HREF="communications.html#HOSTREF" >host</A ></P ></LI ><LI ><P ><A HREF="system.html#HOSTIDREF" >hostid</A ></P ></LI ><LI ><P ><A HREF="system.html#HNAMEREF" >hostname</A > (Related topic: the <A HREF="variables2.html#HOSTNAMEREF" >$HOSTNAME</A > variable)</P ></LI ><LI ><P ><A HREF="timedate.html#HWCLOCKREF" >hwclock</A ></P ></LI ><LI ><P ><A HREF="textproc.html#ICONVREF" >iconv</A ></P ></LI ><LI ><P ><A HREF="system.html#IDREF" >id</A > (Related topic: the <A HREF="variables2.html#UIDREF" >$UID</A > variable)</P ></LI ><LI ><P ><A HREF="system.html#IFCONFIGREF" >ifconfig</A ></P ></LI ><LI ><P ><A HREF="external.html#INFOREF" >info</A ></P ></LI ><LI ><P ><A HREF="terminalccmds.html#INFOCMPREF" >infocmp</A ></P ></LI ><LI ><P ><A HREF="system.html#INITREF" >init</A ></P ></LI ><LI ><P ><A HREF="system.html#INSMODREF" >insmod</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#INSTALLREF" >install</A ></P ></LI ><LI ><P ><A HREF="system.html#IPREF" >ip</A ></P ></LI ><LI ><P ><A HREF="communications.html#IPCALCREF" >ipcalc</A ></P ></LI ><LI ><P ><A HREF="system.html#IPTABLESREF" >iptables</A ></P ></LI ><LI ><P ><A HREF="system.html#IWCONFIGREF" >iwconfig</A ></P ></LI ><LI ><P ><A HREF="internal.html#JOBSREF" >jobs</A ></P ></LI ><LI ><P ><A HREF="textproc.html#JOINREF" >join</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#JOTREF" >jot</A ></P ></LI ><LI ><P ><A HREF="internal.html#KILLREF" >kill</A ></P ></LI ><LI ><P ><A HREF="internal.html#KILLALLREF" >killall</A ></P ></LI ><LI ><P ><A HREF="system.html#LASTREF" >last</A ></P ></LI ><LI ><P ><A HREF="system.html#LASTCOMMREF" >lastcomm</A ></P ></LI ><LI ><P ><A HREF="system.html#LASTLOGREF" >lastlog</A ></P ></LI ><LI ><P ><A HREF="system.html#LDDREF" >ldd</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#LESSREF" >less</A ></P ></LI ><LI ><P ><A HREF="internal.html#LETREF" >let</A ></P ></LI ><LI ><P ><A HREF="textproc.html#LEXREF" >lex</A ></P ></LI ><LI ><P ><A HREF="system.html#LIDREF" >lid</A ></P ></LI ><LI ><P ><A HREF="external.html#LINKREF" >ln</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#LOCATEREF" >locate</A ></P ></LI ><LI ><P ><A HREF="system.html#LOCKFILEREF" >lockfile</A ></P ></LI ><LI ><P ><A HREF="system.html#LOGGERREF" >logger</A ></P ></LI ><LI ><P ><A HREF="system.html#LOGNAMEREF" >logname</A ></P ></LI ><LI ><P ><A HREF="internal.html#LOGOUTREF" >logout</A ></P ></LI ><LI ><P ><A HREF="system.html#LOGROTATEREF" >logrotate</A ></P ></LI ><LI ><P ><A HREF="textproc.html#LOOKREF" >look</A ></P ></LI ><LI ><P ><A HREF="system.html#LOSETUPREF" >losetup</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#LPREF" >lp</A ></P ></LI ><LI ><P ><A HREF="external.html#LSREF" >ls</A ></P ></LI ><LI ><P ><A HREF="system.html#LSDEVREF" >lsdev</A ></P ></LI ><LI ><P ><A HREF="system.html#LSMODREF" >lsmod</A ></P ></LI ><LI ><P ><A HREF="system.html#LSOFREF" >lsof</A ></P ></LI ><LI ><P ><A HREF="system.html#LSPCIREF" >lspci</A ></P ></LI ><LI ><P ><A HREF="system.html#LSUSBREF" >lsusb</A ></P ></LI ><LI ><P ><A HREF="system.html#LTRACEREF" >ltrace</A ></P ></LI ><LI ><P ><A HREF="communications.html#LYNXREF" >lynx</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#LZMAREF" >lzcat</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#LZMAREF" >lzma</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#M4REF" >m4</A ></P ></LI ><LI ><P ><A HREF="communications.html#COMMMAIL1" >mail</A ></P ></LI ><LI ><P ><A HREF="communications.html#MAILSTATSREF" >mailstats</A ></P ></LI ><LI ><P ><A HREF="communications.html#MAILTOREF" >mailto</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#MAKEREF" >make</A ></P ></LI ><LI ><P ><A HREF="system.html#MAKEDEVREF" >MAKEDEV</A ></P ></LI ><LI ><P ><A HREF="external.html#MANREF" >man</A ></P ></LI ><LI ><P ><A HREF="bashver4.html#MAPFILEREF" >mapfile</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#MCOOKIEREF" >mcookie</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#MD5SUMREF" >md5sum</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#MERGEREF" >merge</A ></P ></LI ><LI ><P ><A HREF="system.html#MESGREF" >mesg</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#MIMENCODEREF" >mimencode</A ></P ></LI ><LI ><P ><A HREF="system.html#MKBOOTDISKREF" >mkbootdisk</A ></P ></LI ><LI ><P ><A HREF="external.html#MKDIRREF" >mkdir</A ></P ></LI ><LI ><P ><A HREF="system.html#MKDOSFSREF" >mkdosfs</A ></P ></LI ><LI ><P ><A HREF="system.html#MKE2FSREF" >mke2fs</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#MKFIFOREF" >mkfifo</A ></P ></LI ><LI ><P ><A HREF="system.html#MKISOFSREF" >mkisofs</A ></P ></LI ><LI ><P ><A HREF="system.html#MKNODREF" >mknod</A ></P ></LI ><LI ><P ><A HREF="system.html#MKSWAPREF" >mkswap</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#MKTEMPREF" >mktemp</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#MMENCODEREF" >mmencode</A ></P ></LI ><LI ><P ><A HREF="system.html#MODINFOREF" >modinfo</A ></P ></LI ><LI ><P ><A HREF="system.html#MODPROBEREF" >modprobe</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#MOREREF" >more</A ></P ></LI ><LI ><P ><A HREF="system.html#MOUNTREF" >mount</A ></P ></LI ><LI ><P ><A HREF="textproc.html#MSGFMTREF" >msgfmt</A ></P ></LI ><LI ><P ><A HREF="external.html#MVREF" >mv</A ></P ></LI ><LI ><P ><A HREF="system.html#NCREF" >nc</A ></P ></LI ><LI ><P ><A HREF="communications.html#NETCONFIGREF" >netconfig</A ></P ></LI ><LI ><P ><A HREF="system.html#NETSTATREF" >netstat</A ></P ></LI ><LI ><P ><A HREF="system.html#NEWGRPREF" >newgrp</A ></P ></LI ><LI ><P ><A HREF="system.html#NICEREF" >nice</A ></P ></LI ><LI ><P ><A HREF="textproc.html#NLREF" >nl</A ></P ></LI ><LI ><P ><A HREF="system.html#NMREF" >nm</A ></P ></LI ><LI ><P ><A HREF="system.html#NMAPREF" >nmap</A ></P ></LI ><LI ><P ><A HREF="system.html#NOHUPREF" >nohup</A ></P ></LI ><LI ><P ><A HREF="communications.html#NSLOOKUPREF" >nslookup</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#OBJDUMPREF" >objdump</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#ODREF" >od</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#OPENSSLREF" >openssl</A ></P ></LI ><LI ><P ><A HREF="system.html#PASSWDREF" >passwd</A ></P ></LI ><LI ><P ><A HREF="textproc.html#PASTEREF" >paste</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#PATCHREF" >patch</A > (Related topic: <A HREF="filearchiv.html#DIFFREF" >diff</A >)</P ></LI ><LI ><P ><A HREF="extmisc.html#PATHCHKREF" >pathchk</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#PAXREF" >pax</A ></P ></LI ><LI ><P ><A HREF="system.html#PGREPREF" >pgrep</A ></P ></LI ><LI ><P ><A HREF="system.html#PIDOFREF" >pidof</A ></P ></LI ><LI ><P ><A HREF="communications.html#PINGREF" >ping</A ></P ></LI ><LI ><P ><A HREF="system.html#PKILLREF" >pkill</A ></P ></LI ><LI ><P ><A HREF="internal.html#DIRSD" >popd</A ></P ></LI ><LI ><P ><A HREF="textproc.html#PRREF" >pr</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#PRINTENVREF" >printenv</A ></P ></LI ><LI ><P ><A HREF="internal.html#PRINTFREF" >printf</A ></P ></LI ><LI ><P ><A HREF="system.html#PROCINFOREF" >procinfo</A ></P ></LI ><LI ><P ><A HREF="system.html#PPSSREF" >ps</A ></P ></LI ><LI ><P ><A HREF="system.html#PSTREEREF" >pstree</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#PTXREF" >ptx</A ></P ></LI ><LI ><P ><A HREF="internal.html#DIRSD" >pushd</A ></P ></LI ><LI ><P ><A HREF="internal.html#PWD2REF" >pwd</A > (Related topic: the <A HREF="variables2.html#PWDREF" >$PWD</A > variable)</P ></LI ><LI ><P ><A HREF="system.html#QUOTAREF" >quota</A ></P ></LI ><LI ><P ><A HREF="communications.html#RCPREF" >rcp</A ></P ></LI ><LI ><P ><A HREF="system.html#RDEVREF" >rdev</A ></P ></LI ><LI ><P ><A HREF="system.html#RDISTREF" >rdist</A ></P ></LI ><LI ><P ><A HREF="internal.html#READREF" >read</A ></P ></LI ><LI ><P ><A HREF="system.html#READELFREF" >readelf</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#READLINKREF" >readlink</A ></P ></LI ><LI ><P ><A HREF="internal.html#READONLYREF" >readonly</A ></P ></LI ><LI ><P ><A HREF="system.html#REBOOTREF" >reboot</A ></P ></LI ><LI ><P ><A HREF="textproc.html#RECODEREF" >recode</A ></P ></LI ><LI ><P ><A HREF="system.html#NICE2REF" >renice</A ></P ></LI ><LI ><P ><A HREF="terminalccmds.html#RESETREF" >reset</A ></P ></LI ><LI ><P ><A HREF="terminalccmds.html#RESIZEREF" >resize</A ></P ></LI ><LI ><P ><A HREF="system.html#RESTOREREF" >restore</A ></P ></LI ><LI ><P ><A HREF="external.html#REVREF" >rev</A ></P ></LI ><LI ><P ><A HREF="communications.html#RLOGINREF" >rlogin</A ></P ></LI ><LI ><P ><A HREF="external.html#RMREF" >rm</A ></P ></LI ><LI ><P ><A HREF="external.html#RMDIRREF" >rmdir</A ></P ></LI ><LI ><P ><A HREF="system.html#RMMODREF" >rmmod</A ></P ></LI ><LI ><P ><A HREF="system.html#ROUTEREF" >route</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#RPMREF" >rpm</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#RPM2CPIOREF" >rpm2cpio</A ></P ></LI ><LI ><P ><A HREF="communications.html#RSHREF" >rsh</A ></P ></LI ><LI ><P ><A HREF="communications.html#RSYNCREF" >rsync</A ></P ></LI ><LI ><P ><A HREF="system.html#RUNLEVELREF" >runlevel</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#RUNPARTSREF" >run-parts</A ></P ></LI ><LI ><P ><A HREF="communications.html#RXREF" >rx</A ></P ></LI ><LI ><P ><A HREF="communications.html#RZREF" >rz</A ></P ></LI ><LI ><P ><A HREF="system.html#SARREF" >sar</A ></P ></LI ><LI ><P ><A HREF="communications.html#SCPREF" >scp</A ></P ></LI ><LI ><P ><A HREF="terminalccmds.html#SCRIPTREF" >script</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#SDIFFREF" >sdiff</A ></P ></LI ><LI ><P ><A HREF="sedawk.html#SEDREF" >sed</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#SEQREF" >seq</A ></P ></LI ><LI ><P ><A HREF="system.html#SERVICEREF" >service</A ></P ></LI ><LI ><P ><A HREF="internal.html#SETREF" >set</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#SETFACLREF" >setfacl</A ></P ></LI ><LI ><P ><A HREF="system.html#SETQUOTAREF" >setquota</A ></P ></LI ><LI ><P ><A HREF="system.html#SETSERIALREF" >setserial</A ></P ></LI ><LI ><P ><A HREF="system.html#SETTERMREF" >setterm</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#SHA1SUMREF" >sha1sum</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#SHARREF" >shar</A ></P ></LI ><LI ><P ><A HREF="internal.html#SHOPTREF" >shopt</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#SHREDREF" >shred</A ></P ></LI ><LI ><P ><A HREF="system.html#SHUTDOWNREF" >shutdown</A ></P ></LI ><LI ><P ><A HREF="system.html#SIZEREF" >size</A ></P ></LI ><LI ><P ><A HREF="system.html#NICE2REF" >skill</A ></P ></LI ><LI ><P ><A HREF="timedate.html#SLEEPREF" >sleep</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#SLOCATEREF" >slocate</A ></P ></LI ><LI ><P ><A HREF="system.html#NICE2REF" >snice</A ></P ></LI ><LI ><P ><A HREF="textproc.html#SORTREF" >sort</A ></P ></LI ><LI ><P ><A HREF="internal.html#SOURCEREF" >source</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#SOXREF" >sox</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#SPLITREF" >split</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#SQREF" >sq</A ></P ></LI ><LI ><P ><A HREF="communications.html#SSHREF" >ssh</A ></P ></LI ><LI ><P ><A HREF="system.html#STATREF" >stat</A ></P ></LI ><LI ><P ><A HREF="system.html#STRACEREF" >strace</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#STRINGSREF" >strings</A ></P ></LI ><LI ><P ><A HREF="system.html#STRIPREF" >strip</A ></P ></LI ><LI ><P ><A HREF="system.html#STTYREF" >stty</A ></P ></LI ><LI ><P ><A HREF="system.html#SUREF" >su</A ></P ></LI ><LI ><P ><A HREF="system.html#SUDOREF" >sudo</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#SUMREF" >sum</A ></P ></LI ><LI ><P ><A HREF="internal.html#SUSPENDREF" >suspend</A ></P ></LI ><LI ><P ><A HREF="system.html#SWAPONREF" >swapoff</A ></P ></LI ><LI ><P ><A HREF="system.html#SWAPONREF" >swapon</A ></P ></LI ><LI ><P ><A HREF="communications.html#RXREF" >sx</A ></P ></LI ><LI ><P ><A HREF="system.html#SYNCREF" >sync</A ></P ></LI ><LI ><P ><A HREF="communications.html#RZREF" >sz</A ></P ></LI ><LI ><P ><A HREF="external.html#CATREF" >tac</A ></P ></LI ><LI ><P ><A HREF="textproc.html#TAILREF" >tail</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#TARREF" >tar</A ></P ></LI ><LI ><P ><A HREF="textproc.html#TBLREF" >tbl</A ></P ></LI ><LI ><P ><A HREF="system.html#TCPDUMPREF" >tcpdump</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#TEEREF" >tee</A ></P ></LI ><LI ><P ><A HREF="system.html#TELINITREF" >telinit</A ></P ></LI ><LI ><P ><A HREF="communications.html#TELNETREF" >telnet</A ></P ></LI ><LI ><P ><A HREF="textproc.html#TEXREF" >Tex</A ></P ></LI ><LI ><P ><A HREF="textproc.html#TEXEXECREF" >texexec</A ></P ></LI ><LI ><P ><A HREF="timedate.html#TIMREF" >time</A ></P ></LI ><LI ><P ><A HREF="internal.html#TIMESREF" >times</A ></P ></LI ><LI ><P ><A HREF="system.html#TMPWATCHREF" >tmpwatch</A ></P ></LI ><LI ><P ><A HREF="system.html#TOPREF" >top</A ></P ></LI ><LI ><P ><A HREF="timedate.html#TOUCHREF" >touch</A ></P ></LI ><LI ><P ><A HREF="terminalccmds.html#TPUTREF" >tput</A ></P ></LI ><LI ><P ><A HREF="textproc.html#TRREF" >tr</A ></P ></LI ><LI ><P ><A HREF="communications.html#TRACEROUTEREF" >traceroute</A ></P ></LI ><LI ><P ><A HREF="internal.html#TRUEREF" >true</A ></P ></LI ><LI ><P ><A HREF="system.html#TSETREF" >tset</A ></P ></LI ><LI ><P ><A HREF="textproc.html#TSORTREF" >tsort</A ></P ></LI ><LI ><P ><A HREF="system.html#TTYREF" >tty</A ></P ></LI ><LI ><P ><A HREF="system.html#TUNE2FSREF" >tune2fs</A ></P ></LI ><LI ><P ><A HREF="internal.html#TYPEREF" >type</A ></P ></LI ><LI ><P ><A HREF="declareref.html" >typeset</A ></P ></LI ><LI ><P ><A HREF="system.html#ULIMITREF" >ulimit</A ></P ></LI ><LI ><P ><A HREF="system.html#UMASKREF" >umask</A ></P ></LI ><LI ><P ><A HREF="system.html#UMOUNTREF" >umount</A ></P ></LI ><LI ><P ><A HREF="system.html#UNAMEREF" >uname</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#UNARCREF" >unarc</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#UNARCREF" >unarj</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#UNCOMPRESSREF" >uncompress</A ></P ></LI ><LI ><P ><A HREF="textproc.html#EXPANDREF" >unexpand</A ></P ></LI ><LI ><P ><A HREF="textproc.html#UNIQREF" >uniq</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#UNITSREF" >units</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#LZMAREF" >unlzma</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#UNARCREF" >unrar</A ></P ></LI ><LI ><P ><A HREF="internal.html#UNSETREF" >unset</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#SQREF" >unsq</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#ZIPREF" >unzip</A ></P ></LI ><LI ><P ><A HREF="system.html#UPTIMEREF" >uptime</A ></P ></LI ><LI ><P ><A HREF="system.html#LSUSBREF" >usbmodules</A ></P ></LI ><LI ><P ><A HREF="system.html#USERADDREF" >useradd</A ></P ></LI ><LI ><P ><A HREF="system.html#USERADDREF" >userdel</A ></P ></LI ><LI ><P ><A HREF="system.html#USERMODREF" >usermod</A ></P ></LI ><LI ><P ><A HREF="system.html#USERSREF" >users</A ></P ></LI ><LI ><P ><A HREF="timedate.html#USLEEPREF" >usleep</A ></P ></LI ><LI ><P ><A HREF="communications.html#UUCPREF" >uucp</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#UUDECODEREF" >uudecode</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#UUENCODEREF" >uuencode</A ></P ></LI ><LI ><P ><A HREF="communications.html#UUXREF" >uux</A ></P ></LI ><LI ><P ><A HREF="communications.html#VACATIONREF" >vacation</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#VDIRREF" >vdir</A ></P ></LI ><LI ><P ><A HREF="system.html#VMSTATREF" >vmstat</A ></P ></LI ><LI ><P ><A HREF="communications.html#VRFYREF" >vrfy</A ></P ></LI ><LI ><P ><A HREF="system.html#WREF" >w</A ></P ></LI ><LI ><P ><A HREF="internal.html#WAITREF" >wait</A ></P ></LI ><LI ><P ><A HREF="system.html#WALLREF" >wall</A ></P ></LI ><LI ><P ><A HREF="system.html#WATCHREF" >watch</A ></P ></LI ><LI ><P ><A HREF="textproc.html#WCREF" >wc</A ></P ></LI ><LI ><P ><A HREF="communications.html#WGETREF" >wget</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#WHATISREF" >whatis</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#WHEREISREF" >whereis</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#WHICHREF" >which</A ></P ></LI ><LI ><P ><A HREF="system.html#WHOREF" >who</A ></P ></LI ><LI ><P ><A HREF="system.html#WHOAMIREF" >whoami</A ></P ></LI ><LI ><P ><A HREF="communications.html#WHOISREF" >whois</A ></P ></LI ><LI ><P ><A HREF="communications.html#WRITEREF" >write</A ></P ></LI ><LI ><P ><A HREF="moreadv.html#XARGSREF" >xargs</A ></P ></LI ><LI ><P ><A HREF="system.html#XRANDRREF" >xrandr</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#XZREF" >xz</A ></P ></LI ><LI ><P ><A HREF="textproc.html#YACCREF" >yacc</A ></P ></LI ><LI ><P ><A HREF="extmisc.html#YESREF" >yes</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#ZCATREF" >zcat</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#ZDIFFREF" >zdiff</A ></P ></LI ><LI ><P ><A HREF="timedate.html#ZDUMPREF" >zdump</A ></P ></LI ><LI ><P ><A HREF="textproc.html#ZEGREPREF" >zegrep</A ></P ></LI ><LI ><P ><A HREF="textproc.html#ZEGREPREF" >zfgrep</A ></P ></LI ><LI ><P ><A HREF="textproc.html#ZEGREPREF" >zgrep</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#ZIPREF" >zip</A ></P ></LI ></UL ></DIV ><DIV CLASS="TOC" ><DL ><DT ><B >Table of Contents</B ></DT ><DT >15. <A HREF="internal.html" >Internal Commands and Builtins</A ></DT ><DT >16. <A HREF="external.html" >External Filters, Programs and Commands</A ></DT ><DT >17. <A HREF="system.html" >System and Administrative Commands</A ></DT ></DL ></DIV ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="recess-time.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="internal.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Recess Time</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Internal Commands and Builtins</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/part5.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Advanced Topics</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="System and Administrative Commands" HREF="system.html"><LINK REL="NEXT" TITLE="Regular Expressions" HREF="regexp.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="PART" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="system.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="regexp.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="PART" ><A NAME="PART5" ></A ><DIV CLASS="TITLEPAGE" ><H1 CLASS="TITLE" >Part 5. Advanced Topics</H1 ><DIV CLASS="PARTINTRO" ><A NAME="AEN17110" ></A ><P >At this point, we are ready to delve into certain of the difficult and unusual aspects of scripting. Along the way, we will attempt to <SPAN CLASS="QUOTE" >"push the envelope"</SPAN > in various ways and examine <I CLASS="FIRSTTERM" >boundary conditions</I > (what happens when we move into uncharted territory?).</P ></DIV ><DIV CLASS="TOC" ><DL ><DT ><B >Table of Contents</B ></DT ><DT >18. <A HREF="regexp.html" >Regular Expressions</A ></DT ><DT >19. <A HREF="here-docs.html" >Here Documents</A ></DT ><DT >20. <A HREF="io-redirection.html" >I/O Redirection</A ></DT ><DT >21. <A HREF="subshells.html" >Subshells</A ></DT ><DT >22. <A HREF="restricted-sh.html" >Restricted Shells</A ></DT ><DT >23. <A HREF="process-sub.html" >Process Substitution</A ></DT ><DT >24. <A HREF="functions.html" >Functions</A ></DT ><DT >25. <A HREF="aliases.html" >Aliases</A ></DT ><DT >26. <A HREF="list-cons.html" >List Constructs</A ></DT ><DT >27. <A HREF="arrays.html" >Arrays</A ></DT ><DT >28. <A HREF="ivr.html" >Indirect References</A ></DT ><DT >29. <A HREF="devproc.html" ><TT CLASS="FILENAME" >/dev</TT > and <TT CLASS="FILENAME" >/proc</TT ></A ></DT ><DT >30. <A HREF="networkprogramming.html" >Network Programming</A ></DT ><DT >31. <A HREF="zeros.html" >Of Zeros and Nulls</A ></DT ><DT >32. <A HREF="debugging.html" >Debugging</A ></DT ><DT >33. <A HREF="options.html" >Options</A ></DT ><DT >34. <A HREF="gotchas.html" >Gotchas</A ></DT ><DT >35. <A HREF="scrstyle.html" >Scripting With Style</A ></DT ><DT >36. <A HREF="miscellany.html" >Miscellany</A ></DT ><DT >37. <A HREF="bash2.html" >Bash, versions 2, 3, and 4</A ></DT ></DL ></DIV ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="system.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="regexp.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >System and Administrative Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Regular Expressions</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/pathmanagement.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Parsing and Managing Pathnames</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Awk" HREF="awk.html"><LINK REL="NEXT" TITLE="Exit Codes With Special Meanings" HREF="exitcodes.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="awk.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="exitcodes.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="PATHMANAGEMENT" ></A >Appendix D. Parsing and Managing Pathnames</H1 ><P >Emmanual Rouat contributed the following example of parsing and transforming <I CLASS="FIRSTTERM" >filenames</I > and, in particular, <A HREF="special-chars.html#PATHNAMEREF" >pathnames</A >. It draws heavily on the functionality of <I CLASS="FIRSTTERM" >sed</I >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/usr/bin/env bash 2 #----------------------------------------------------------- 3 # Management of PATH, LD_LIBRARY_PATH, MANPATH variables... 4 # By Emmanuel Rouat <no-email> 5 # (Inspired by the bash documentation 'pathfuncs' and on 6 # discussions found on stackoverflow: 7 # http://stackoverflow.com/questions/370047/ 8 # http://stackoverflow.com/questions/273909/#346860 ) 9 # Last modified: Sat Sep 22 12:01:55 CEST 2012 10 # 11 # The following functions handle spaces correctly. 12 # These functions belong in .bash_profile rather than in 13 # .bashrc, I guess. 14 # 15 # The modular aspect of these functions should make it easy 16 # to expand them to handle path substitutions instead 17 # of path removal etc.... 18 # 19 # See http://www.catonmat.net/blog/awk-one-liners-explained-part-two/ 20 # (item 43) for an explanation of the 'duplicate-entries' removal 21 # (it's a nice trick!) 22 #----------------------------------------------------------- 23 24 # Show $@ (usually PATH) as list. 25 function p_show() { local p="$@" && for p; do [[ ${!p} ]] && 26 echo -e ${!p//:/\\n}; done } 27 28 # Filter out empty lines, multiple/trailing slashes, and duplicate entries. 29 function p_filter() 30 { awk '/^[ \t]*$/ {next} {sub(/\/+$/, "");gsub(/\/+/, "/")}!x[$0]++' ;} 31 32 # Rebuild list of items into ':' separated word (PATH-like). 33 function p_build() { paste -sd: ;} 34 35 # Clean $1 (typically PATH) and rebuild it 36 function p_clean() 37 { local p=${1} && eval ${p}='$(p_show ${p} | p_filter | p_build)' ;} 38 39 # Remove $1 from $2 (found on stackoverflow, with modifications). 40 function p_rm() 41 { local d=$(echo $1 | p_filter) p=${2} && 42 eval ${p}='$(p_show ${p} | p_filter | grep -xv "${d}" | p_build)' ;} 43 44 # Same as previous, but filters on a pattern (dangerous... 45 #+ don't use 'bin' or '/' as pattern!). 46 function p_rmpat() 47 { local d=$(echo $1 | p_filter) p=${2} && eval ${p}='$(p_show ${p} | 48 p_filter | grep -v "${d}" | p_build)' ;} 49 50 # Delete $1 from $2 and append it cleanly. 51 function p_append() 52 { local d=$(echo $1 | p_filter) p=${2} && p_rm "${d}" ${p} && 53 eval ${p}='$(p_show ${p} d | p_build)' ;} 54 55 # Delete $1 from $2 and prepend it cleanly. 56 function p_prepend() 57 { local d=$(echo $1 | p_filter) p=${2} && p_rm "${d}" ${p} && 58 eval ${p}='$(p_show d ${p} | p_build)' ;} 59 60 # Some tests: 61 echo 62 MYPATH="/bin:/usr/bin/:/bin://bin/" 63 p_append "/project//my project/bin" MYPATH 64 echo "Append '/project//my project/bin' to '/bin:/usr/bin/:/bin://bin/'" 65 echo "(result should be: /bin:/usr/bin:/project/my project/bin)" 66 echo $MYPATH 67 68 echo 69 MYOTHERPATH="/bin:/usr/bin/:/bin:/project//my project/bin" 70 p_prepend "/project//my project/bin" MYOTHERPATH 71 echo "Prepend '/project//my project/bin' \ 72 to '/bin:/usr/bin/:/bin:/project//my project/bin/'" 73 echo "(result should be: /project/my project/bin:/bin:/usr/bin)" 74 echo $MYOTHERPATH 75 76 echo 77 p_prepend "/project//my project/bin" FOOPATH # FOOPATH doesn't exist. 78 echo "Prepend '/project//my project/bin' to an unset variable" 79 echo "(result should be: /project/my project/bin)" 80 echo $FOOPATH 81 82 echo 83 BARPATH="/a:/b/://b c://a:/my local pub" 84 p_clean BARPATH 85 echo "Clean BARPATH='/a:/b/://b c://a:/my local pub'" 86 echo "(result should be: /a:/b:/b c:/my local pub)" 87 echo $BARPATH</PRE ></TD ></TR ></TABLE ></P ><P >***</P ><P >David Wheeler kindly permitted me to use his instructive examples.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 Doing it correctly: A quick summary 2 by David Wheeler 3 http://www.dwheeler.com/essays/filenames-in-shell.html 4 5 So, how can you process filenames correctly in shell? Here's a quick 6 summary about how to do it correctly, for the impatient who "just want the 7 answer". In short: Double-quote to use "$variable" instead of $variable, 8 set IFS to just newline and tab, prefix all globs/filenames so they cannot 9 begin with "-" when expanded, and use one of a few templates that work 10 correctly. Here are some of those templates that work correctly: 11 12 13 IFS="$(printf '\n\t')" 14 # Remove SPACE, so filenames with spaces work well. 15 16 # Correct glob use: 17 #+ always use "for" loop, prefix glob, check for existence: 18 for file in ./* ; do # Use "./*" ... NEVER bare "*" ... 19 if [ -e "$file" ] ; then # Make sure it isn't an empty match. 20 COMMAND ... "$file" ... 21 fi 22 done 23 24 25 26 # Correct glob use, but requires nonstandard bash extension. 27 shopt -s nullglob # Bash extension, 28 #+ so that empty glob matches will work. 29 for file in ./* ; do # Use "./*", NEVER bare "*" 30 COMMAND ... "$file" ... 31 done 32 33 34 35 # These handle all filenames correctly; 36 #+ can be unwieldy if COMMAND is large: 37 find ... -exec COMMAND... {} \; 38 find ... -exec COMMAND... {} \+ # If multiple files are okay for COMMAND. 39 40 41 42 # This skips filenames with control characters 43 #+ (including tab and newline). 44 IFS="$(printf '\n\t')" 45 controlchars="$(printf '*[\001-\037\177]*')" 46 for file in $(find . ! -name "$controlchars"') ; do 47 COMMAND "$file" ... 48 done 49 50 51 52 # Okay if filenames can't contain tabs or newlines -- 53 #+ beware the assumption. 54 IFS="$(printf '\n\t')" 55 for file in $(find .) ; do 56 COMMAND "$file" ... 57 done 58 59 60 61 # Requires nonstandard but common extensions in find and xargs: 62 find . -print0 | xargs -0 COMMAND 63 64 # Requires nonstandard extensions to find and to shell (bash works). 65 # variables might not stay set once the loop ends: 66 find . -print0 | while IFS="" read -r -d "" file ; do ... 67 COMMAND "$file" # Use quoted "$file", not $file, everywhere. 68 done 69 70 71 72 # Requires nonstandard extensions to find and to shell (bash works). 73 # Underlying system must include named pipes (FIFOs) 74 #+ or the /dev/fd mechanism. 75 # In this version, variables *do* stay set after the loop ends, 76 # and you can read from stdin. 77 #+ (Change the 4 to another number if fd 4 is needed.) 78 79 while IFS="" read -r -d "" file <&4 ; do 80 COMMAND "$file" # Use quoted "$file" -- not $file, everywhere. 81 done 4< <(find . -print0) 82 83 84 # Named pipe version. 85 # Requires nonstandard extensions to find and to shell's read (bash ok). 86 # Underlying system must include named pipes (FIFOs). 87 # Again, in this version, variables *do* stay set after the loop ends, 88 # and you can read from stdin. 89 # (Change the 4 to something else if fd 4 needed). 90 91 mkfifo mypipe 92 93 find . -print0 > mypipe & 94 while IFS="" read -r -d "" file <&4 ; do 95 COMMAND "$file" # Use quoted "$file", not $file, everywhere. 96 done 4< mypipe</PRE ></TD ></TR ></TABLE ></P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="awk.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="exitcodes.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Awk</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Exit Codes With Special Meanings</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/portabilityissues.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Portability Issues</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Miscellany" HREF="miscellany.html"><LINK REL="PREVIOUS" TITLE="Security Issues" HREF="securityissues.html"><LINK REL="NEXT" TITLE="Shell Scripting Under Windows" HREF="winscript.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="securityissues.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 36. Miscellany</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="winscript.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="PORTABILITYISSUES" ></A >36.9. Portability Issues</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >It is easier to port a shell than a shell script.</I ></P ><P ><I >--Larry Wall</I ></P ></I ></TD ></TR ></TABLE ><P >This book deals specifically with Bash scripting on a GNU/Linux system. All the same, users of <B CLASS="COMMAND" >sh</B > and <B CLASS="COMMAND" >ksh</B > will find much of value here.</P ><P ><A NAME="POSIX3REF" ></A >As it happens, many of the various shells and scripting languages seem to be converging toward the <A HREF="sha-bang.html#POSIX2REF" >POSIX</A > 1003.2 standard. Invoking Bash with the <TT CLASS="OPTION" >--posix</TT > option or inserting a <B CLASS="COMMAND" >set -o posix</B > at the head of a script causes Bash to conform very closely to this standard. Another alternative is to use a <I CLASS="FIRSTTERM" >#!/bin/sh</I > <A HREF="sha-bang.html#SHABANGREF" >sha-bang header</A > in the script, rather than <I CLASS="FIRSTTERM" >#!/bin/bash</I >. <A NAME="AEN20799" HREF="#FTN.AEN20799" >[1]</A > Note that <TT CLASS="FILENAME" >/bin/sh</TT > is a <A HREF="external.html#LINKREF" >link</A > to <TT CLASS="FILENAME" >/bin/bash</TT > in Linux and certain other flavors of UNIX, and a script invoked this way disables extended Bash functionality.</P ><P >Most Bash scripts will run as-is under <B CLASS="COMMAND" >ksh</B >, and vice-versa, since Chet Ramey has been busily porting <B CLASS="COMMAND" >ksh</B > features to the latest versions of Bash.</P ><P >On a commercial UNIX machine, scripts using GNU-specific features of standard commands may not work. This has become less of a problem in the last few years, as the GNU utilities have pretty much displaced their proprietary counterparts even on <SPAN CLASS="QUOTE" >"big-iron"</SPAN > UNIX. <A HREF="http://linux.oreillynet.com/pub/a/linux/2002/02/28/caldera.html" TARGET="_top" >Caldera's release of the source</A > to many of the original UNIX utilities has accelerated the trend.</P ><P ><A NAME="BASHCOMPAT" ></A ></P ><P >Bash has certain features that the traditional <A HREF="why-shell.html#BASHDEF" >Bourne shell</A > lacks. Among these are: <UL ><LI ><P >Certain extended <A HREF="options.html#INVOCATIONOPTIONSREF" >invocation options</A ></P ></LI ><LI ><P ><A HREF="commandsub.html#COMMANDSUBREF" >Command substitution</A > using <B CLASS="COMMAND" >$( )</B > notation</P ></LI ><LI ><P ><A HREF="bashver3.html#BRACEEXPREF3" >Brace expansion</A ></P ></LI ><LI ><P >Certain <A HREF="arrays.html#ARRAYREF" >array</A > operations, and <A HREF="bashver4.html#ASSOCARR" >associative arrays</A ></P ></LI ><LI ><P >The <A HREF="tests.html#DBLBRACKETS" >double brackets</A > extended test construct</P ></LI ><LI ><P >The <A HREF="dblparens.html#DBLPARENSREF" >double-parentheses</A > arithmetic-evaluation construct</P ></LI ><LI ><P >Certain <A HREF="manipulatingvars.html#STRINGMANIP" >string manipulation</A > operations</P ></LI ><LI ><P ><A HREF="process-sub.html#PROCESSSUBREF" >Process substitution</A ></P ></LI ><LI ><P >A Regular Expression <A HREF="bashver3.html#REGEXMATCHREF" >matching operator</A ></P ></LI ><LI ><P >Bash-specific <A HREF="internal.html#BUILTINREF" >builtins</A ></P ></LI ><LI ><P ><A HREF="bashver4.html#COPROCREF" >Coprocesses</A ></P ></LI ></UL > </P ><P >See the <A HREF="ftp://ftp.cwru.edu/pub/bash/FAQ" TARGET="_top" >Bash F.A.Q.</A > for a complete listing.</P ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="AEN20853" ></A >36.9.1. A Test Suite</H2 ><P ><A NAME="TESTSUITE0" ></A >Let us illustrate some of the incompatibilities between Bash and the classic Bourne shell. Download and install the <A HREF="http://freshmeat.net/projects/bournesh" TARGET="_top" ><SPAN CLASS="QUOTE" >"Heirloom Bourne Shell"</SPAN ></A > and run the following script, first using Bash, then the classic <I CLASS="FIRSTTERM" >sh</I >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="TESTSUITE" ></A ><P ><B >Example 36-23. Test Suite</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # test-suite.sh 3 # A partial Bash compatibility test suite. 4 # Run this on your version of Bash, or some other shell. 5 6 default_option=FAIL # Tests below will fail unless . . . 7 8 echo 9 echo -n "Testing " 10 sleep 1; echo -n ". " 11 sleep 1; echo -n ". " 12 sleep 1; echo ". " 13 echo 14 15 # Double brackets 16 String="Double brackets supported?" 17 echo -n "Double brackets test: " 18 if [[ "$String" = "Double brackets supported?" ]] 19 then 20 echo "PASS" 21 else 22 echo "FAIL" 23 fi 24 25 26 # Double brackets and regex matching 27 String="Regex matching supported?" 28 echo -n "Regex matching: " 29 if [[ "$String" =~ R.....matching* ]] 30 then 31 echo "PASS" 32 else 33 echo "FAIL" 34 fi 35 36 37 # Arrays 38 test_arr=$default_option # FAIL 39 Array=( If supports arrays will print PASS ) 40 test_arr=${Array[5]} 41 echo "Array test: $test_arr" 42 43 44 # Command Substitution 45 csub_test () 46 { 47 echo "PASS" 48 } 49 50 test_csub=$default_option # FAIL 51 test_csub=$(csub_test) 52 echo "Command substitution test: $test_csub" 53 54 echo 55 56 # Completing this script is an exercise for the reader. 57 # Add to the above similar tests for double parentheses, 58 #+ brace expansion, process substitution, etc. 59 60 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN20799" HREF="portabilityissues.html#AEN20799" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Or, better yet, <A HREF="system.html#ENVV2REF" >#!/bin/env sh</A >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="securityissues.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="winscript.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Security Issues</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Shell Scripting Under Windows</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/prelimexer.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Preliminary Exercises</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Starting Off With a Sha-Bang" HREF="sha-bang.html"><LINK REL="PREVIOUS" TITLE="Starting Off With a Sha-Bang" HREF="sha-bang.html"><LINK REL="NEXT" TITLE="Basics" HREF="part2.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="sha-bang.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 2. Starting Off With a Sha-Bang</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="part2.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="PRELIMEXER" ></A >2.2. Preliminary Exercises</H1 ><OL TYPE="1" ><LI ><P >System administrators often write scripts to automate common tasks. Give several instances where such scripts would be useful.</P ></LI ><LI ><P >Write a script that upon invocation shows the <A HREF="timedate.html#DATEREF" >time and date</A >, <A HREF="system.html#WHOREF" >lists all logged-in users</A >, and gives the system <A HREF="system.html#UPTIMEREF" >uptime</A >. The script then <A HREF="io-redirection.html#IOREDIRREF" >saves this information</A > to a logfile.</P ></LI ></OL ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="sha-bang.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="part2.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Starting Off With a Sha-Bang</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="sha-bang.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Basics</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/process-sub.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Process Substitution</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Restricted Shells" HREF="restricted-sh.html"><LINK REL="NEXT" TITLE="Functions" HREF="functions.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="restricted-sh.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="functions.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="PROCESS-SUB" ></A >Chapter 23. Process Substitution</H1 ><P ><A NAME="PROCESSSUBREF" ></A ><A HREF="special-chars.html#PIPEREF" >Piping</A > the <TT CLASS="FILENAME" >stdout</TT > of a command into the <TT CLASS="FILENAME" >stdin</TT > of another is a powerful technique. But, what if you need to pipe the <TT CLASS="FILENAME" >stdout</TT > of <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >multiple</I ></SPAN > commands? This is where <TT CLASS="REPLACEABLE" ><I >process substitution</I ></TT > comes in.</P ><P ><I CLASS="FIRSTTERM" >Process substitution</I > feeds the output of a <A HREF="special-chars.html#PROCESSREF" >process</A > (or processes) into the <TT CLASS="FILENAME" >stdin</TT > of another process.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="COMMANDSPARENS1" ></A >Template</B ></P ><DL ><DT >Command list enclosed within parentheses</DT ><DD ><P ><B CLASS="COMMAND" >>(command_list)</B ></P ><P ><B CLASS="COMMAND" ><(command_list)</B ></P ><P >Process substitution uses <TT CLASS="FILENAME" >/dev/fd/<n></TT > files to send the results of the process(es) within parentheses to another process. <A NAME="AEN18244" HREF="#FTN.AEN18244" >[1]</A > </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >There is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >no</I ></SPAN > space between the the <SPAN CLASS="QUOTE" >"<"</SPAN > or <SPAN CLASS="QUOTE" >">"</SPAN > and the parentheses. Space there would give an error message.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo >(true)</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/dev/fd/63</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo <(true)</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/dev/fd/63</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo >(true) <(true)</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/dev/fd/63 /dev/fd/62</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >wc <(cat /usr/share/dict/linux.words)</B ></TT > <TT CLASS="COMPUTEROUTPUT" > 483523 483523 4992010 /dev/fd/63</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep script /usr/share/dict/linux.words | wc</B ></TT > <TT CLASS="COMPUTEROUTPUT" > 262 262 3601</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >wc <(grep script /usr/share/dict/linux.words)</B ></TT > <TT CLASS="COMPUTEROUTPUT" > 262 262 3601 /dev/fd/63</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P > Bash creates a pipe with two <A HREF="io-redirection.html#FDREF" >file descriptors</A >, <TT CLASS="FILENAME" >--fIn</TT > and <TT CLASS="FILENAME" >fOut--</TT >. The <TT CLASS="FILENAME" >stdin</TT > of <A HREF="internal.html#TRUEREF" >true</A > connects to <TT CLASS="FILENAME" >fOut</TT > (dup2(fOut, 0)), then Bash passes a <TT CLASS="FILENAME" >/dev/fd/fIn</TT > argument to <B CLASS="COMMAND" >echo</B >. On systems lacking <TT CLASS="FILENAME" >/dev/fd/<n></TT > files, Bash may use temporary files. (Thanks, S.C.) </P ></TD ></TR ></TABLE ></DIV ><P >Process substitution can compare the output of two different commands, or even the output of different options to the same command.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >comm <(ls -l) <(ls -al)</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 12 -rw-rw-r-- 1 bozo bozo 78 Mar 10 12:58 File0 -rw-rw-r-- 1 bozo bozo 42 Mar 10 12:58 File2 -rw-rw-r-- 1 bozo bozo 103 Mar 10 12:58 t2.sh total 20 drwxrwxrwx 2 bozo bozo 4096 Mar 10 18:10 . drwx------ 72 bozo bozo 4096 Mar 10 17:58 .. -rw-rw-r-- 1 bozo bozo 78 Mar 10 12:58 File0 -rw-rw-r-- 1 bozo bozo 42 Mar 10 12:58 File2 -rw-rw-r-- 1 bozo bozo 103 Mar 10 12:58 t2.sh</TT ></PRE ></TD ></TR ></TABLE ><P ><A NAME="PCC2DIR" ></A ></P ><P > Process substitution can compare the contents of two directories -- to see which filenames are in one, but not the other.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 diff <(ls $first_directory) <(ls $second_directory)</PRE ></TD ></TR ></TABLE > </P ><P >Some other usages and uses of process substitution:</P ><P ><A NAME="PSFDSTDIN" ></A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 read -a list < <( od -Ad -w24 -t u2 /dev/urandom ) 2 # Read a list of random numbers from /dev/urandom, 3 #+ process with "od" 4 #+ and feed into stdin of "read" . . . 5 6 # From "insertion-sort.bash" example script. 7 # Courtesy of JuanJo Ciarlante.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="NETCATEXAMPLE" ></A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 PORT=6881 # bittorrent 2 3 # Scan the port to make sure nothing nefarious is going on. 4 netcat -l $PORT | tee>(md5sum ->mydata-orig.md5) | 5 gzip | tee>(md5sum - | sed 's/-$/mydata.lz2/'>mydata-gz.md5)>mydata.gz 6 7 # Check the decompression: 8 gzip -d<mydata.gz | md5sum -c mydata-orig.md5) 9 # The MD5sum of the original checks stdin and detects compression issues. 10 11 # Bill Davidsen contributed this example 12 #+ (with light edits by the ABS Guide author).</PRE ></TD ></TR ></TABLE ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat <(ls -l) 2 # Same as ls -l | cat 3 4 sort -k 9 <(ls -l /bin) <(ls -l /usr/bin) <(ls -l /usr/X11R6/bin) 5 # Lists all the files in the 3 main 'bin' directories, and sorts by filename. 6 # Note that three (count 'em) distinct commands are fed to 'sort'. 7 8 9 diff <(command1) <(command2) # Gives difference in command output. 10 11 tar cf >(bzip2 -c > file.tar.bz2) $directory_name 12 # Calls "tar cf /dev/fd/?? $directory_name", and "bzip2 -c > file.tar.bz2". 13 # 14 # Because of the /dev/fd/<n> system feature, 15 # the pipe between both commands does not need to be named. 16 # 17 # This can be emulated. 18 # 19 bzip2 -c < pipe > file.tar.bz2& 20 tar cf pipe $directory_name 21 rm pipe 22 # or 23 exec 3>&1 24 tar cf /dev/fd/4 $directory_name 4>&1 >&3 3>&- | bzip2 -c > file.tar.bz2 3>&- 25 exec 3>&- 26 27 28 # Thanks, Stéphane Chazelas</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="GOODREAD0" ></A >Here is a method of circumventing the problem of an <A HREF="gotchas.html#BADREAD0" ><I CLASS="FIRSTTERM" >echo</I > piped to a <I CLASS="FIRSTTERM" >while-read loop</I ></A > running in a subshell.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="WRPS" ></A ><P ><B >Example 23-1. Code block redirection without forking</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # wr-ps.bash: while-read loop with process substitution. 3 4 # This example contributed by Tomas Pospisek. 5 # (Heavily edited by the ABS Guide author.) 6 7 echo 8 9 echo "random input" | while read i 10 do 11 global=3D": Not available outside the loop." 12 # ... because it runs in a subshell. 13 done 14 15 echo "\$global (from outside the subprocess) = $global" 16 # $global (from outside the subprocess) = 17 18 echo; echo "--"; echo 19 20 while read i 21 do 22 echo $i 23 global=3D": Available outside the loop." 24 # ... because it does NOT run in a subshell. 25 done < <( echo "random input" ) 26 # ^ ^ 27 28 echo "\$global (using process substitution) = $global" 29 # Random input 30 # $global (using process substitution) = 3D: Available outside the loop. 31 32 33 echo; echo "##########"; echo 34 35 36 37 # And likewise . . . 38 39 declare -a inloop 40 index=0 41 cat $0 | while read line 42 do 43 inloop[$index]="$line" 44 ((index++)) 45 # It runs in a subshell, so ... 46 done 47 echo "OUTPUT = " 48 echo ${inloop[*]} # ... nothing echoes. 49 50 51 echo; echo "--"; echo 52 53 54 declare -a outloop 55 index=0 56 while read line 57 do 58 outloop[$index]="$line" 59 ((index++)) 60 # It does NOT run in a subshell, so ... 61 done < <( cat $0 ) 62 echo "OUTPUT = " 63 echo ${outloop[*]} # ... the entire script echoes. 64 65 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="PSUBPIPING" ></A >This is a similar example.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="PSUBP" ></A ><P ><B >Example 23-2. Redirecting the output of <I CLASS="FIRSTTERM" >process substitution</I > into a loop.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # psub.bash 3 4 # As inspired by Diego Molina (thanks!). 5 6 declare -a array0 7 while read 8 do 9 array0[${#array0[@]}]="$REPLY" 10 done < <( sed -e 's/bash/CRASH-BANG!/' $0 | grep bin | awk '{print $1}' ) 11 # Sets the default 'read' variable, $REPLY, by process substitution, 12 #+ then copies it into an array. 13 14 echo "${array0[@]}" 15 16 exit $? 17 18 # ====================================== # 19 20 bash psub.bash 21 22 #!/bin/CRASH-BANG! done #!/bin/CRASH-BANG!</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >A reader sent in the following interesting example of process substitution.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Script fragment taken from SuSE distribution: 2 3 # --------------------------------------------------------------# 4 while read des what mask iface; do 5 # Some commands ... 6 done < <(route -n) 7 # ^ ^ First < is redirection, second is process substitution. 8 9 # To test it, let's make it do something. 10 while read des what mask iface; do 11 echo $des $what $mask $iface 12 done < <(route -n) 13 14 # Output: 15 # Kernel IP routing table 16 # Destination Gateway Genmask Flags Metric Ref Use Iface 17 # 127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo 18 # --------------------------------------------------------------# 19 20 # As Stéphane Chazelas points out, 21 #+ an easier-to-understand equivalent is: 22 route -n | 23 while read des what mask iface; do # Variables set from output of pipe. 24 echo $des $what $mask $iface 25 done # This yields the same output as above. 26 # However, as Ulrich Gayer points out . . . 27 #+ this simplified equivalent uses a subshell for the while loop, 28 #+ and therefore the variables disappear when the pipe terminates. 29 30 # --------------------------------------------------------------# 31 32 # However, Filip Moritz comments that there is a subtle difference 33 #+ between the above two examples, as the following shows. 34 35 ( 36 route -n | while read x; do ((y++)); done 37 echo $y # $y is still unset 38 39 while read x; do ((y++)); done < <(route -n) 40 echo $y # $y has the number of lines of output of route -n 41 ) 42 43 More generally spoken 44 ( 45 : | x=x 46 # seems to start a subshell like 47 : | ( x=x ) 48 # while 49 x=x < <(:) 50 # does not 51 ) 52 53 # This is useful, when parsing csv and the like. 54 # That is, in effect, what the original SuSE code fragment does.</PRE ></TD ></TR ></TABLE ></P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18244" HREF="process-sub.html#AEN18244" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This has the same effect as a <A HREF="extmisc.html#NAMEDPIPEREF" >named pipe</A > (temp file), and, in fact, named pipes were at one time used in process substitution.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="restricted-sh.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="functions.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Restricted Shells</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Functions</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/procref1.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >/proc</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="/dev and /proc" HREF="devproc.html"><LINK REL="PREVIOUS" TITLE="/dev and /proc" HREF="devproc.html"><LINK REL="NEXT" TITLE="Network Programming" HREF="networkprogramming.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="devproc.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 29. <TT CLASS="FILENAME" >/dev</TT > and <TT CLASS="FILENAME" >/proc</TT ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="networkprogramming.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="PROCREF1" ></A >29.2. <TT CLASS="FILENAME" >/proc</TT ></H1 ><P ><A NAME="PROCREF2" ></A ></P ><P >The <TT CLASS="FILENAME" >/proc</TT > directory is actually a pseudo-filesystem. The files in <TT CLASS="FILENAME" >/proc</TT > mirror currently running system and kernel <A HREF="special-chars.html#PROCESSREF" >processes</A > and contain information and statistics about them.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat /proc/devices</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Character devices: 1 mem 2 pty 3 ttyp 4 ttyS 5 cua 7 vcs 10 misc 14 sound 29 fb 36 netlink 128 ptm 136 pts 162 raw 254 pcmcia Block devices: 1 ramdisk 2 fd 3 ide0 9 md</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat /proc/interrupts</B ></TT > <TT CLASS="COMPUTEROUTPUT" > CPU0 0: 84505 XT-PIC timer 1: 3375 XT-PIC keyboard 2: 0 XT-PIC cascade 5: 1 XT-PIC soundblaster 8: 1 XT-PIC rtc 12: 4231 XT-PIC PS/2 Mouse 14: 109373 XT-PIC ide0 NMI: 0 ERR: 0</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat /proc/partitions</B ></TT > <TT CLASS="COMPUTEROUTPUT" >major minor #blocks name rio rmerge rsect ruse wio wmerge wsect wuse running use aveq 3 0 3007872 hda 4472 22260 114520 94240 3551 18703 50384 549710 0 111550 644030 3 1 52416 hda1 27 395 844 960 4 2 14 180 0 800 1140 3 2 1 hda2 0 0 0 0 0 0 0 0 0 0 0 3 4 165280 hda4 10 0 20 210 0 0 0 0 0 210 210 ...</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat /proc/loadavg</B ></TT > <TT CLASS="COMPUTEROUTPUT" >0.13 0.42 0.27 2/44 1119</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat /proc/apm</B ></TT > <TT CLASS="COMPUTEROUTPUT" >1.16 1.2 0x03 0x01 0xff 0x80 -1% -1 ?</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat /proc/acpi/battery/BAT0/info</B ></TT > <TT CLASS="COMPUTEROUTPUT" >present: yes design capacity: 43200 mWh last full capacity: 36640 mWh battery technology: rechargeable design voltage: 10800 mV design capacity warning: 1832 mWh design capacity low: 200 mWh capacity granularity 1: 1 mWh capacity granularity 2: 1 mWh model number: IBM-02K6897 serial number: 1133 battery type: LION OEM info: Panasonic</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >fgrep Mem /proc/meminfo</B ></TT > <TT CLASS="COMPUTEROUTPUT" >MemTotal: 515216 kB MemFree: 266248 kB</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Shell scripts may extract data from certain of the files in <TT CLASS="FILENAME" >/proc</TT >. <A NAME="AEN19180" HREF="#FTN.AEN19180" >[1]</A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 FS=iso # ISO filesystem support in kernel? 2 3 grep $FS /proc/filesystems # iso9660</PRE ></TD ></TR ></TABLE ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 kernel_version=$( awk '{ print $3 }' /proc/version )</PRE ></TD ></TR ></TABLE ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 CPU=$( awk '/model name/ {print $5}' < /proc/cpuinfo ) 2 3 if [ "$CPU" = "Pentium(R)" ] 4 then 5 run_some_commands 6 ... 7 else 8 run_other_commands 9 ... 10 fi 11 12 13 14 cpu_speed=$( fgrep "cpu MHz" /proc/cpuinfo | awk '{print $4}' ) 15 # Current operating speed (in MHz) of the cpu on your machine. 16 # On a laptop this may vary, depending on use of battery 17 #+ or AC power.</PRE ></TD ></TR ></TABLE ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # get-commandline.sh 3 # Get the command-line parameters of a process. 4 5 OPTION=cmdline 6 7 # Identify PID. 8 pid=$( echo $(pidof "$1") | awk '{ print $1 }' ) 9 # Get only first ^^^^^^^^^^^^^^^^^^ of multiple instances. 10 11 echo 12 echo "Process ID of (first instance of) "$1" = $pid" 13 echo -n "Command-line arguments: " 14 cat /proc/"$pid"/"$OPTION" | xargs -0 echo 15 # Formats output: ^^^^^^^^^^^^^^^ 16 # (Thanks, Han Holl, for the fixup!) 17 18 echo; echo 19 20 21 # For example: 22 # sh get-commandline.sh xterm</PRE ></TD ></TR ></TABLE ></P ><P >+</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 devfile="/proc/bus/usb/devices" 2 text="Spd" 3 USB1="Spd=12" 4 USB2="Spd=480" 5 6 7 bus_speed=$(fgrep -m 1 "$text" $devfile | awk '{print $9}') 8 # ^^^^ Stop after first match. 9 10 if [ "$bus_speed" = "$USB1" ] 11 then 12 echo "USB 1.1 port found." 13 # Do something appropriate for USB 1.1. 14 fi</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It is even possible to control certain peripherals with commands sent to the <TT CLASS="FILENAME" >/proc</TT > directory. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >root# </TT ><B CLASS="COMMAND" >echo on > /proc/acpi/ibm/light</B > </PRE ></TD ></TR ></TABLE > This turns on the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Thinklight</I ></SPAN > in certain models of IBM/Lenovo Thinkpads. (May not work on all Linux distros.)</P ><P >Of course, caution is advised when writing to <TT CLASS="FILENAME" >/proc</TT >.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="PROCRUNNING" ></A ></P ><P >The <TT CLASS="FILENAME" >/proc</TT > directory contains subdirectories with unusual numerical names. Every one of these names maps to the <A HREF="variables2.html#PPIDREF" >process ID</A > of a currently running process. Within each of these subdirectories, there are a number of files that hold useful information about the corresponding process. The <TT CLASS="FILENAME" >stat</TT > and <TT CLASS="FILENAME" >status</TT > files keep running statistics on the process, the <TT CLASS="FILENAME" >cmdline</TT > file holds the command-line arguments the process was invoked with, and the <TT CLASS="FILENAME" >exe</TT > file is a symbolic link to the complete path name of the invoking process. There are a few more such files, but these seem to be the most interesting from a scripting standpoint.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="PIDID" ></A ><P ><B >Example 29-3. Finding the process associated with a PID</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # pid-identifier.sh: 3 # Gives complete path name to process associated with pid. 4 5 ARGNO=1 # Number of arguments the script expects. 6 E_WRONGARGS=65 7 E_BADPID=66 8 E_NOSUCHPROCESS=67 9 E_NOPERMISSION=68 10 PROCFILE=exe 11 12 if [ $# -ne $ARGNO ] 13 then 14 echo "Usage: `basename $0` PID-number" >&2 # Error message >stderr. 15 exit $E_WRONGARGS 16 fi 17 18 pidno=$( ps ax | grep $1 | awk '{ print $1 }' | grep $1 ) 19 # Checks for pid in "ps" listing, field #1. 20 # Then makes sure it is the actual process, not the process invoked by this script. 21 # The last "grep $1" filters out this possibility. 22 # 23 # pidno=$( ps ax | awk '{ print $1 }' | grep $1 ) 24 # also works, as Teemu Huovila, points out. 25 26 if [ -z "$pidno" ] # If, after all the filtering, the result is a zero-length string, 27 then #+ no running process corresponds to the pid given. 28 echo "No such process running." 29 exit $E_NOSUCHPROCESS 30 fi 31 32 # Alternatively: 33 # if ! ps $1 > /dev/null 2>&1 34 # then # no running process corresponds to the pid given. 35 # echo "No such process running." 36 # exit $E_NOSUCHPROCESS 37 # fi 38 39 # To simplify the entire process, use "pidof". 40 41 42 if [ ! -r "/proc/$1/$PROCFILE" ] # Check for read permission. 43 then 44 echo "Process $1 running, but..." 45 echo "Can't get read permission on /proc/$1/$PROCFILE." 46 exit $E_NOPERMISSION # Ordinary user can't access some files in /proc. 47 fi 48 49 # The last two tests may be replaced by: 50 # if ! kill -0 $1 > /dev/null 2>&1 # '0' is not a signal, but 51 # this will test whether it is possible 52 # to send a signal to the process. 53 # then echo "PID doesn't exist or you're not its owner" >&2 54 # exit $E_BADPID 55 # fi 56 57 58 59 exe_file=$( ls -l /proc/$1 | grep "exe" | awk '{ print $11 }' ) 60 # Or exe_file=$( ls -l /proc/$1/exe | awk '{print $11}' ) 61 # 62 # /proc/pid-number/exe is a symbolic link 63 #+ to the complete path name of the invoking process. 64 65 if [ -e "$exe_file" ] # If /proc/pid-number/exe exists, 66 then #+ then the corresponding process exists. 67 echo "Process #$1 invoked by $exe_file." 68 else 69 echo "No such process running." 70 fi 71 72 73 # This elaborate script can *almost* be replaced by 74 # ps ax | grep $1 | awk '{ print $5 }' 75 # However, this will not work... 76 #+ because the fifth field of 'ps' is argv[0] of the process, 77 #+ not the executable file path. 78 # 79 # However, either of the following would work. 80 # find /proc/$1/exe -printf '%l\n' 81 # lsof -aFn -p $1 -d txt | sed -ne 's/^n//p' 82 83 # Additional commentary by Stephane Chazelas. 84 85 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="CONSTAT" ></A ><P ><B >Example 29-4. On-line connect status</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # connect-stat.sh 3 # Note that this script may need modification 4 #+ to work with a wireless connection. 5 6 PROCNAME=pppd # ppp daemon 7 PROCFILENAME=status # Where to look. 8 NOTCONNECTED=85 9 INTERVAL=2 # Update every 2 seconds. 10 11 pidno=$( ps ax | grep -v "ps ax" | grep -v grep | grep $PROCNAME | 12 awk '{ print $1 }' ) 13 14 # Finding the process number of 'pppd', the 'ppp daemon'. 15 # Have to filter out the process lines generated by the search itself. 16 # 17 # However, as Oleg Philon points out, 18 #+ this could have been considerably simplified by using "pidof". 19 # pidno=$( pidof $PROCNAME ) 20 # 21 # Moral of the story: 22 #+ When a command sequence gets too complex, look for a shortcut. 23 24 25 if [ -z "$pidno" ] # If no pid, then process is not running. 26 then 27 echo "Not connected." 28 # exit $NOTCONNECTED 29 else 30 echo "Connected."; echo 31 fi 32 33 while [ true ] # Endless loop, script can be improved here. 34 do 35 36 if [ ! -e "/proc/$pidno/$PROCFILENAME" ] 37 # While process running, then "status" file exists. 38 then 39 echo "Disconnected." 40 # exit $NOTCONNECTED 41 fi 42 43 netstat -s | grep "packets received" # Get some connect statistics. 44 netstat -s | grep "packets delivered" 45 46 47 sleep $INTERVAL 48 echo; echo 49 50 done 51 52 exit 0 53 54 # As it stands, this script must be terminated with a Control-C. 55 56 # Exercises: 57 # --------- 58 # Improve the script so it exits on a "q" keystroke. 59 # Make the script more user-friendly in other ways. 60 # Fix the script to work with wireless/DSL connections.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="PROCWARNING" ></A ></P ><DIV CLASS="WARNING" ><TABLE CLASS="WARNING" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/warning.png" HSPACE="5" ALT="Warning"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >In general, it is dangerous to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >write</I ></SPAN > to the files in <TT CLASS="FILENAME" >/proc</TT >, as this can corrupt the filesystem or crash the machine.</P ></TD ></TR ></TABLE ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN19180" HREF="procref1.html#AEN19180" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Certain system commands, such as <A HREF="system.html#PROCINFOREF" >procinfo</A >, <A HREF="system.html#FREEREF" >free</A >, <A HREF="system.html#VMSTATREF" >vmstat</A >, <A HREF="system.html#LSDEVREF" >lsdev</A >, and <A HREF="system.html#UPTIMEREF" >uptime</A > do this as well.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="devproc.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="networkprogramming.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><TT CLASS="FILENAME" >/dev</TT > and <TT CLASS="FILENAME" >/proc</TT ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="devproc.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Network Programming</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/quoting.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Quoting</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Basics" HREF="part2.html"><LINK REL="PREVIOUS" TITLE="Special Variable Types" HREF="othertypesv.html"><LINK REL="NEXT" TITLE="Escaping" HREF="escapingsection.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="othertypesv.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="escapingsection.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="QUOTING" ></A >Chapter 5. Quoting</H1 ><P ><A NAME="QUOTINGREF" ></A ></P ><P >Quoting means just that, bracketing a string in quotes. This has the effect of protecting <A HREF="special-chars.html#SCHARLIST1" >special characters</A > in the string from reinterpretation or expansion by the shell or shell script. (A character is <SPAN CLASS="QUOTE" >"special"</SPAN > if it has an interpretation other than its literal meaning. For example, the <A HREF="special-chars.html#ASTERISKREF" >asterisk *</A > represents a <I CLASS="FIRSTTERM" >wild card</I > character in <A HREF="globbingref.html" >globbing</A > and <A HREF="regexp.html#REGEXREF" >Regular Expressions</A >).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l [Vv]*</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-rw-rw-r-- 1 bozo bozo 324 Apr 2 15:05 VIEWDATA.BAT -rw-rw-r-- 1 bozo bozo 507 May 4 14:25 vartrace.sh -rw-rw-r-- 1 bozo bozo 539 Apr 14 17:11 viewdata.sh</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l '[Vv]*'</B ></TT > <TT CLASS="COMPUTEROUTPUT" >ls: [Vv]*: No such file or directory</TT ></PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="QUOTINGDEF" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN2596" ></A ><P >In everyday speech or writing, when we <SPAN CLASS="QUOTE" >"quote"</SPAN > a phrase, we set it apart and give it special meaning. In a Bash script, when we <I CLASS="FIRSTTERM" >quote</I > a string, we set it apart and protect its <I CLASS="FIRSTTERM" >literal</I > meaning.</P ></DIV ></TD ></TR ></TABLE ><P >Certain programs and utilities reinterpret or expand special characters in a quoted string. An important use of quoting is protecting a command-line parameter from the shell, but still letting the calling program expand it.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep '[Ff]irst' *.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" >file1.txt:This is the first line of file1.txt. file2.txt:This is the First line of file2.txt.</TT ></PRE ></TD ></TR ></TABLE > </P ><P >Note that the unquoted <TT CLASS="USERINPUT" ><B >grep [Ff]irst *.txt</B ></TT > works under the Bash shell. <A NAME="AEN2609" HREF="#FTN.AEN2609" >[1]</A > </P ><P >Quoting can also suppress <A HREF="internal.html#ECHOREF" >echo's</A > <SPAN CLASS="QUOTE" >"appetite"</SPAN > for newlines.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $(ls -l)</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 8 -rw-rw-r-- 1 bo bo 13 Aug 21 12:57 t.sh -rw-rw-r-- 1 bo bo 78 Aug 21 12:57 u.sh</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "$(ls -l)"</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 8 -rw-rw-r-- 1 bo bo 13 Aug 21 12:57 t.sh -rw-rw-r-- 1 bo bo 78 Aug 21 12:57 u.sh</TT ></PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="QUOTINGVAR" ></A >5.1. Quoting Variables</H1 ><P >When referencing a variable, it is generally advisable to enclose its name in double quotes. This prevents reinterpretation of all special characters within the quoted string -- except <SPAN CLASS="TOKEN" >$</SPAN >, <SPAN CLASS="TOKEN" >`</SPAN > (backquote), and <SPAN CLASS="TOKEN" >\</SPAN > (escape). <A NAME="AEN2630" HREF="#FTN.AEN2630" >[2]</A > Keeping <SPAN CLASS="TOKEN" >$</SPAN > as a special character within double quotes permits referencing a quoted variable (<TT CLASS="REPLACEABLE" ><I >"$variable"</I ></TT >), that is, replacing the variable with its value (see <A HREF="variables.html#EX9" >Example 4-1</A >, above).</P ><P ><A NAME="WSQUO" ></A ></P ><P >Use double quotes to prevent word splitting. <A NAME="AEN2688" HREF="#FTN.AEN2688" >[3]</A > An argument enclosed in double quotes presents itself as a single word, even if it contains <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A > separators.</P ><P ><A NAME="VARSPLITTING" ></A ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 List="one two three" 2 3 for a in $List # Splits the variable in parts at whitespace. 4 do 5 echo "$a" 6 done 7 # one 8 # two 9 # three 10 11 echo "---" 12 13 for a in "$List" # Preserves whitespace in a single variable. 14 do # ^ ^ 15 echo "$a" 16 done 17 # one two three</PRE ></TD ></TR ></TABLE ></P ><P >A more elaborate example:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 variable1="a variable containing five words" 2 COMMAND This is $variable1 # Executes COMMAND with 7 arguments: 3 # "This" "is" "a" "variable" "containing" "five" "words" 4 5 COMMAND "This is $variable1" # Executes COMMAND with 1 argument: 6 # "This is a variable containing five words" 7 8 9 variable2="" # Empty. 10 11 COMMAND $variable2 $variable2 $variable2 12 # Executes COMMAND with no arguments. 13 COMMAND "$variable2" "$variable2" "$variable2" 14 # Executes COMMAND with 3 empty arguments. 15 COMMAND "$variable2 $variable2 $variable2" 16 # Executes COMMAND with 1 argument (2 spaces). 17 18 # Thanks, Stéphane Chazelas.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Enclosing the arguments to an <B CLASS="COMMAND" >echo</B > statement in double quotes is necessary only when word splitting or preservation of <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A > is an issue.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="WEIRDVARS" ></A ><P ><B >Example 5-1. Echoing Weird Variables</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # weirdvars.sh: Echoing weird variables. 3 4 echo 5 6 var="'(]\\{}\$\"" 7 echo $var # '(]\{}$" 8 echo "$var" # '(]\{}$" Doesn't make a difference. 9 10 echo 11 12 IFS='\' 13 echo $var # '(] {}$" \ converted to space. Why? 14 echo "$var" # '(]\{}$" 15 16 # Examples above supplied by Stephane Chazelas. 17 18 echo 19 20 var2="\\\\\"" 21 echo $var2 # " 22 echo "$var2" # \\" 23 echo 24 # But ... var2="\\\\"" is illegal. Why? 25 var3='\\\\' 26 echo "$var3" # \\\\ 27 # Strong quoting works, though. 28 29 30 # ************************************************************ # 31 # As the first example above shows, nesting quotes is permitted. 32 33 echo "$(echo '"')" # " 34 # ^ ^ 35 36 37 # At times this comes in useful. 38 39 var1="Two bits" 40 echo "\$var1 = "$var1"" # $var1 = Two bits 41 # ^ ^ 42 43 # Or, as Chris Hiestand points out ... 44 45 if [[ "$(du "$My_File1")" -gt "$(du "$My_File2")" ]] 46 # ^ ^ ^ ^ ^ ^ ^ ^ 47 then 48 ... 49 fi 50 # ************************************************************ #</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Single quotes (<SPAN CLASS="TOKEN" >' '</SPAN >) operate similarly to double quotes, but do not permit referencing variables, since the special meaning of <SPAN CLASS="TOKEN" >$</SPAN > is turned off. Within single quotes, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >every</I ></SPAN > special character except <SPAN CLASS="TOKEN" >'</SPAN > gets interpreted literally. Consider single quotes (<SPAN CLASS="QUOTE" >"full quoting"</SPAN >) to be a stricter method of quoting than double quotes (<SPAN CLASS="QUOTE" >"partial quoting"</SPAN >).</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Since even the escape character (<SPAN CLASS="TOKEN" >\</SPAN >) gets a literal interpretation within single quotes, trying to enclose a single quote within single quotes will not yield the expected result. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "Why can't I write 's between single quotes" 2 3 echo 4 5 # The roundabout method. 6 echo 'Why can'\''t I write '"'"'s between single quotes' 7 # |-------| |----------| |-----------------------| 8 # Three single-quoted strings, with escaped and quoted single quotes between. 9 10 # This example courtesy of Stéphane Chazelas.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN2609" HREF="quoting.html#AEN2609" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Unless there is a file named <TT CLASS="FILENAME" >first</TT > in the current working directory. Yet another reason to <I CLASS="FIRSTTERM" >quote</I >. (Thank you, Harald Koenig, for pointing this out.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN2630" HREF="quoting.html#AEN2630" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="QUOTINGBSL" ></A ></P ><P >Encapsulating <SPAN CLASS="QUOTE" >"!"</SPAN > within double quotes gives an error when used <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >from the command line</I ></SPAN >. This is interpreted as a <A HREF="histcommands.html" >history command</A >. Within a script, though, this problem does not occur, since the Bash history mechanism is disabled then.</P ><P >Of more concern is the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >apparently</I ></SPAN > inconsistent behavior of <TT CLASS="REPLACEABLE" ><I >\</I ></TT > within double quotes, and especially following an <B CLASS="COMMAND" >echo -e</B > command.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo hello\!</B ></TT > <TT CLASS="COMPUTEROUTPUT" >hello!</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "hello\!"</B ></TT > <TT CLASS="COMPUTEROUTPUT" >hello\!</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo \</B ></TT > <TT CLASS="COMPUTEROUTPUT" >></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "\"</B ></TT > <TT CLASS="COMPUTEROUTPUT" >></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo \a</B ></TT > <TT CLASS="COMPUTEROUTPUT" >a</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "\a"</B ></TT > <TT CLASS="COMPUTEROUTPUT" >\a</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo x\ty</B ></TT > <TT CLASS="COMPUTEROUTPUT" >xty</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "x\ty"</B ></TT > <TT CLASS="COMPUTEROUTPUT" >x\ty</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo -e x\ty</B ></TT > <TT CLASS="COMPUTEROUTPUT" >xty</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo -e "x\ty"</B ></TT > <TT CLASS="COMPUTEROUTPUT" >x y</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Double quotes following an <I CLASS="FIRSTTERM" >echo</I > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >sometimes</I ></SPAN > escape <TT CLASS="REPLACEABLE" ><I >\</I ></TT >. Moreover, the <TT CLASS="OPTION" >-e</TT > option to <I CLASS="FIRSTTERM" >echo</I > causes the <SPAN CLASS="QUOTE" >"\t"</SPAN > to be interpreted as a <I CLASS="FIRSTTERM" >tab</I >.</P ><P >(Thank you, Wayne Pollock, for pointing this out, and Geoff Lee and Daniel Barclay for explaining it.) </P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN2688" HREF="quoting.html#AEN2688" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="WSPLITREF" ></A ><SPAN CLASS="QUOTE" >"Word splitting,"</SPAN > in this context, means dividing a character string into separate and discrete arguments.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="othertypesv.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="escapingsection.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Special Variable Types</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part2.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Escaping</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/randomvar.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >$RANDOM: generate random integer</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Another Look at Variables" HREF="variables2.html"><LINK REL="PREVIOUS" TITLE="Typing variables: declare or typeset" HREF="declareref.html"><LINK REL="NEXT" TITLE="Manipulating Variables" HREF="manipulatingvars.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="declareref.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 9. Another Look at Variables</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="manipulatingvars.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="RANDOMVAR" ></A >9.3. $RANDOM: generate random integer</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Anyone who attempts to generate random numbers by deterministic means is, of course, living in a state of sin.</I ></P ><P ><I >--John von Neumann</I ></P ></I ></TD ></TR ></TABLE ><P ><A NAME="RANDOMVAR01" ></A ></P ><P ><TT CLASS="VARNAME" >$RANDOM</TT > is an internal Bash <A HREF="functions.html#FUNCTIONREF" >function</A > (not a constant) that returns a <I CLASS="FIRSTTERM" >pseudorandom</I > <A NAME="AEN5817" HREF="#FTN.AEN5817" >[1]</A > integer in the range 0 - 32767. It should <TT CLASS="REPLACEABLE" ><I >not</I ></TT > be used to generate an encryption key.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX21" ></A ><P ><B >Example 9-11. Generating random numbers</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # $RANDOM returns a different random integer at each invocation. 4 # Nominal range: 0 - 32767 (signed 16-bit integer). 5 6 MAXCOUNT=10 7 count=1 8 9 echo 10 echo "$MAXCOUNT random numbers:" 11 echo "-----------------" 12 while [ "$count" -le $MAXCOUNT ] # Generate 10 ($MAXCOUNT) random integers. 13 do 14 number=$RANDOM 15 echo $number 16 let "count += 1" # Increment count. 17 done 18 echo "-----------------" 19 20 # If you need a random int within a certain range, use the 'modulo' operator. 21 # This returns the remainder of a division operation. 22 23 RANGE=500 24 25 echo 26 27 number=$RANDOM 28 let "number %= $RANGE" 29 # ^^ 30 echo "Random number less than $RANGE --- $number" 31 32 echo 33 34 35 36 # If you need a random integer greater than a lower bound, 37 #+ then set up a test to discard all numbers below that. 38 39 FLOOR=200 40 41 number=0 #initialize 42 while [ "$number" -le $FLOOR ] 43 do 44 number=$RANDOM 45 done 46 echo "Random number greater than $FLOOR --- $number" 47 echo 48 49 # Let's examine a simple alternative to the above loop, namely 50 # let "number = $RANDOM + $FLOOR" 51 # That would eliminate the while-loop and run faster. 52 # But, there might be a problem with that. What is it? 53 54 55 56 # Combine above two techniques to retrieve random number between two limits. 57 number=0 #initialize 58 while [ "$number" -le $FLOOR ] 59 do 60 number=$RANDOM 61 let "number %= $RANGE" # Scales $number down within $RANGE. 62 done 63 echo "Random number between $FLOOR and $RANGE --- $number" 64 echo 65 66 67 68 # Generate binary choice, that is, "true" or "false" value. 69 BINARY=2 70 T=1 71 number=$RANDOM 72 73 let "number %= $BINARY" 74 # Note that let "number >>= 14" gives a better random distribution 75 #+ (right shifts out everything except last binary digit). 76 if [ "$number" -eq $T ] 77 then 78 echo "TRUE" 79 else 80 echo "FALSE" 81 fi 82 83 echo 84 85 86 # Generate a toss of the dice. 87 SPOTS=6 # Modulo 6 gives range 0 - 5. 88 # Incrementing by 1 gives desired range of 1 - 6. 89 # Thanks, Paulo Marcel Coelho Aragao, for the simplification. 90 die1=0 91 die2=0 92 # Would it be better to just set SPOTS=7 and not add 1? Why or why not? 93 94 # Tosses each die separately, and so gives correct odds. 95 96 let "die1 = $RANDOM % $SPOTS +1" # Roll first one. 97 let "die2 = $RANDOM % $SPOTS +1" # Roll second one. 98 # Which arithmetic operation, above, has greater precedence -- 99 #+ modulo (%) or addition (+)? 100 101 102 let "throw = $die1 + $die2" 103 echo "Throw of the dice = $throw" 104 echo 105 106 107 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="PICKCARD" ></A ><P ><B >Example 9-12. Picking a random card from a deck</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # pick-card.sh 3 4 # This is an example of choosing random elements of an array. 5 6 7 # Pick a card, any card. 8 9 Suites="Clubs 10 Diamonds 11 Hearts 12 Spades" 13 14 Denominations="2 15 3 16 4 17 5 18 6 19 7 20 8 21 9 22 10 23 Jack 24 Queen 25 King 26 Ace" 27 28 # Note variables spread over multiple lines. 29 30 31 suite=($Suites) # Read into array variable. 32 denomination=($Denominations) 33 34 num_suites=${#suite[*]} # Count how many elements. 35 num_denominations=${#denomination[*]} 36 37 echo -n "${denomination[$((RANDOM%num_denominations))]} of " 38 echo ${suite[$((RANDOM%num_suites))]} 39 40 41 # $bozo sh pick-cards.sh 42 # Jack of Clubs 43 44 45 # Thank you, "jipe," for pointing out this use of $RANDOM. 46 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="BROWNIANREF" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BROWNIAN" ></A ><P ><B >Example 9-13. Brownian Motion Simulation</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # brownian.sh 3 # Author: Mendel Cooper 4 # Reldate: 10/26/07 5 # License: GPL3 6 7 # ---------------------------------------------------------------- 8 # This script models Brownian motion: 9 #+ the random wanderings of tiny particles in a fluid, 10 #+ as they are buffeted by random currents and collisions. 11 #+ This is colloquially known as the "Drunkard's Walk." 12 13 # It can also be considered as a stripped-down simulation of a 14 #+ Galton Board, a slanted board with a pattern of pegs, 15 #+ down which rolls a succession of marbles, one at a time. 16 #+ At the bottom is a row of slots or catch basins in which 17 #+ the marbles come to rest at the end of their journey. 18 # Think of it as a kind of bare-bones Pachinko game. 19 # As you see by running the script, 20 #+ most of the marbles cluster around the center slot. 21 #+ This is consistent with the expected binomial distribution. 22 # As a Galton Board simulation, the script 23 #+ disregards such parameters as 24 #+ board tilt-angle, rolling friction of the marbles, 25 #+ angles of impact, and elasticity of the pegs. 26 # To what extent does this affect the accuracy of the simulation? 27 # ---------------------------------------------------------------- 28 29 PASSES=500 # Number of particle interactions / marbles. 30 ROWS=10 # Number of "collisions" (or horiz. peg rows). 31 RANGE=3 # 0 - 2 output range from $RANDOM. 32 POS=0 # Left/right position. 33 RANDOM=$$ # Seeds the random number generator from PID 34 #+ of script. 35 36 declare -a Slots # Array holding cumulative results of passes. 37 NUMSLOTS=21 # Number of slots at bottom of board. 38 39 40 Initialize_Slots () { # Zero out all elements of the array. 41 for i in $( seq $NUMSLOTS ) 42 do 43 Slots[$i]=0 44 done 45 46 echo # Blank line at beginning of run. 47 } 48 49 50 Show_Slots () { 51 echo; echo 52 echo -n " " 53 for i in $( seq $NUMSLOTS ) # Pretty-print array elements. 54 do 55 printf "%3d" ${Slots[$i]} # Allot three spaces per result. 56 done 57 58 echo # Row of slots: 59 echo " |__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|" 60 echo " ||" 61 echo # Note that if the count within any particular slot exceeds 99, 62 #+ it messes up the display. 63 # Running only(!) 500 passes usually avoids this. 64 } 65 66 67 Move () { # Move one unit right / left, or stay put. 68 Move=$RANDOM # How random is $RANDOM? Well, let's see ... 69 let "Move %= RANGE" # Normalize into range of 0 - 2. 70 case "$Move" in 71 0 ) ;; # Do nothing, i.e., stay in place. 72 1 ) ((POS--));; # Left. 73 2 ) ((POS++));; # Right. 74 * ) echo -n "Error ";; # Anomaly! (Should never occur.) 75 esac 76 } 77 78 79 Play () { # Single pass (inner loop). 80 i=0 81 while [ "$i" -lt "$ROWS" ] # One event per row. 82 do 83 Move 84 ((i++)); 85 done 86 87 SHIFT=11 # Why 11, and not 10? 88 let "POS += $SHIFT" # Shift "zero position" to center. 89 (( Slots[$POS]++ )) # DEBUG: echo $POS 90 91 # echo -n "$POS " 92 93 } 94 95 96 Run () { # Outer loop. 97 p=0 98 while [ "$p" -lt "$PASSES" ] 99 do 100 Play 101 (( p++ )) 102 POS=0 # Reset to zero. Why? 103 done 104 } 105 106 107 # -------------- 108 # main () 109 Initialize_Slots 110 Run 111 Show_Slots 112 # -------------- 113 114 exit $? 115 116 # Exercises: 117 # --------- 118 # 1) Show the results in a vertical bar graph, or as an alternative, 119 #+ a scattergram. 120 # 2) Alter the script to use /dev/urandom instead of $RANDOM. 121 # Will this make the results more random? 122 # 3) Provide some sort of "animation" or graphic output 123 # for each marble played.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Jipe</I ></SPAN > points out a set of techniques for generating random numbers within a range. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Generate random number between 6 and 30. 2 rnumber=$((RANDOM%25+6)) 3 4 # Generate random number in the same 6 - 30 range, 5 #+ but the number must be evenly divisible by 3. 6 rnumber=$(((RANDOM%30/3+1)*3)) 7 8 # Note that this will not work all the time. 9 # It fails if $RANDOM%30 returns 0. 10 11 # Frank Wang suggests the following alternative: 12 rnumber=$(( RANDOM%27/3*3+6 ))</PRE ></TD ></TR ></TABLE > </P ><P > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Bill Gradwohl</I ></SPAN > came up with an improved formula that works for positive numbers. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 rnumber=$(((RANDOM%(max-min+divisibleBy))/divisibleBy*divisibleBy+min))</PRE ></TD ></TR ></TABLE > </P ><P >Here Bill presents a versatile function that returns a random number between two specified values.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RANDOMBETWEEN" ></A ><P ><B >Example 9-14. Random between values</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # random-between.sh 3 # Random number between two specified values. 4 # Script by Bill Gradwohl, with minor modifications by the document author. 5 # Corrections in lines 187 and 189 by Anthony Le Clezio. 6 # Used with permission. 7 8 9 randomBetween() { 10 # Generates a positive or negative random number 11 #+ between $min and $max 12 #+ and divisible by $divisibleBy. 13 # Gives a "reasonably random" distribution of return values. 14 # 15 # Bill Gradwohl - Oct 1, 2003 16 17 syntax() { 18 # Function embedded within function. 19 echo 20 echo "Syntax: randomBetween [min] [max] [multiple]" 21 echo 22 echo -n "Expects up to 3 passed parameters, " 23 echo "but all are completely optional." 24 echo "min is the minimum value" 25 echo "max is the maximum value" 26 echo -n "multiple specifies that the answer must be " 27 echo "a multiple of this value." 28 echo " i.e. answer must be evenly divisible by this number." 29 echo 30 echo "If any value is missing, defaults area supplied as: 0 32767 1" 31 echo -n "Successful completion returns 0, " 32 echo "unsuccessful completion returns" 33 echo "function syntax and 1." 34 echo -n "The answer is returned in the global variable " 35 echo "randomBetweenAnswer" 36 echo -n "Negative values for any passed parameter are " 37 echo "handled correctly." 38 } 39 40 local min=${1:-0} 41 local max=${2:-32767} 42 local divisibleBy=${3:-1} 43 # Default values assigned, in case parameters not passed to function. 44 45 local x 46 local spread 47 48 # Let's make sure the divisibleBy value is positive. 49 [ ${divisibleBy} -lt 0 ] && divisibleBy=$((0-divisibleBy)) 50 51 # Sanity check. 52 if [ $# -gt 3 -o ${divisibleBy} -eq 0 -o ${min} -eq ${max} ]; then 53 syntax 54 return 1 55 fi 56 57 # See if the min and max are reversed. 58 if [ ${min} -gt ${max} ]; then 59 # Swap them. 60 x=${min} 61 min=${max} 62 max=${x} 63 fi 64 65 # If min is itself not evenly divisible by $divisibleBy, 66 #+ then fix the min to be within range. 67 if [ $((min/divisibleBy*divisibleBy)) -ne ${min} ]; then 68 if [ ${min} -lt 0 ]; then 69 min=$((min/divisibleBy*divisibleBy)) 70 else 71 min=$((((min/divisibleBy)+1)*divisibleBy)) 72 fi 73 fi 74 75 # If max is itself not evenly divisible by $divisibleBy, 76 #+ then fix the max to be within range. 77 if [ $((max/divisibleBy*divisibleBy)) -ne ${max} ]; then 78 if [ ${max} -lt 0 ]; then 79 max=$((((max/divisibleBy)-1)*divisibleBy)) 80 else 81 max=$((max/divisibleBy*divisibleBy)) 82 fi 83 fi 84 85 # --------------------------------------------------------------------- 86 # Now, to do the real work. 87 88 # Note that to get a proper distribution for the end points, 89 #+ the range of random values has to be allowed to go between 90 #+ 0 and abs(max-min)+divisibleBy, not just abs(max-min)+1. 91 92 # The slight increase will produce the proper distribution for the 93 #+ end points. 94 95 # Changing the formula to use abs(max-min)+1 will still produce 96 #+ correct answers, but the randomness of those answers is faulty in 97 #+ that the number of times the end points ($min and $max) are returned 98 #+ is considerably lower than when the correct formula is used. 99 # --------------------------------------------------------------------- 100 101 spread=$((max-min)) 102 # Omair Eshkenazi points out that this test is unnecessary, 103 #+ since max and min have already been switched around. 104 [ ${spread} -lt 0 ] && spread=$((0-spread)) 105 let spread+=divisibleBy 106 randomBetweenAnswer=$(((RANDOM%spread)/divisibleBy*divisibleBy+min)) 107 108 return 0 109 110 # However, Paulo Marcel Coelho Aragao points out that 111 #+ when $max and $min are not divisible by $divisibleBy, 112 #+ the formula fails. 113 # 114 # He suggests instead the following formula: 115 # rnumber = $(((RANDOM%(max-min+1)+min)/divisibleBy*divisibleBy)) 116 117 } 118 119 # Let's test the function. 120 min=-14 121 max=20 122 divisibleBy=3 123 124 125 # Generate an array of expected answers and check to make sure we get 126 #+ at least one of each answer if we loop long enough. 127 128 declare -a answer 129 minimum=${min} 130 maximum=${max} 131 if [ $((minimum/divisibleBy*divisibleBy)) -ne ${minimum} ]; then 132 if [ ${minimum} -lt 0 ]; then 133 minimum=$((minimum/divisibleBy*divisibleBy)) 134 else 135 minimum=$((((minimum/divisibleBy)+1)*divisibleBy)) 136 fi 137 fi 138 139 140 # If max is itself not evenly divisible by $divisibleBy, 141 #+ then fix the max to be within range. 142 143 if [ $((maximum/divisibleBy*divisibleBy)) -ne ${maximum} ]; then 144 if [ ${maximum} -lt 0 ]; then 145 maximum=$((((maximum/divisibleBy)-1)*divisibleBy)) 146 else 147 maximum=$((maximum/divisibleBy*divisibleBy)) 148 fi 149 fi 150 151 152 # We need to generate only positive array subscripts, 153 #+ so we need a displacement that that will guarantee 154 #+ positive results. 155 156 disp=$((0-minimum)) 157 for ((i=${minimum}; i<=${maximum}; i+=divisibleBy)); do 158 answer[i+disp]=0 159 done 160 161 162 # Now loop a large number of times to see what we get. 163 loopIt=1000 # The script author suggests 100000, 164 #+ but that takes a good long while. 165 166 for ((i=0; i<${loopIt}; ++i)); do 167 168 # Note that we are specifying min and max in reversed order here to 169 #+ make the function correct for this case. 170 171 randomBetween ${max} ${min} ${divisibleBy} 172 173 # Report an error if an answer is unexpected. 174 [ ${randomBetweenAnswer} -lt ${min} -o ${randomBetweenAnswer} -gt ${max} ] \ 175 && echo MIN or MAX error - ${randomBetweenAnswer}! 176 [ $((randomBetweenAnswer%${divisibleBy})) -ne 0 ] \ 177 && echo DIVISIBLE BY error - ${randomBetweenAnswer}! 178 179 # Store the answer away statistically. 180 answer[randomBetweenAnswer+disp]=$((answer[randomBetweenAnswer+disp]+1)) 181 done 182 183 184 185 # Let's check the results 186 187 for ((i=${minimum}; i<=${maximum}; i+=divisibleBy)); do 188 [ ${answer[i+disp]} -eq 0 ] \ 189 && echo "We never got an answer of $i." \ 190 || echo "${i} occurred ${answer[i+disp]} times." 191 done 192 193 194 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Just how random is <TT CLASS="VARNAME" >$RANDOM</TT >? The best way to test this is to write a script that tracks the distribution of <SPAN CLASS="QUOTE" >"random"</SPAN > numbers generated by <TT CLASS="VARNAME" >$RANDOM</TT >. Let's roll a <TT CLASS="VARNAME" >$RANDOM</TT > die a few times . . .</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RANDOMTEST" ></A ><P ><B >Example 9-15. Rolling a single die with RANDOM</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # How random is RANDOM? 3 4 RANDOM=$$ # Reseed the random number generator using script process ID. 5 6 PIPS=6 # A die has 6 pips. 7 MAXTHROWS=600 # Increase this if you have nothing better to do with your time. 8 throw=0 # Number of times the dice have been cast. 9 10 ones=0 # Must initialize counts to zero, 11 twos=0 #+ since an uninitialized variable is null, NOT zero. 12 threes=0 13 fours=0 14 fives=0 15 sixes=0 16 17 print_result () 18 { 19 echo 20 echo "ones = $ones" 21 echo "twos = $twos" 22 echo "threes = $threes" 23 echo "fours = $fours" 24 echo "fives = $fives" 25 echo "sixes = $sixes" 26 echo 27 } 28 29 update_count() 30 { 31 case "$1" in 32 0) ((ones++));; # Since a die has no "zero", this corresponds to 1. 33 1) ((twos++));; # And this to 2. 34 2) ((threes++));; # And so forth. 35 3) ((fours++));; 36 4) ((fives++));; 37 5) ((sixes++));; 38 esac 39 } 40 41 echo 42 43 44 while [ "$throw" -lt "$MAXTHROWS" ] 45 do 46 let "die1 = RANDOM % $PIPS" 47 update_count $die1 48 let "throw += 1" 49 done 50 51 print_result 52 53 exit $? 54 55 # The scores should distribute evenly, assuming RANDOM is random. 56 # With $MAXTHROWS at 600, all should cluster around 100, 57 #+ plus-or-minus 20 or so. 58 # 59 # Keep in mind that RANDOM is a ***pseudorandom*** generator, 60 #+ and not a spectacularly good one at that. 61 62 # Randomness is a deep and complex subject. 63 # Sufficiently long "random" sequences may exhibit 64 #+ chaotic and other "non-random" behavior. 65 66 # Exercise (easy): 67 # --------------- 68 # Rewrite this script to flip a coin 1000 times. 69 # Choices are "HEADS" and "TAILS."</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >As we have seen in the last example, it is best to <I CLASS="FIRSTTERM" >reseed</I > the <TT CLASS="PARAMETER" ><I >RANDOM</I ></TT > generator each time it is invoked. Using the same seed for <TT CLASS="PARAMETER" ><I >RANDOM</I ></TT > repeats the same series of numbers. <A NAME="AEN5857" HREF="#FTN.AEN5857" >[2]</A > (This mirrors the behavior of the <TT CLASS="REPLACEABLE" ><I >random()</I ></TT > function in <I CLASS="FIRSTTERM" >C</I >.)</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SEEDINGRANDOM" ></A ><P ><B >Example 9-16. Reseeding RANDOM</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # seeding-random.sh: Seeding the RANDOM variable. 3 # v 1.1, reldate 09 Feb 2013 4 5 MAXCOUNT=25 # How many numbers to generate. 6 SEED= 7 8 random_numbers () 9 { 10 local count=0 11 local number 12 13 while [ "$count" -lt "$MAXCOUNT" ] 14 do 15 number=$RANDOM 16 echo -n "$number " 17 let "count++" 18 done 19 } 20 21 echo; echo 22 23 SEED=1 24 RANDOM=$SEED # Setting RANDOM seeds the random number generator. 25 echo "Random seed = $SEED" 26 random_numbers 27 28 29 RANDOM=$SEED # Same seed for RANDOM . . . 30 echo; echo "Again, with same random seed ..." 31 echo "Random seed = $SEED" 32 random_numbers # . . . reproduces the exact same number series. 33 # 34 # When is it useful to duplicate a "random" series? 35 36 echo; echo 37 38 SEED=2 39 RANDOM=$SEED # Trying again, but with a different seed . . . 40 echo "Random seed = $SEED" 41 random_numbers # . . . gives a different number series. 42 43 echo; echo 44 45 # RANDOM=$$ seeds RANDOM from process id of script. 46 # It is also possible to seed RANDOM from 'time' or 'date' commands. 47 48 # Getting fancy... 49 SEED=$(head -1 /dev/urandom | od -N 1 | awk '{ print $2 }'| sed s/^0*//) 50 # Pseudo-random output fetched 51 #+ from /dev/urandom (system pseudo-random device-file), 52 #+ then converted to line of printable (octal) numbers by "od", 53 #+ then "awk" retrieves just one number for SEED, 54 #+ finally "sed" removes any leading zeros. 55 RANDOM=$SEED 56 echo "Random seed = $SEED" 57 random_numbers 58 59 echo; echo 60 61 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="URANDOMREF" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="FILENAME" >/dev/urandom</TT > pseudo-device file provides a method of generating much more <SPAN CLASS="QUOTE" >"random"</SPAN > pseudorandom numbers than the <TT CLASS="VARNAME" >$RANDOM</TT > variable. <TT CLASS="USERINPUT" ><B >dd if=/dev/urandom of=targetfile bs=1 count=XX</B ></TT > creates a file of well-scattered pseudorandom numbers. However, assigning these numbers to a variable in a script requires a workaround, such as filtering through <A HREF="extmisc.html#ODREF" >od</A > (as in above example, <A HREF="textproc.html#RND" >Example 16-14</A >, and <A HREF="contributed-scripts.html#INSERTIONSORT" >Example A-36</A >), or even piping to <A HREF="filearchiv.html#MD5SUMREF" >md5sum</A > (see <A HREF="colorizing.html#HORSERACE" >Example 36-16</A >).</P ><P ><A NAME="AWKRANDOMREF" ></A ></P ><P >There are also other ways to generate pseudorandom numbers in a script. <B CLASS="COMMAND" >Awk</B > provides a convenient means of doing this.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RANDOM2" ></A ><P ><B >Example 9-17. Pseudorandom numbers, using <A HREF="awk.html#AWKREF" >awk</A ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # random2.sh: Returns a pseudorandom number in the range 0 - 1, 3 #+ to 6 decimal places. For example: 0.822725 4 # Uses the awk rand() function. 5 6 AWKSCRIPT=' { srand(); print rand() } ' 7 # Command(s)/parameters passed to awk 8 # Note that srand() reseeds awk's random number generator. 9 10 11 echo -n "Random number between 0 and 1 = " 12 13 echo | awk "$AWKSCRIPT" 14 # What happens if you leave out the 'echo'? 15 16 exit 0 17 18 19 # Exercises: 20 # --------- 21 22 # 1) Using a loop construct, print out 10 different random numbers. 23 # (Hint: you must reseed the srand() function with a different seed 24 #+ in each pass through the loop. What happens if you omit this?) 25 26 # 2) Using an integer multiplier as a scaling factor, generate random numbers 27 #+ in the range of 10 to 100. 28 29 # 3) Same as exercise #2, above, but generate random integers this time.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The <A HREF="timedate.html#DATEREF" >date</A > command also lends itself to <A HREF="timedate.html#DATERANDREF" >generating pseudorandom integer sequences</A >.</P ></TD ></TR ></TABLE ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN5817" HREF="randomvar.html#AEN5817" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >True <SPAN CLASS="QUOTE" >"randomness,"</SPAN > insofar as it exists at all, can only be found in certain incompletely understood natural phenomena, such as radioactive decay. Computers only <I CLASS="FIRSTTERM" >simulate</I > randomness, and computer-generated sequences of <SPAN CLASS="QUOTE" >"random"</SPAN > numbers are therefore referred to as <I CLASS="FIRSTTERM" >pseudorandom</I >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN5857" HREF="randomvar.html#AEN5857" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The <I CLASS="FIRSTTERM" >seed</I > of a computer-generated pseudorandom number series can be considered an identification label. For example, think of the pseudorandom series with a seed of <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >23</I ></SPAN > as <TT CLASS="REPLACEABLE" ><I >Series #23</I ></TT >.</P ><P >A property of a pseurandom number series is the length of the cycle before it starts repeating itself. A good pseurandom generator will produce series with very long cycles.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="declareref.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="manipulatingvars.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Typing variables: <B CLASS="COMMAND" >declare</B > or <B CLASS="COMMAND" >typeset</B ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="variables2.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Manipulating Variables</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/recess-time.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Recess Time</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Beyond the Basics" HREF="part3.html"><LINK REL="PREVIOUS" TITLE="Arithmetic Expansion" HREF="arithexp.html"><LINK REL="NEXT" TITLE="Commands" HREF="part4.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="arithexp.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="part4.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="RECESS-TIME" ></A >Chapter 14. Recess Time</H1 ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" > This bizarre little intermission gives the reader a chance to relax and maybe laugh a bit. </I ></SPAN ></P ><A NAME="AEN7432" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" ><P CLASS="LITERALLAYOUT" > <br> <br> Fellow Linux user, greetings! You are reading something which<br> will bring you luck and good fortune. Just e-mail a copy of<br> this document to 10 of your friends. Before making the copies,<br> send a 100-line Bash script to the first person on the list<br> at the bottom of this letter. Then delete their name and add<br> yours to the bottom of the list.<br> <br> Don't break the chain! Make the copies within 48 hours.<br> Wilfred P. of Brooklyn failed to send out his ten copies and<br> woke the next morning to find his job description changed<br> to "COBOL programmer." Howard L. of Newport News sent<br> out his ten copies and within a month had enough hardware<br> to build a 100-node Beowulf cluster dedicated to playing<br> <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Tuxracer</I ></SPAN >. Amelia V. of Chicago laughed at this letter<br> and broke the chain. Shortly thereafter, a fire broke out<br> in her terminal and she now spends her days writing<br> documentation for MS Windows.<br> <br> Don't break the chain! Send out your ten copies today!<br> <br> </P ></BLOCKQUOTE ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Courtesy 'NIX "fortune cookies", with some alterations and many apologies</I ></SPAN ></P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="arithexp.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="part4.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Arithmetic Expansion</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part3.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/recurnolocvar.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Recursion Without Local Variables</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Functions" HREF="functions.html"><LINK REL="PREVIOUS" TITLE="Local Variables" HREF="localvar.html"><LINK REL="NEXT" TITLE="Aliases" HREF="aliases.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="localvar.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 24. Functions</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="aliases.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="RECURNOLOCVAR" ></A >24.3. Recursion Without Local Variables</H1 ><P >A function may recursively call itself even without use of local variables.</P ><P ><A NAME="FIBOREF" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="FIBO" ></A ><P ><B >Example 24-16. <I CLASS="FIRSTTERM" >The Fibonacci Sequence</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # fibo.sh : Fibonacci sequence (recursive) 3 # Author: M. Cooper 4 # License: GPL3 5 6 # ----------algorithm-------------- 7 # Fibo(0) = 0 8 # Fibo(1) = 1 9 # else 10 # Fibo(j) = Fibo(j-1) + Fibo(j-2) 11 # --------------------------------- 12 13 MAXTERM=15 # Number of terms (+1) to generate. 14 MINIDX=2 # If idx is less than 2, then Fibo(idx) = idx. 15 16 Fibonacci () 17 { 18 idx=$1 # Doesn't need to be local. Why not? 19 if [ "$idx" -lt "$MINIDX" ] 20 then 21 echo "$idx" # First two terms are 0 1 ... see above. 22 else 23 (( --idx )) # j-1 24 term1=$( Fibonacci $idx ) # Fibo(j-1) 25 26 (( --idx )) # j-2 27 term2=$( Fibonacci $idx ) # Fibo(j-2) 28 29 echo $(( term1 + term2 )) 30 fi 31 # An ugly, ugly kludge. 32 # The more elegant implementation of recursive fibo in C 33 #+ is a straightforward translation of the algorithm in lines 7 - 10. 34 } 35 36 for i in $(seq 0 $MAXTERM) 37 do # Calculate $MAXTERM+1 terms. 38 FIBO=$(Fibonacci $i) 39 echo -n "$FIBO " 40 done 41 # 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 42 # Takes a while, doesn't it? Recursion in a script is slow. 43 44 echo 45 46 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="HANOIREF" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="HANOI" ></A ><P ><B >Example 24-17. <I CLASS="FIRSTTERM" >The Towers of Hanoi</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /bin/bash 2 # 3 # The Towers Of Hanoi 4 # Bash script 5 # Copyright (C) 2000 Amit Singh. All Rights Reserved. 6 # http://hanoi.kernelthread.com 7 # 8 # Tested under Bash version 2.05b.0(13)-release. 9 # Also works under Bash version 3.x. 10 # 11 # Used in "Advanced Bash Scripting Guide" 12 #+ with permission of script author. 13 # Slightly modified and commented by ABS author. 14 15 #=================================================================# 16 # The Tower of Hanoi is a mathematical puzzle attributed to 17 #+ Edouard Lucas, a nineteenth-century French mathematician. 18 # 19 # There are three vertical posts set in a base. 20 # The first post has a set of annular rings stacked on it. 21 # These rings are disks with a hole drilled out of the center, 22 #+ so they can slip over the posts and rest flat. 23 # The rings have different diameters, and they stack in ascending 24 #+ order, according to size. 25 # The smallest ring is on top, and the largest on the bottom. 26 # 27 # The task is to transfer the stack of rings 28 #+ to one of the other posts. 29 # You can move only one ring at a time to another post. 30 # You are permitted to move rings back to the original post. 31 # You may place a smaller ring atop a larger one, 32 #+ but *not* vice versa. 33 # Again, it is forbidden to place a larger ring atop a smaller one. 34 # 35 # For a small number of rings, only a few moves are required. 36 #+ For each additional ring, 37 #+ the required number of moves approximately doubles, 38 #+ and the "strategy" becomes increasingly complicated. 39 # 40 # For more information, see http://hanoi.kernelthread.com 41 #+ or pp. 186-92 of _The Armchair Universe_ by A.K. Dewdney. 42 # 43 # 44 # ... ... ... 45 # | | | | | | 46 # _|_|_ | | | | 47 # |_____| | | | | 48 # |_______| | | | | 49 # |_________| | | | | 50 # |___________| | | | | 51 # | | | | | | 52 # .--------------------------------------------------------------. 53 # |**************************************************************| 54 # #1 #2 #3 55 # 56 #=================================================================# 57 58 59 E_NOPARAM=66 # No parameter passed to script. 60 E_BADPARAM=67 # Illegal number of disks passed to script. 61 Moves= # Global variable holding number of moves. 62 # Modification to original script. 63 64 dohanoi() { # Recursive function. 65 case $1 in 66 0) 67 ;; 68 *) 69 dohanoi "$(($1-1))" $2 $4 $3 70 echo move $2 "-->" $3 71 ((Moves++)) # Modification to original script. 72 dohanoi "$(($1-1))" $4 $3 $2 73 ;; 74 esac 75 } 76 77 case $# in 78 1) case $(($1>0)) in # Must have at least one disk. 79 1) # Nested case statement. 80 dohanoi $1 1 3 2 81 echo "Total moves = $Moves" # 2^n - 1, where n = # of disks. 82 exit 0; 83 ;; 84 *) 85 echo "$0: illegal value for number of disks"; 86 exit $E_BADPARAM; 87 ;; 88 esac 89 ;; 90 *) 91 echo "usage: $0 N" 92 echo " Where \"N\" is the number of disks." 93 exit $E_NOPARAM; 94 ;; 95 esac 96 97 # Exercises: 98 # --------- 99 # 1) Would commands beyond this point ever be executed? 100 # Why not? (Easy) 101 # 2) Explain the workings of the workings of the "dohanoi" function. 102 # (Difficult -- see the Dewdney reference, above.)</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="localvar.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="aliases.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Local Variables</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="functions.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Aliases</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/recursionsct.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Recursion: a script calling itself</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Miscellany" HREF="miscellany.html"><LINK REL="PREVIOUS" TITLE="Tests and Comparisons: Alternatives" HREF="testsandcomparisons.html"><LINK REL="NEXT" TITLE="Colorizing Scripts" HREF="colorizing.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="testsandcomparisons.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 36. Miscellany</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="colorizing.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="RECURSIONSCT" ></A >36.4. Recursion: a script calling itself</H1 ><P ><A NAME="SCRIPTRECURSION" ></A ></P ><P >Can a script <A HREF="localvar.html#RECURSIONREF" >recursively</A > call itself? Indeed.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RECURSE" ></A ><P ><B >Example 36-10. A (useless) script that recursively calls itself</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # recurse.sh 3 4 # Can a script recursively call itself? 5 # Yes, but is this of any practical use? 6 # (See the following.) 7 8 RANGE=10 9 MAXVAL=9 10 11 i=$RANDOM 12 let "i %= $RANGE" # Generate a random number between 0 and $RANGE - 1. 13 14 if [ "$i" -lt "$MAXVAL" ] 15 then 16 echo "i = $i" 17 ./$0 # Script recursively spawns a new instance of itself. 18 fi # Each child script does the same, until 19 #+ a generated $i equals $MAXVAL. 20 21 # Using a "while" loop instead of an "if/then" test causes problems. 22 # Explain why. 23 24 exit 0 25 26 # Note: 27 # ---- 28 # This script must have execute permission for it to work properly. 29 # This is the case even if it is invoked by an "sh" command. 30 # Explain why.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="PBOOK" ></A ><P ><B >Example 36-11. A (useful) script that recursively calls itself</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # pb.sh: phone book 3 4 # Written by Rick Boivie, and used with permission. 5 # Modifications by ABS Guide author. 6 7 MINARGS=1 # Script needs at least one argument. 8 DATAFILE=./phonebook 9 # A data file in current working directory 10 #+ named "phonebook" must exist. 11 PROGNAME=$0 12 E_NOARGS=70 # No arguments error. 13 14 if [ $# -lt $MINARGS ]; then 15 echo "Usage: "$PROGNAME" data-to-look-up" 16 exit $E_NOARGS 17 fi 18 19 20 if [ $# -eq $MINARGS ]; then 21 grep $1 "$DATAFILE" 22 # 'grep' prints an error message if $DATAFILE not present. 23 else 24 ( shift; "$PROGNAME" $* ) | grep $1 25 # Script recursively calls itself. 26 fi 27 28 exit 0 # Script exits here. 29 # Therefore, it's o.k. to put 30 #+ non-hashmarked comments and data after this point. 31 32 # ------------------------------------------------------------------------ 33 Sample "phonebook" datafile: 34 35 John Doe 1555 Main St., Baltimore, MD 21228 (410) 222-3333 36 Mary Moe 9899 Jones Blvd., Warren, NH 03787 (603) 898-3232 37 Richard Roe 856 E. 7th St., New York, NY 10009 (212) 333-4567 38 Sam Roe 956 E. 8th St., New York, NY 10009 (212) 444-5678 39 Zoe Zenobia 4481 N. Baker St., San Francisco, SF 94338 (415) 501-1631 40 # ------------------------------------------------------------------------ 41 42 $bash pb.sh Roe 43 Richard Roe 856 E. 7th St., New York, NY 10009 (212) 333-4567 44 Sam Roe 956 E. 8th St., New York, NY 10009 (212) 444-5678 45 46 $bash pb.sh Roe Sam 47 Sam Roe 956 E. 8th St., New York, NY 10009 (212) 444-5678 48 49 # When more than one argument is passed to this script, 50 #+ it prints *only* the line(s) containing all the arguments.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="USRMNT" ></A ><P ><B >Example 36-12. Another (useful) script that recursively calls itself</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # usrmnt.sh, written by Anthony Richardson 3 # Used in ABS Guide with permission. 4 5 # usage: usrmnt.sh 6 # description: mount device, invoking user must be listed in the 7 # MNTUSERS group in the /etc/sudoers file. 8 9 # ---------------------------------------------------------- 10 # This is a usermount script that reruns itself using sudo. 11 # A user with the proper permissions only has to type 12 13 # usermount /dev/fd0 /mnt/floppy 14 15 # instead of 16 17 # sudo usermount /dev/fd0 /mnt/floppy 18 19 # I use this same technique for all of my 20 #+ sudo scripts, because I find it convenient. 21 # ---------------------------------------------------------- 22 23 # If SUDO_COMMAND variable is not set we are not being run through 24 #+ sudo, so rerun ourselves. Pass the user's real and group id . . . 25 26 if [ -z "$SUDO_COMMAND" ] 27 then 28 mntusr=$(id -u) grpusr=$(id -g) sudo $0 $* 29 exit 0 30 fi 31 32 # We will only get here if we are being run by sudo. 33 /bin/mount $* -o uid=$mntusr,gid=$grpusr 34 35 exit 0 36 37 # Additional notes (from the author of this script): 38 # ------------------------------------------------- 39 40 # 1) Linux allows the "users" option in the /etc/fstab 41 # file so that any user can mount removable media. 42 # But, on a server, I like to allow only a few 43 # individuals access to removable media. 44 # I find using sudo gives me more control. 45 46 # 2) I also find sudo to be more convenient than 47 # accomplishing this task through groups. 48 49 # 3) This method gives anyone with proper permissions 50 # root access to the mount command, so be careful 51 # about who you allow access. 52 # You can get finer control over which access can be mounted 53 # by using this same technique in separate mntfloppy, mntcdrom, 54 # and mntsamba scripts.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Too many levels of recursion can exhaust the script's stack space, causing a segfault.</P ></TD ></TR ></TABLE ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="testsandcomparisons.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="colorizing.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Tests and Comparisons: Alternatives</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><SPAN CLASS="QUOTE" >"Colorizing"</SPAN > Scripts</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/redirapps.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Applications</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="I/O Redirection" HREF="io-redirection.html"><LINK REL="PREVIOUS" TITLE="Redirecting Code Blocks" HREF="redircb.html"><LINK REL="NEXT" TITLE="Subshells" HREF="subshells.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="redircb.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 20. I/O Redirection</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="subshells.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="REDIRAPPS" ></A >20.3. Applications</H1 ><P >Clever use of I/O redirection permits parsing and stitching together snippets of command output (see <A HREF="internal.html#READREDIR" >Example 15-7</A >). This permits generating report and log files.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="LOGEVENTS" ></A ><P ><B >Example 20-12. Logging events</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # logevents.sh 3 # Author: Stephane Chazelas. 4 # Used in ABS Guide with permission. 5 6 # Event logging to a file. 7 # Must be run as root (for write access in /var/log). 8 9 ROOT_UID=0 # Only users with $UID 0 have root privileges. 10 E_NOTROOT=67 # Non-root exit error. 11 12 13 if [ "$UID" -ne "$ROOT_UID" ] 14 then 15 echo "Must be root to run this script." 16 exit $E_NOTROOT 17 fi 18 19 20 FD_DEBUG1=3 21 FD_DEBUG2=4 22 FD_DEBUG3=5 23 24 # === Uncomment one of the two lines below to activate script. === 25 # LOG_EVENTS=1 26 # LOG_VARS=1 27 28 29 log() # Writes time and date to log file. 30 { 31 echo "$(date) $*" >&7 # This *appends* the date to the file. 32 # ^^^^^^^ command substitution 33 # See below. 34 } 35 36 37 38 case $LOG_LEVEL in 39 1) exec 3>&2 4> /dev/null 5> /dev/null;; 40 2) exec 3>&2 4>&2 5> /dev/null;; 41 3) exec 3>&2 4>&2 5>&2;; 42 *) exec 3> /dev/null 4> /dev/null 5> /dev/null;; 43 esac 44 45 FD_LOGVARS=6 46 if [[ $LOG_VARS ]] 47 then exec 6>> /var/log/vars.log 48 else exec 6> /dev/null # Bury output. 49 fi 50 51 FD_LOGEVENTS=7 52 if [[ $LOG_EVENTS ]] 53 then 54 # exec 7 >(exec gawk '{print strftime(), $0}' >> /var/log/event.log) 55 # Above line fails in versions of Bash more recent than 2.04. Why? 56 exec 7>> /var/log/event.log # Append to "event.log". 57 log # Write time and date. 58 else exec 7> /dev/null # Bury output. 59 fi 60 61 echo "DEBUG3: beginning" >&${FD_DEBUG3} 62 63 ls -l >&5 2>&4 # command1 >&5 2>&4 64 65 echo "Done" # command2 66 67 echo "sending mail" >&${FD_LOGEVENTS} 68 # Writes "sending mail" to file descriptor #7. 69 70 71 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="redircb.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="subshells.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Redirecting Code Blocks</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="io-redirection.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Subshells</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/redircb.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Redirecting Code Blocks</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="I/O Redirection" HREF="io-redirection.html"><LINK REL="PREVIOUS" TITLE="I/O Redirection" HREF="io-redirection.html"><LINK REL="NEXT" TITLE="Applications" HREF="redirapps.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="io-redirection.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 20. I/O Redirection</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="redirapps.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="REDIRCB" ></A >20.2. Redirecting Code Blocks</H1 ><P ><A NAME="REDIRREF" ></A >Blocks of code, such as <A HREF="loops.html#WHILELOOPREF" >while</A >, <A HREF="loops.html#UNTILLOOPREF" >until</A >, and <A HREF="loops.html#FORLOOPREF1" >for</A > loops, even <A HREF="tests.html#IFTHEN" >if/then</A > test blocks can also incorporate redirection of <TT CLASS="FILENAME" >stdin</TT >. Even a function may use this form of redirection (see <A HREF="functions.html#REALNAME" >Example 24-11</A >). The <SPAN CLASS="TOKEN" ><</SPAN > operator at the end of the code block accomplishes this.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="REDIR2" ></A ><P ><B >Example 20-5. Redirected <I CLASS="FIRSTTERM" >while</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # redir2.sh 3 4 if [ -z "$1" ] 5 then 6 Filename=names.data # Default, if no filename specified. 7 else 8 Filename=$1 9 fi 10 #+ Filename=${1:-names.data} 11 # can replace the above test (parameter substitution). 12 13 count=0 14 15 echo 16 17 while [ "$name" != Smith ] # Why is variable $name in quotes? 18 do 19 read name # Reads from $Filename, rather than stdin. 20 echo $name 21 let "count += 1" 22 done <"$Filename" # Redirects stdin to file $Filename. 23 # ^^^^^^^^^^^^ 24 25 echo; echo "$count names read"; echo 26 27 exit 0 28 29 # Note that in some older shell scripting languages, 30 #+ the redirected loop would run as a subshell. 31 # Therefore, $count would return 0, the initialized value outside the loop. 32 # Bash and ksh avoid starting a subshell *whenever possible*, 33 #+ so that this script, for example, runs correctly. 34 # (Thanks to Heiner Steven for pointing this out.) 35 36 # However . . . 37 # Bash *can* sometimes start a subshell in a PIPED "while-read" loop, 38 #+ as distinct from a REDIRECTED "while" loop. 39 40 abc=hi 41 echo -e "1\n2\n3" | while read l 42 do abc="$l" 43 echo $abc 44 done 45 echo $abc 46 47 # Thanks, Bruno de Oliveira Schneider, for demonstrating this 48 #+ with the above snippet of code. 49 # And, thanks, Brian Onn, for correcting an annotation error.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="REDIR2A" ></A ><P ><B >Example 20-6. Alternate form of redirected <I CLASS="FIRSTTERM" >while</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # This is an alternate form of the preceding script. 4 5 # Suggested by Heiner Steven 6 #+ as a workaround in those situations when a redirect loop 7 #+ runs as a subshell, and therefore variables inside the loop 8 # +do not keep their values upon loop termination. 9 10 11 if [ -z "$1" ] 12 then 13 Filename=names.data # Default, if no filename specified. 14 else 15 Filename=$1 16 fi 17 18 19 exec 3<&0 # Save stdin to file descriptor 3. 20 exec 0<"$Filename" # Redirect standard input. 21 22 count=0 23 echo 24 25 26 while [ "$name" != Smith ] 27 do 28 read name # Reads from redirected stdin ($Filename). 29 echo $name 30 let "count += 1" 31 done # Loop reads from file $Filename 32 #+ because of line 20. 33 34 # The original version of this script terminated the "while" loop with 35 #+ done <"$Filename" 36 # Exercise: 37 # Why is this unnecessary? 38 39 40 exec 0<&3 # Restore old stdin. 41 exec 3<&- # Close temporary fd 3. 42 43 echo; echo "$count names read"; echo 44 45 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="REDIR3" ></A ><P ><B >Example 20-7. Redirected <I CLASS="FIRSTTERM" >until</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Same as previous example, but with "until" loop. 3 4 if [ -z "$1" ] 5 then 6 Filename=names.data # Default, if no filename specified. 7 else 8 Filename=$1 9 fi 10 11 # while [ "$name" != Smith ] 12 until [ "$name" = Smith ] # Change != to =. 13 do 14 read name # Reads from $Filename, rather than stdin. 15 echo $name 16 done <"$Filename" # Redirects stdin to file $Filename. 17 # ^^^^^^^^^^^^ 18 19 # Same results as with "while" loop in previous example. 20 21 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="REDIR4" ></A ><P ><B >Example 20-8. Redirected <I CLASS="FIRSTTERM" >for</I > loop</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 if [ -z "$1" ] 4 then 5 Filename=names.data # Default, if no filename specified. 6 else 7 Filename=$1 8 fi 9 10 line_count=`wc $Filename | awk '{ print $1 }'` 11 # Number of lines in target file. 12 # 13 # Very contrived and kludgy, nevertheless shows that 14 #+ it's possible to redirect stdin within a "for" loop... 15 #+ if you're clever enough. 16 # 17 # More concise is line_count=$(wc -l < "$Filename") 18 19 20 for name in `seq $line_count` # Recall that "seq" prints sequence of numbers. 21 # while [ "$name" != Smith ] -- more complicated than a "while" loop -- 22 do 23 read name # Reads from $Filename, rather than stdin. 24 echo $name 25 if [ "$name" = Smith ] # Need all this extra baggage here. 26 then 27 break 28 fi 29 done <"$Filename" # Redirects stdin to file $Filename. 30 # ^^^^^^^^^^^^ 31 32 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >We can modify the previous example to also redirect the output of the loop.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="REDIR4A" ></A ><P ><B >Example 20-9. Redirected <I CLASS="FIRSTTERM" >for</I > loop (both <TT CLASS="FILENAME" >stdin</TT > and <TT CLASS="FILENAME" >stdout</TT > redirected)</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 if [ -z "$1" ] 4 then 5 Filename=names.data # Default, if no filename specified. 6 else 7 Filename=$1 8 fi 9 10 Savefile=$Filename.new # Filename to save results in. 11 FinalName=Jonah # Name to terminate "read" on. 12 13 line_count=`wc $Filename | awk '{ print $1 }'` # Number of lines in target file. 14 15 16 for name in `seq $line_count` 17 do 18 read name 19 echo "$name" 20 if [ "$name" = "$FinalName" ] 21 then 22 break 23 fi 24 done < "$Filename" > "$Savefile" # Redirects stdin to file $Filename, 25 # ^^^^^^^^^^^^^^^^^^^^^^^^^^^ and saves it to backup file. 26 27 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="REDIR5" ></A ><P ><B >Example 20-10. Redirected <I CLASS="FIRSTTERM" >if/then</I > test</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 if [ -z "$1" ] 4 then 5 Filename=names.data # Default, if no filename specified. 6 else 7 Filename=$1 8 fi 9 10 TRUE=1 11 12 if [ "$TRUE" ] # if true and if : also work. 13 then 14 read name 15 echo $name 16 fi <"$Filename" 17 # ^^^^^^^^^^^^ 18 19 # Reads only first line of file. 20 # An "if/then" test has no way of iterating unless embedded in a loop. 21 22 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="NAMESDATA" ></A ><P ><B >Example 20-11. Data file <I CLASS="FIRSTTERM" >names.data</I > for above examples</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 Aristotle 2 Arrhenius 3 Belisarius 4 Capablanca 5 Dickens 6 Euler 7 Goethe 8 Hegel 9 Jonah 10 Laplace 11 Maroczy 12 Purcell 13 Schmidt 14 Schopenhauer 15 Semmelweiss 16 Smith 17 Steinmetz 18 Tukhashevsky 19 Turing 20 Venn 21 Warshawski 22 Znosko-Borowski 23 24 # This is a data file for 25 #+ "redir2.sh", "redir3.sh", "redir4.sh", "redir4a.sh", "redir5.sh".</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Redirecting the <TT CLASS="FILENAME" >stdout</TT > of a code block has the effect of saving its output to a file. See <A HREF="special-chars.html#RPMCHECK" >Example 3-2</A >.</P ><P ><A HREF="here-docs.html#HEREDOCREF" >Here documents</A > are a special case of redirected code blocks. That being the case, it should be possible to feed the output of a <I CLASS="FIRSTTERM" >here document</I > into the <TT CLASS="FILENAME" >stdin</TT > for a <I CLASS="FIRSTTERM" >while loop</I >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # This example by Albert Siersema 2 # Used with permission (thanks!). 3 4 function doesOutput() 5 # Could be an external command too, of course. 6 # Here we show you can use a function as well. 7 { 8 ls -al *.jpg | awk '{print $5,$9}' 9 } 10 11 12 nr=0 # We want the while loop to be able to manipulate these and 13 totalSize=0 #+ to be able to see the changes after the 'while' finished. 14 15 while read fileSize fileName ; do 16 echo "$fileName is $fileSize bytes" 17 let nr++ 18 totalSize=$((totalSize+fileSize)) # Or: "let totalSize+=fileSize" 19 done<<EOF 20 $(doesOutput) 21 EOF 22 23 echo "$nr files totaling $totalSize bytes"</PRE ></TD ></TR ></TABLE > </P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="io-redirection.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="redirapps.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >I/O Redirection</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="io-redirection.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Applications</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/refcards.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Reference Cards</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Contributed Scripts" HREF="contributed-scripts.html"><LINK REL="NEXT" TITLE="A Sed and Awk Micro-Primer" HREF="sedawk.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="contributed-scripts.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="sedawk.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="REFCARDS" ></A >Appendix B. Reference Cards</H1 ><P >The following reference cards provide a useful <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >summary</I ></SPAN > of certain scripting concepts. The foregoing text treats these matters in more depth, as well as giving usage examples.</P ><P ><A NAME="SPECSHVARTAB" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN22402" ></A ><P ><B >Table B-1. Special Shell Variables</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Variable</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Meaning</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >$0</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Filename of script</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >$1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Positional parameter #1</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >$2 - $9</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Positional parameters #2 - #9</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${10}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Positional parameter #10</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >$#</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Number of positional parameters</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >"$*"</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >All the positional parameters (as a single word) *</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >"$@"</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >All the positional parameters (as separate strings)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${#*}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Number of positional parameters</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${#@}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Number of positional parameters</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >$?</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Return value</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >$$</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Process ID (PID) of script</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >$-</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Flags passed to script (using <I CLASS="FIRSTTERM" >set</I >)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >$_</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Last argument of previous command</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >$!</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Process ID (PID) of last job run in background</TD ></TR ></TBODY ></TABLE ><HR></DIV ><P ><B CLASS="COMMAND" >*</B > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Must be quoted</I ></SPAN >, otherwise it defaults to <TT CLASS="VARNAME" >$@</TT >.</P ><P ><A NAME="BINCOMPTAB" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN22473" ></A ><P ><B >Table B-2. TEST Operators: Binary Comparison</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Operator</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Meaning</TH ><TH ALIGN="LEFT" VALIGN="TOP" >-----</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Operator</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Meaning</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="comparison-ops.html#ICOMPARISON1" >Arithmetic Comparison</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="comparison-ops.html#SCOMPARISON1" >String Comparison</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-eq</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Equal to</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >=</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Equal to</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >==</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Equal to</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-ne</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Not equal to</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >!=</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Not equal to</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-lt</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Less than</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >\<</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Less than (<A HREF="special-chars.html#ASCIIDEF" >ASCII</A >) *</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-le</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Less than or equal to</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-gt</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Greater than</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >\></TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Greater than (ASCII) *</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-ge</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Greater than or equal to</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-z</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >String is empty</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-n</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >String is not empty</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" >Arithmetic Comparison</TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="tests.html#DBLPRX" >within double parentheses</A > (( ... ))</TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >></TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Greater than</TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >>=</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Greater than or equal to</TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" ><</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Less than</TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" ><=</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Less than or equal to</TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ></TBODY ></TABLE ><HR></DIV ><P ><B CLASS="COMMAND" >*</B > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >If within a double-bracket</I ></SPAN > <SPAN CLASS="TOKEN" >[[ ... ]]</SPAN > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >test construct, then no escape</I ></SPAN > <SPAN CLASS="TOKEN" >\</SPAN > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >is needed.</I ></SPAN ></P ><P ><A NAME="FILESTAB" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN22593" ></A ><P ><B >Table B-3. TEST Operators: Files</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Operator</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Tests Whether</TH ><TH ALIGN="LEFT" VALIGN="TOP" >-----</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Operator</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Tests Whether</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-e</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File exists</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-s</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File is not zero size</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-f</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File is a <I CLASS="FIRSTTERM" >regular</I > file</TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-d</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File is a <I CLASS="FIRSTTERM" >directory</I ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-r</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File has <I CLASS="FIRSTTERM" >read</I > permission</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-h</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File is a <A HREF="external.html#SYMLINKREF" >symbolic link</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-w</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File has <I CLASS="FIRSTTERM" >write</I > permission</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-L</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File is a <I CLASS="FIRSTTERM" >symbolic link</I ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-x</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File has <I CLASS="FIRSTTERM" >execute</I > permission</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-b</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File is a <A HREF="devproc.html#BLOCKDEVREF" >block device</A ></TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-c</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File is a <A HREF="devproc.html#CHARDEVREF" >character device</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-g</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >sgid</I > flag set</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-p</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File is a <A HREF="special-chars.html#PIPEREF" >pipe</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-u</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >suid</I > flag set</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-S</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File is a <A HREF="devproc.html#SOCKETREF" >socket</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-k</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><SPAN CLASS="QUOTE" >"sticky bit"</SPAN > set</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-t</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File is associated with a <I CLASS="FIRSTTERM" >terminal</I ></TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD > </TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-N</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File modified since it was last read</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >F1 -nt F2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File F1 is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >newer</I ></SPAN > than F2 *</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-O</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >You own the file</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >F1 -ot F2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >File F1 is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >older</I ></SPAN > than F2 *</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >-G</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >Group id</I > of file same as yours</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >F1 -ef F2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Files F1 and F2 are <I CLASS="FIRSTTERM" >hard links</I > to the same file *</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD > </TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >!</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >NOT (inverts sense of above tests)</TD ><TD > </TD ><TD > </TD ><TD > </TD ></TR ></TBODY ></TABLE ><HR></DIV ><P ><B CLASS="COMMAND" >*</B > <I CLASS="FIRSTTERM" >Binary</I > operator (requires two operands).</P ><P ><A NAME="PARSUBTAB" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN22728" ></A ><P ><B >Table B-4. Parameter Substitution and Expansion</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Expression</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Meaning</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${var}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Value of <TT CLASS="PARAMETER" ><I >var</I ></TT > (same as <TT CLASS="PARAMETER" ><I >$var</I ></TT >)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${var-$DEFAULT}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >If <TT CLASS="PARAMETER" ><I >var</I ></TT > not set, <A HREF="internal.html#EVALREF" >evaluate</A > expression as <TT CLASS="PARAMETER" ><I >$DEFAULT</I ></TT > *</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${var:-$DEFAULT}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >If <TT CLASS="PARAMETER" ><I >var</I ></TT > not set or is empty, <I CLASS="FIRSTTERM" >evaluate</I > expression as <TT CLASS="PARAMETER" ><I >$DEFAULT</I ></TT > *</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${var=$DEFAULT}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >If <TT CLASS="PARAMETER" ><I >var</I ></TT > not set, evaluate expression as <TT CLASS="PARAMETER" ><I >$DEFAULT</I ></TT > *</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${var:=$DEFAULT}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >If <TT CLASS="PARAMETER" ><I >var</I ></TT > not set or is empty, evaluate expression as <TT CLASS="PARAMETER" ><I >$DEFAULT</I ></TT > *</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${var+$OTHER}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >If <TT CLASS="PARAMETER" ><I >var</I ></TT > set, evaluate expression as <TT CLASS="PARAMETER" ><I >$OTHER</I ></TT >, otherwise as null string</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${var:+$OTHER}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >If <TT CLASS="PARAMETER" ><I >var</I ></TT > set, evaluate expression as <TT CLASS="PARAMETER" ><I >$OTHER</I ></TT >, otherwise as null string</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${var?$ERR_MSG}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >If <TT CLASS="PARAMETER" ><I >var</I ></TT > not set, print <TT CLASS="PARAMETER" ><I >$ERR_MSG</I ></TT > and abort script with an exit status of <SPAN CLASS="ERRORCODE" >1</SPAN >.*</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${var:?$ERR_MSG}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >If <TT CLASS="PARAMETER" ><I >var</I ></TT > not set, print <TT CLASS="PARAMETER" ><I >$ERR_MSG</I ></TT > and abort script with an exit status of <SPAN CLASS="ERRORCODE" >1</SPAN >.*</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${!varprefix*}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Matches all previously declared variables beginning with <TT CLASS="PARAMETER" ><I >varprefix</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${!varprefix@}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Matches all previously declared variables beginning with <TT CLASS="PARAMETER" ><I >varprefix</I ></TT ></TD ></TR ></TBODY ></TABLE ><HR></DIV ><P ><B CLASS="COMMAND" >*</B > If <TT CLASS="PARAMETER" ><I >var</I ></TT > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >is</I ></SPAN > set, evaluate the expression as <TT CLASS="PARAMETER" ><I >$var</I ></TT > with no side-effects.</P ><P ><B CLASS="COMMAND" ># Note</B > that some of the above behavior of operators has changed from earlier versions of Bash.</P ><P ><A NAME="STRINGOPSTAB" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN22828" ></A ><P ><B >Table B-5. String Operations</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Expression</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Meaning</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${#string}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Length of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${string:position}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Extract substring from <TT CLASS="PARAMETER" ><I >$string</I ></TT > at <TT CLASS="PARAMETER" ><I >$position</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${string:position:length}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Extract <TT CLASS="PARAMETER" ><I >$length</I ></TT > characters substring from <TT CLASS="PARAMETER" ><I >$string</I ></TT > at <TT CLASS="PARAMETER" ><I >$position</I ></TT > [zero-indexed, first character is at position 0]</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${string#substring}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Strip shortest match of <TT CLASS="PARAMETER" ><I >$substring</I ></TT > from front of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${string##substring}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Strip longest match of <TT CLASS="PARAMETER" ><I >$substring</I ></TT > from front of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${string%substring}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Strip shortest match of <TT CLASS="PARAMETER" ><I >$substring</I ></TT > from back of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${string%%substring}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Strip longest match of <TT CLASS="PARAMETER" ><I >$substring</I ></TT > from back of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${string/substring/replacement}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Replace first match of <TT CLASS="PARAMETER" ><I >$substring</I ></TT > with <TT CLASS="PARAMETER" ><I >$replacement</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${string//substring/replacement}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Replace <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >all</I ></SPAN > matches of <TT CLASS="PARAMETER" ><I >$substring</I ></TT > with <TT CLASS="PARAMETER" ><I >$replacement</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${string/#substring/replacement}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >If <TT CLASS="PARAMETER" ><I >$substring</I ></TT > matches <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >front</I ></SPAN > end of <TT CLASS="PARAMETER" ><I >$string</I ></TT >, substitute <TT CLASS="PARAMETER" ><I >$replacement</I ></TT > for <TT CLASS="PARAMETER" ><I >$substring</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${string/%substring/replacement}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >If <TT CLASS="PARAMETER" ><I >$substring</I ></TT > matches <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >back</I ></SPAN > end of <TT CLASS="PARAMETER" ><I >$string</I ></TT >, substitute <TT CLASS="PARAMETER" ><I >$replacement</I ></TT > for <TT CLASS="PARAMETER" ><I >$substring</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >expr match "$string" '$substring'</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Length of matching <TT CLASS="PARAMETER" ><I >$substring</I ></TT >* at beginning of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >expr "$string" : '$substring'</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Length of matching <TT CLASS="PARAMETER" ><I >$substring</I ></TT >* at beginning of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >expr index "$string" $substring</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Numerical position in <TT CLASS="PARAMETER" ><I >$string</I ></TT > of first character in <TT CLASS="PARAMETER" ><I >$substring</I ></TT >* that matches [0 if no match, first character counts as position 1]</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >expr substr $string $position $length</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Extract <TT CLASS="PARAMETER" ><I >$length</I ></TT > characters from <TT CLASS="PARAMETER" ><I >$string</I ></TT > starting at <TT CLASS="PARAMETER" ><I >$position</I ></TT > [0 if no match, first character counts as position 1]</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >expr match "$string" '\($substring\)'</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Extract <TT CLASS="PARAMETER" ><I >$substring</I ></TT >*, searching from beginning of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >expr "$string" : '\($substring\)'</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Extract <TT CLASS="PARAMETER" ><I >$substring</I ></TT >* , searching from beginning of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >expr match "$string" '.*\($substring\)'</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Extract <TT CLASS="PARAMETER" ><I >$substring</I ></TT >*, searching from end of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >expr "$string" : '.*\($substring\)'</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Extract <TT CLASS="PARAMETER" ><I >$substring</I ></TT >*, searching from end of <TT CLASS="PARAMETER" ><I >$string</I ></TT ></TD ></TR ></TBODY ></TABLE ><HR></DIV ><P ><B CLASS="COMMAND" >*</B > Where <TT CLASS="PARAMETER" ><I >$substring</I ></TT > is a <A HREF="regexp.html#REGEXREF" >Regular Expression</A >.</P ><P ><A NAME="MISCTAB" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN22979" ></A ><P ><B >Table B-6. Miscellaneous Constructs</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Expression</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Interpretation</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="regexp.html#BRACKETSREF" >Brackets</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >if [ CONDITION ]</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="special-chars.html#LEFTBRACKET" >Test construct</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >if [[ CONDITION ]]</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="tests.html#DBLBRACKETS" >Extended test construct</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >Array[1]=element1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="arrays.html#ARRAYREF" >Array initialization</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" > [a-z]</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="regexp.html#BRACKETSREF" >Range of characters</A > within a <A HREF="regexp.html#REGEXREF" >Regular Expression</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" >Curly Brackets</TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${variable}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="parameter-substitution.html#PARAMSUBREF" >Parameter substitution</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >${!variable}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="ivr.html#IVRREF" >Indirect variable reference</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >{ command1; command2; . . . commandN; }</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="special-chars.html#CODEBLOCKREF" >Block of code</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >{string1,string2,string3,...}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="special-chars.html#BRACEEXPREF" >Brace expansion</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >{a..z}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="bashver3.html#BRACEEXPREF3" >Extended brace expansion</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >{}</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Text replacement, after <A HREF="moreadv.html#CURLYBRACKETSREF" >find</A > and <A HREF="moreadv.html#XARGSCURLYREF" >xargs</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="special-chars.html#PARENSREF" >Parentheses</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >( command1; command2 )</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Command group executed within a <A HREF="subshells.html#SUBSHELLSREF" >subshell</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >Array=(element1 element2 element3)</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="arrays.html#ARRAYINIT0" >Array initialization</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >result=$(COMMAND)</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="commandsub.html#CSPARENS" >Command substitution</A >, new style</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >>(COMMAND)</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="process-sub.html#PROCESSSUBREF" >Process substitution</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" ><(COMMAND)</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Process substitution</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="dblparens.html" >Double Parentheses</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >(( var = 78 ))</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="dblparens.html#DBLPARENSREF" >Integer arithmetic</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >var=$(( 20 + 5 ))</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Integer arithmetic, with variable assignment</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >(( var++ ))</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >C-style</I > <A HREF="dblparens.html#PLUSPLUSREF" > variable increment</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >(( var-- ))</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >C-style</I > <A HREF="dblparens.html#PLUSPLUSREF" > variable decrement</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >(( var0 = var1<98?9:21 ))</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><I CLASS="FIRSTTERM" >C-style</I > <A HREF="special-chars.html#CSTRINARY" > ternary</A > operation</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="quoting.html#QUOTINGREF" >Quoting</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >"$variable"</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="variables.html#DBLQUO" >"Weak" quoting</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >'string'</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="variables.html#SNGLQUO" >'Strong' quoting</A ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="commandsub.html#BACKQUOTESREF" >Back Quotes</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" > </TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >result=`COMMAND`</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><A HREF="commandsub.html#COMMANDSUBREF" >Command substitution</A >, classic style</TD ></TR ></TBODY ></TABLE ><HR></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="contributed-scripts.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="sedawk.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Contributed Scripts</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >A Sed and Awk Micro-Primer</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/regexp.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Regular Expressions</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="NEXT" TITLE="Globbing" HREF="globbingref.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="part5.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="globbingref.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="REGEXP" ></A >Chapter 18. Regular Expressions</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >. . . the intellectual activity associated with software development is largely one of gaining insight.</I ></P ><P ><I >--Stowe Boyd</I ></P ></I ></TD ></TR ></TABLE ><P ><A NAME="REGEXREF" ></A ></P ><P >To fully utilize the power of shell scripting, you need to master Regular Expressions. Certain commands and utilities commonly used in scripts, such as <A HREF="textproc.html#GREPREF" >grep</A >, <A HREF="moreadv.html#EXPRREF" >expr</A >, <A HREF="sedawk.html#SEDREF" >sed</A > and <A HREF="awk.html#AWKREF" >awk</A >, interpret and use REs. As of <A HREF="bashver3.html#BASH3REF" >version 3</A >, Bash has acquired its own <A HREF="bashver3.html#REGEXMATCHREF" >RE-match operator</A >: <B CLASS="COMMAND" >=~</B >.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="AEN17129" ></A >18.1. A Brief Introduction to Regular Expressions</H1 ><P >An expression is a string of characters. Those characters having an interpretation above and beyond their literal meaning are called <I CLASS="FIRSTTERM" >metacharacters</I >. A quote symbol, for example, may denote speech by a person, <I CLASS="FIRSTTERM" >ditto</I >, or a meta-meaning <A NAME="AEN17134" HREF="#FTN.AEN17134" >[1]</A > for the symbols that follow. Regular Expressions are sets of characters and/or metacharacters that match (or specify) patterns.</P ><P >A Regular Expression contains one or more of the following:</P ><UL ><LI ><P ><I CLASS="FIRSTTERM" >A character set</I >. These are the characters retaining their literal meaning. The simplest type of Regular Expression consists <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >only</I ></SPAN > of a character set, with no metacharacters.</P ></LI ><LI ><P ><A NAME="ANCHORREF" ></A ></P ><P ><I CLASS="FIRSTTERM" >An anchor</I >. These designate (<I CLASS="FIRSTTERM" >anchor</I >) the position in the line of text that the RE is to match. For example, <SPAN CLASS="TOKEN" >^</SPAN >, and <SPAN CLASS="TOKEN" >$</SPAN > are anchors.</P ></LI ><LI ><P ><I CLASS="FIRSTTERM" >Modifiers</I >. These expand or narrow (<I CLASS="FIRSTTERM" >modify</I >) the range of text the RE is to match. Modifiers include the asterisk, brackets, and the backslash.</P ></LI ></UL ><P >The main uses for Regular Expressions (<I CLASS="FIRSTTERM" >RE</I >s) are text searches and string manipulation. An RE <I CLASS="FIRSTTERM" >matches</I > a single character or a set of characters -- a string or a part of a string.</P ><UL ><LI ><P ><A NAME="ASTERISKREG" ></A >The asterisk -- <SPAN CLASS="TOKEN" >*</SPAN > -- matches any number of repeats of the character string or RE preceding it, including <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >zero</I ></SPAN > instances.</P ><P ><SPAN CLASS="QUOTE" >"1133*"</SPAN > matches <TT CLASS="REPLACEABLE" ><I >11 + one or more 3's</I ></TT >: <TT CLASS="REPLACEABLE" ><I >113</I ></TT >, <TT CLASS="REPLACEABLE" ><I >1133</I ></TT >, <TT CLASS="REPLACEABLE" ><I >1133333</I ></TT >, and so forth.</P ></LI ><LI ><P ><A NAME="REGEXDOT" ></A >The <I CLASS="FIRSTTERM" >dot</I > -- <SPAN CLASS="TOKEN" >.</SPAN > -- matches any one character, except a newline. <A NAME="AEN17189" HREF="#FTN.AEN17189" >[2]</A > </P ><P ><SPAN CLASS="QUOTE" >"13."</SPAN > matches <TT CLASS="REPLACEABLE" ><I >13 + at least one of any character (including a space)</I ></TT >: <TT CLASS="REPLACEABLE" ><I >1133</I ></TT >, <TT CLASS="REPLACEABLE" ><I >11333</I ></TT >, but not <TT CLASS="REPLACEABLE" ><I >13</I ></TT > (additional character missing).</P ><P >See <A HREF="textproc.html#CWSOLVER" >Example 16-18</A > for a demonstration of <I CLASS="FIRSTTERM" >dot single-character</I > matching.</P ></LI ><LI ><P ><A NAME="CARETREF" ></A >The caret -- <SPAN CLASS="TOKEN" >^</SPAN > -- matches the beginning of a line, but sometimes, depending on context, negates the meaning of a set of characters in an RE.</P ></LI ><LI ><P ><A NAME="DOLLARSIGNREF" ></A ></P ><P >The dollar sign -- <SPAN CLASS="TOKEN" >$</SPAN > -- at the end of an RE matches the end of a line.</P ><P ><SPAN CLASS="QUOTE" >"XXX$"</SPAN > matches <SPAN CLASS="TOKEN" >XXX</SPAN > at the end of a line.</P ><P ><SPAN CLASS="QUOTE" >"^$"</SPAN > matches blank lines.</P ></LI ><LI ><P ><A NAME="BRACKETSREF" ></A ></P ><P >Brackets -- <SPAN CLASS="TOKEN" >[...]</SPAN > -- enclose a set of characters to match in a single RE.</P ><P ><SPAN CLASS="QUOTE" >"[xyz]"</SPAN > matches any one of the characters <TT CLASS="REPLACEABLE" ><I >x</I ></TT >, <TT CLASS="REPLACEABLE" ><I >y</I ></TT >, or <TT CLASS="REPLACEABLE" ><I >z</I ></TT >.</P ><P ><SPAN CLASS="QUOTE" >"[c-n]"</SPAN > matches any one of the characters in the range <TT CLASS="REPLACEABLE" ><I >c</I ></TT > to <TT CLASS="REPLACEABLE" ><I >n</I ></TT >.</P ><P ><SPAN CLASS="QUOTE" >"[B-Pk-y]"</SPAN > matches any one of the characters in the ranges <TT CLASS="REPLACEABLE" ><I >B</I ></TT > to <TT CLASS="REPLACEABLE" ><I >P</I ></TT > and <TT CLASS="REPLACEABLE" ><I >k</I ></TT > to <TT CLASS="REPLACEABLE" ><I >y</I ></TT >.</P ><P ><SPAN CLASS="QUOTE" >"[a-z0-9]"</SPAN > matches any single lowercase letter or any digit.</P ><P ><SPAN CLASS="QUOTE" >"[^b-d]"</SPAN > matches any character <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >except</I ></SPAN > those in the range <TT CLASS="REPLACEABLE" ><I >b</I ></TT > to <TT CLASS="REPLACEABLE" ><I >d</I ></TT >. This is an instance of <SPAN CLASS="TOKEN" >^</SPAN > negating or inverting the meaning of the following RE (taking on a role similar to <SPAN CLASS="TOKEN" >!</SPAN > in a different context).</P ><P >Combined sequences of bracketed characters match common word patterns. <SPAN CLASS="QUOTE" >"[Yy][Ee][Ss]"</SPAN > matches <TT CLASS="REPLACEABLE" ><I >yes</I ></TT >, <TT CLASS="REPLACEABLE" ><I >Yes</I ></TT >, <TT CLASS="REPLACEABLE" ><I >YES</I ></TT >, <TT CLASS="REPLACEABLE" ><I >yEs</I ></TT >, and so forth. <SPAN CLASS="QUOTE" >"[0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9]"</SPAN > matches any Social Security number.</P ></LI ><LI ><P ><A NAME="REGEXBS" ></A ></P ><P >The backslash -- <SPAN CLASS="TOKEN" >\</SPAN > -- <A HREF="escapingsection.html#ESCP" >escapes</A > a special character, which means that character gets interpreted literally (and is therefore no longer <I CLASS="FIRSTTERM" >special</I >).</P ><P >A <SPAN CLASS="QUOTE" >"\$"</SPAN > reverts back to its literal meaning of <SPAN CLASS="QUOTE" >"$"</SPAN >, rather than its RE meaning of end-of-line. Likewise a <SPAN CLASS="QUOTE" >"\\"</SPAN > has the literal meaning of <SPAN CLASS="QUOTE" >"\"</SPAN >.</P ></LI ><LI ><P ><A NAME="ANGLEBRAC" ></A ></P ><P ><A HREF="escapingsection.html#ESCP" >Escaped</A > <SPAN CLASS="QUOTE" >"angle brackets"</SPAN > -- <SPAN CLASS="TOKEN" >\<...\></SPAN > -- mark word boundaries.</P ><P >The angle brackets must be escaped, since otherwise they have only their literal character meaning.</P ><P ><SPAN CLASS="QUOTE" >"\<the\>"</SPAN > matches the word <SPAN CLASS="QUOTE" >"the,"</SPAN > but not the words <SPAN CLASS="QUOTE" >"them,"</SPAN > <SPAN CLASS="QUOTE" >"there,"</SPAN > <SPAN CLASS="QUOTE" >"other,"</SPAN > etc.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat textfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" >This is line 1, of which there is only one instance. This is the only instance of line 2. This is line 3, another line. This is line 4.</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep 'the' textfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" >This is line 1, of which there is only one instance. This is the only instance of line 2. This is line 3, another line.</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep '\<the\>' textfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" >This is the only instance of line 2.</TT > </PRE ></TD ></TR ></TABLE > </P ></LI ></UL ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN17316" ></A ><P >The only way to be certain that a particular RE works is to test it.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 TEST FILE: tstfile # No match. 2 # No match. 3 Run grep "1133*" on this file. # Match. 4 # No match. 5 # No match. 6 This line contains the number 113. # Match. 7 This line contains the number 13. # No match. 8 This line contains the number 133. # No match. 9 This line contains the number 1133. # Match. 10 This line contains the number 113312. # Match. 11 This line contains the number 1112. # No match. 12 This line contains the number 113312312. # Match. 13 This line contains no numbers at all. # No match.</PRE ></TD ></TR ></TABLE ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep "1133*" tstfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Run grep "1133*" on this file. # Match. This line contains the number 113. # Match. This line contains the number 1133. # Match. This line contains the number 113312. # Match. This line contains the number 113312312. # Match.</TT > </PRE ></TD ></TR ></TABLE ></DIV ></TD ></TR ></TABLE ><UL ><LI STYLE="list-style-type: square" ><DIV CLASS="FORMALPARA" ><P ><B ><A NAME="EXTREGEX" ></A >Extended REs. </B >Additional metacharacters added to the basic set. Used in <A HREF="textproc.html#EGREPREF" >egrep</A >, <A HREF="awk.html#AWKREF" >awk</A >, and <A HREF="wrapper.html#PERLREF" >Perl</A >.</P ></DIV ></LI ><LI ><P ><A NAME="QUEXREGEX" ></A ></P ><P >The question mark -- <SPAN CLASS="TOKEN" >?</SPAN > -- matches zero or one of the previous RE. It is generally used for matching single characters.</P ></LI ><LI ><P ><A NAME="PLUSREF" ></A ></P ><P >The plus -- <SPAN CLASS="TOKEN" >+</SPAN > -- matches one or more of the previous RE. It serves a role similar to the <SPAN CLASS="TOKEN" >*</SPAN >, but does <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > match zero occurrences.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # GNU versions of sed and awk can use "+", 2 # but it needs to be escaped. 3 4 echo a111b | sed -ne '/a1\+b/p' 5 echo a111b | grep 'a1\+b' 6 echo a111b | gawk '/a1+b/' 7 # All of above are equivalent. 8 9 # Thanks, S.C.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="ESCPCB" ></A ></P ></LI ><LI ><P ><A HREF="escapingsection.html#ESCP" >Escaped</A > <SPAN CLASS="QUOTE" >"curly brackets"</SPAN > -- <SPAN CLASS="TOKEN" >\{ \}</SPAN > -- indicate the number of occurrences of a preceding RE to match.</P ><P >It is necessary to escape the curly brackets since they have only their literal character meaning otherwise. This usage is technically not part of the basic RE set.</P ><P ><SPAN CLASS="QUOTE" >"[0-9]\{5\}"</SPAN > matches exactly five digits (characters in the range of 0 to 9).</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Curly brackets are not available as an RE in the <SPAN CLASS="QUOTE" >"classic"</SPAN > (non-POSIX compliant) version of <A HREF="awk.html#AWKREF" >awk</A >. <A NAME="GNUGAWK" ></A >However, the GNU extended version of <I CLASS="FIRSTTERM" >awk</I >, <B CLASS="COMMAND" >gawk</B >, has the <TT CLASS="OPTION" >--re-interval</TT > option that permits them (without being escaped).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo 2222 | gawk --re-interval '/2{3}/'</B ></TT > <TT CLASS="COMPUTEROUTPUT" >2222</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><B CLASS="COMMAND" >Perl</B > and some <B CLASS="COMMAND" >egrep</B > versions do not require escaping the curly brackets.</P ></TD ></TR ></TABLE ></DIV ></LI ><LI ><P ><A NAME="PARENGRPS" ></A ></P ><P >Parentheses -- <B CLASS="COMMAND" >( )</B > -- enclose a group of REs. They are useful with the following <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >|</SPAN >"</SPAN > operator and in <A HREF="manipulatingvars.html#EXPRPAREN" >substring extraction</A > using <A HREF="moreadv.html#EXPRREF" >expr</A >.</P ></LI ><LI ><P >The -- <B CLASS="COMMAND" >|</B > -- <SPAN CLASS="QUOTE" >"or"</SPAN > RE operator matches any of a set of alternate characters.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >egrep 're(a|e)d' misc.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" >People who read seem to be better informed than those who do not. The clarinet produces sound by the vibration of its reed.</TT > </PRE ></TD ></TR ></TABLE > </P ></LI ></UL ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Some versions of <B CLASS="COMMAND" >sed</B >, <B CLASS="COMMAND" >ed</B >, and <B CLASS="COMMAND" >ex</B > support escaped versions of the extended Regular Expressions described above, as do the GNU utilities.</P ></TD ></TR ></TABLE ></DIV ><UL ><LI STYLE="list-style-type: square" ><DIV CLASS="FORMALPARA" ><P ><B ><A NAME="POSIXREF" ></A >POSIX Character Classes. </B ><TT CLASS="USERINPUT" ><B >[:class:]</B ></TT ></P ></DIV ><P >This is an alternate method of specifying a range of characters to match.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >[:alnum:]</B ></TT > matches alphabetic or numeric characters. This is equivalent to <TT CLASS="USERINPUT" ><B >A-Za-z0-9</B ></TT >.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >[:alpha:]</B ></TT > matches alphabetic characters. This is equivalent to <TT CLASS="USERINPUT" ><B >A-Za-z</B ></TT >.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >[:blank:]</B ></TT > matches a space or a tab.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >[:cntrl:]</B ></TT > matches control characters.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >[:digit:]</B ></TT > matches (decimal) digits. This is equivalent to <TT CLASS="USERINPUT" ><B >0-9</B ></TT >.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >[:graph:]</B ></TT > (graphic printable characters). Matches characters in the range of <A HREF="special-chars.html#ASCIIDEF" >ASCII</A > 33 - 126. This is the same as <TT CLASS="USERINPUT" ><B >[:print:]</B ></TT >, below, but excluding the space character.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >[:lower:]</B ></TT > matches lowercase alphabetic characters. This is equivalent to <TT CLASS="USERINPUT" ><B >a-z</B ></TT >.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >[:print:]</B ></TT > (printable characters). Matches characters in the range of ASCII 32 - 126. This is the same as <TT CLASS="USERINPUT" ><B >[:graph:]</B ></TT >, above, but adding the space character.</P ></LI ><LI ><P ><A NAME="WSPOSIX" ></A ><TT CLASS="USERINPUT" ><B >[:space:]</B ></TT > matches whitespace characters (space and horizontal tab).</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >[:upper:]</B ></TT > matches uppercase alphabetic characters. This is equivalent to <TT CLASS="USERINPUT" ><B >A-Z</B ></TT >.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >[:xdigit:]</B ></TT > matches hexadecimal digits. This is equivalent to <TT CLASS="USERINPUT" ><B >0-9A-Fa-f</B ></TT >.</P ><DIV CLASS="IMPORTANT" ><TABLE CLASS="IMPORTANT" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/important.png" HSPACE="5" ALT="Important"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >POSIX character classes generally require quoting or <A HREF="tests.html#DBLBRACKETS" >double brackets</A > ([[ ]]).</P ></TD ></TR ></TABLE ></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep [[:digit:]] test.file</B ></TT > <TT CLASS="COMPUTEROUTPUT" >abc=723</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # ... 2 if [[ $arow =~ [[:digit:]] ]] # Numerical input? 3 then # POSIX char class 4 if [[ $acol =~ [[:alpha:]] ]] # Number followed by a letter? Illegal! 5 # ... 6 # From ktour.sh example script.</PRE ></TD ></TR ></TABLE > </P ><P >These character classes may even be used with <A HREF="globbingref.html" >globbing</A >, to a limited extent.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l ?[[:digit:]][[:digit:]]?</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-rw-rw-r-- 1 bozo bozo 0 Aug 21 14:47 a33b</TT > </PRE ></TD ></TR ></TABLE > </P ><P >POSIX character classes are used in <A HREF="textproc.html#EX49" >Example 16-21</A > and <A HREF="textproc.html#LOWERCASE" >Example 16-22</A >.</P ></LI ></UL ><P ><A HREF="sedawk.html#SEDREF" >Sed</A >, <A HREF="awk.html#AWKREF" >awk</A >, and <A HREF="wrapper.html#PERLREF" >Perl</A >, used as filters in scripts, take REs as arguments when "sifting" or transforming files or I/O streams. See <A HREF="contributed-scripts.html#BEHEAD" >Example A-12</A > and <A HREF="contributed-scripts.html#TREE" >Example A-16</A > for illustrations of this.</P ><P >The standard reference on this complex topic is Friedl's <I CLASS="CITETITLE" >Mastering Regular Expressions</I >. <I CLASS="CITETITLE" >Sed & Awk</I >, by Dougherty and Robbins, also gives a very lucid treatment of REs. See the <A HREF="biblio.html" ><I >Bibliography</I ></A > for more information on these books.</P ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN17134" HREF="regexp.html#AEN17134" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="METAMEANINGREF" ></A >A <I CLASS="FIRSTTERM" >meta-meaning</I > is the meaning of a term or expression on a higher level of abstraction. For example, the <I CLASS="FIRSTTERM" >literal</I > meaning of <I CLASS="FIRSTTERM" >regular expression</I > is an ordinary expression that conforms to accepted usage. The <I CLASS="FIRSTTERM" >meta-meaning</I > is drastically different, as discussed at length in this chapter.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN17189" HREF="regexp.html#AEN17189" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Since <A HREF="sedawk.html#SEDREF" >sed</A >, <A HREF="awk.html#AWKREF" >awk</A >, and <A HREF="textproc.html#GREPREF" >grep</A > process single lines, there will usually not be a newline to match. In those cases where there is a newline in a multiple line expression, the dot will match the newline. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 sed -e 'N;s/.*/[&]/' << EOF # Here Document 4 line1 5 line2 6 EOF 7 # OUTPUT: 8 # [line1 9 # line2] 10 11 12 13 echo 14 15 awk '{ $0=$1 "\n" $2; if (/line.1/) {print}}' << EOF 16 line 1 17 line 2 18 EOF 19 # OUTPUT: 20 # line 21 # 1 22 23 24 # Thanks, S.C. 25 26 exit 0</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="globbingref.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Advanced Topics</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Globbing</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/restricted-sh.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Restricted Shells</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Subshells" HREF="subshells.html"><LINK REL="NEXT" TITLE="Process Substitution" HREF="process-sub.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="subshells.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="process-sub.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="RESTRICTED-SH" ></A >Chapter 22. Restricted Shells</H1 ><P ><A NAME="RESTRICTEDSHREF" ></A ></P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="DISABLEDCOMMREF" ></A >Disabled commands in restricted shells</B ></P ><DL ><DT ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B > . </B >Running a script or portion of a script in <I CLASS="FIRSTTERM" >restricted mode</I > disables certain commands that would otherwise be available. This is a security measure intended to limit the privileges of the script user and to minimize possible damage from running the script.</P ></DIV ></DD ></DL ></DIV ><P >The following commands and actions are disabled:</P ><UL ><LI ><P >Using <TT CLASS="REPLACEABLE" ><I >cd</I ></TT > to change the working directory.</P ></LI ><LI ><P >Changing the values of the <TT CLASS="REPLACEABLE" ><I >$PATH</I ></TT >, <TT CLASS="REPLACEABLE" ><I >$SHELL</I ></TT >, <TT CLASS="REPLACEABLE" ><I >$BASH_ENV</I ></TT >, or <TT CLASS="REPLACEABLE" ><I >$ENV</I ></TT > <A HREF="othertypesv.html#ENVREF" >environmental variables</A >.</P ></LI ><LI ><P >Reading or changing the <TT CLASS="REPLACEABLE" ><I >$SHELLOPTS</I ></TT >, shell environmental options.</P ></LI ><LI ><P >Output redirection.</P ></LI ><LI ><P >Invoking commands containing one or more <SPAN CLASS="TOKEN" >/</SPAN >'s.</P ></LI ><LI ><P >Invoking <A HREF="internal.html#EXECREF" >exec</A > to substitute a different process for the shell.</P ></LI ><LI ><P >Various other commands that would enable monkeying with or attempting to subvert the script for an unintended purpose.</P ></LI ><LI ><P >Getting out of restricted mode within the script.</P ></LI ></UL ><DIV CLASS="EXAMPLE" ><HR><A NAME="RESTRICTED" ></A ><P ><B >Example 22-1. Running a script in restricted mode</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Starting the script with "#!/bin/bash -r" 4 #+ runs entire script in restricted mode. 5 6 echo 7 8 echo "Changing directory." 9 cd /usr/local 10 echo "Now in `pwd`" 11 echo "Coming back home." 12 cd 13 echo "Now in `pwd`" 14 echo 15 16 # Everything up to here in normal, unrestricted mode. 17 18 set -r 19 # set --restricted has same effect. 20 echo "==> Now in restricted mode. <==" 21 22 echo 23 echo 24 25 echo "Attempting directory change in restricted mode." 26 cd .. 27 echo "Still in `pwd`" 28 29 echo 30 echo 31 32 echo "\$SHELL = $SHELL" 33 echo "Attempting to change shell in restricted mode." 34 SHELL="/bin/ash" 35 echo 36 echo "\$SHELL= $SHELL" 37 38 echo 39 echo 40 41 echo "Attempting to redirect output in restricted mode." 42 ls -l /usr/bin > bin.files 43 ls -l bin.files # Try to list attempted file creation effort. 44 45 echo 46 47 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="subshells.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="process-sub.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Subshells</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Process Substitution</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/revisionhistory.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Revision History</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Writing Scripts" HREF="writingscripts.html"><LINK REL="NEXT" TITLE="Download and Mirror Sites" HREF="mirrorsites.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="writingscripts.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="mirrorsites.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="REVISIONHISTORY" ></A >Appendix P. Revision History</H1 ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SYNOPSIS" > This document first appeared as a 60-page HOWTO in the late spring of 2000. Since then, it has gone through quite a number of updates and revisions. This book could not have been written without the assistance of the Linux community, and especially of the volunteers of the <A HREF="http://www.tldp.org" TARGET="_top" >Linux Documentation Project</A >. </PRE ></TD ></TR ></TABLE ><P >Here is the e-mail to the LDP requesting permission to submit version 0.1.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 From thegrendel@theriver.com Sat Jun 10 09:05:33 2000 -0700 2 Date: Sat, 10 Jun 2000 09:05:28 -0700 (MST) 3 From: "M. Leo Cooper" <thegrendel@theriver.com> 4 X-Sender: thegrendel@localhost 5 To: ldp-discuss@lists.linuxdoc.org 6 Subject: Permission to submit HOWTO 7 8 Dear HOWTO Coordinator, 9 10 I am working on and would like to submit to the LDP a HOWTO on the subject 11 of "Bash Scripting" (shell scripting, using 'bash'). As it happens, 12 I have been writing this document, off and on, for about the last eight 13 months or so, and I could produce a first draft in ASCII text format in 14 a matter of just a few more days. 15 16 I began writing this out of frustration at being unable to find a 17 decent book on shell scripting. I managed to locate some pretty good 18 articles on various aspects of scripting, but nothing like a complete, 19 beginning-to-end tutorial. Well, in keeping with my philosophy, if all 20 else fails, do it yourself. 21 22 As it stands, this proposed "Bash-Scripting HOWTO" would serve as a 23 combination tutorial and reference, with the heavier emphasis on the 24 tutorial. It assumes Linux experience, but only a very basic level 25 of programming skills. Interspersed with the text are 79 illustrative 26 example scripts of varying complexity, all liberally commented. There 27 are even exercises for the reader. 28 29 At this stage, I'm up to 18,000+ words (124k), and that's over 50 pages of 30 text (whew!). 31 32 33 I haven't mentioned that I've previously authored an LDP HOWTO, the 34 "Software-Building HOWTO", which I wrote in Linuxdoc/SGML. I don't know 35 if I could handle Docbook/SGML, and I'm glad you have volunteers to do 36 the conversion. You people seem to have gotten on a more organized basis 37 these last few months. Working with Greg Hankins and Tim Bynum was nice, 38 but a professional team is even nicer. 39 40 Anyhow, please advise. 41 42 43 Mendel Cooper 44 thegrendel@theriver.com</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN25364" ></A ><P ><B >Table P-1. Revision History</B ></P ><TABLE BORDER="0" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Release</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Date</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Comments</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" >0.1</TD ><TD ALIGN="LEFT" VALIGN="TOP" >14 Jun 2000</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Initial release.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >0.2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >30 Oct 2000</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Bugs fixed, plus much additional material and more example scripts.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >0.3</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >12 Feb 2001</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Major update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >0.4</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >08 Jul 2001</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Complete revision and expansion of the book.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >0.5</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >03 Sep 2001</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Major update: Bugfixes, material added, sections reorganized.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1.0</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >14 Oct 2001</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Stable release: Bugfixes, reorganization, material added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1.1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >06 Jan 2002</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Bugfixes, material and scripts added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1.2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >31 Mar 2002</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Bugfixes, material and scripts added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1.3</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >02 Jun 2002</TD ><TD ALIGN="LEFT" VALIGN="TOP" >TANGERINE release: A few bugfixes, much more material and scripts added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1.4</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >16 Jun 2002</TD ><TD ALIGN="LEFT" VALIGN="TOP" >MANGO release: A number of typos fixed, more material and scripts.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1.5</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >13 Jul 2002</TD ><TD ALIGN="LEFT" VALIGN="TOP" >PAPAYA release: A few bugfixes, much more material and scripts added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1.6</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >29 Sep 2002</TD ><TD ALIGN="LEFT" VALIGN="TOP" >POMEGRANATE release: Bugfixes, more material, one more script.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1.7</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >05 Jan 2003</TD ><TD ALIGN="LEFT" VALIGN="TOP" >COCONUT release: A couple of bugfixes, more material, one more script.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1.8</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >10 May 2003</TD ><TD ALIGN="LEFT" VALIGN="TOP" >BREADFRUIT release: A number of bugfixes, more scripts and material.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1.9</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >21 Jun 2003</TD ><TD ALIGN="LEFT" VALIGN="TOP" >PERSIMMON release: Bugfixes, and more material.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >2.0</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >24 Aug 2003</TD ><TD ALIGN="LEFT" VALIGN="TOP" >GOOSEBERRY release: Major update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >2.1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >14 Sep 2003</TD ><TD ALIGN="LEFT" VALIGN="TOP" >HUCKLEBERRY release: Bugfixes, and more material.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >2.2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >31 Oct 2003</TD ><TD ALIGN="LEFT" VALIGN="TOP" >CRANBERRY release: Major update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >2.3</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >03 Jan 2004</TD ><TD ALIGN="LEFT" VALIGN="TOP" >STRAWBERRY release: Bugfixes and more material.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >2.4</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >25 Jan 2004</TD ><TD ALIGN="LEFT" VALIGN="TOP" >MUSKMELON release: Bugfixes.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >2.5</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >15 Feb 2004</TD ><TD ALIGN="LEFT" VALIGN="TOP" >STARFRUIT release: Bugfixes and more material.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >2.6</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >15 Mar 2004</TD ><TD ALIGN="LEFT" VALIGN="TOP" >SALAL release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >2.7</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >18 Apr 2004</TD ><TD ALIGN="LEFT" VALIGN="TOP" >MULBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >2.8</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >11 Jul 2004</TD ><TD ALIGN="LEFT" VALIGN="TOP" >ELDERBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >3.0</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >03 Oct 2004</TD ><TD ALIGN="LEFT" VALIGN="TOP" >LOGANBERRY release: Major update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >3.1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >14 Nov 2004</TD ><TD ALIGN="LEFT" VALIGN="TOP" >BAYBERRY release: Bugfix update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >3.2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >06 Feb 2005</TD ><TD ALIGN="LEFT" VALIGN="TOP" >BLUEBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >3.3</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >20 Mar 2005</TD ><TD ALIGN="LEFT" VALIGN="TOP" >RASPBERRY release: Bugfixes, much material added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >3.4</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >08 May 2005</TD ><TD ALIGN="LEFT" VALIGN="TOP" >TEABERRY release: Bugfixes, stylistic revisions.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >3.5</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >05 Jun 2005</TD ><TD ALIGN="LEFT" VALIGN="TOP" >BOXBERRY release: Bugfixes, some material added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >3.6</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >28 Aug 2005</TD ><TD ALIGN="LEFT" VALIGN="TOP" >POKEBERRY release: Bugfixes, some material added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >3.7</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >23 Oct 2005</TD ><TD ALIGN="LEFT" VALIGN="TOP" >WHORTLEBERRY release: Bugfixes, some material added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >3.8</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >26 Feb 2006</TD ><TD ALIGN="LEFT" VALIGN="TOP" >BLAEBERRY release: Bugfixes, some material added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >3.9</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >15 May 2006</TD ><TD ALIGN="LEFT" VALIGN="TOP" >SPICEBERRY release: Bugfixes, some material added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >4.0</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >18 Jun 2006</TD ><TD ALIGN="LEFT" VALIGN="TOP" >WINTERBERRY release: Major reorganization.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >4.1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >08 Oct 2006</TD ><TD ALIGN="LEFT" VALIGN="TOP" >WAXBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >4.2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >10 Dec 2006</TD ><TD ALIGN="LEFT" VALIGN="TOP" >SPARKLEBERRY release: Important update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >4.3</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >29 Apr 2007</TD ><TD ALIGN="LEFT" VALIGN="TOP" >INKBERRY release: Bugfixes, material added.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >5.0</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >24 Jun 2007</TD ><TD ALIGN="LEFT" VALIGN="TOP" >SERVICEBERRY release: Major update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >5.1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >10 Nov 2007</TD ><TD ALIGN="LEFT" VALIGN="TOP" >LINGONBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >5.2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >16 Mar 2008</TD ><TD ALIGN="LEFT" VALIGN="TOP" >SILVERBERRY release: Important update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >5.3</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >11 May 2008</TD ><TD ALIGN="LEFT" VALIGN="TOP" >GOLDENBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >5.4</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >21 Jul 2008</TD ><TD ALIGN="LEFT" VALIGN="TOP" >ANGLEBERRY release: Major update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >5.5</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >23 Nov 2008</TD ><TD ALIGN="LEFT" VALIGN="TOP" >FARKLEBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >5.6</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >26 Jan 2009</TD ><TD ALIGN="LEFT" VALIGN="TOP" >WORCESTERBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >6.0</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >23 Mar 2009</TD ><TD ALIGN="LEFT" VALIGN="TOP" >THIMBLEBERRY release: Major update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >6.1</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >30 Sep 2009</TD ><TD ALIGN="LEFT" VALIGN="TOP" >BUFFALOBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >6.2</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >17 Mar 2010</TD ><TD ALIGN="LEFT" VALIGN="TOP" >ROWANBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >6.3</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >30 Apr 2011</TD ><TD ALIGN="LEFT" VALIGN="TOP" >SWOZZLEBERRY release: Major update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >6.4</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >30 Aug 2011</TD ><TD ALIGN="LEFT" VALIGN="TOP" >VORTEXBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >6.5</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >05 Apr 2012</TD ><TD ALIGN="LEFT" VALIGN="TOP" >TUNGSTENBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >6.6</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >27 Nov 2012</TD ><TD ALIGN="LEFT" VALIGN="TOP" >YTTERBIUMBERRY release: Minor update.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >10</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >10 Mar 2014</TD ><TD ALIGN="LEFT" VALIGN="TOP" >YTTERBIUMBERRY release: License change.</TD ></TR ></TBODY ></TABLE ><HR></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="writingscripts.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="mirrorsites.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Writing Scripts</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Download and Mirror Sites</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/sample-bashrc.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Sample .bashrc and .bash_profile Files</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="History Commands" HREF="histcommands.html"><LINK REL="NEXT" TITLE="Converting DOS Batch Files to Shell Scripts" HREF="dosbatch.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="histcommands.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="dosbatch.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="SAMPLE-BASHRC" ></A >Appendix M. Sample <TT CLASS="FILENAME" >.bashrc</TT > and <TT CLASS="FILENAME" >.bash_profile</TT > Files</H1 ><P >The <TT CLASS="FILENAME" >~/.bashrc</TT > file determines the behavior of interactive shells. A good look at this file can lead to a better understanding of Bash.</P ><P ><A HREF="mailto:emmanuel.rouat@wanadoo.fr" TARGET="_top" >Emmanuel Rouat</A > contributed the following very elaborate <TT CLASS="FILENAME" >.bashrc</TT > file, written for a Linux system. He welcomes reader feedback on it.</P ><P >Study the file carefully, and feel free to reuse code snippets and functions from it in your own <TT CLASS="FILENAME" >.bashrc</TT > file or even in your scripts.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BASHRC" ></A ><P ><B >Example M-1. Sample <TT CLASS="FILENAME" >.bashrc</TT > file</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # =============================================================== # 2 # 3 # PERSONAL $HOME/.bashrc FILE for bash-3.0 (or later) 4 # By Emmanuel Rouat [no-email] 5 # 6 # Last modified: Tue Nov 20 22:04:47 CET 2012 7 8 # This file is normally read by interactive shells only. 9 #+ Here is the place to define your aliases, functions and 10 #+ other interactive features like your prompt. 11 # 12 # The majority of the code here assumes you are on a GNU 13 #+ system (most likely a Linux box) and is often based on code 14 #+ found on Usenet or Internet. 15 # 16 # See for instance: 17 # http://tldp.org/LDP/abs/html/index.html 18 # http://www.caliban.org/bash 19 # http://www.shelldorado.com/scripts/categories.html 20 # http://www.dotfiles.org 21 # 22 # The choice of colors was done for a shell with a dark background 23 #+ (white on black), and this is usually also suited for pure text-mode 24 #+ consoles (no X server available). If you use a white background, 25 #+ you'll have to do some other choices for readability. 26 # 27 # This bashrc file is a bit overcrowded. 28 # Remember, it is just just an example. 29 # Tailor it to your needs. 30 # 31 # =============================================================== # 32 33 # --> Comments added by HOWTO author. 34 35 # If not running interactively, don't do anything 36 [ -z "$PS1" ] && return 37 38 39 #------------------------------------------------------------- 40 # Source global definitions (if any) 41 #------------------------------------------------------------- 42 43 44 if [ -f /etc/bashrc ]; then 45 . /etc/bashrc # --> Read /etc/bashrc, if present. 46 fi 47 48 49 #-------------------------------------------------------------- 50 # Automatic setting of $DISPLAY (if not set already). 51 # This works for me - your mileage may vary. . . . 52 # The problem is that different types of terminals give 53 #+ different answers to 'who am i' (rxvt in particular can be 54 #+ troublesome) - however this code seems to work in a majority 55 #+ of cases. 56 #-------------------------------------------------------------- 57 58 function get_xserver () 59 { 60 case $TERM in 61 xterm ) 62 XSERVER=$(who am i | awk '{print $NF}' | tr -d ')''(' ) 63 # Ane-Pieter Wieringa suggests the following alternative: 64 # I_AM=$(who am i) 65 # SERVER=${I_AM#*(} 66 # SERVER=${SERVER%*)} 67 XSERVER=${XSERVER%%:*} 68 ;; 69 aterm | rxvt) 70 # Find some code that works here. ... 71 ;; 72 esac 73 } 74 75 if [ -z ${DISPLAY:=""} ]; then 76 get_xserver 77 if [[ -z ${XSERVER} || ${XSERVER} == $(hostname) || 78 ${XSERVER} == "unix" ]]; then 79 DISPLAY=":0.0" # Display on local host. 80 else 81 DISPLAY=${XSERVER}:0.0 # Display on remote host. 82 fi 83 fi 84 85 export DISPLAY 86 87 #------------------------------------------------------------- 88 # Some settings 89 #------------------------------------------------------------- 90 91 #set -o nounset # These two options are useful for debugging. 92 #set -o xtrace 93 alias debug="set -o nounset; set -o xtrace" 94 95 ulimit -S -c 0 # Don't want coredumps. 96 set -o notify 97 set -o noclobber 98 set -o ignoreeof 99 100 101 # Enable options: 102 shopt -s cdspell 103 shopt -s cdable_vars 104 shopt -s checkhash 105 shopt -s checkwinsize 106 shopt -s sourcepath 107 shopt -s no_empty_cmd_completion 108 shopt -s cmdhist 109 shopt -s histappend histreedit histverify 110 shopt -s extglob # Necessary for programmable completion. 111 112 # Disable options: 113 shopt -u mailwarn 114 unset MAILCHECK # Don't want my shell to warn me of incoming mail. 115 116 117 #------------------------------------------------------------- 118 # Greeting, motd etc. ... 119 #------------------------------------------------------------- 120 121 # Color definitions (taken from Color Bash Prompt HowTo). 122 # Some colors might look different of some terminals. 123 # For example, I see 'Bold Red' as 'orange' on my screen, 124 # hence the 'Green' 'BRed' 'Red' sequence I often use in my prompt. 125 126 127 # Normal Colors 128 Black='\e[0;30m' # Black 129 Red='\e[0;31m' # Red 130 Green='\e[0;32m' # Green 131 Yellow='\e[0;33m' # Yellow 132 Blue='\e[0;34m' # Blue 133 Purple='\e[0;35m' # Purple 134 Cyan='\e[0;36m' # Cyan 135 White='\e[0;37m' # White 136 137 # Bold 138 BBlack='\e[1;30m' # Black 139 BRed='\e[1;31m' # Red 140 BGreen='\e[1;32m' # Green 141 BYellow='\e[1;33m' # Yellow 142 BBlue='\e[1;34m' # Blue 143 BPurple='\e[1;35m' # Purple 144 BCyan='\e[1;36m' # Cyan 145 BWhite='\e[1;37m' # White 146 147 # Background 148 On_Black='\e[40m' # Black 149 On_Red='\e[41m' # Red 150 On_Green='\e[42m' # Green 151 On_Yellow='\e[43m' # Yellow 152 On_Blue='\e[44m' # Blue 153 On_Purple='\e[45m' # Purple 154 On_Cyan='\e[46m' # Cyan 155 On_White='\e[47m' # White 156 157 NC="\e[m" # Color Reset 158 159 160 ALERT=${BWhite}${On_Red} # Bold White on red background 161 162 163 164 echo -e "${BCyan}This is BASH ${BRed}${BASH_VERSION%.*}${BCyan}\ 165 - DISPLAY on ${BRed}$DISPLAY${NC}\n" 166 date 167 if [ -x /usr/games/fortune ]; then 168 /usr/games/fortune -s # Makes our day a bit more fun.... :-) 169 fi 170 171 function _exit() # Function to run upon exit of shell. 172 { 173 echo -e "${BRed}Hasta la vista, baby${NC}" 174 } 175 trap _exit EXIT 176 177 #------------------------------------------------------------- 178 # Shell Prompt - for many examples, see: 179 # http://www.debian-administration.org/articles/205 180 # http://www.askapache.com/linux/bash-power-prompt.html 181 # http://tldp.org/HOWTO/Bash-Prompt-HOWTO 182 # https://github.com/nojhan/liquidprompt 183 #------------------------------------------------------------- 184 # Current Format: [TIME USER@HOST PWD] > 185 # TIME: 186 # Green == machine load is low 187 # Orange == machine load is medium 188 # Red == machine load is high 189 # ALERT == machine load is very high 190 # USER: 191 # Cyan == normal user 192 # Orange == SU to user 193 # Red == root 194 # HOST: 195 # Cyan == local session 196 # Green == secured remote connection (via ssh) 197 # Red == unsecured remote connection 198 # PWD: 199 # Green == more than 10% free disk space 200 # Orange == less than 10% free disk space 201 # ALERT == less than 5% free disk space 202 # Red == current user does not have write privileges 203 # Cyan == current filesystem is size zero (like /proc) 204 # >: 205 # White == no background or suspended jobs in this shell 206 # Cyan == at least one background job in this shell 207 # Orange == at least one suspended job in this shell 208 # 209 # Command is added to the history file each time you hit enter, 210 # so it's available to all shells (using 'history -a'). 211 212 213 # Test connection type: 214 if [ -n "${SSH_CONNECTION}" ]; then 215 CNX=${Green} # Connected on remote machine, via ssh (good). 216 elif [[ "${DISPLAY%%:0*}" != "" ]]; then 217 CNX=${ALERT} # Connected on remote machine, not via ssh (bad). 218 else 219 CNX=${BCyan} # Connected on local machine. 220 fi 221 222 # Test user type: 223 if [[ ${USER} == "root" ]]; then 224 SU=${Red} # User is root. 225 elif [[ ${USER} != $(logname) ]]; then 226 SU=${BRed} # User is not login user. 227 else 228 SU=${BCyan} # User is normal (well ... most of us are). 229 fi 230 231 232 233 NCPU=$(grep -c 'processor' /proc/cpuinfo) # Number of CPUs 234 SLOAD=$(( 100*${NCPU} )) # Small load 235 MLOAD=$(( 200*${NCPU} )) # Medium load 236 XLOAD=$(( 400*${NCPU} )) # Xlarge load 237 238 # Returns system load as percentage, i.e., '40' rather than '0.40)'. 239 function load() 240 { 241 local SYSLOAD=$(cut -d " " -f1 /proc/loadavg | tr -d '.') 242 # System load of the current host. 243 echo $((10#$SYSLOAD)) # Convert to decimal. 244 } 245 246 # Returns a color indicating system load. 247 function load_color() 248 { 249 local SYSLOAD=$(load) 250 if [ ${SYSLOAD} -gt ${XLOAD} ]; then 251 echo -en ${ALERT} 252 elif [ ${SYSLOAD} -gt ${MLOAD} ]; then 253 echo -en ${Red} 254 elif [ ${SYSLOAD} -gt ${SLOAD} ]; then 255 echo -en ${BRed} 256 else 257 echo -en ${Green} 258 fi 259 } 260 261 # Returns a color according to free disk space in $PWD. 262 function disk_color() 263 { 264 if [ ! -w "${PWD}" ] ; then 265 echo -en ${Red} 266 # No 'write' privilege in the current directory. 267 elif [ -s "${PWD}" ] ; then 268 local used=$(command df -P "$PWD" | 269 awk 'END {print $5} {sub(/%/,"")}') 270 if [ ${used} -gt 95 ]; then 271 echo -en ${ALERT} # Disk almost full (>95%). 272 elif [ ${used} -gt 90 ]; then 273 echo -en ${BRed} # Free disk space almost gone. 274 else 275 echo -en ${Green} # Free disk space is ok. 276 fi 277 else 278 echo -en ${Cyan} 279 # Current directory is size '0' (like /proc, /sys etc). 280 fi 281 } 282 283 # Returns a color according to running/suspended jobs. 284 function job_color() 285 { 286 if [ $(jobs -s | wc -l) -gt "0" ]; then 287 echo -en ${BRed} 288 elif [ $(jobs -r | wc -l) -gt "0" ] ; then 289 echo -en ${BCyan} 290 fi 291 } 292 293 # Adds some text in the terminal frame (if applicable). 294 295 296 # Now we construct the prompt. 297 PROMPT_COMMAND="history -a" 298 case ${TERM} in 299 *term | rxvt | linux) 300 PS1="\[\$(load_color)\][\A\[${NC}\] " 301 # Time of day (with load info): 302 PS1="\[\$(load_color)\][\A\[${NC}\] " 303 # User@Host (with connection type info): 304 PS1=${PS1}"\[${SU}\]\u\[${NC}\]@\[${CNX}\]\h\[${NC}\] " 305 # PWD (with 'disk space' info): 306 PS1=${PS1}"\[\$(disk_color)\]\W]\[${NC}\] " 307 # Prompt (with 'job' info): 308 PS1=${PS1}"\[\$(job_color)\]>\[${NC}\] " 309 # Set title of current xterm: 310 PS1=${PS1}"\[\e]0;[\u@\h] \w\a\]" 311 ;; 312 *) 313 PS1="(\A \u@\h \W) > " # --> PS1="(\A \u@\h \w) > " 314 # --> Shows full pathname of current dir. 315 ;; 316 esac 317 318 319 320 export TIMEFORMAT=$'\nreal %3R\tuser %3U\tsys %3S\tpcpu %P\n' 321 export HISTIGNORE="&:bg:fg:ll:h" 322 export HISTTIMEFORMAT="$(echo -e ${BCyan})[%d/%m %H:%M:%S]$(echo -e ${NC}) " 323 export HISTCONTROL=ignoredups 324 export HOSTFILE=$HOME/.hosts # Put a list of remote hosts in ~/.hosts 325 326 327 #============================================================ 328 # 329 # ALIASES AND FUNCTIONS 330 # 331 # Arguably, some functions defined here are quite big. 332 # If you want to make this file smaller, these functions can 333 #+ be converted into scripts and removed from here. 334 # 335 #============================================================ 336 337 #------------------- 338 # Personnal Aliases 339 #------------------- 340 341 alias rm='rm -i' 342 alias cp='cp -i' 343 alias mv='mv -i' 344 # -> Prevents accidentally clobbering files. 345 alias mkdir='mkdir -p' 346 347 alias h='history' 348 alias j='jobs -l' 349 alias which='type -a' 350 alias ..='cd ..' 351 352 # Pretty-print of some PATH variables: 353 alias path='echo -e ${PATH//:/\\n}' 354 alias libpath='echo -e ${LD_LIBRARY_PATH//:/\\n}' 355 356 357 alias du='du -kh' # Makes a more readable output. 358 alias df='df -kTh' 359 360 #------------------------------------------------------------- 361 # The 'ls' family (this assumes you use a recent GNU ls). 362 #------------------------------------------------------------- 363 # Add colors for filetype and human-readable sizes by default on 'ls': 364 alias ls='ls -h --color' 365 alias lx='ls -lXB' # Sort by extension. 366 alias lk='ls -lSr' # Sort by size, biggest last. 367 alias lt='ls -ltr' # Sort by date, most recent last. 368 alias lc='ls -ltcr' # Sort by/show change time,most recent last. 369 alias lu='ls -ltur' # Sort by/show access time,most recent last. 370 371 # The ubiquitous 'll': directories first, with alphanumeric sorting: 372 alias ll="ls -lv --group-directories-first" 373 alias lm='ll |more' # Pipe through 'more' 374 alias lr='ll -R' # Recursive ls. 375 alias la='ll -A' # Show hidden files. 376 alias tree='tree -Csuh' # Nice alternative to 'recursive ls' ... 377 378 379 #------------------------------------------------------------- 380 # Tailoring 'less' 381 #------------------------------------------------------------- 382 383 alias more='less' 384 export PAGER=less 385 export LESSCHARSET='latin1' 386 export LESSOPEN='|/usr/bin/lesspipe.sh %s 2>&-' 387 # Use this if lesspipe.sh exists. 388 export LESS='-i -N -w -z-4 -g -e -M -X -F -R -P%t?f%f \ 389 :stdin .?pb%pb\%:?lbLine %lb:?bbByte %bb:-...' 390 391 # LESS man page colors (makes Man pages more readable). 392 export LESS_TERMCAP_mb=$'\E[01;31m' 393 export LESS_TERMCAP_md=$'\E[01;31m' 394 export LESS_TERMCAP_me=$'\E[0m' 395 export LESS_TERMCAP_se=$'\E[0m' 396 export LESS_TERMCAP_so=$'\E[01;44;33m' 397 export LESS_TERMCAP_ue=$'\E[0m' 398 export LESS_TERMCAP_us=$'\E[01;32m' 399 400 401 #------------------------------------------------------------- 402 # Spelling typos - highly personnal and keyboard-dependent :-) 403 #------------------------------------------------------------- 404 405 alias xs='cd' 406 alias vf='cd' 407 alias moer='more' 408 alias moew='more' 409 alias kk='ll' 410 411 412 #------------------------------------------------------------- 413 # A few fun ones 414 #------------------------------------------------------------- 415 416 # Adds some text in the terminal frame (if applicable). 417 418 function xtitle() 419 { 420 case "$TERM" in 421 *term* | rxvt) 422 echo -en "\e]0;$*\a" ;; 423 *) ;; 424 esac 425 } 426 427 428 # Aliases that use xtitle 429 alias top='xtitle Processes on $HOST && top' 430 alias make='xtitle Making $(basename $PWD) ; make' 431 432 # .. and functions 433 function man() 434 { 435 for i ; do 436 xtitle The $(basename $1|tr -d .[:digit:]) manual 437 command man -a "$i" 438 done 439 } 440 441 442 #------------------------------------------------------------- 443 # Make the following commands run in background automatically: 444 #------------------------------------------------------------- 445 446 function te() # wrapper around xemacs/gnuserv 447 { 448 if [ "$(gnuclient -batch -eval t 2>&-)" == "t" ]; then 449 gnuclient -q "$@"; 450 else 451 ( xemacs "$@" &); 452 fi 453 } 454 455 function soffice() { command soffice "$@" & } 456 function firefox() { command firefox "$@" & } 457 function xpdf() { command xpdf "$@" & } 458 459 460 #------------------------------------------------------------- 461 # File & strings related functions: 462 #------------------------------------------------------------- 463 464 465 # Find a file with a pattern in name: 466 function ff() { find . -type f -iname '*'"$*"'*' -ls ; } 467 468 # Find a file with pattern $1 in name and Execute $2 on it: 469 function fe() { find . -type f -iname '*'"${1:-}"'*' \ 470 -exec ${2:-file} {} \; ; } 471 472 # Find a pattern in a set of files and highlight them: 473 #+ (needs a recent version of egrep). 474 function fstr() 475 { 476 OPTIND=1 477 local mycase="" 478 local usage="fstr: find string in files. 479 Usage: fstr [-i] \"pattern\" [\"filename pattern\"] " 480 while getopts :it opt 481 do 482 case "$opt" in 483 i) mycase="-i " ;; 484 *) echo "$usage"; return ;; 485 esac 486 done 487 shift $(( $OPTIND - 1 )) 488 if [ "$#" -lt 1 ]; then 489 echo "$usage" 490 return; 491 fi 492 find . -type f -name "${2:-*}" -print0 | \ 493 xargs -0 egrep --color=always -sn ${case} "$1" 2>&- | more 494 495 } 496 497 498 function swap() 499 { # Swap 2 filenames around, if they exist (from Uzi's bashrc). 500 local TMPFILE=tmp.$$ 501 502 [ $# -ne 2 ] && echo "swap: 2 arguments needed" && return 1 503 [ ! -e $1 ] && echo "swap: $1 does not exist" && return 1 504 [ ! -e $2 ] && echo "swap: $2 does not exist" && return 1 505 506 mv "$1" $TMPFILE 507 mv "$2" "$1" 508 mv $TMPFILE "$2" 509 } 510 511 function extract() # Handy Extract Program 512 { 513 if [ -f $1 ] ; then 514 case $1 in 515 *.tar.bz2) tar xvjf $1 ;; 516 *.tar.gz) tar xvzf $1 ;; 517 *.bz2) bunzip2 $1 ;; 518 *.rar) unrar x $1 ;; 519 *.gz) gunzip $1 ;; 520 *.tar) tar xvf $1 ;; 521 *.tbz2) tar xvjf $1 ;; 522 *.tgz) tar xvzf $1 ;; 523 *.zip) unzip $1 ;; 524 *.Z) uncompress $1 ;; 525 *.7z) 7z x $1 ;; 526 *) echo "'$1' cannot be extracted via >extract<" ;; 527 esac 528 else 529 echo "'$1' is not a valid file!" 530 fi 531 } 532 533 534 # Creates an archive (*.tar.gz) from given directory. 535 function maketar() { tar cvzf "${1%%/}.tar.gz" "${1%%/}/"; } 536 537 # Create a ZIP archive of a file or folder. 538 function makezip() { zip -r "${1%%/}.zip" "$1" ; } 539 540 # Make your directories and files access rights sane. 541 function sanitize() { chmod -R u=rwX,g=rX,o= "$@" ;} 542 543 #------------------------------------------------------------- 544 # Process/system related functions: 545 #------------------------------------------------------------- 546 547 548 function my_ps() { ps $@ -u $USER -o pid,%cpu,%mem,bsdtime,command ; } 549 function pp() { my_ps f | awk '!/awk/ && $0~var' var=${1:-".*"} ; } 550 551 552 function killps() # kill by process name 553 { 554 local pid pname sig="-TERM" # default signal 555 if [ "$#" -lt 1 ] || [ "$#" -gt 2 ]; then 556 echo "Usage: killps [-SIGNAL] pattern" 557 return; 558 fi 559 if [ $# = 2 ]; then sig=$1 ; fi 560 for pid in $(my_ps| awk '!/awk/ && $0~pat { print $1 }' pat=${!#} ) 561 do 562 pname=$(my_ps | awk '$1~var { print $5 }' var=$pid ) 563 if ask "Kill process $pid <$pname> with signal $sig?" 564 then kill $sig $pid 565 fi 566 done 567 } 568 569 function mydf() # Pretty-print of 'df' output. 570 { # Inspired by 'dfc' utility. 571 for fs ; do 572 573 if [ ! -d $fs ] 574 then 575 echo -e $fs" :No such file or directory" ; continue 576 fi 577 578 local info=( $(command df -P $fs | awk 'END{ print $2,$3,$5 }') ) 579 local free=( $(command df -Pkh $fs | awk 'END{ print $4 }') ) 580 local nbstars=$(( 20 * ${info[1]} / ${info[0]} )) 581 local out="[" 582 for ((j=0;j<20;j++)); do 583 if [ ${j} -lt ${nbstars} ]; then 584 out=$out"*" 585 else 586 out=$out"-" 587 fi 588 done 589 out=${info[2]}" "$out"] ("$free" free on "$fs")" 590 echo -e $out 591 done 592 } 593 594 595 function my_ip() # Get IP adress on ethernet. 596 { 597 MY_IP=$(/sbin/ifconfig eth0 | awk '/inet/ { print $2 } ' | 598 sed -e s/addr://) 599 echo ${MY_IP:-"Not connected"} 600 } 601 602 function ii() # Get current host related info. 603 { 604 echo -e "\nYou are logged on ${BRed}$HOST" 605 echo -e "\n${BRed}Additionnal information:$NC " ; uname -a 606 echo -e "\n${BRed}Users logged on:$NC " ; w -hs | 607 cut -d " " -f1 | sort | uniq 608 echo -e "\n${BRed}Current date :$NC " ; date 609 echo -e "\n${BRed}Machine stats :$NC " ; uptime 610 echo -e "\n${BRed}Memory stats :$NC " ; free 611 echo -e "\n${BRed}Diskspace :$NC " ; mydf / $HOME 612 echo -e "\n${BRed}Local IP Address :$NC" ; my_ip 613 echo -e "\n${BRed}Open connections :$NC "; netstat -pan --inet; 614 echo 615 } 616 617 #------------------------------------------------------------- 618 # Misc utilities: 619 #------------------------------------------------------------- 620 621 function repeat() # Repeat n times command. 622 { 623 local i max 624 max=$1; shift; 625 for ((i=1; i <= max ; i++)); do # --> C-like syntax 626 eval "$@"; 627 done 628 } 629 630 631 function ask() # See 'killps' for example of use. 632 { 633 echo -n "$@" '[y/n] ' ; read ans 634 case "$ans" in 635 y*|Y*) return 0 ;; 636 *) return 1 ;; 637 esac 638 } 639 640 function corename() # Get name of app that created a corefile. 641 { 642 for file ; do 643 echo -n $file : ; gdb --core=$file --batch | head -1 644 done 645 } 646 647 648 649 #========================================================================= 650 # 651 # PROGRAMMABLE COMPLETION SECTION 652 # Most are taken from the bash 2.05 documentation and from Ian McDonald's 653 # 'Bash completion' package (http://www.caliban.org/bash/#completion) 654 # You will in fact need bash more recent then 3.0 for some features. 655 # 656 # Note that most linux distributions now provide many completions 657 # 'out of the box' - however, you might need to make your own one day, 658 # so I kept those here as examples. 659 #========================================================================= 660 661 if [ "${BASH_VERSION%.*}" \< "3.0" ]; then 662 echo "You will need to upgrade to version 3.0 for full \ 663 programmable completion features" 664 return 665 fi 666 667 shopt -s extglob # Necessary. 668 669 complete -A hostname rsh rcp telnet rlogin ftp ping disk 670 complete -A export printenv 671 complete -A variable export local readonly unset 672 complete -A enabled builtin 673 complete -A alias alias unalias 674 complete -A function function 675 complete -A user su mail finger 676 677 complete -A helptopic help # Currently same as builtins. 678 complete -A shopt shopt 679 complete -A stopped -P '%' bg 680 complete -A job -P '%' fg jobs disown 681 682 complete -A directory mkdir rmdir 683 complete -A directory -o default cd 684 685 # Compression 686 complete -f -o default -X '*.+(zip|ZIP)' zip 687 complete -f -o default -X '!*.+(zip|ZIP)' unzip 688 complete -f -o default -X '*.+(z|Z)' compress 689 complete -f -o default -X '!*.+(z|Z)' uncompress 690 complete -f -o default -X '*.+(gz|GZ)' gzip 691 complete -f -o default -X '!*.+(gz|GZ)' gunzip 692 complete -f -o default -X '*.+(bz2|BZ2)' bzip2 693 complete -f -o default -X '!*.+(bz2|BZ2)' bunzip2 694 complete -f -o default -X '!*.+(zip|ZIP|z|Z|gz|GZ|bz2|BZ2)' extract 695 696 697 # Documents - Postscript,pdf,dvi..... 698 complete -f -o default -X '!*.+(ps|PS)' gs ghostview ps2pdf ps2ascii 699 complete -f -o default -X \ 700 '!*.+(dvi|DVI)' dvips dvipdf xdvi dviselect dvitype 701 complete -f -o default -X '!*.+(pdf|PDF)' acroread pdf2ps 702 complete -f -o default -X '!*.@(@(?(e)ps|?(E)PS|pdf|PDF)?\ 703 (.gz|.GZ|.bz2|.BZ2|.Z))' gv ggv 704 complete -f -o default -X '!*.texi*' makeinfo texi2dvi texi2html texi2pdf 705 complete -f -o default -X '!*.tex' tex latex slitex 706 complete -f -o default -X '!*.lyx' lyx 707 complete -f -o default -X '!*.+(htm*|HTM*)' lynx html2ps 708 complete -f -o default -X \ 709 '!*.+(doc|DOC|xls|XLS|ppt|PPT|sx?|SX?|csv|CSV|od?|OD?|ott|OTT)' soffice 710 711 # Multimedia 712 complete -f -o default -X \ 713 '!*.+(gif|GIF|jp*g|JP*G|bmp|BMP|xpm|XPM|png|PNG)' xv gimp ee gqview 714 complete -f -o default -X '!*.+(mp3|MP3)' mpg123 mpg321 715 complete -f -o default -X '!*.+(ogg|OGG)' ogg123 716 complete -f -o default -X \ 717 '!*.@(mp[23]|MP[23]|ogg|OGG|wav|WAV|pls|\ 718 m3u|xm|mod|s[3t]m|it|mtm|ult|flac)' xmms 719 complete -f -o default -X '!*.@(mp?(e)g|MP?(E)G|wma|avi|AVI|\ 720 asf|vob|VOB|bin|dat|vcd|ps|pes|fli|viv|rm|ram|yuv|mov|MOV|qt|\ 721 QT|wmv|mp3|MP3|ogg|OGG|ogm|OGM|mp4|MP4|wav|WAV|asx|ASX)' xine 722 723 724 725 complete -f -o default -X '!*.pl' perl perl5 726 727 728 # This is a 'universal' completion function - it works when commands have 729 #+ a so-called 'long options' mode , ie: 'ls --all' instead of 'ls -a' 730 # Needs the '-o' option of grep 731 #+ (try the commented-out version if not available). 732 733 # First, remove '=' from completion word separators 734 #+ (this will allow completions like 'ls --color=auto' to work correctly). 735 736 COMP_WORDBREAKS=${COMP_WORDBREAKS/=/} 737 738 739 _get_longopts() 740 { 741 #$1 --help | sed -e '/--/!d' -e 's/.*--\([^[:space:].,]*\).*/--\1/'| \ 742 #grep ^"$2" |sort -u ; 743 $1 --help | grep -o -e "--[^[:space:].,]*" | grep -e "$2" |sort -u 744 } 745 746 _longopts() 747 { 748 local cur 749 cur=${COMP_WORDS[COMP_CWORD]} 750 751 case "${cur:-*}" in 752 -*) ;; 753 *) return ;; 754 esac 755 756 case "$1" in 757 \~*) eval cmd="$1" ;; 758 *) cmd="$1" ;; 759 esac 760 COMPREPLY=( $(_get_longopts ${1} ${cur} ) ) 761 } 762 complete -o default -F _longopts configure bash 763 complete -o default -F _longopts wget id info a2ps ls recode 764 765 _tar() 766 { 767 local cur ext regex tar untar 768 769 COMPREPLY=() 770 cur=${COMP_WORDS[COMP_CWORD]} 771 772 # If we want an option, return the possible long options. 773 case "$cur" in 774 -*) COMPREPLY=( $(_get_longopts $1 $cur ) ); return 0;; 775 esac 776 777 if [ $COMP_CWORD -eq 1 ]; then 778 COMPREPLY=( $( compgen -W 'c t x u r d A' -- $cur ) ) 779 return 0 780 fi 781 782 case "${COMP_WORDS[1]}" in 783 ?(-)c*f) 784 COMPREPLY=( $( compgen -f $cur ) ) 785 return 0 786 ;; 787 +([^Izjy])f) 788 ext='tar' 789 regex=$ext 790 ;; 791 *z*f) 792 ext='tar.gz' 793 regex='t\(ar\.\)\(gz\|Z\)' 794 ;; 795 *[Ijy]*f) 796 ext='t?(ar.)bz?(2)' 797 regex='t\(ar\.\)bz2\?' 798 ;; 799 *) 800 COMPREPLY=( $( compgen -f $cur ) ) 801 return 0 802 ;; 803 804 esac 805 806 if [[ "$COMP_LINE" == tar*.$ext' '* ]]; then 807 # Complete on files in tar file. 808 # 809 # Get name of tar file from command line. 810 tar=$( echo "$COMP_LINE" | \ 811 sed -e 's|^.* \([^ ]*'$regex'\) .*$|\1|' ) 812 # Devise how to untar and list it. 813 untar=t${COMP_WORDS[1]//[^Izjyf]/} 814 815 COMPREPLY=( $( compgen -W "$( echo $( tar $untar $tar \ 816 2>/dev/null ) )" -- "$cur" ) ) 817 return 0 818 819 else 820 # File completion on relevant files. 821 COMPREPLY=( $( compgen -G $cur\*.$ext ) ) 822 823 fi 824 825 return 0 826 827 } 828 829 complete -F _tar -o default tar 830 831 _make() 832 { 833 local mdef makef makef_dir="." makef_inc gcmd cur prev i; 834 COMPREPLY=(); 835 cur=${COMP_WORDS[COMP_CWORD]}; 836 prev=${COMP_WORDS[COMP_CWORD-1]}; 837 case "$prev" in 838 -*f) 839 COMPREPLY=($(compgen -f $cur )); 840 return 0 841 ;; 842 esac; 843 case "$cur" in 844 -*) 845 COMPREPLY=($(_get_longopts $1 $cur )); 846 return 0 847 ;; 848 esac; 849 850 # ... make reads 851 # GNUmakefile, 852 # then makefile 853 # then Makefile ... 854 if [ -f ${makef_dir}/GNUmakefile ]; then 855 makef=${makef_dir}/GNUmakefile 856 elif [ -f ${makef_dir}/makefile ]; then 857 makef=${makef_dir}/makefile 858 elif [ -f ${makef_dir}/Makefile ]; then 859 makef=${makef_dir}/Makefile 860 else 861 makef=${makef_dir}/*.mk # Local convention. 862 fi 863 864 865 # Before we scan for targets, see if a Makefile name was 866 #+ specified with -f. 867 for (( i=0; i < ${#COMP_WORDS[@]}; i++ )); do 868 if [[ ${COMP_WORDS[i]} == -f ]]; then 869 # eval for tilde expansion 870 eval makef=${COMP_WORDS[i+1]} 871 break 872 fi 873 done 874 [ ! -f $makef ] && return 0 875 876 # Deal with included Makefiles. 877 makef_inc=$( grep -E '^-?include' $makef | 878 sed -e "s,^.* ,"$makef_dir"/," ) 879 for file in $makef_inc; do 880 [ -f $file ] && makef="$makef $file" 881 done 882 883 884 # If we have a partial word to complete, restrict completions 885 #+ to matches of that word. 886 if [ -n "$cur" ]; then gcmd='grep "^$cur"' ; else gcmd=cat ; fi 887 888 COMPREPLY=( $( awk -F':' '/^[a-zA-Z0-9][^$#\/\t=]*:([^=]|$)/ \ 889 {split($1,A,/ /);for(i in A)print A[i]}' \ 890 $makef 2>/dev/null | eval $gcmd )) 891 892 } 893 894 complete -F _make -X '+($*|*.[cho])' make gmake pmake 895 896 897 898 899 _killall() 900 { 901 local cur prev 902 COMPREPLY=() 903 cur=${COMP_WORDS[COMP_CWORD]} 904 905 # Get a list of processes 906 #+ (the first sed evaluation 907 #+ takes care of swapped out processes, the second 908 #+ takes care of getting the basename of the process). 909 COMPREPLY=( $( ps -u $USER -o comm | \ 910 sed -e '1,1d' -e 's#[]\[]##g' -e 's#^.*/##'| \ 911 awk '{if ($0 ~ /^'$cur'/) print $0}' )) 912 913 return 0 914 } 915 916 complete -F _killall killall killps 917 918 919 920 # Local Variables: 921 # mode:shell-script 922 # sh-shell:bash 923 # End:</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >And, here is a snippet from Andrzej Szelachowski's instructive <TT CLASS="FILENAME" >.bash_profile</TT > file.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BASHPROF" ></A ><P ><B >Example M-2. <TT CLASS="FILENAME" >.bash_profile</TT > file</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # From Andrzej Szelachowski's ~/.bash_profile: 2 3 4 # Note that a variable may require special treatment 5 #+ if it will be exported. 6 7 DARKGRAY='\e[1;30m' 8 LIGHTRED='\e[1;31m' 9 GREEN='\e[32m' 10 YELLOW='\e[1;33m' 11 LIGHTBLUE='\e[1;34m' 12 NC='\e[m' 13 14 PCT="\`if [[ \$EUID -eq 0 ]]; then T='$LIGHTRED' ; else T='$LIGHTBLUE'; fi; 15 echo \$T \`" 16 17 # For "literal" command substitution to be assigned to a variable, 18 #+ use escapes and double quotes: 19 #+ PCT="\` ... \`" . . . 20 # Otherwise, the value of PCT variable is assigned only once, 21 #+ when the variable is exported/read from .bash_profile, 22 #+ and it will not change afterwards even if the user ID changes. 23 24 25 PS1="\n$GREEN[\w] \n$DARKGRAY($PCT\t$DARKGRAY)-($PCT\u$DARKGRAY)-($PCT\! 26 $DARKGRAY)$YELLOW-> $NC" 27 28 # Escape a variables whose value changes: 29 # if [[ \$EUID -eq 0 ]], 30 # Otherwise the value of the EUID variable will be assigned only once, 31 #+ as above. 32 33 # When a variable is assigned, it should be called escaped: 34 #+ echo \$T, 35 # Otherwise the value of the T variable is taken from the moment the PCT 36 #+ variable is exported/read from .bash_profile. 37 # So, in this example it would be null. 38 39 # When a variable's value contains a semicolon it should be strong quoted: 40 # T='$LIGHTRED', 41 # Otherwise, the semicolon will be interpreted as a command separator. 42 43 44 # Variables PCT and PS1 can be merged into a new PS1 variable: 45 46 PS1="\`if [[ \$EUID -eq 0 ]]; then PCT='$LIGHTRED'; 47 else PCT='$LIGHTBLUE'; fi; 48 echo '\n$GREEN[\w] \n$DARKGRAY('\$PCT'\t$DARKGRAY)-\ 49 ('\$PCT'\u$DARKGRAY)-('\$PCT'\!$DARKGRAY)$YELLOW-> $NC'\`" 50 51 # The trick is to use strong quoting for parts of old PS1 variable.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="histcommands.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="dosbatch.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >History Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Converting DOS Batch Files to Shell Scripts</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/scrstyle.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Scripting With Style</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Gotchas" HREF="gotchas.html"><LINK REL="NEXT" TITLE="Miscellany" HREF="miscellany.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="gotchas.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="miscellany.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="SCRSTYLE" ></A >Chapter 35. Scripting With Style</H1 ><P >Get into the habit of writing shell scripts in a structured and systematic manner. Even on-the-fly and <SPAN CLASS="QUOTE" >"written on the back of an envelope"</SPAN > scripts will benefit if you take a few minutes to plan and organize your thoughts before sitting down and coding.</P ><P >Herewith are a few stylistic guidelines. This is not (necessarily) intended as an <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Official Shell Scripting Stylesheet</I ></SPAN >.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="UNOFFICIALST" ></A >35.1. Unofficial Shell Scripting Stylesheet</H1 ><UL ><LI ><P >Comment your code. This makes it easier for others to understand (and appreciate), and easier for you to maintain. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 PASS="$PASS${MATRIX:$(($RANDOM%${#MATRIX})):1}" 2 # It made perfect sense when you wrote it last year, 3 #+ but now it's a complete mystery. 4 # (From Antek Sawicki's "pw.sh" script.)</PRE ></TD ></TR ></TABLE > </P ><P >Add descriptive headers to your scripts and functions. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 #************************************************# 4 # xyz.sh # 5 # written by Bozo Bozeman # 6 # July 05, 2001 # 7 # # 8 # Clean up project files. # 9 #************************************************# 10 11 E_BADDIR=85 # No such directory. 12 projectdir=/home/bozo/projects # Directory to clean up. 13 14 # --------------------------------------------------------- # 15 # cleanup_pfiles () # 16 # Removes all files in designated directory. # 17 # Parameter: $target_directory # 18 # Returns: 0 on success, $E_BADDIR if something went wrong. # 19 # --------------------------------------------------------- # 20 cleanup_pfiles () 21 { 22 if [ ! -d "$1" ] # Test if target directory exists. 23 then 24 echo "$1 is not a directory." 25 return $E_BADDIR 26 fi 27 28 rm -f "$1"/* 29 return 0 # Success. 30 } 31 32 cleanup_pfiles $projectdir 33 34 exit $?</PRE ></TD ></TR ></TABLE ></P ></LI ><LI ><P >Avoid using <SPAN CLASS="QUOTE" >"magic numbers,"</SPAN > <A NAME="AEN20041" HREF="#FTN.AEN20041" >[1]</A > that is, <SPAN CLASS="QUOTE" >"hard-wired"</SPAN > literal constants. Use meaningful variable names instead. This makes the script easier to understand and permits making changes and updates without breaking the application. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ -f /var/log/messages ] 2 then 3 ... 4 fi 5 # A year later, you decide to change the script to check /var/log/syslog. 6 # It is now necessary to manually change the script, instance by instance, 7 #+ and hope nothing breaks. 8 9 # A better way: 10 LOGFILE=/var/log/messages # Only line that needs to be changed. 11 if [ -f "$LOGFILE" ] 12 then 13 ... 14 fi</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P >Choose descriptive names for variables and functions. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 fl=`ls -al $dirname` # Cryptic. 2 file_listing=`ls -al $dirname` # Better. 3 4 5 MAXVAL=10 # All caps used for a script constant. 6 while [ "$index" -le "$MAXVAL" ] 7 ... 8 9 10 E_NOTFOUND=95 # Uppercase for an errorcode, 11 #+ and name prefixed with E_. 12 if [ ! -e "$filename" ] 13 then 14 echo "File $filename not found." 15 exit $E_NOTFOUND 16 fi 17 18 19 MAIL_DIRECTORY=/var/spool/mail/bozo # Uppercase for an environmental 20 export MAIL_DIRECTORY #+ variable. 21 22 23 GetAnswer () # Mixed case works well for a 24 { #+ function name, especially 25 prompt=$1 #+ when it improves legibility. 26 echo -n $prompt 27 read answer 28 return $answer 29 } 30 31 GetAnswer "What is your favorite number? " 32 favorite_number=$? 33 echo $favorite_number 34 35 36 _uservariable=23 # Permissible, but not recommended. 37 # It's better for user-defined variables not to start with an underscore. 38 # Leave that for system variables.</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P >Use <A HREF="exit-status.html#EXITCOMMANDREF" >exit codes</A > in a systematic and meaningful way. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 E_WRONG_ARGS=95 2 ... 3 ... 4 exit $E_WRONG_ARGS</PRE ></TD ></TR ></TABLE > See also <A HREF="exitcodes.html" >Appendix E</A >.</P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Ender</I ></SPAN > suggests using the <A HREF="exitcodes.html#SYSEXITSREF" >exit codes in <TT CLASS="FILENAME" >/usr/include/sysexits.h</TT ></A > in shell scripts, though these are primarily intended for C and C++ programming.</P ></LI ><LI ><P >Use standardized parameter flags for script invocation. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Ender</I ></SPAN > proposes the following set of flags.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 -a All: Return all information (including hidden file info). 2 -b Brief: Short version, usually for other scripts. 3 -c Copy, concatenate, etc. 4 -d Daily: Use information from the whole day, and not merely 5 information for a specific instance/user. 6 -e Extended/Elaborate: (often does not include hidden file info). 7 -h Help: Verbose usage w/descs, aux info, discussion, help. 8 See also -V. 9 -l Log output of script. 10 -m Manual: Launch man-page for base command. 11 -n Numbers: Numerical data only. 12 -r Recursive: All files in a directory (and/or all sub-dirs). 13 -s Setup & File Maintenance: Config files for this script. 14 -u Usage: List of invocation flags for the script. 15 -v Verbose: Human readable output, more or less formatted. 16 -V Version / License / Copy(right|left) / Contribs (email too).</PRE ></TD ></TR ></TABLE > </P ><P >See also <A HREF="command-line-options.html#STANDARD-OPTIONS" >Section G.1</A >.</P ></LI ><LI ><P >Break complex scripts into simpler modules. Use functions where appropriate. See <A HREF="bash2.html#CARDS" >Example 37-4</A >.</P ></LI ><LI ><P >Don't use a complex construct where a simpler one will do. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 COMMAND 2 if [ $? -eq 0 ] 3 ... 4 # Redundant and non-intuitive. 5 6 if COMMAND 7 ... 8 # More concise (if perhaps not quite as legible).</PRE ></TD ></TR ></TABLE > </P ></LI ></UL ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >... reading the UNIX source code to the Bourne shell (/bin/sh). I was shocked at how much simple algorithms could be made cryptic, and therefore useless, by a poor choice of code style. I asked myself, <SPAN CLASS="QUOTE" >"Could someone be proud of this code?"</SPAN ></I ></P ><P ><I >--Landon Noll</I ></P ></I ></TD ></TR ></TABLE ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN20041" HREF="scrstyle.html#AEN20041" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >In this context, <SPAN CLASS="QUOTE" >"magic numbers"</SPAN > have an entirely different meaning than the <A HREF="sha-bang.html#MAGNUMREF" >magic numbers</A > used to designate file types.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="gotchas.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Gotchas</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Miscellany</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/securityissues.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Security Issues</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Miscellany" HREF="miscellany.html"><LINK REL="PREVIOUS" TITLE="Assorted Tips" HREF="assortedtips.html"><LINK REL="NEXT" TITLE="Portability Issues" HREF="portabilityissues.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="assortedtips.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 36. Miscellany</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="portabilityissues.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="SECURITYISSUES" ></A >36.8. Security Issues</H1 ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="INFECTEDSCRIPTS" ></A >36.8.1. Infected Shell Scripts</H2 ><P ><A NAME="INFECTEDSCRIPTS1" ></A ></P ><P >A brief warning about script security is indicated. A shell script may contain a <I CLASS="FIRSTTERM" >worm</I >, <I CLASS="FIRSTTERM" >trojan</I >, or even a <I CLASS="FIRSTTERM" >virus</I >. For that reason, never run as <I CLASS="FIRSTTERM" >root</I > a script (or permit it to be inserted into the system startup scripts in <TT CLASS="FILENAME" >/etc/rc.d</TT >) unless you have obtained said script from a trusted source or you have carefully analyzed it to make certain it does nothing harmful.</P ><P >Various researchers at Bell Labs and other sites, including M. Douglas McIlroy, Tom Duff, and Fred Cohen have investigated the implications of shell script viruses. They conclude that it is all too easy for even a novice, a <SPAN CLASS="QUOTE" >"script kiddie,"</SPAN > to write one. <A NAME="AEN20748" HREF="#FTN.AEN20748" >[1]</A > </P ><P >Here is yet another reason to learn scripting. Being able to look at and understand scripts may protect your system from being compromised by a rogue script.</P ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="HIDINGSOURCE" ></A >36.8.2. Hiding Shell Script Source</H2 ><P >For security purposes, it may be necessary to render a script unreadable. If only there were a utility to create a stripped binary executable from a script. Francisco Rosales' <A HREF="http://www.datsi.fi.upm.es/~frosal/sources/" TARGET="_top" >shc -- generic shell script compiler</A > does exactly that.</P ><P >Unfortunately, according to <A HREF="http://www.linuxjournal.com/article/8256" TARGET="_top" >an article</A > in the October, 2005 <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Linux Journal</I ></SPAN >, the binary can, in at least some cases, be decrypted to recover the original script source. Still, this could be a useful method of keeping scripts secure from all but the most skilled hackers.</P ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="SECURITYTIPS" ></A >36.8.3. Writing Secure Shell Scripts</H2 ><P ><A NAME="SECURITYTIPS1" ></A ></P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Dan Stromberg</I ></SPAN > suggests the following guidelines for writing (relatively) secure shell scripts.</P ><P > <UL ><LI ><P >Don't put secret data in <A HREF="othertypesv.html#ENVREF" >environment variables</A >.</P ></LI ><LI ><P >Don't pass secret data in an external command's arguments (pass them in via a <A HREF="special-chars.html#PIPEREF" >pipe</A > or <A HREF="io-redirection.html#IOREDIRREF" >redirection</A > instead).</P ></LI ><LI ><P >Set your <A HREF="variables2.html#PATHREF" >$PATH</A > carefully. Don't just trust whatever path you inherit from the caller if your script is running as <I CLASS="FIRSTTERM" >root</I >. In fact, whenever you use an environment variable inherited from the caller, think about what could happen if the caller put something misleading in the variable, e.g., if the caller set <A HREF="variables2.html#HOMEDIRREF" >$HOME</A > to <TT CLASS="FILENAME" >/etc</TT >.</P ></LI ></UL > </P ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN20748" HREF="securityissues.html#AEN20748" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >See Marius van Oers' article, <A HREF="http://www.virusbtn.com/magazine/archives/200204/malshell.xml" TARGET="_top" >Unix Shell Scripting Malware</A >, and also the <A HREF="biblio.html#DENNINGREF" ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Denning</I ></SPAN > reference</A > in the <I CLASS="FIRSTTERM" >bibliography</I >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="assortedtips.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="portabilityissues.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Assorted Tips</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Portability Issues</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/sedawk.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >A Sed and Awk Micro-Primer</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Reference Cards" HREF="refcards.html"><LINK REL="NEXT" TITLE="Awk" HREF="awk.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="refcards.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="awk.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="SEDAWK" ></A >Appendix C. A Sed and Awk Micro-Primer</H1 ><P ><A NAME="SEDREF" ></A ></P ><P >This is a very brief introduction to the <B CLASS="COMMAND" >sed</B > and <B CLASS="COMMAND" >awk</B > text processing utilities. We will deal with only a few basic commands here, but that will suffice for understanding simple sed and awk constructs within shell scripts.</P ><P ><B CLASS="COMMAND" >sed</B >: a non-interactive text file editor</P ><P ><B CLASS="COMMAND" >awk</B >: a field-oriented pattern processing language with a <B CLASS="COMMAND" >C</B >-style syntax</P ><P >For all their differences, the two utilities share a similar invocation syntax, use <A HREF="regexp.html#REGEXREF" >regular expressions </A >, read input by default from <TT CLASS="FILENAME" >stdin</TT >, and output to <TT CLASS="FILENAME" >stdout</TT >. These are well-behaved UNIX tools, and they work together well. The output from one can be piped to the other, and their combined capabilities give shell scripts some of the power of <A HREF="wrapper.html#PERLREF" >Perl</A >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >One important difference between the utilities is that while shell scripts can easily pass arguments to sed, it is more cumbersome for awk (see <A HREF="wrapper.html#COLTOTALER" >Example 36-5</A > and <A HREF="ivr.html#COLTOTALER2" >Example 28-2</A >). </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="AEN23170" ></A >C.1. Sed</H1 ><P ><I CLASS="FIRSTTERM" >Sed</I > is a non-interactive <A NAME="AEN23174" HREF="#FTN.AEN23174" >[1]</A > <B CLASS="COMMAND" >s</B >tream <B CLASS="COMMAND" >ed</B >itor. It receives text input, whether from <TT CLASS="FILENAME" >stdin</TT > or from a file, performs certain operations on specified lines of the input, one line at a time, then outputs the result to <TT CLASS="FILENAME" >stdout</TT > or to a file. Within a shell script, <I CLASS="FIRSTTERM" >sed</I > is usually one of several tool components in a pipe.</P ><P ><I CLASS="FIRSTTERM" >Sed</I > determines which lines of its input that it will operate on from the <I CLASS="FIRSTTERM" >address range</I > passed to it. <A NAME="AEN23185" HREF="#FTN.AEN23185" >[2]</A > Specify this address range either by line number or by a pattern to match. For example, <TT CLASS="REPLACEABLE" ><I >3d</I ></TT > signals <I CLASS="FIRSTTERM" >sed</I > to delete line 3 of the input, and <TT CLASS="REPLACEABLE" ><I >/Windows/d</I ></TT > tells sed that you want every line of the input containing a match to <SPAN CLASS="QUOTE" >"Windows"</SPAN > deleted.</P ><P >Of all the operations in the <I CLASS="FIRSTTERM" >sed</I > toolkit, we will focus primarily on the three most commonly used ones. These are <B CLASS="COMMAND" >p</B >rinting (to <TT CLASS="FILENAME" >stdout</TT >), <B CLASS="COMMAND" >d</B >eletion, and <B CLASS="COMMAND" >s</B >ubstitution.</P ><P ><A NAME="SEDBASICTABLE" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN23200" ></A ><P ><B >Table C-1. Basic sed operators</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Operator</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Name</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Effect</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >[address-range]/p</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >print</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Print [specified address range]</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >[address-range]/d</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >delete</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Delete [specified address range]</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >s/pattern1/pattern2/</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >substitute</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Substitute pattern2 for first instance of pattern1 in a line</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >[address-range]/s/pattern1/pattern2/</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >substitute</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Substitute pattern2 for first instance of pattern1 in a line, over <TT CLASS="REPLACEABLE" ><I >address-range</I ></TT ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >[address-range]/y/pattern1/pattern2/</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >transform</TD ><TD ALIGN="LEFT" VALIGN="TOP" >replace any character in pattern1 with the corresponding character in pattern2, over <TT CLASS="REPLACEABLE" ><I >address-range</I ></TT > (equivalent of <B CLASS="COMMAND" >tr</B >)</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >[address] i pattern Filename</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >insert</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Insert pattern at address indicated in file Filename. Usually used with <TT CLASS="OPTION" >-i</TT > <TT CLASS="REPLACEABLE" ><I >in-place</I ></TT > option.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >g</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >global</TD ><TD ALIGN="LEFT" VALIGN="TOP" >Operate on <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >every</I ></SPAN > pattern match within each matched line of input</TD ></TR ></TBODY ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Unless the <TT CLASS="OPTION" >g</TT > (<I CLASS="FIRSTTERM" >global</I >) operator is appended to a <I CLASS="FIRSTTERM" >substitute</I > command, the substitution operates only on the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >first</I ></SPAN > instance of a pattern match within each line.</P ></TD ></TR ></TABLE ></DIV ><P >From the command-line and in a shell script, a sed operation may require quoting and certain options.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 sed -e '/^$/d' $filename 2 # The -e option causes the next string to be interpreted as an editing instruction. 3 # (If passing only a single instruction to sed, the "-e" is optional.) 4 # The "strong" quotes ('') protect the RE characters in the instruction 5 #+ from reinterpretation as special characters by the body of the script. 6 # (This reserves RE expansion of the instruction for sed.) 7 # 8 # Operates on the text contained in file $filename.</PRE ></TD ></TR ></TABLE ></P ><P >In certain cases, a <I CLASS="FIRSTTERM" >sed</I > editing command will not work with single quotes.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 filename=file1.txt 2 pattern=BEGIN 3 4 sed "/^$pattern/d" "$filename" # Works as specified. 5 # sed '/^$pattern/d' "$filename" has unexpected results. 6 # In this instance, with strong quoting (' ... '), 7 #+ "$pattern" will not expand to "BEGIN".</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><I CLASS="FIRSTTERM" >Sed</I > uses the <TT CLASS="OPTION" >-e</TT > option to specify that the following string is an instruction or set of instructions. If there is only a single instruction contained in the string, then this may be omitted.</P ></TD ></TR ></TABLE ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 sed -n '/xzy/p' $filename 2 # The -n option tells sed to print only those lines matching the pattern. 3 # Otherwise all input lines would print. 4 # The -e option not necessary here since there is only a single editing instruction.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="SEDOPTABLE" ></A ></P ><DIV CLASS="TABLE" ><HR><A NAME="AEN23271" ></A ><P ><B >Table C-2. Examples of sed operators</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><THEAD ><TR ><TH ALIGN="LEFT" VALIGN="TOP" >Notation</TH ><TH ALIGN="LEFT" VALIGN="TOP" >Effect</TH ></TR ></THEAD ><TBODY ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >8d</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Delete 8th line of input.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >/^$/d</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Delete all blank lines.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >1,/^$/d</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Delete from beginning of input up to, and including first blank line.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >/Jones/p</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Print only lines containing <SPAN CLASS="QUOTE" >"Jones"</SPAN > (with <SPAN CLASS="TOKEN" >-n</SPAN > option).</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >s/Windows/Linux/</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Substitute <SPAN CLASS="QUOTE" >"Linux"</SPAN > for first instance of <SPAN CLASS="QUOTE" >"Windows"</SPAN > found in each input line.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >s/BSOD/stability/g</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Substitute <SPAN CLASS="QUOTE" >"stability"</SPAN > for every instance of <SPAN CLASS="QUOTE" >"BSOD"</SPAN > found in each input line.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >s/ *$//</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Delete all spaces at the end of every line.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >s/00*/0/g</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Compress all consecutive sequences of zeroes into a single zero.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >echo "Working on it." | sed -e '1i How far are you along?'</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Prints "How far are you along?" as first line, "Working on it" as second.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >5i 'Linux is great.' file.txt</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Inserts 'Linux is great.' at line 5 of the file file.txt.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >/GUI/d</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Delete all lines containing <SPAN CLASS="QUOTE" >"GUI"</SPAN >.</TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" ><TT CLASS="OPTION" >s/GUI//g</TT ></TD ><TD ALIGN="LEFT" VALIGN="TOP" >Delete all instances of <SPAN CLASS="QUOTE" >"GUI"</SPAN >, leaving the remainder of each line intact.</TD ></TR ></TBODY ></TABLE ><HR></DIV ><P >Substituting a zero-length string for another is equivalent to deleting that string within a line of input. This leaves the remainder of the line intact. Applying <TT CLASS="USERINPUT" ><B >s/GUI//</B ></TT > to the line <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="USERINPUT" ><B >The most important parts of any application are its GUI and sound effects</B ></TT ></PRE ></TD ></TR ></TABLE > results in <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >The most important parts of any application are its and sound effects</TT ></PRE ></TD ></TR ></TABLE ></P ><P >A backslash forces the <B CLASS="COMMAND" >sed</B > replacement command to continue on to the next line. This has the effect of using the <I CLASS="FIRSTTERM" >newline</I > at the end of the first line as the <I CLASS="FIRSTTERM" >replacement string</I >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 s/^ */\ 2 /g</PRE ></TD ></TR ></TABLE > This substitution replaces line-beginning spaces with a newline. The net result is to replace paragraph indents with a blank line between paragraphs.</P ><P >An address range followed by one or more operations may require open and closed curly brackets, with appropriate newlines. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 /[0-9A-Za-z]/,/^$/{ 2 /^$/d 3 }</PRE ></TD ></TR ></TABLE > This deletes only the first of each set of consecutive blank lines. That might be useful for single-spacing a text file, but retaining the blank line(s) between paragraphs.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The usual delimiter that <I CLASS="FIRSTTERM" >sed</I > uses is <SPAN CLASS="TOKEN" >/</SPAN >. However, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >sed</I ></SPAN > allows other delimiters, such as <SPAN CLASS="TOKEN" >%</SPAN >. This is useful when <SPAN CLASS="TOKEN" >/</SPAN > is part of a replacement string, as in a file pathname. See <A HREF="loops.html#FINDSTRING" >Example 11-10</A > and <A HREF="filearchiv.html#STRIPC" >Example 16-32</A >.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="DOUBLESPACE" ></A ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A quick way to double-space a text file is <TT CLASS="USERINPUT" ><B >sed G filename</B ></TT >.</P ></TD ></TR ></TABLE ></DIV ><P >For illustrative examples of sed within shell scripts, see: <OL TYPE="1" ><LI ><P ><A HREF="wrapper.html#EX3" >Example 36-1</A ></P ></LI ><LI ><P ><A HREF="wrapper.html#EX4" >Example 36-2</A ></P ></LI ><LI ><P ><A HREF="moreadv.html#EX57" >Example 16-3</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#RN" >Example A-2</A ></P ></LI ><LI ><P ><A HREF="textproc.html#GRP" >Example 16-17</A ></P ></LI ><LI ><P ><A HREF="textproc.html#COL" >Example 16-27</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#BEHEAD" >Example A-12</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#TREE" >Example A-16</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#TREE2" >Example A-17</A ></P ></LI ><LI ><P ><A HREF="filearchiv.html#STRIPC" >Example 16-32</A ></P ></LI ><LI ><P ><A HREF="loops.html#FINDSTRING" >Example 11-10</A ></P ></LI ><LI ><P ><A HREF="mathc.html#BASE" >Example 16-48</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#MAILFORMAT" >Example A-1</A ></P ></LI ><LI ><P ><A HREF="textproc.html#RND" >Example 16-14</A ></P ></LI ><LI ><P ><A HREF="textproc.html#WF" >Example 16-12</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#LIFESLOW" >Example A-10</A ></P ></LI ><LI ><P ><A HREF="here-docs.html#SELFDOCUMENT" >Example 19-12</A ></P ></LI ><LI ><P ><A HREF="textproc.html#DICTLOOKUP" >Example 16-19</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#WHX" >Example A-29</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#BASHPODDER" >Example A-31</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#TOHTML" >Example A-24</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#STOPWATCH" >Example A-43</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#SEDAPPEND" >Example A-55</A ></P ></LI ></OL > </P ><P >For a more extensive treatment of <I CLASS="FIRSTTERM" >sed</I >, refer to the <A HREF="biblio.html#DGSEDREF" >pertinent references</A > in the <A HREF="biblio.html" ><I >Bibliography</I ></A >.</P ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN23174" HREF="sedawk.html#AEN23174" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><I CLASS="FIRSTTERM" >Sed</I > executes without user intervention.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN23185" HREF="sedawk.html#AEN23185" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >If no address range is specified, the default is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >all</I ></SPAN > lines.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="refcards.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="awk.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Reference Cards</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Awk</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/sha-bang.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Starting Off With a Sha-Bang</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Introduction" HREF="part1.html"><LINK REL="PREVIOUS" TITLE="Shell Programming!" HREF="why-shell.html"><LINK REL="NEXT" TITLE="Preliminary Exercises" HREF="prelimexer.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="why-shell.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="prelimexer.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="SHA-BANG" ></A >Chapter 2. Starting Off With a Sha-Bang</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Shell programming is a 1950s juke box . . .</I ></P ><P ><I >--Larry Wall</I ></P ></I ></TD ></TR ></TABLE ><P >In the simplest case, a script is nothing more than a list of system commands stored in a file. At the very least, this saves the effort of retyping that particular sequence of commands each time it is invoked.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX1" ></A ><P ><B >Example 2-1. <I CLASS="FIRSTTERM" >cleanup</I >: A script to clean up log files in /var/log </B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Cleanup 2 # Run as root, of course. 3 4 cd /var/log 5 cat /dev/null > messages 6 cat /dev/null > wtmp 7 echo "Log files cleaned up."</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >There is nothing unusual here, only a set of commands that could just as easily have been invoked one by one from the command-line on the console or in a terminal window. The advantages of placing the commands in a script go far beyond not having to retype them time and again. The script becomes a <I CLASS="FIRSTTERM" >program</I > -- a <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >tool</I ></SPAN > -- and it can easily be modified or customized for a particular application.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX1A" ></A ><P ><B >Example 2-2. <I CLASS="FIRSTTERM" >cleanup</I >: An improved clean-up script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Proper header for a Bash script. 3 4 # Cleanup, version 2 5 6 # Run as root, of course. 7 # Insert code here to print error message and exit if not root. 8 9 LOG_DIR=/var/log 10 # Variables are better than hard-coded values. 11 cd $LOG_DIR 12 13 cat /dev/null > messages 14 cat /dev/null > wtmp 15 16 17 echo "Logs cleaned up." 18 19 exit # The right and proper method of "exiting" from a script. 20 # A bare "exit" (no parameter) returns the exit status 21 #+ of the preceding command. </PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Now <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >that's</I ></SPAN > beginning to look like a real script. But we can go even farther . . .</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX2" ></A ><P ><B >Example 2-3. <I CLASS="FIRSTTERM" >cleanup</I >: An enhanced and generalized version of above scripts.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Cleanup, version 3 3 4 # Warning: 5 # ------- 6 # This script uses quite a number of features that will be explained 7 #+ later on. 8 # By the time you've finished the first half of the book, 9 #+ there should be nothing mysterious about it. 10 11 12 13 LOG_DIR=/var/log 14 ROOT_UID=0 # Only users with $UID 0 have root privileges. 15 LINES=50 # Default number of lines saved. 16 E_XCD=86 # Can't change directory? 17 E_NOTROOT=87 # Non-root exit error. 18 19 20 # Run as root, of course. 21 if [ "$UID" -ne "$ROOT_UID" ] 22 then 23 echo "Must be root to run this script." 24 exit $E_NOTROOT 25 fi 26 27 if [ -n "$1" ] 28 # Test whether command-line argument is present (non-empty). 29 then 30 lines=$1 31 else 32 lines=$LINES # Default, if not specified on command-line. 33 fi 34 35 36 # Stephane Chazelas suggests the following, 37 #+ as a better way of checking command-line arguments, 38 #+ but this is still a bit advanced for this stage of the tutorial. 39 # 40 # E_WRONGARGS=85 # Non-numerical argument (bad argument format). 41 # 42 # case "$1" in 43 # "" ) lines=50;; 44 # *[!0-9]*) echo "Usage: `basename $0` lines-to-cleanup"; 45 # exit $E_WRONGARGS;; 46 # * ) lines=$1;; 47 # esac 48 # 49 #* Skip ahead to "Loops" chapter to decipher all this. 50 51 52 cd $LOG_DIR 53 54 if [ `pwd` != "$LOG_DIR" ] # or if [ "$PWD" != "$LOG_DIR" ] 55 # Not in /var/log? 56 then 57 echo "Can't change to $LOG_DIR." 58 exit $E_XCD 59 fi # Doublecheck if in right directory before messing with log file. 60 61 # Far more efficient is: 62 # 63 # cd /var/log || { 64 # echo "Cannot change to necessary directory." >&2 65 # exit $E_XCD; 66 # } 67 68 69 70 71 tail -n $lines messages > mesg.temp # Save last section of message log file. 72 mv mesg.temp messages # Rename it as system log file. 73 74 75 # cat /dev/null > messages 76 #* No longer needed, as the above method is safer. 77 78 cat /dev/null > wtmp # ': > wtmp' and '> wtmp' have the same effect. 79 echo "Log files cleaned up." 80 # Note that there are other log files in /var/log not affected 81 #+ by this script. 82 83 exit 0 84 # A zero return value from the script upon exit indicates success 85 #+ to the shell.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Since you may not wish to wipe out the entire system log, this version of the script keeps the last section of the message log intact. You will constantly discover ways of fine-tuning previously written scripts for increased effectiveness.</P ><P ><A NAME="SHABANGREF" ></A >* * *</P ><P ><A NAME="MAGNUMREF" ></A >The <I CLASS="FIRSTTERM" > sha-bang</I > (<SPAN CLASS="TOKEN" > #!</SPAN >) <A NAME="AEN205" HREF="#FTN.AEN205" >[1]</A > at the head of a script tells your system that this file is a set of commands to be fed to the command interpreter indicated. The <SPAN CLASS="TOKEN" >#!</SPAN > is actually a two-byte <A NAME="AEN214" HREF="#FTN.AEN214" >[2]</A > <I CLASS="FIRSTTERM" >magic number</I >, a special marker that designates a file type, or in this case an executable shell script (type <TT CLASS="USERINPUT" ><B >man magic</B ></TT > for more details on this fascinating topic). Immediately following the <I CLASS="FIRSTTERM" >sha-bang</I > is a <I CLASS="FIRSTTERM" >path name</I >. This is the path to the program that interprets the commands in the script, whether it be a shell, a programming language, or a utility. This command interpreter then executes the commands in the script, starting at the top (the line following the <I CLASS="FIRSTTERM" >sha-bang</I > line), and ignoring comments. <A NAME="AEN226" HREF="#FTN.AEN226" >[3]</A > </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/sh 2 #!/bin/bash 3 #!/usr/bin/perl 4 #!/usr/bin/tcl 5 #!/bin/sed -f 6 #!/bin/awk -f</PRE ></TD ></TR ></TABLE ></P ><P >Each of the above script header lines calls a different command interpreter, be it <TT CLASS="FILENAME" >/bin/sh</TT >, the default shell (<B CLASS="COMMAND" >bash</B > in a Linux system) or otherwise. <A NAME="AEN242" HREF="#FTN.AEN242" >[4]</A > Using <TT CLASS="USERINPUT" ><B >#!/bin/sh</B ></TT >, the default Bourne shell in most commercial variants of UNIX, makes the script <A HREF="portabilityissues.html" >portable</A > to non-Linux machines, though you <A HREF="gotchas.html#BINSH" >sacrifice Bash-specific features</A >. The script will, however, conform to the <SPAN CLASS="ACRONYM" >POSIX</SPAN > <A NAME="AEN256" HREF="#FTN.AEN256" >[5]</A > <B CLASS="COMMAND" >sh</B > standard.</P ><P >Note that the path given at the <SPAN CLASS="QUOTE" >"sha-bang"</SPAN > must be correct, otherwise an error message -- usually <SPAN CLASS="QUOTE" >"Command not found."</SPAN > -- will be the only result of running the script. <A NAME="AEN269" HREF="#FTN.AEN269" >[6]</A > </P ><P ><SPAN CLASS="TOKEN" >#!</SPAN > can be omitted if the script consists only of a set of generic system commands, using no internal shell directives. The second example, above, requires the initial <SPAN CLASS="TOKEN" >#!</SPAN >, since the variable assignment line, <TT CLASS="USERINPUT" ><B >lines=50</B ></TT >, uses a shell-specific construct. <A NAME="AEN279" HREF="#FTN.AEN279" >[7]</A > Note again that <TT CLASS="USERINPUT" ><B >#!/bin/sh</B ></TT > invokes the default shell interpreter, which defaults to <TT CLASS="FILENAME" >/bin/bash</TT > on a Linux machine.</P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This tutorial encourages a modular approach to constructing a script. Make note of and collect <SPAN CLASS="QUOTE" >"boilerplate"</SPAN > code snippets that might be useful in future scripts. Eventually you will build quite an extensive library of nifty routines. As an example, the following script prolog tests whether the script has been invoked with the correct number of parameters.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 E_WRONG_ARGS=85 2 script_parameters="-a -h -m -z" 3 # -a = all, -h = help, etc. 4 5 if [ $# -ne $Number_of_expected_args ] 6 then 7 echo "Usage: `basename $0` $script_parameters" 8 # `basename $0` is the script's filename. 9 exit $E_WRONG_ARGS 10 fi</PRE ></TD ></TR ></TABLE > </P ><P >Many times, you will write a script that carries out one particular task. The first script in this chapter is an example. Later, it might occur to you to generalize the script to do other, similar tasks. Replacing the literal (<SPAN CLASS="QUOTE" >"hard-wired"</SPAN >) constants by variables is a step in that direction, as is replacing repetitive code blocks by <A HREF="functions.html#FUNCTIONREF" >functions</A >.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="INVOKING" ></A >2.1. Invoking the script</H1 ><P >Having written the script, you can invoke it by <TT CLASS="USERINPUT" ><B >sh scriptname</B ></TT >, <A NAME="AEN300" HREF="#FTN.AEN300" >[8]</A > or alternatively <TT CLASS="USERINPUT" ><B >bash scriptname</B ></TT >. (Not recommended is using <TT CLASS="USERINPUT" ><B >sh <scriptname</B ></TT >, since this effectively disables reading from <A HREF="ioredirintro.html#STDINOUTDEF" ><TT CLASS="FILENAME" >stdin</TT ></A > within the script.) Much more convenient is to make the script itself directly executable with a <A HREF="external.html#CHMODREF" >chmod</A >. <DIV CLASS="VARIABLELIST" ><DL ><DT >Either:</DT ><DD ><P ><TT CLASS="USERINPUT" ><B >chmod 555 scriptname</B ></TT > (gives everyone read/execute permission) <A NAME="AEN315" HREF="#FTN.AEN315" >[9]</A > </P ></DD ><DT >or</DT ><DD ><P ><TT CLASS="USERINPUT" ><B >chmod +rx scriptname</B ></TT > (gives everyone read/execute permission)</P ><P ><TT CLASS="USERINPUT" ><B >chmod u+rx scriptname</B ></TT > (gives only the script owner read/execute permission)</P ></DD ></DL ></DIV > </P ><P >Having made the script executable, you may now test it by <TT CLASS="USERINPUT" ><B >./scriptname</B ></TT >. <A NAME="AEN327" HREF="#FTN.AEN327" >[10]</A > If it begins with a <SPAN CLASS="QUOTE" >"sha-bang"</SPAN > line, invoking the script calls the correct command interpreter to run it.</P ><P >As a final step, after testing and debugging, you would likely want to move it to <TT CLASS="FILENAME" >/usr/local/bin</TT > (as <I CLASS="FIRSTTERM" >root</I >, of course), to make the script available to yourself and all other users as a systemwide executable. The script could then be invoked by simply typing <B CLASS="COMMAND" >scriptname</B > <B CLASS="KEYCAP" >[ENTER]</B > from the command-line.</P ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN205" HREF="sha-bang.html#AEN205" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >More commonly seen in the literature as <I CLASS="FIRSTTERM" >she-bang</I > or <I CLASS="FIRSTTERM" >sh-bang</I >. This derives from the concatenation of the tokens <I CLASS="FIRSTTERM" >sharp</I > (<SPAN CLASS="TOKEN" >#</SPAN >) and <I CLASS="FIRSTTERM" >bang</I > (<SPAN CLASS="TOKEN" >!</SPAN >).</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN214" HREF="sha-bang.html#AEN214" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Some flavors of UNIX (those based on 4.2 BSD) allegedly take a four-byte magic number, requiring a blank after the <SPAN CLASS="TOKEN" >!</SPAN > -- <TT CLASS="USERINPUT" ><B >#! /bin/sh</B ></TT >. <A HREF="http://www.in-ulm.de/~mascheck/various/shebang/#details" TARGET="_top" > According to Sven Mascheck</A > this is probably a myth.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN226" HREF="sha-bang.html#AEN226" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The <SPAN CLASS="TOKEN" >#!</SPAN > line in a shell script will be the first thing the command interpreter (<B CLASS="COMMAND" >sh</B > or <B CLASS="COMMAND" >bash</B >) sees. Since this line begins with a <SPAN CLASS="TOKEN" >#</SPAN >, it will be correctly interpreted as a comment when the command interpreter finally executes the script. The line has already served its purpose - calling the command interpreter.</P ><P >If, in fact, the script includes an <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >extra</I ></SPAN > <SPAN CLASS="TOKEN" >#!</SPAN > line, then <B CLASS="COMMAND" >bash</B > will interpret it as a comment. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo "Part 1 of script." 4 a=1 5 6 #!/bin/bash 7 # This does *not* launch a new script. 8 9 echo "Part 2 of script." 10 echo $a # Value of $a stays at 1.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN242" HREF="sha-bang.html#AEN242" >[4]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This allows some cute tricks.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/rm 2 # Self-deleting script. 3 4 # Nothing much seems to happen when you run this... except that the file disappears. 5 6 WHATEVER=85 7 8 echo "This line will never print (betcha!)." 9 10 exit $WHATEVER # Doesn't matter. The script will not exit here. 11 # Try an echo $? after script termination. 12 # You'll get a 0, not a 85.</PRE ></TD ></TR ></TABLE ></P ><P >Also, try starting a <TT CLASS="FILENAME" >README</TT > file with a <TT CLASS="USERINPUT" ><B >#!/bin/more</B ></TT >, and making it executable. The result is a self-listing documentation file. (A <A HREF="here-docs.html#HEREDOCREF" >here document</A > using <A HREF="external.html#CATREF" >cat</A > is possibly a better alternative -- see <A HREF="here-docs.html#EX71" >Example 19-3</A >).</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN256" HREF="sha-bang.html#AEN256" >[5]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="POSIX2REF" ></A ><SPAN CLASS="strong" ><B CLASS="EMPHASIS" >P</B ></SPAN >ortable <SPAN CLASS="strong" ><B CLASS="EMPHASIS" >O</B ></SPAN >perating <SPAN CLASS="strong" ><B CLASS="EMPHASIS" >S</B ></SPAN >ystem <SPAN CLASS="bold" ><B CLASS="EMPHASIS" >I</B ></SPAN >nterface, an attempt to standardize UNI<SPAN CLASS="strong" ><B CLASS="EMPHASIS" >X</B ></SPAN >-like OSes. The POSIX specifications are listed on the <A HREF="http://www.opengroup.org/onlinepubs/007904975/toc.htm" TARGET="_top" >Open Group site</A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN269" HREF="sha-bang.html#AEN269" >[6]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >To avoid this possibility, a script may begin with a <A HREF="system.html#ENVV2REF" >#!/bin/env bash</A > <I CLASS="FIRSTTERM" >sha-bang</I > line. This may be useful on UNIX machines where <I CLASS="FIRSTTERM" >bash</I > is not located in <TT CLASS="FILENAME" >/bin</TT ></P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN279" HREF="sha-bang.html#AEN279" >[7]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >If <I CLASS="FIRSTTERM" >Bash</I > is your default shell, then the <SPAN CLASS="TOKEN" >#!</SPAN > isn't necessary at the beginning of a script. However, if launching a script from a different shell, such as <I CLASS="FIRSTTERM" >tcsh</I >, then you <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >will</I ></SPAN > need the <SPAN CLASS="TOKEN" >#!</SPAN >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN300" HREF="sha-bang.html#AEN300" >[8]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Caution: invoking a <I CLASS="FIRSTTERM" >Bash</I > script by <TT CLASS="USERINPUT" ><B >sh scriptname</B ></TT > turns off Bash-specific extensions, and the script may therefore fail to execute.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN315" HREF="sha-bang.html#AEN315" >[9]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >A script needs <I CLASS="FIRSTTERM" >read</I >, as well as execute permission for it to run, since the shell needs to be able to read it.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN327" HREF="sha-bang.html#AEN327" >[10]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Why not simply invoke the script with <TT CLASS="USERINPUT" ><B >scriptname</B ></TT >? If the directory you are in (<A HREF="variables2.html#PWDREF" >$PWD</A >) is where <TT CLASS="FILENAME" >scriptname</TT > is located, why doesn't this work? This fails because, for security reasons, the current directory (<TT CLASS="FILENAME" >./</TT >) is not by default included in a user's <A HREF="variables2.html#PATHREF" >$PATH</A >. It is therefore necessary to explicitly invoke the script in the current directory with a <TT CLASS="USERINPUT" ><B >./scriptname</B ></TT >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="why-shell.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="prelimexer.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Shell Programming!</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part1.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Preliminary Exercises</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/special-chars.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Special Characters</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Basics" HREF="part2.html"><LINK REL="PREVIOUS" TITLE="Basics" HREF="part2.html"><LINK REL="NEXT" TITLE="Introduction to Variables and Parameters" HREF="variables.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="part2.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="variables.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="SPECIAL-CHARS" ></A >Chapter 3. Special Characters</H1 ><P >What makes a character <I CLASS="FIRSTTERM" >special</I >? If it has a meaning beyond its <I CLASS="FIRSTTERM" >literal meaning</I >, a <A HREF="regexp.html#METAMEANINGREF" >meta-meaning</A >, then we refer to it as a <I CLASS="FIRSTTERM" >special character</I >. Along with commands and <A HREF="internal.html#KEYWORDREF" >keywords</A >, <I CLASS="FIRSTTERM" >special characters</I > are building blocks of Bash scripts.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="SCHARLIST1" ></A >Special Characters Found In Scripts and Elsewhere</B ></P ><DL ><DT ><A NAME="HASHMARKREF" ></A ><SPAN CLASS="TOKEN" >#</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Comments. </B >Lines beginning with a <SPAN CLASS="TOKEN" >#</SPAN > (with the exception of <A HREF="sha-bang.html#MAGNUMREF" > <SPAN CLASS="TOKEN" >#!</SPAN ></A >) are comments and will <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > be executed.</P ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # This line is a comment.</PRE ></TD ></TR ></TABLE ></P ><P >Comments may also occur following the end of a command.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "A comment will follow." # Comment here. 2 # ^ Note whitespace before #</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="WSBCOMM" ></A > Comments may also follow <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A > at the beginning of a line.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # A tab precedes this comment.</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="COMMINPIPE" ></A >Comments may even be embedded within a <A HREF="special-chars.html#PIPEREF" >pipe</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 initial=( `cat "$startfile" | sed -e '/#/d' | tr -d '\n' |\ 2 # Delete lines containing '#' comment character. 3 sed -e 's/\./\. /g' -e 's/_/_ /g'` ) 4 # Excerpted from life.sh script</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A command may not follow a comment on the same line. There is no method of terminating the comment, in order for <SPAN CLASS="QUOTE" >"live code"</SPAN > to begin on the same line. Use a new line for the next command.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Of course, a <A HREF="quoting.html#QUOTINGREF" >quoted</A > or an <A HREF="escapingsection.html#ESCP" >escaped</A > <SPAN CLASS="TOKEN" >#</SPAN > in an <A HREF="internal.html#ECHOREF" >echo</A > statement does <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > begin a comment. Likewise, a <SPAN CLASS="TOKEN" >#</SPAN > appears in <A HREF="parameter-substitution.html#PSUB2" >certain parameter-substitution constructs</A > and in <A HREF="numerical-constants.html#NUMCONSTANTS" > numerical constant expressions</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "The # here does not begin a comment." 2 echo 'The # here does not begin a comment.' 3 echo The \# here does not begin a comment. 4 echo The # here begins a comment. 5 6 echo ${PATH#*:} # Parameter substitution, not a comment. 7 echo $(( 2#101011 )) # Base conversion, not a comment. 8 9 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > The standard <A HREF="quoting.html#QUOTINGREF" >quoting and escape</A > characters (" ' \) escape the #. </P ></TD ></TR ></TABLE ></DIV ><P >Certain <A HREF="parameter-substitution.html#PSOREX1" >pattern matching operations</A > also use the <SPAN CLASS="TOKEN" >#</SPAN >.</P ></DD ><DT ><A NAME="SEMICOLONREF" ></A ><SPAN CLASS="TOKEN" >;</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Command separator [semicolon]. </B >Permits putting two or more commands on the same line.</P ></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo hello; echo there 2 3 4 if [ -x "$filename" ]; then # Note the space after the semicolon. 5 #+ ^^ 6 echo "File $filename exists."; cp $filename $filename.bak 7 else # ^^ 8 echo "File $filename not found."; touch $filename 9 fi; echo "File test complete."</PRE ></TD ></TR ></TABLE ></P ><P >Note that the <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >;</SPAN >"</SPAN > <A HREF="moreadv.html#FINDREF0" >sometimes needs to be <I CLASS="FIRSTTERM" >escaped</I ></A >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >;;</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Terminator in a <A HREF="testbranch.html#CASEESAC1" >case</A > option [double semicolon]. </B ><A NAME="DOUBLESEMICOLON" ></A ></P ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 case "$variable" in 2 abc) echo "\$variable = abc" ;; 3 xyz) echo "\$variable = xyz" ;; 4 esac</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><SPAN CLASS="TOKEN" >;;&</SPAN >, <SPAN CLASS="TOKEN" >;&</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="bashver4.html#NCTERM" >Terminators</A > in a <I CLASS="FIRSTTERM" >case</I > option (<A HREF="bashver4.html#BASH4REF" >version 4+</A > of Bash). </B ></P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >.</SPAN ></DT ><DD ><P ><A NAME="DOTREF" ></A ></P ><DIV CLASS="FORMALPARA" ><P ><B ><SPAN CLASS="QUOTE" >"dot"</SPAN > command [period]. </B >Equivalent to <A HREF="internal.html#SOURCEREF" >source</A > (see <A HREF="internal.html#EX38" >Example 15-22</A >). This is a bash <A HREF="internal.html#BUILTINREF" >builtin</A >.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >.</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><SPAN CLASS="QUOTE" >"dot"</SPAN >, as a component of a filename. </B >When working with filenames, a leading dot is the prefix of a <SPAN CLASS="QUOTE" >"hidden"</SPAN > file, a file that an <A HREF="external.html#LSREF" >ls</A > will not normally show. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >touch .hidden-file</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 10 -rw-r--r-- 1 bozo 4034 Jul 18 22:04 data1.addressbook -rw-r--r-- 1 bozo 4602 May 25 13:58 data1.addressbook.bak -rw-r--r-- 1 bozo 877 Dec 17 2000 employment.addressbook</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -al</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 14 drwxrwxr-x 2 bozo bozo 1024 Aug 29 20:54 ./ drwx------ 52 bozo bozo 3072 Aug 29 20:51 ../ -rw-r--r-- 1 bozo bozo 4034 Jul 18 22:04 data1.addressbook -rw-r--r-- 1 bozo bozo 4602 May 25 13:58 data1.addressbook.bak -rw-r--r-- 1 bozo bozo 877 Dec 17 2000 employment.addressbook -rw-rw-r-- 1 bozo bozo 0 Aug 29 20:54 .hidden-file</TT > </PRE ></TD ></TR ></TABLE > </P ></DIV ><P ><A NAME="DOTDIRECTORY" ></A ></P ><P >When considering directory names, <I CLASS="FIRSTTERM" >a single dot</I > represents the current working directory, and <I CLASS="FIRSTTERM" >two dots</I > denote the parent directory.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >pwd</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/home/bozo/projects</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cd .</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >pwd</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/home/bozo/projects</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cd ..</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >pwd</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/home/bozo/</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The <I CLASS="FIRSTTERM" >dot</I > often appears as the destination (directory) of a file movement command, in this context meaning <I CLASS="FIRSTTERM" >current directory</I >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cp /home/bozo/current_work/junk/* .</B ></TT > </PRE ></TD ></TR ></TABLE > Copy all the <SPAN CLASS="QUOTE" >"junk"</SPAN > files to <A HREF="variables2.html#PWDREF" >$PWD</A >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >.</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><SPAN CLASS="QUOTE" >"dot"</SPAN > character match. </B >When <A HREF="regexp.html#REGEXDOT" >matching characters</A >, as part of a <A HREF="regexp.html#REGEXREF" >regular expression</A >, a <SPAN CLASS="QUOTE" >"dot"</SPAN > <A HREF="regexp.html#REGEXDOT" >matches a single character</A >.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >"</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="variables.html#DBLQUO" >partial quoting</A > [double quote]. </B ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >"STRING"</I ></SPAN > preserves (from interpretation) most of the special characters within <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >STRING</I ></SPAN >. See <A HREF="quoting.html" >Chapter 5</A >.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >'</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="variables.html#SNGLQUO" >full quoting</A > [single quote]. </B ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >'STRING'</I ></SPAN > preserves all special characters within <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >STRING</I ></SPAN >. This is a stronger form of quoting than <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >"STRING"</I ></SPAN >. See <A HREF="quoting.html" >Chapter 5</A >.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >,</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="operations.html#COMMAOP" >comma operator</A >. </B >The <I CLASS="FIRSTTERM" >comma operator</I > <A NAME="AEN612" HREF="#FTN.AEN612" >[1]</A > links together a series of arithmetic operations. All are evaluated, but only the last one is returned. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 let "t2 = ((a = 9, 15 / 3))" 2 # Set "a = 9" and "t2 = 15 / 3"</PRE ></TD ></TR ></TABLE > </P ></DIV ><P ><A NAME="COMMAOP2" ></A >The <I CLASS="FIRSTTERM" >comma</I > operator can also concatenate strings. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 for file in /{,usr/}bin/*calc 2 # ^ Find all executable files ending in "calc" 3 #+ in /bin and /usr/bin directories. 4 do 5 if [ -x "$file" ] 6 then 7 echo $file 8 fi 9 done 10 11 # /bin/ipcalc 12 # /usr/bin/kcalc 13 # /usr/bin/oidcalc 14 # /usr/bin/oocalc 15 16 17 # Thank you, Rory Winston, for pointing this out.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><SPAN CLASS="TOKEN" >,</SPAN >, <SPAN CLASS="TOKEN" >,</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="bashver4.html#CASEMODPARAMSUB" >Lowercase conversion</A > in <I CLASS="FIRSTTERM" >parameter substitution</I > (added in <A HREF="bashver4.html#BASH4REF" >version 4</A > of Bash). </B ></P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >\</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="escapingsection.html#ESCP" >escape</A > [backslash]. </B >A quoting mechanism for single characters.</P ></DIV ><P ><TT CLASS="USERINPUT" ><B >\X</B ></TT > <I CLASS="FIRSTTERM" >escapes</I > the character <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >X</I ></SPAN >. This has the effect of <SPAN CLASS="QUOTE" >"quoting"</SPAN > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >X</I ></SPAN >, equivalent to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >'X'</I ></SPAN >. The <SPAN CLASS="TOKEN" >\</SPAN > may be used to quote <SPAN CLASS="TOKEN" >"</SPAN > and <SPAN CLASS="TOKEN" >'</SPAN >, so they are expressed literally.</P ><P >See <A HREF="quoting.html" >Chapter 5</A > for an in-depth explanation of escaped characters.</P ></DD ><DT ><SPAN CLASS="TOKEN" >/</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Filename path separator [forward slash]. </B >Separates the components of a filename (as in <TT CLASS="FILENAME" >/home/bozo/projects/Makefile</TT >).</P ></DIV ><P >This is also the division <A HREF="operations.html#AROPS1" >arithmetic operator</A >.</P ></DD ><DT ><A NAME="BACKTICKSREF" ></A ><SPAN CLASS="TOKEN" >`</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A >. </B >The <B CLASS="COMMAND" >`command`</B > construct makes available the output of <B CLASS="COMMAND" >command</B > for assignment to a variable. This is also known as <A HREF="commandsub.html#BACKQUOTESREF" >backquotes</A > or backticks.</P ></DIV ></DD ><DT ><A NAME="COLON0REF" ></A ><SPAN CLASS="TOKEN" >:</SPAN ></DT ><DD ><P ><A NAME="NULLREF" ></A ></P ><DIV CLASS="FORMALPARA" ><P ><B >null command [colon]. </B >This is the shell equivalent of a <SPAN CLASS="QUOTE" >"NOP"</SPAN > (<TT CLASS="REPLACEABLE" ><I >no op</I ></TT >, a do-nothing operation). It may be considered a synonym for the shell builtin <A HREF="internal.html#TRUEREF" >true</A >. The <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >:</SPAN >"</SPAN > command is itself a <I CLASS="FIRSTTERM" >Bash</I > <A HREF="internal.html#BUILTINREF" >builtin</A >, and its <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > is <I CLASS="FIRSTTERM" >true</I > (<SPAN CLASS="RETURNVALUE" >0</SPAN >).</P ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 : 2 echo $? # 0</PRE ></TD ></TR ></TABLE ></P ><P >Endless loop:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 while : 2 do 3 operation-1 4 operation-2 5 ... 6 operation-n 7 done 8 9 # Same as: 10 # while true 11 # do 12 # ... 13 # done</PRE ></TD ></TR ></TABLE > </P ><P >Placeholder in if/then test:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if condition 2 then : # Do nothing and branch ahead 3 else # Or else ... 4 take-some-action 5 fi</PRE ></TD ></TR ></TABLE > </P ><P >Provide a placeholder where a binary operation is expected, see <A HREF="operations.html#ARITHOPS" >Example 8-2</A > and <A HREF="parameter-substitution.html#DEFPARAM" >default parameters</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 : ${username=`whoami`} 2 # ${username=`whoami`} Gives an error without the leading : 3 # unless "username" is a command or builtin... 4 5 : ${1?"Usage: $0 ARGUMENT"} # From "usage-message.sh example script.</PRE ></TD ></TR ></TABLE ></P ><P >Provide a placeholder where a command is expected in a <A HREF="here-docs.html#HEREDOCREF" >here document</A >. See <A HREF="here-docs.html#ANONHEREDOC" >Example 19-10</A >.</P ><P >Evaluate string of variables using <A HREF="parameter-substitution.html#PARAMSUBREF" >parameter substitution</A > (as in <A HREF="parameter-substitution.html#EX6" >Example 10-7</A >). <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 : ${HOSTNAME?} ${USER?} ${MAIL?} 2 # Prints error message 3 #+ if one or more of essential environmental variables not set.</PRE ></TD ></TR ></TABLE ></P ><P ><B CLASS="COMMAND" ><A HREF="parameter-substitution.html#EXPREPL1" >Variable expansion / substring replacement</A ></B >.</P ><P >In combination with the <SPAN CLASS="TOKEN" >></SPAN > <A HREF="io-redirection.html#IOREDIRREF" >redirection operator</A >, truncates a file to zero length, without changing its permissions. If the file did not previously exist, creates it. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 : > data.xxx # File "data.xxx" now empty. 2 3 # Same effect as cat /dev/null >data.xxx 4 # However, this does not fork a new process, since ":" is a builtin.</PRE ></TD ></TR ></TABLE > See also <A HREF="textproc.html#EX12" >Example 16-15</A >.</P ><P >In combination with the <SPAN CLASS="TOKEN" >>></SPAN > redirection operator, has no effect on a pre-existing target file (<TT CLASS="USERINPUT" ><B >: >> target_file</B ></TT >). If the file did not previously exist, creates it.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="REGFILEREF" ></A >This applies to regular files, not pipes, symlinks, and certain special files.</P ></TD ></TR ></TABLE ></DIV ><P >May be used to begin a comment line, although this is not recommended. Using <SPAN CLASS="TOKEN" >#</SPAN > for a comment turns off error checking for the remainder of that line, so almost anything may appear in a comment. However, this is not the case with <SPAN CLASS="TOKEN" >:</SPAN >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 : This is a comment that generates an error, ( if [ $x -eq 3] ).</PRE ></TD ></TR ></TABLE > </P ><P >The <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >:</SPAN >"</SPAN > serves as a <A HREF="special-chars.html#FIELDREF" >field</A > separator, in <A HREF="files.html#DATAFILESREF1" ><TT CLASS="FILENAME" >/etc/passwd</TT ></A >, and in the <A HREF="variables2.html#PATHREF" >$PATH</A > variable. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $PATH</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/sbin:/usr/sbin:/usr/games</TT ></PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="COLONFNAME" ></A ></P ><P >A <I CLASS="FIRSTTERM" >colon</I > is <A HREF="functions.html#FSTRANGEREF" >acceptable as a function name</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 :() 2 { 3 echo "The name of this function is "$FUNCNAME" " 4 # Why use a colon as a function name? 5 # It's a way of obfuscating your code. 6 } 7 8 : 9 10 # The name of this function is :</PRE ></TD ></TR ></TABLE > This is not <A HREF="portabilityissues.html" >portable</A > behavior, and therefore not a recommended practice. In fact, more recent releases of Bash do not permit this usage. An underscore <B CLASS="COMMAND" >_</B > works, though.</P ><P ><A NAME="COLONINFUNCTION" ></A ></P ><P >A <I CLASS="FIRSTTERM" >colon</I > can serve as a placeholder in an otherwise empty function.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 not_empty () 2 { 3 : 4 } # Contains a : (null command), and so is not empty.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="NOTREF" ></A ><SPAN CLASS="TOKEN" >!</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >reverse (or negate) the sense of a test or exit status [bang]. </B >The <SPAN CLASS="TOKEN" >!</SPAN > operator inverts the <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of the command to which it is applied (see <A HREF="exit-status.html#NEGCOND" >Example 6-2</A >). It also inverts the meaning of a test operator. This can, for example, change the sense of <I CLASS="FIRSTTERM" >equal</I > ( <A HREF="comparison-ops.html#EQUALSIGNREF" >=</A > ) to <I CLASS="FIRSTTERM" >not-equal</I > ( != ). The <SPAN CLASS="TOKEN" >!</SPAN > operator is a Bash <A HREF="internal.html#KEYWORDREF" >keyword</A >.</P ></DIV ><P >In a different context, the <SPAN CLASS="TOKEN" >!</SPAN > also appears in <A HREF="ivr.html#IVRREF" >indirect variable references</A >.</P ><P >In yet another context, from the <I CLASS="FIRSTTERM" >command line</I >, the <SPAN CLASS="TOKEN" >!</SPAN > invokes the Bash <I CLASS="FIRSTTERM" >history mechanism</I > (see <A HREF="histcommands.html" >Appendix L</A >). Note that within a script, the history mechanism is disabled.</P ></DD ><DT ><A NAME="ASTERISKREF" ></A ><SPAN CLASS="TOKEN" >*</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >wild card [asterisk]. </B >The <SPAN CLASS="TOKEN" >*</SPAN > character serves as a <SPAN CLASS="QUOTE" >"wild card"</SPAN > for filename expansion in <A HREF="globbingref.html" >globbing</A >. By itself, it matches every filename in a given directory.</P ></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo *</B ></TT > <TT CLASS="COMPUTEROUTPUT" >abs-book.sgml add-drive.sh agram.sh alias.sh</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="ASTERISKREF2" ></A ></P ><P >The <SPAN CLASS="TOKEN" >*</SPAN > also represents <A HREF="regexp.html#ASTERISKREG" >any number (or zero) characters</A > in a <A HREF="regexp.html#REGEXREF" >regular expression</A >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >*</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="operations.html#AROPS1" >arithmetic operator</A >. </B >In the context of arithmetic operations, the <SPAN CLASS="TOKEN" >*</SPAN > denotes multiplication.</P ></DIV ><P ><SPAN CLASS="TOKEN" >**</SPAN > A double asterisk can represent the <A HREF="operations.html#EXPONENTIATIONREF" >exponentiation</A > operator or <A HREF="bashver4.html#GLOBSTARREF" >extended file-match</A > <I CLASS="FIRSTTERM" >globbing</I >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >?</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >test operator. </B >Within certain expressions, the <SPAN CLASS="TOKEN" >?</SPAN > indicates a test for a condition.</P ></DIV ><P ><A NAME="CSTRINARY" ></A ></P ><P >In a <A HREF="dblparens.html" >double-parentheses construct</A >, the <SPAN CLASS="TOKEN" >?</SPAN > can serve as an element of a C-style <I CLASS="FIRSTTERM" >trinary</I > operator. <A NAME="AEN888" HREF="#FTN.AEN888" >[2]</A > </P ><P ><TT CLASS="VARNAME" >condition</TT ><B CLASS="COMMAND" >?</B ><TT CLASS="VARNAME" >result-if-true</TT ><B CLASS="COMMAND" >:</B ><TT CLASS="VARNAME" >result-if-false</TT ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 (( var0 = var1<98?9:21 )) 2 # ^ ^ 3 4 # if [ "$var1" -lt 98 ] 5 # then 6 # var0=9 7 # else 8 # var0=21 9 # fi</PRE ></TD ></TR ></TABLE ></P ><P >In a <A HREF="parameter-substitution.html#PARAMSUBREF" >parameter substitution</A > expression, the <SPAN CLASS="TOKEN" >?</SPAN > <A HREF="parameter-substitution.html#QERRMSG" >tests whether a variable has been set</A >.</P ></DD ><DT ><A NAME="WILDCARDQU" ></A ><SPAN CLASS="TOKEN" >?</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >wild card. </B ><A NAME="QUEXWC" ></A >The <SPAN CLASS="TOKEN" >?</SPAN > character serves as a single-character <SPAN CLASS="QUOTE" >"wild card"</SPAN > for filename expansion in <A HREF="globbingref.html" >globbing</A >, as well as <A HREF="regexp.html#QUEXREGEX" >representing one character</A > in an <A HREF="regexp.html#EXTREGEX" >extended regular expression</A >.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >$</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="variables.html#VARSUBN" >Variable substitution</A > (contents of a variable). </B > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var1=5 2 var2=23skidoo 3 4 echo $var1 # 5 5 echo $var2 # 23skidoo</PRE ></TD ></TR ></TABLE > </P ></DIV ><P ><A NAME="VARPREFIXREF" ></A ></P ><P >A <SPAN CLASS="TOKEN" >$</SPAN > prefixing a variable name indicates the <I CLASS="FIRSTTERM" >value</I > the variable holds.</P ></DD ><DT ><SPAN CLASS="TOKEN" >$</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >end-of-line. </B >In a <A HREF="regexp.html#REGEXREF" >regular expression</A >, a <SPAN CLASS="QUOTE" >"$"</SPAN > addresses the <A HREF="regexp.html#DOLLARSIGNREF" >end of a line</A > of text.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >${}</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="parameter-substitution.html#PARAMSUBREF" >Parameter substitution</A >. </B ></P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >$' ... '</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="escapingsection.html#STRQ" >Quoted string expansion</A >. </B >This construct expands single or multiple escaped octal or hex values into ASCII <A NAME="AEN1001" HREF="#FTN.AEN1001" >[3]</A > or <A HREF="bashver4.html#UNICODEREF" >Unicode</A > characters.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >$*</SPAN >, <SPAN CLASS="TOKEN" >$@</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="variables2.html#APPREF" >positional parameters</A >. </B ></P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >$?</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >exit status variable. </B >The <A HREF="exit-status.html#EXSREF" >$? variable</A > holds the <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of a command, a <A HREF="functions.html#FUNCTIONREF" >function</A >, or of the script itself.</P ></DIV ></DD ><DT ><A NAME="PROCESSIDREF" ></A ><SPAN CLASS="TOKEN" >$$</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >process ID variable. </B >The <A HREF="variables2.html#PROCCID" >$$ variable</A > holds the <I CLASS="FIRSTTERM" >process ID</I > <A NAME="AEN1071" HREF="#FTN.AEN1071" >[4]</A > of the script in which it appears.</P ></DIV ></DD ><DT ><A NAME="PARENSREF" ></A ><SPAN CLASS="TOKEN" >()</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >command group. </B ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 (a=hello; echo $a)</PRE ></TD ></TR ></TABLE ></P ></DIV ><DIV CLASS="IMPORTANT" ><TABLE CLASS="IMPORTANT" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/important.png" HSPACE="5" ALT="Important"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A listing of commands within <TT CLASS="REPLACEABLE" ><I >parentheses</I ></TT > starts a <A HREF="subshells.html#SUBSHELLSREF" >subshell</A >.</P ><P >Variables inside parentheses, within the subshell, are not visible to the rest of the script. The parent process, the script, <A HREF="subshells.html#PARVIS" >cannot read variables created in the child process</A >, the subshell. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 a=123 2 ( a=321; ) 3 4 echo "a = $a" # a = 123 5 # "a" within parentheses acts like a local variable.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="FORMALPARA" ><P ><B >array initialization. </B > <A NAME="ARRAYINIT1" ></A > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 Array=(element1 element2 element3)</PRE ></TD ></TR ></TABLE > </P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >{xxx,yyy,zzz,...}</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Brace expansion. </B ><A NAME="BRACEEXPREF" ></A > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo \"{These,words,are,quoted}\" # " prefix and suffix 2 # "These" "words" "are" "quoted" 3 4 5 cat {file1,file2,file3} > combined_file 6 # Concatenates the files file1, file2, and file3 into combined_file. 7 8 cp file22.{txt,backup} 9 # Copies "file22.txt" to "file22.backup"</PRE ></TD ></TR ></TABLE ></P ></DIV ><P >A command may act upon a comma-separated list of file specs within <TT CLASS="REPLACEABLE" ><I >braces</I ></TT >. <A NAME="AEN1124" HREF="#FTN.AEN1124" >[5]</A > Filename expansion (<A HREF="globbingref.html" >globbing</A >) applies to the file specs between the braces.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >No spaces allowed within the braces <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >unless</I ></SPAN > the spaces are quoted or escaped.</P ><P ><TT CLASS="USERINPUT" ><B >echo {file1,file2}\ :{\ A," B",' C'}</B ></TT ></P ><P ><TT CLASS="COMPUTEROUTPUT" >file1 : A file1 : B file1 : C file2 : A file2 : B file2 : C</TT ></P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="BRACEEXPREF33" ></A ><SPAN CLASS="TOKEN" >{a..z}</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Extended Brace expansion. </B ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo {a..z} # a b c d e f g h i j k l m n o p q r s t u v w x y z 2 # Echoes characters between a and z. 3 4 echo {0..3} # 0 1 2 3 5 # Echoes characters between 0 and 3. 6 7 8 base64_charset=( {A..Z} {a..z} {0..9} + / = ) 9 # Initializing an array, using extended brace expansion. 10 # From vladz's "base64.sh" example script.</PRE ></TD ></TR ></TABLE > </P ></DIV ><P >The <I CLASS="FIRSTTERM" >{a..z}</I > <A HREF="bashver3.html#BRACEEXPREF3" >extended brace expansion</A > construction is a feature introduced in <A HREF="bashver3.html#BASH3REF" >version 3</A > of <I CLASS="FIRSTTERM" >Bash</I >.</P ></DD ><DT ><A NAME="CODEBLOCKREF" ></A ><SPAN CLASS="TOKEN" >{}</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Block of code [curly brackets]. </B >Also referred to as an <I CLASS="FIRSTTERM" >inline group</I >, this construct, in effect, creates an <I CLASS="FIRSTTERM" >anonymous function</I > (a function without a name). However, unlike in a <SPAN CLASS="QUOTE" >"standard"</SPAN > <A HREF="functions.html#FUNCTIONREF" >function</A >, the variables inside a code block remain visible to the remainder of the script.</P ></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >{ local a; a=123; }</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bash: local: can only be used in a function</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 a=123 2 { a=321; } 3 echo "a = $a" # a = 321 (value inside code block) 4 5 # Thanks, S.C.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="BLOCKIO" ></A ></P ><P >The code block enclosed in braces may have <A HREF="io-redirection.html#IOREDIRREF" >I/O redirected</A > to and from it.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX8" ></A ><P ><B >Example 3-1. Code blocks and I/O redirection</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Reading lines in /etc/fstab. 3 4 File=/etc/fstab 5 6 { 7 read line1 8 read line2 9 } < $File 10 11 echo "First line in $File is:" 12 echo "$line1" 13 echo 14 echo "Second line in $File is:" 15 echo "$line2" 16 17 exit 0 18 19 # Now, how do you parse the separate fields of each line? 20 # Hint: use awk, or . . . 21 # . . . Hans-Joerg Diers suggests using the "set" Bash builtin.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="BLOCKIO2" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RPMCHECK" ></A ><P ><B >Example 3-2. Saving the output of a code block to a file</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # rpm-check.sh 3 4 # Queries an rpm file for description, listing, 5 #+ and whether it can be installed. 6 # Saves output to a file. 7 # 8 # This script illustrates using a code block. 9 10 SUCCESS=0 11 E_NOARGS=65 12 13 if [ -z "$1" ] 14 then 15 echo "Usage: `basename $0` rpm-file" 16 exit $E_NOARGS 17 fi 18 19 { # Begin code block. 20 echo 21 echo "Archive Description:" 22 rpm -qpi $1 # Query description. 23 echo 24 echo "Archive Listing:" 25 rpm -qpl $1 # Query listing. 26 echo 27 rpm -i --test $1 # Query whether rpm file can be installed. 28 if [ "$?" -eq $SUCCESS ] 29 then 30 echo "$1 can be installed." 31 else 32 echo "$1 cannot be installed." 33 fi 34 echo # End code block. 35 } > "$1.test" # Redirects output of everything in block to file. 36 37 echo "Results of rpm test in file $1.test" 38 39 # See rpm man page for explanation of options. 40 41 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Unlike a command group within (parentheses), as above, a code block enclosed by {braces} will <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > normally launch a <A HREF="subshells.html#SUBSHELLSREF" >subshell</A >. <A NAME="AEN1199" HREF="#FTN.AEN1199" >[6]</A > </P ><P >It is possible to <A HREF="loops.html#ITERATIONREF" >iterate</A > a code block using a <A HREF="loops.html#NODODONE" >non-standard <I CLASS="FIRSTTERM" >for-loop</I ></A >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >{}</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >placeholder for text. </B >Used after <A HREF="moreadv.html#XARGSCURLYREF" >xargs <TT CLASS="OPTION" >-i</TT ></A > (<I CLASS="FIRSTTERM" >replace strings</I > option). The <SPAN CLASS="TOKEN" >{}</SPAN > double curly brackets are a placeholder for output text.</P ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 ls . | xargs -i -t cp ./{} $1 2 # ^^ ^^ 3 4 # From "ex42.sh" (copydir.sh) example.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="SEMICOLONESC" ></A ></P ></DD ><DT ><SPAN CLASS="TOKEN" >{} \;</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >pathname. </B >Mostly used in <A HREF="moreadv.html#FINDREF" >find</A > constructs. This is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > a shell <A HREF="internal.html#BUILTINREF" >builtin</A >.</P ></DIV ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN1234" ></A ><P ><A NAME="PATHNAMEREF" ></A ></P ><P >Definition: A <I CLASS="FIRSTTERM" >pathname</I > is a <I CLASS="FIRSTTERM" >filename</I > that includes the complete <A HREF="variables2.html#PATHREF" >path</A >. As an example, <TT CLASS="FILENAME" >/home/bozo/Notes/Thursday/schedule.txt</TT >. This is sometimes referred to as the <I CLASS="FIRSTTERM" >absolute path</I >.</P ></DIV ></TD ></TR ></TABLE ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >;</SPAN >"</SPAN > ends the <TT CLASS="OPTION" >-exec</TT > option of a <B CLASS="COMMAND" >find</B > command sequence. It needs to be escaped to protect it from interpretation by the shell.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="LEFTBRACKET" ></A ><SPAN CLASS="TOKEN" >[ ]</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >test. </B ><A NAME="BRACKTEST" ></A ></P ></DIV ><P ><A HREF="tests.html#IFTHEN" >Test</A > expression between <B CLASS="COMMAND" >[ ]</B >. Note that <B CLASS="COMMAND" >[</B > is part of the shell <I CLASS="FIRSTTERM" >builtin</I > <A HREF="tests.html#TTESTREF" >test</A > (and a synonym for it), <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > a link to the external command <TT CLASS="FILENAME" >/usr/bin/test</TT >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >[[ ]]</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >test. </B ></P ></DIV ><P >Test expression between <SPAN CLASS="TOKEN" >[[ ]]</SPAN >. More flexible than the single-bracket <SPAN CLASS="TOKEN" >[ ]</SPAN > test, this is a shell <A HREF="internal.html#KEYWORDREF" >keyword</A >.</P ><P >See the discussion on the <A HREF="tests.html#DBLBRACKETS" >[[ ... ]] construct</A >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >[ ]</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >array element. </B ></P ></DIV ><P >In the context of an <A HREF="arrays.html#ARRAYREF" >array</A >, brackets set off the numbering of each element of that array. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 Array[1]=slot_1 2 echo ${Array[1]}</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><SPAN CLASS="TOKEN" >[ ]</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >range of characters. </B ></P ></DIV ><P >As part of a <A HREF="regexp.html#REGEXREF" >regular expression</A >, brackets delineate a <A HREF="regexp.html#BRACKETSREF" >range of characters</A > to match.</P ></DD ><DT ><A NAME="BRACKETARITH" ></A ><SPAN CLASS="TOKEN" >$[ ... ]</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >integer expansion. </B ></P ></DIV ><P >Evaluate integer expression between <SPAN CLASS="TOKEN" >$[ ]</SPAN >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 a=3 2 b=7 3 4 echo $[$a+$b] # 10 5 echo $[$a*$b] # 21</PRE ></TD ></TR ></TABLE ></P ><P >Note that this usage is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >deprecated</I ></SPAN >, and has been replaced by the <A HREF="dblparens.html" >(( ... ))</A > construct.</P ></DD ><DT ><SPAN CLASS="TOKEN" >(( ))</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >integer expansion. </B ></P ></DIV ><P >Expand and evaluate integer expression between <SPAN CLASS="TOKEN" >(( ))</SPAN >.</P ><P >See the discussion on the <A HREF="dblparens.html" >(( ... )) construct</A >.</P ></DD ><DT ><SPAN CLASS="TOKEN" >></SPAN > <SPAN CLASS="TOKEN" >&></SPAN > <SPAN CLASS="TOKEN" >>&</SPAN > <SPAN CLASS="TOKEN" >>></SPAN > <SPAN CLASS="TOKEN" ><</SPAN > <SPAN CLASS="TOKEN" ><></SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="io-redirection.html#IOREDIRREF" >redirection</A >. </B ></P ></DIV ><P ><TT CLASS="USERINPUT" ><B >scriptname >filename</B ></TT > redirects the output of <TT CLASS="FILENAME" >scriptname</TT > to file <TT CLASS="FILENAME" >filename</TT >. Overwrite <TT CLASS="FILENAME" >filename</TT > if it already exists.</P ><P ><A NAME="REDIROUTERROR" ></A ></P ><P ><TT CLASS="USERINPUT" ><B >command &>filename</B ></TT > redirects both the <A HREF="ioredirintro.html#STDINOUTDEF" ><TT CLASS="FILENAME" >stdout</TT ></A > and the <TT CLASS="FILENAME" >stderr</TT > of <TT CLASS="FILENAME" >command</TT > to <TT CLASS="FILENAME" >filename</TT >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P > <A NAME="DEVNULLREDIRECT" ></A > This is useful for suppressing output when testing for a condition. For example, let us test whether a certain command exists. </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >type bogus_command &>/dev/null</B ></TT > <TT CLASS="COMPUTEROUTPUT" ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $?</B ></TT > <TT CLASS="COMPUTEROUTPUT" >1</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Or in a script:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 command_test () { type "$1" &>/dev/null; } 2 # ^ 3 4 cmd=rmdir # Legitimate command. 5 command_test $cmd; echo $? # 0 6 7 8 cmd=bogus_command # Illegitimate command 9 command_test $cmd; echo $? # 1</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="REDIROUTERROR2" ></A ></P ><P ><TT CLASS="USERINPUT" ><B >command >&2</B ></TT > redirects <TT CLASS="FILENAME" >stdout</TT > of <TT CLASS="FILENAME" >command</TT > to <TT CLASS="FILENAME" >stderr</TT >.</P ><P ><TT CLASS="USERINPUT" ><B >scriptname >>filename</B ></TT > appends the output of <TT CLASS="FILENAME" >scriptname</TT > to file <TT CLASS="FILENAME" >filename</TT >. If <TT CLASS="FILENAME" >filename</TT > does not already exist, it is created.</P ><P ><A NAME="REDIRRW" ></A ></P ><P ><TT CLASS="USERINPUT" ><B >[i]<>filename</B ></TT > opens file <TT CLASS="FILENAME" >filename</TT > for reading and writing, and assigns <A HREF="io-redirection.html#FDREF" >file descriptor</A > <SPAN CLASS="TOKEN" >i</SPAN > to it. If <TT CLASS="FILENAME" >filename</TT > does not exist, it is created.</P ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="process-sub.html#PROCESSSUBREF" >process substitution</A >. </B ></P ></DIV ><P ><TT CLASS="USERINPUT" ><B >(command)></B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B ><(command)</B ></TT ></P ><P ><A HREF="comparison-ops.html#LTREF" >In a different context</A >, the <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" ><</SPAN >"</SPAN > and <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >></SPAN >"</SPAN > characters act as <A HREF="comparison-ops.html#SCOMPARISON1" >string comparison operators</A >.</P ><P ><A HREF="comparison-ops.html#INTLT" >In yet another context</A >, the <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" ><</SPAN >"</SPAN > and <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >></SPAN >"</SPAN > characters act as <A HREF="comparison-ops.html#ICOMPARISON1" >integer comparison operators</A >. See also <A HREF="moreadv.html#EX45" >Example 16-9</A >.</P ></DD ><DT ><A NAME="HEREDOCRRREF" ></A ><SPAN CLASS="TOKEN" ><<</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >redirection used in a <A HREF="here-docs.html#HEREDOCREF" >here document</A >. </B ></P ></DIV ></DD ><DT ><A NAME="HERESTRINGREF" ></A ><SPAN CLASS="TOKEN" ><<<</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >redirection used in a <A HREF="here-docs.html#HERESTRINGSREF" >here string</A >. </B ></P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" ><</SPAN >, <SPAN CLASS="TOKEN" >></SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="comparison-ops.html#LTREF" >ASCII comparison</A >. </B ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 veg1=carrots 2 veg2=tomatoes 3 4 if [[ "$veg1" < "$veg2" ]] 5 then 6 echo "Although $veg1 precede $veg2 in the dictionary," 7 echo -n "this does not necessarily imply anything " 8 echo "about my culinary preferences." 9 else 10 echo "What kind of dictionary are you using, anyhow?" 11 fi</PRE ></TD ></TR ></TABLE ></P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >\<</SPAN >, <SPAN CLASS="TOKEN" >\></SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="regexp.html#ANGLEBRAC" >word boundary</A > in a <A HREF="regexp.html#REGEXREF" >regular expression</A >. </B ></P ></DIV ><P ><TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep '\<the\>' textfile</B ></TT ></P ></DD ><DT ><SPAN CLASS="TOKEN" >|</SPAN ></DT ><DD ><P ><A NAME="PIPEREF" ></A ></P ><DIV CLASS="FORMALPARA" ><P ><B >pipe. </B >Passes the output (<TT CLASS="FILENAME" >stdout</TT >) of a previous command to the input (<TT CLASS="FILENAME" >stdin</TT >) of the next one, or to the shell. This is a method of chaining commands together.</P ></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo ls -l | sh 2 # Passes the output of "echo ls -l" to the shell, 3 #+ with the same result as a simple "ls -l". 4 5 6 cat *.lst | sort | uniq 7 # Merges and sorts all ".lst" files, then deletes duplicate lines.</PRE ></TD ></TR ></TABLE > </P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN1555" ></A ><P > A pipe, as a classic method of interprocess communication, sends the <TT CLASS="FILENAME" >stdout</TT > of one <A HREF="special-chars.html#PROCESSREF" >process</A > to the <TT CLASS="FILENAME" >stdin</TT > of another. In a typical case, a command, such as <A HREF="external.html#CATREF" >cat</A > or <A HREF="internal.html#ECHOREF" >echo</A >, pipes a stream of data to a <A NAME="FILTERDEF" ></A > <I CLASS="FIRSTTERM" >filter</I >, a command that transforms its input for processing. <A NAME="AEN1564" HREF="#FTN.AEN1564" >[7]</A > </P ><P > <TT CLASS="USERINPUT" ><B >cat $filename1 $filename2 | grep $search_word</B ></TT > </P ><P >For an interesting note on the complexity of using UNIX pipes, see <A HREF="http://www.faqs.org/faqs/unix-faq/faq/part3/" TARGET="_top" >the UNIX FAQ, Part 3</A >.</P ></DIV ></TD ></TR ></TABLE ><P ><A NAME="UCREF" ></A >The output of a command or commands may be piped to a script. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # uppercase.sh : Changes input to uppercase. 3 4 tr 'a-z' 'A-Z' 5 # Letter ranges must be quoted 6 #+ to prevent filename generation from single-letter filenames. 7 8 exit 0</PRE ></TD ></TR ></TABLE > Now, let us pipe the output of <B CLASS="COMMAND" >ls -l</B > to this script. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l | ./uppercase.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-RW-RW-R-- 1 BOZO BOZO 109 APR 7 19:49 1.TXT -RW-RW-R-- 1 BOZO BOZO 109 APR 14 16:48 2.TXT -RW-R--R-- 1 BOZO BOZO 725 APR 20 20:56 DATA-FILE</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="FILENAME" >stdout</TT > of each process in a pipe must be read as the <TT CLASS="FILENAME" >stdin</TT > of the next. If this is not the case, the data stream will <I CLASS="FIRSTTERM" >block</I >, and the pipe will not behave as expected. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat file1 file2 | ls -l | sort 2 # The output from "cat file1 file2" disappears.</PRE ></TD ></TR ></TABLE > </P ><P >A pipe runs as a <A HREF="othertypesv.html#CHILDREF" >child process</A >, and therefore cannot alter script variables. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 variable="initial_value" 2 echo "new_value" | read variable 3 echo "variable = $variable" # variable = initial_value</PRE ></TD ></TR ></TABLE > </P ><P >If one of the commands in the pipe aborts, this prematurely terminates execution of the pipe. Called a <I CLASS="FIRSTTERM" >broken pipe</I >, this condition sends a <TT CLASS="REPLACEABLE" ><I >SIGPIPE</I ></TT > <A HREF="debugging.html#SIGNALD" >signal</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >>|</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >force redirection (even if the <A HREF="options.html#NOCLOBBERREF" >noclobber option</A > is set). </B >This will forcibly overwrite an existing file.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >||</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="operations.html#ORREF" >OR logical operator</A >. </B >In a <A HREF="tests.html#TESTCONSTRUCTS1" >test construct</A >, the <SPAN CLASS="TOKEN" >||</SPAN > operator causes a return of <SPAN CLASS="RETURNVALUE" >0</SPAN > (success) if <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >either</I ></SPAN > of the linked test conditions is true.</P ></DIV ></DD ><DT ><A NAME="BGJOB" ></A ><SPAN CLASS="TOKEN" >&</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Run job in background. </B >A command followed by an <SPAN CLASS="TOKEN" >&</SPAN > will run in the background.</P ></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >sleep 10 &</B ></TT > <TT CLASS="COMPUTEROUTPUT" >[1] 850</TT > <TT CLASS="COMPUTEROUTPUT" >[1]+ Done sleep 10</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Within a script, commands and even <A HREF="loops.html#FORLOOPREF1" >loops</A > may run in the background.</P ><P ><A NAME="BGLOOP0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BGLOOP" ></A ><P ><B >Example 3-3. Running a loop in the background</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # background-loop.sh 3 4 for i in 1 2 3 4 5 6 7 8 9 10 # First loop. 5 do 6 echo -n "$i " 7 done & # Run this loop in background. 8 # Will sometimes execute after second loop. 9 10 echo # This 'echo' sometimes will not display. 11 12 for i in 11 12 13 14 15 16 17 18 19 20 # Second loop. 13 do 14 echo -n "$i " 15 done 16 17 echo # This 'echo' sometimes will not display. 18 19 # ====================================================== 20 21 # The expected output from the script: 22 # 1 2 3 4 5 6 7 8 9 10 23 # 11 12 13 14 15 16 17 18 19 20 24 25 # Sometimes, though, you get: 26 # 11 12 13 14 15 16 17 18 19 20 27 # 1 2 3 4 5 6 7 8 9 10 bozo $ 28 # (The second 'echo' doesn't execute. Why?) 29 30 # Occasionally also: 31 # 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 32 # (The first 'echo' doesn't execute. Why?) 33 34 # Very rarely something like: 35 # 11 12 13 1 2 3 4 5 6 7 8 9 10 14 15 16 17 18 19 20 36 # The foreground loop preempts the background one. 37 38 exit 0 39 40 # Nasimuddin Ansari suggests adding sleep 1 41 #+ after the echo -n "$i" in lines 6 and 14, 42 #+ for some real fun.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A command run in the background within a script may cause the script to hang, waiting for a keystroke. Fortunately, there is a <A HREF="internal.html#WAITHANG" >remedy</A > for this.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="LOGICALAND" ></A ><SPAN CLASS="TOKEN" >&&</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="operations.html#LOGOPS1" >AND logical operator</A >. </B >In a <A HREF="tests.html#TESTCONSTRUCTS1" >test construct</A >, the <SPAN CLASS="TOKEN" >&&</SPAN > operator causes a return of <SPAN CLASS="RETURNVALUE" >0</SPAN > (success) only if <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >both</I ></SPAN > the linked test conditions are true.</P ></DIV ></DD ><DT ><A NAME="DASHREF" ></A ><SPAN CLASS="TOKEN" >-</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >option, prefix. </B >Option flag for a command or filter. Prefix for an operator. Prefix for a <A HREF="parameter-substitution.html#DEFPARAM1" >default parameter</A > in <A HREF="parameter-substitution.html#PARAMSUBREF" >parameter substitution</A >.</P ></DIV ><P ><TT CLASS="USERINPUT" ><B >COMMAND -[Option1][Option2][...]</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >ls -al</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >sort -dfu $filename</B ></TT ></P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ $file1 -ot $file2 ] 2 then # ^ 3 echo "File $file1 is older than $file2." 4 fi 5 6 if [ "$a" -eq "$b" ] 7 then # ^ 8 echo "$a is equal to $b." 9 fi 10 11 if [ "$c" -eq 24 -a "$d" -eq 47 ] 12 then # ^ ^ 13 echo "$c equals 24 and $d equals 47." 14 fi 15 16 17 param2=${param1:-$DEFAULTVAL} 18 # ^</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="DOUBLEDASHREF" ></A ></P ><P ><B CLASS="COMMAND" >--</B ></P ><P >The <I CLASS="FIRSTTERM" >double-dash</I > <TT CLASS="OPTION" >--</TT > prefixes <I CLASS="FIRSTTERM" >long</I > (verbatim) options to commands.</P ><P ><TT CLASS="USERINPUT" ><B >sort --ignore-leading-blanks</B ></TT ></P ><P >Used with a <A HREF="internal.html#BUILTINREF" >Bash builtin</A >, it means the <I CLASS="FIRSTTERM" >end of options</I > to that particular command.</P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This provides a handy means of removing files whose <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >names begin with a dash</I ></SPAN >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-rw-r--r-- 1 bozo bozo 0 Nov 25 12:29 -badname</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >rm -- -badname</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -l</B ></TT > <TT CLASS="COMPUTEROUTPUT" >total 0</TT ></PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><P >The <I CLASS="FIRSTTERM" >double-dash</I > is also used in conjunction with <A HREF="internal.html#SETREF" >set</A >.</P ><P ><TT CLASS="USERINPUT" ><B >set -- $variable</B ></TT > (as in <A HREF="internal.html#SETPOS" >Example 15-18</A >)</P ></DD ><DT ><A NAME="DASHREF2" ></A ><SPAN CLASS="TOKEN" >-</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >redirection from/to <TT CLASS="FILENAME" >stdin</TT > or <TT CLASS="FILENAME" >stdout</TT > [dash]. </B ><A NAME="COXEX" ></A ></P ></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat -</B ></TT > <TT CLASS="USERINPUT" ><B >abc</B ></TT > <TT CLASS="COMPUTEROUTPUT" >abc</TT > <TT CLASS="COMPUTEROUTPUT" >...</TT > <TT CLASS="USERINPUT" ><B >Ctl-D</B ></TT ></PRE ></TD ></TR ></TABLE > </P ><P >As expected, <TT CLASS="USERINPUT" ><B >cat -</B ></TT > echoes <TT CLASS="FILENAME" >stdin</TT >, in this case keyboarded user input, to <TT CLASS="FILENAME" >stdout</TT >. But, does I/O redirection using <B CLASS="COMMAND" >-</B > have real-world applications?</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 (cd /source/directory && tar cf - . ) | (cd /dest/directory && tar xpvf -) 2 # Move entire file tree from one directory to another 3 # [courtesy Alan Cox <a.cox@swansea.ac.uk>, with a minor change] 4 5 # 1) cd /source/directory 6 # Source directory, where the files to be moved are. 7 # 2) && 8 # "And-list": if the 'cd' operation successful, 9 # then execute the next command. 10 # 3) tar cf - . 11 # The 'c' option 'tar' archiving command creates a new archive, 12 # the 'f' (file) option, followed by '-' designates the target file 13 # as stdout, and do it in current directory tree ('.'). 14 # 4) | 15 # Piped to ... 16 # 5) ( ... ) 17 # a subshell 18 # 6) cd /dest/directory 19 # Change to the destination directory. 20 # 7) && 21 # "And-list", as above 22 # 8) tar xpvf - 23 # Unarchive ('x'), preserve ownership and file permissions ('p'), 24 # and send verbose messages to stdout ('v'), 25 # reading data from stdin ('f' followed by '-'). 26 # 27 # Note that 'x' is a command, and 'p', 'v', 'f' are options. 28 # 29 # Whew! 30 31 32 33 # More elegant than, but equivalent to: 34 # cd source/directory 35 # tar cf - . | (cd ../dest/directory; tar xpvf -) 36 # 37 # Also having same effect: 38 # cp -a /source/directory/* /dest/directory 39 # Or: 40 # cp -a /source/directory/* /source/directory/.[^.]* /dest/directory 41 # If there are hidden files in /source/directory.</PRE ></TD ></TR ></TABLE ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 bunzip2 -c linux-2.6.16.tar.bz2 | tar xvf - 2 # --uncompress tar file-- | --then pass it to "tar"-- 3 # If "tar" has not been patched to handle "bunzip2", 4 #+ this needs to be done in two discrete steps, using a pipe. 5 # The purpose of the exercise is to unarchive "bzipped" kernel source.</PRE ></TD ></TR ></TABLE ></P ><P >Note that in this context the <SPAN CLASS="QUOTE" >"-"</SPAN > is not itself a Bash operator, but rather an option recognized by certain UNIX utilities that write to <TT CLASS="FILENAME" >stdout</TT >, such as <B CLASS="COMMAND" >tar</B >, <B CLASS="COMMAND" >cat</B >, etc.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "whatever" | cat -</B ></TT > <TT CLASS="COMPUTEROUTPUT" >whatever</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Where a filename is expected, <TT CLASS="REPLACEABLE" ><I >-</I ></TT > redirects output to <TT CLASS="FILENAME" >stdout</TT > (sometimes seen with <TT CLASS="USERINPUT" ><B >tar cf</B ></TT >), or accepts input from <TT CLASS="FILENAME" >stdin</TT >, rather than from a file. <A NAME="FILTERDASH" ></A > This is a method of using a file-oriented utility as a filter in a pipe.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >file</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Usage: file [-bciknvzL] [-f namefile] [-m magicfiles] file...</TT > </PRE ></TD ></TR ></TABLE > By itself on the command-line, <A HREF="filearchiv.html#FILEREF" >file</A > fails with an error message. </P ><P > Add a <SPAN CLASS="QUOTE" >"-"</SPAN > for a more useful result. This causes the shell to await user input. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >file -</B ></TT > <TT CLASS="USERINPUT" ><B >abc</B ></TT > <TT CLASS="COMPUTEROUTPUT" >standard input: ASCII text</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >file -</B ></TT > <TT CLASS="USERINPUT" ><B >#!/bin/bash</B ></TT > <TT CLASS="COMPUTEROUTPUT" >standard input: Bourne-Again shell script text executable</TT > </PRE ></TD ></TR ></TABLE > Now the command accepts input from <TT CLASS="FILENAME" >stdin</TT > and analyzes it. </P ><P >The <SPAN CLASS="QUOTE" >"-"</SPAN > can be used to pipe <TT CLASS="FILENAME" >stdout</TT > to other commands. This permits such stunts as <A HREF="assortedtips.html#PREPENDREF" >prepending lines to a file</A >.</P ><P >Using <A HREF="filearchiv.html#DIFFREF" >diff</A > to compare a file with a <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >section</I ></SPAN > of another:</P ><P ><TT CLASS="USERINPUT" ><B >grep Linux file1 | diff file2 -</B ></TT ></P ><P >Finally, a real-world example using <TT CLASS="REPLACEABLE" ><I >-</I ></TT > with <A HREF="filearchiv.html#TARREF" >tar</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX58" ></A ><P ><B >Example 3-4. Backup of all files changed in last day</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Backs up all files in current directory modified within last 24 hours 4 #+ in a "tarball" (tarred and gzipped file). 5 6 BACKUPFILE=backup-$(date +%m-%d-%Y) 7 # Embeds date in backup filename. 8 # Thanks, Joshua Tschida, for the idea. 9 archive=${1:-$BACKUPFILE} 10 # If no backup-archive filename specified on command-line, 11 #+ it will default to "backup-MM-DD-YYYY.tar.gz." 12 13 tar cvf - `find . -mtime -1 -type f -print` > $archive.tar 14 gzip $archive.tar 15 echo "Directory $PWD backed up in archive file \"$archive.tar.gz\"." 16 17 18 # Stephane Chazelas points out that the above code will fail 19 #+ if there are too many files found 20 #+ or if any filenames contain blank characters. 21 22 # He suggests the following alternatives: 23 # ------------------------------------------------------------------- 24 # find . -mtime -1 -type f -print0 | xargs -0 tar rvf "$archive.tar" 25 # using the GNU version of "find". 26 27 28 # find . -mtime -1 -type f -exec tar rvf "$archive.tar" '{}' \; 29 # portable to other UNIX flavors, but much slower. 30 # ------------------------------------------------------------------- 31 32 33 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Filenames beginning with <SPAN CLASS="QUOTE" >"-"</SPAN > may cause problems when coupled with the <SPAN CLASS="QUOTE" >"-"</SPAN > redirection operator. A script should check for this and add an appropriate prefix to such filenames, for example <TT CLASS="FILENAME" >./-FILENAME</TT >, <TT CLASS="FILENAME" >$PWD/-FILENAME</TT >, or <TT CLASS="FILENAME" >$PATHNAME/-FILENAME</TT >.</P ><P >If the value of a variable begins with a <TT CLASS="REPLACEABLE" ><I >-</I ></TT >, this may likewise create problems. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var="-n" 2 echo $var 3 # Has the effect of "echo -n", and outputs nothing.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >-</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >previous working directory. </B >A <B CLASS="COMMAND" >cd -</B > command changes to the previous working directory. This uses the <A HREF="variables2.html#OLDPWD" >$OLDPWD</A > <A HREF="othertypesv.html#ENVREF" >environmental variable</A >.</P ></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Do not confuse the <SPAN CLASS="QUOTE" >"-"</SPAN > used in this sense with the <SPAN CLASS="QUOTE" >"-"</SPAN > redirection operator just discussed. The interpretation of the <SPAN CLASS="QUOTE" >"-"</SPAN > depends on the context in which it appears.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >-</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Minus. </B >Minus sign in an <A HREF="operations.html#AROPS1" >arithmetic operation</A >.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >=</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Equals. </B ><A HREF="varassignment.html#EQREF" >Assignment operator</A > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 a=28 2 echo $a # 28</PRE ></TD ></TR ></TABLE ></P ></DIV ><P >In a <A HREF="comparison-ops.html#EQUALSIGNREF" >different context</A >, the <SPAN CLASS="QUOTE" >"<SPAN CLASS="TOKEN" >=</SPAN >"</SPAN > is a <A HREF="comparison-ops.html#SCOMPARISON1" >string comparison</A > operator.</P ></DD ><DT ><SPAN CLASS="TOKEN" >+</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Plus. </B >Addition <A HREF="operations.html#AROPS1" >arithmetic operator</A >.</P ></DIV ><P >In a <A HREF="regexp.html#PLUSREF" >different context</A >, the <SPAN CLASS="TOKEN" >+</SPAN > is a <A HREF="regexp.html" >Regular Expression</A > operator.</P ></DD ><DT ><SPAN CLASS="TOKEN" >+</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >Option. </B >Option flag for a command or filter.</P ></DIV ><P >Certain commands and <A HREF="internal.html#BUILTINREF" >builtins</A > use the <TT CLASS="OPTION" >+</TT > to enable certain options and the <TT CLASS="OPTION" >-</TT > to disable them. In <A HREF="parameter-substitution.html#PARAMSUBREF" >parameter substitution</A >, the <TT CLASS="OPTION" >+</TT > prefixes an <A HREF="parameter-substitution.html#PARAMALTV" > alternate value</A > that a variable expands to.</P ></DD ><DT ><A NAME="MODULO00" ></A ><SPAN CLASS="TOKEN" >%</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="operations.html#MODULOREF" >modulo</A >. </B >Modulo (remainder of a division) <A HREF="operations.html#AROPS1" >arithmetic operation</A >.</P ></DIV ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 let "z = 5 % 3" 2 echo $z # 2</PRE ></TD ></TR ></TABLE ></P ><P >In a <A HREF="parameter-substitution.html#PCTPATREF" >different context</A >, the <SPAN CLASS="TOKEN" >%</SPAN > is a <A HREF="parameter-substitution.html#PSUB2" >pattern matching</A > operator.</P ></DD ><DT ><A NAME="TILDEREF" ></A ><SPAN CLASS="TOKEN" >~</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >home directory [tilde]. </B >This corresponds to the <A HREF="variables2.html#HOMEDIRREF" >$HOME</A > internal variable. <TT CLASS="FILENAME" >~bozo</TT > is bozo's home directory, and <B CLASS="COMMAND" >ls ~bozo</B > lists the contents of it. <SPAN CLASS="TOKEN" >~/</SPAN > is the current user's home directory, and <B CLASS="COMMAND" >ls ~/</B > lists the contents of it. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ~bozo</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/home/bozo</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ~</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/home/bozo</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ~/</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/home/bozo/</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ~:</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/home/bozo:</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ~nonexistent-user</B ></TT > <TT CLASS="COMPUTEROUTPUT" >~nonexistent-user</TT > </PRE ></TD ></TR ></TABLE > </P ></DIV ></DD ><DT ><A NAME="WORKINGDIRREF" ></A ><SPAN CLASS="TOKEN" >~+</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >current working directory. </B >This corresponds to the <A HREF="variables2.html#PWDREF" >$PWD</A > internal variable.</P ></DIV ></DD ><DT ><A NAME="PREVWORKINGDIR" ></A ><SPAN CLASS="TOKEN" >~-</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >previous working directory. </B >This corresponds to the <A HREF="variables2.html#OLDPWD" >$OLDPWD</A > internal variable.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >=~</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="bashver3.html#REGEXMATCHREF" >regular expression match</A >. </B >This operator was introduced with <A HREF="bashver3.html#BASH3REF" >version 3</A > of Bash.</P ></DIV ></DD ><DT ><A NAME="BEGLINEREF" ></A ><SPAN CLASS="TOKEN" >^</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >beginning-of-line. </B >In a <A HREF="regexp.html#REGEXREF" >regular expression</A >, a <SPAN CLASS="QUOTE" >"^"</SPAN > addresses the <A HREF="regexp.html#CARETREF" >beginning of a line</A > of text.</P ></DIV ></DD ><DT ><SPAN CLASS="TOKEN" >^</SPAN >, <SPAN CLASS="TOKEN" >^^</SPAN ></DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B ><A HREF="bashver4.html#CASEMODPARAMSUB" >Uppercase conversion</A > in <I CLASS="FIRSTTERM" >parameter substitution</I > (added in <A HREF="bashver4.html#BASH4REF" >version 4</A > of Bash). </B ></P ></DIV ></DD ><DT ><A NAME="CONTROLCHARREF" ></A >Control Characters</DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B > change the behavior of the terminal or text display. </B >A control character is a <B CLASS="KEYCAP" >CONTROL</B > + <B CLASS="KEYCAP" >key</B > combination (pressed simultaneously). A control character may also be written in <I CLASS="FIRSTTERM" >octal</I > or <I CLASS="FIRSTTERM" >hexadecimal</I > notation, following an <I CLASS="FIRSTTERM" >escape</I >.</P ></DIV ><P >Control characters are not normally useful inside a script.</P ><UL ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-A</B ></TT ></P ><P >Moves cursor to beginning of line of text (on the command-line).</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-B</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >Backspace</B ></TT > (nondestructive).</P ></LI ><LI ><P ><A NAME="CTLCREF" ></A ></P ><P ><TT CLASS="USERINPUT" ><B >Ctl-C</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >Break</B ></TT >. Terminate a foreground job.</P ></LI ><LI ><P ><A NAME="CTLDREF" ></A ></P ><P ><TT CLASS="USERINPUT" ><B >Ctl-D</B ></TT ></P ><P ><I CLASS="FIRSTTERM" >Log out</I > from a shell (similar to <A HREF="exit-status.html#EXITCOMMANDREF" >exit</A >).</P ><P ><TT CLASS="USERINPUT" ><B >EOF</B ></TT > (end-of-file). This also terminates input from <TT CLASS="FILENAME" >stdin</TT >.</P ><P >When typing text on the console or in an <I CLASS="FIRSTTERM" >xterm</I > window, <TT CLASS="USERINPUT" ><B >Ctl-D</B ></TT > erases the character under the cursor. When there are no characters present, <TT CLASS="USERINPUT" ><B >Ctl-D</B ></TT > logs out of the session, as expected. In an <I CLASS="FIRSTTERM" >xterm</I > window, this has the effect of closing the window.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-E</B ></TT ></P ><P >Moves cursor to end of line of text (on the command-line).</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-F</B ></TT ></P ><P >Moves cursor forward one character position (on the command-line).</P ></LI ><LI ><P ><A NAME="CTLGREF" ></A ></P ><P ><TT CLASS="USERINPUT" ><B >Ctl-G</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >BEL</B ></TT >. On some old-time teletype terminals, this would actually ring a bell. In an <I CLASS="FIRSTTERM" >xterm</I > it might beep.</P ></LI ><LI ><P ><A NAME="CTLHREF" ></A ></P ><P ><TT CLASS="USERINPUT" ><B >Ctl-H</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >Rubout</B ></TT > (destructive backspace). Erases characters the cursor backs over while backspacing.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Embedding Ctl-H in a string. 3 4 a="^H^H" # Two Ctl-H's -- backspaces 5 # ctl-V ctl-H, using vi/vim 6 echo "abcdef" # abcdef 7 echo 8 echo -n "abcdef$a " # abcd f 9 # Space at end ^ ^ Backspaces twice. 10 echo 11 echo -n "abcdef$a" # abcdef 12 # No space at end ^ Doesn't backspace (why?). 13 # Results may not be quite as expected. 14 echo; echo 15 16 # Constantin Hagemeier suggests trying: 17 # a=$'\010\010' 18 # a=$'\b\b' 19 # a=$'\x08\x08' 20 # But, this does not change the results. 21 22 ######################################## 23 24 # Now, try this. 25 26 rubout="^H^H^H^H^H" # 5 x Ctl-H. 27 28 echo -n "12345678" 29 sleep 2 30 echo -n "$rubout" 31 sleep 2</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-I</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >Horizontal tab</B ></TT >.</P ></LI ><LI ><P ><A NAME="CTLJREF" ></A ></P ><P ><TT CLASS="USERINPUT" ><B >Ctl-J</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >Newline</B ></TT > (line feed). In a script, may also be expressed in octal notation -- '\012' or in hexadecimal -- '\x0a'.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-K</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >Vertical tab</B ></TT >.</P ><P >When typing text on the console or in an <I CLASS="FIRSTTERM" >xterm</I > window, <TT CLASS="USERINPUT" ><B >Ctl-K</B ></TT > erases from the character under the cursor to end of line. Within a script, <TT CLASS="USERINPUT" ><B >Ctl-K</B ></TT > may behave differently, as in Lee Lee Maschmeyer's example, below.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-L</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >Formfeed</B ></TT > (clear the terminal screen). In a terminal, this has the same effect as the <A HREF="terminalccmds.html#CLEARREF" >clear</A > command. When sent to a printer, a <TT CLASS="USERINPUT" ><B >Ctl-L</B ></TT > causes an advance to end of the paper sheet.</P ></LI ><LI ><P ><A NAME="CTLMREF" ></A ></P ><P ><TT CLASS="USERINPUT" ><B >Ctl-M</B ></TT ></P ><P ><TT CLASS="USERINPUT" ><B >Carriage return</B ></TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Thank you, Lee Maschmeyer, for this example. 3 4 read -n 1 -s -p \ 5 $'Control-M leaves cursor at beginning of this line. Press Enter. \x0d' 6 # Of course, '0d' is the hex equivalent of Control-M. 7 echo >&2 # The '-s' makes anything typed silent, 8 #+ so it is necessary to go to new line explicitly. 9 10 read -n 1 -s -p $'Control-J leaves cursor on next line. \x0a' 11 # '0a' is the hex equivalent of Control-J, linefeed. 12 echo >&2 13 14 ### 15 16 read -n 1 -s -p $'And Control-K\x0bgoes straight down.' 17 echo >&2 # Control-K is vertical tab. 18 19 # A better example of the effect of a vertical tab is: 20 21 var=$'\x0aThis is the bottom line\x0bThis is the top line\x0a' 22 echo "$var" 23 # This works the same way as the above example. However: 24 echo "$var" | col 25 # This causes the right end of the line to be higher than the left end. 26 # It also explains why we started and ended with a line feed -- 27 #+ to avoid a garbled screen. 28 29 # As Lee Maschmeyer explains: 30 # -------------------------- 31 # In the [first vertical tab example] . . . the vertical tab 32 #+ makes the printing go straight down without a carriage return. 33 # This is true only on devices, such as the Linux console, 34 #+ that can't go "backward." 35 # The real purpose of VT is to go straight UP, not down. 36 # It can be used to print superscripts on a printer. 37 # The col utility can be used to emulate the proper behavior of VT. 38 39 exit 0</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-N</B ></TT ></P ><P >Erases a line of text recalled from <I CLASS="FIRSTTERM" >history buffer</I > <A NAME="AEN2107" HREF="#FTN.AEN2107" >[8]</A > (on the command-line).</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-O</B ></TT ></P ><P >Issues a <I CLASS="FIRSTTERM" >newline</I > (on the command-line).</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-P</B ></TT ></P ><P >Recalls last command from <I CLASS="FIRSTTERM" >history buffer</I > (on the command-line).</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-Q</B ></TT ></P ><P >Resume (<TT CLASS="USERINPUT" ><B >XON</B ></TT >).</P ><P >This resumes <TT CLASS="FILENAME" >stdin</TT > in a terminal.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-R</B ></TT ></P ><P >Backwards search for text in <I CLASS="FIRSTTERM" >history buffer</I > (on the command-line).</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-S</B ></TT ></P ><P >Suspend (<TT CLASS="USERINPUT" ><B >XOFF</B ></TT >).</P ><P >This freezes <TT CLASS="FILENAME" >stdin</TT > in a terminal. (Use Ctl-Q to restore input.)</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-T</B ></TT ></P ><P >Reverses the position of the character the cursor is on with the previous character (on the command-line).</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-U</B ></TT ></P ><P >Erase a line of input, from the cursor backward to beginning of line. In some settings, <TT CLASS="USERINPUT" ><B >Ctl-U</B ></TT > erases the entire line of input, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >regardless of cursor position</I ></SPAN >.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-V</B ></TT ></P ><P >When inputting text, <TT CLASS="USERINPUT" ><B >Ctl-V</B ></TT > permits inserting control characters. For example, the following two are equivalent: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo -e '\x0a' 2 echo <Ctl-V><Ctl-J></PRE ></TD ></TR ></TABLE ></P ><P ><TT CLASS="USERINPUT" ><B >Ctl-V</B ></TT > is primarily useful from within a text editor.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-W</B ></TT ></P ><P >When typing text on the console or in an xterm window, <TT CLASS="USERINPUT" ><B >Ctl-W</B ></TT > erases from the character under the cursor backwards to the first instance of <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A >. In some settings, <TT CLASS="USERINPUT" ><B >Ctl-W</B ></TT > erases backwards to first non-alphanumeric character.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-X</B ></TT ></P ><P >In certain word processing programs, <I CLASS="FIRSTTERM" >Cuts</I > highlighted text and copies to <I CLASS="FIRSTTERM" >clipboard</I >.</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-Y</B ></TT ></P ><P ><I CLASS="FIRSTTERM" >Pastes</I > back text previously erased (with <TT CLASS="USERINPUT" ><B >Ctl-U</B ></TT > or <TT CLASS="USERINPUT" ><B >Ctl-W</B ></TT >).</P ></LI ><LI ><P ><TT CLASS="USERINPUT" ><B >Ctl-Z</B ></TT ></P ><P ><I CLASS="FIRSTTERM" >Pauses</I > a foreground job.</P ><P ><I CLASS="FIRSTTERM" >Substitute</I > operation in certain word processing applications.</P ><P ><TT CLASS="USERINPUT" ><B >EOF</B ></TT > (end-of-file) character in the MSDOS filesystem.</P ></LI ></UL ></DD ><DT ><A NAME="WHITESPACEREF" ></A >Whitespace</DT ><DD ><DIV CLASS="FORMALPARA" ><P ><B >functions as a separator between commands and/or variables. </B >Whitespace consists of either <I CLASS="FIRSTTERM" >spaces</I >, <I CLASS="FIRSTTERM" >tabs</I >, <I CLASS="FIRSTTERM" >blank lines</I >, or any combination thereof. <A NAME="AEN2198" HREF="#FTN.AEN2198" >[9]</A > In some contexts, such as <A HREF="gotchas.html#WSBAD" >variable assignment</A >, whitespace is not permitted, and results in a syntax error.</P ></DIV ><P >Blank lines have no effect on the action of a script, and are therefore useful for visually separating functional sections.</P ><P ><A HREF="variables2.html#IFSREF" >$IFS</A >, the special variable separating <I CLASS="FIRSTTERM" >fields</I > of input to certain commands. It defaults to whitespace.</P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN2207" ></A ><P > <A NAME="FIELDREF" ></A ><TT CLASS="USERINPUT" ><B >Definition:</B ></TT > A <I CLASS="FIRSTTERM" >field</I > is a discrete chunk of data expressed as a string of consecutive characters. Separating each field from adjacent fields is either <I CLASS="FIRSTTERM" >whitespace</I > or some other designated character (often determined by the <SPAN CLASS="TOKEN" >$IFS</SPAN >). In some contexts, a field may be called a <I CLASS="FIRSTTERM" >record</I >. </P ></DIV ></TD ></TR ></TABLE ><P ><A NAME="QUOTINGWS" ></A ></P ><P >To preserve <I CLASS="FIRSTTERM" >whitespace</I > within a string or in a variable, use <A HREF="quoting.html#QUOTINGREF" >quoting</A >.</P ><P >UNIX <A HREF="special-chars.html#FILTERDEF" >filters</A > can target and operate on <I CLASS="FIRSTTERM" >whitespace</I > using the <A HREF="regexp.html#POSIXREF" >POSIX</A > character class <A HREF="regexp.html#WSPOSIX" >[:space:]</A >.</P ></DD ></DL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN612" HREF="special-chars.html#AEN612" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="OPERATORDEF" ></A >An <I CLASS="FIRSTTERM" >operator</I > is an agent that carries out an <I CLASS="FIRSTTERM" >operation</I >. Some examples are the common <A HREF="operations.html#AROPS1" >arithmetic operators</A >, <B CLASS="COMMAND" >+ - * /</B >. In Bash, there is some overlap between the concepts of <I CLASS="FIRSTTERM" >operator</I > and <A HREF="internal.html#KEYWORDREF" >keyword</A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN888" HREF="special-chars.html#AEN888" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This is more commonly known as the <I CLASS="FIRSTTERM" >ternary</I > operator. Unfortunately, <I CLASS="FIRSTTERM" >ternary</I > is an ugly word. It doesn't roll off the tongue, and it doesn't elucidate. It obfuscates. <I CLASS="FIRSTTERM" >Trinary</I > is by far the more elegant usage.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN1001" HREF="special-chars.html#AEN1001" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="ASCIIDEF" ></A ></P ><P ><B CLASS="COMMAND" >A</B >merican <B CLASS="COMMAND" >S</B >tandard <B CLASS="COMMAND" >C</B >ode for <B CLASS="COMMAND" >I</B >nformation <B CLASS="COMMAND" >I</B >nterchange. This is a system for encoding text characters (alphabetic, numeric, and a limited set of symbols) as 7-bit numbers that can be stored and manipulated by computers. Many of the ASCII characters are represented on a standard keyboard.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN1071" HREF="special-chars.html#AEN1071" >[4]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="PROCESSIDDEF" ></A ></P ><P >A <I CLASS="FIRSTTERM" >PID</I >, or <I CLASS="FIRSTTERM" >process ID</I >, is a number assigned to a running process. The <I CLASS="FIRSTTERM" >PID</I >s of running processes may be viewed with a <A HREF="system.html#PPSSREF" >ps</A > command. </P ><P ><A NAME="PROCESSREF" ></A ></P ><P > <TT CLASS="USERINPUT" ><B >Definition:</B ></TT > A <I CLASS="FIRSTTERM" >process</I > is a currently executing command (or program), sometimes referred to as a <I CLASS="FIRSTTERM" >job</I >. </P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN1124" HREF="special-chars.html#AEN1124" >[5]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The shell does the <I CLASS="FIRSTTERM" >brace expansion</I >. The command itself acts upon the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >result</I ></SPAN > of the expansion.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN1199" HREF="special-chars.html#AEN1199" >[6]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Exception: a code block in braces as part of a pipe <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >may</I ></SPAN > run as a <A HREF="subshells.html#SUBSHELLSREF" >subshell</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 ls | { read firstline; read secondline; } 2 # Error. The code block in braces runs as a subshell, 3 #+ so the output of "ls" cannot be passed to variables within the block. 4 echo "First line is $firstline; second line is $secondline" # Won't work. 5 6 # Thanks, S.C.</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN1564" HREF="special-chars.html#AEN1564" >[7]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P > Even as in olden times a <I CLASS="FIRSTTERM" >philtre</I > denoted a potion alleged to have magical transformative powers, so does a UNIX <I CLASS="FIRSTTERM" >filter</I > transform its target in (roughly) analogous fashion. (The coder who comes up with a <SPAN CLASS="QUOTE" >"love philtre"</SPAN > that runs on a Linux machine will likely win accolades and honors.)</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN2107" HREF="special-chars.html#AEN2107" >[8]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Bash stores a list of commands previously issued from the command-line in a <I CLASS="FIRSTTERM" >buffer</I >, or memory space, for recall with the <A HREF="internal.html#BUILTINREF" >builtin</A > <I CLASS="FIRSTTERM" >history</I > commands.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN2198" HREF="special-chars.html#AEN2198" >[9]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >A linefeed (<I CLASS="FIRSTTERM" >newline</I >) is also a whitespace character. This explains why a <I CLASS="FIRSTTERM" >blank line</I >, consisting only of a linefeed, is considered whitespace.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="part2.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="variables.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Basics</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part2.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Introduction to Variables and Parameters</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/subshells.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Subshells</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Applications" HREF="redirapps.html"><LINK REL="NEXT" TITLE="Restricted Shells" HREF="restricted-sh.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="redirapps.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="restricted-sh.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="SUBSHELLS" ></A >Chapter 21. Subshells</H1 ><P ><A NAME="SUBSHELLSREF" ></A ></P ><P >Running a shell script launches a new process, a <I CLASS="FIRSTTERM" >subshell</I >.</P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN18083" ></A ><P ><TT CLASS="USERINPUT" ><B >Definition:</B ></TT > A <I CLASS="FIRSTTERM" >subshell</I > is a <A HREF="othertypesv.html#CHILDREF2" >child process</A > launched by a shell (or <I CLASS="FIRSTTERM" >shell script</I >).</P ></DIV ></TD ></TR ></TABLE ><P >A subshell is a separate instance of the command processor -- the <I CLASS="FIRSTTERM" >shell</I > that gives you the prompt at the console or in an <I CLASS="FIRSTTERM" >xterm</I > window. Just as your commands are interpreted at the command-line prompt, similarly does a script <A HREF="timedate.html#BATCHPROCREF" >batch-process</A > a list of commands. Each shell script running is, in effect, a subprocess (<I CLASS="FIRSTTERM" >child process</I >) of the <A HREF="internal.html#FORKREF" >parent</A > shell.</P ><P >A shell script can itself launch subprocesses. These <I CLASS="FIRSTTERM" >subshells</I > let the script do parallel processing, in effect executing multiple subtasks simultaneously.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # subshell-test.sh 3 4 ( 5 # Inside parentheses, and therefore a subshell . . . 6 while [ 1 ] # Endless loop. 7 do 8 echo "Subshell running . . ." 9 done 10 ) 11 12 # Script will run forever, 13 #+ or at least until terminated by a Ctl-C. 14 15 exit $? # End of script (but will never get here). 16 17 18 19 Now, run the script: 20 sh subshell-test.sh 21 22 And, while the script is running, from a different xterm: 23 ps -ef | grep subshell-test.sh 24 25 UID PID PPID C STIME TTY TIME CMD 26 500 2698 2502 0 14:26 pts/4 00:00:00 sh subshell-test.sh 27 500 2699 2698 21 14:26 pts/4 00:00:24 sh subshell-test.sh 28 29 ^^^^ 30 31 Analysis: 32 PID 2698, the script, launched PID 2699, the subshell. 33 34 Note: The "UID ..." line would be filtered out by the "grep" command, 35 but is shown here for illustrative purposes.</PRE ></TD ></TR ></TABLE > </P ><P >In general, an <A HREF="external.html#EXTERNALREF" >external command</A > in a script <A HREF="internal.html#FORKREF" >forks off</A > a subprocess, <A NAME="AEN18102" HREF="#FTN.AEN18102" >[1]</A > whereas a Bash <A HREF="internal.html#BUILTINREF" >builtin</A > does not. For this reason, builtins execute more quickly and use fewer system resources than their external command equivalents.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="SUBSHELLPARENS1" ></A >Command List within Parentheses</B ></P ><DL ><DT >( command1; command2; command3; ... )</DT ><DD ><P >A command list embedded between <TT CLASS="REPLACEABLE" ><I >parentheses</I ></TT > runs as a subshell.</P ></DD ></DL ></DIV ><P ><A NAME="PARVIS" ></A >Variables in a subshell are <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > visible outside the block of code in the subshell. They are not accessible to the <A HREF="internal.html#FORKREF" >parent process</A >, to the shell that launched the subshell. These are, in effect, variables <A HREF="localvar.html#LOCALREF" >local</A > to the <I CLASS="FIRSTTERM" >child process</I >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SUBSHELL" ></A ><P ><B >Example 21-1. Variable scope in a subshell</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # subshell.sh 3 4 echo 5 6 echo "We are outside the subshell." 7 echo "Subshell level OUTSIDE subshell = $BASH_SUBSHELL" 8 # Bash, version 3, adds the new $BASH_SUBSHELL variable. 9 echo; echo 10 11 outer_variable=Outer 12 global_variable= 13 # Define global variable for "storage" of 14 #+ value of subshell variable. 15 16 ( 17 echo "We are inside the subshell." 18 echo "Subshell level INSIDE subshell = $BASH_SUBSHELL" 19 inner_variable=Inner 20 21 echo "From inside subshell, \"inner_variable\" = $inner_variable" 22 echo "From inside subshell, \"outer\" = $outer_variable" 23 24 global_variable="$inner_variable" # Will this allow "exporting" 25 #+ a subshell variable? 26 ) 27 28 echo; echo 29 echo "We are outside the subshell." 30 echo "Subshell level OUTSIDE subshell = $BASH_SUBSHELL" 31 echo 32 33 if [ -z "$inner_variable" ] 34 then 35 echo "inner_variable undefined in main body of shell" 36 else 37 echo "inner_variable defined in main body of shell" 38 fi 39 40 echo "From main body of shell, \"inner_variable\" = $inner_variable" 41 # $inner_variable will show as blank (uninitialized) 42 #+ because variables defined in a subshell are "local variables". 43 # Is there a remedy for this? 44 echo "global_variable = "$global_variable"" # Why doesn't this work? 45 46 echo 47 48 # ======================================================================= 49 50 # Additionally ... 51 52 echo "-----------------"; echo 53 54 var=41 # Global variable. 55 56 ( let "var+=1"; echo "\$var INSIDE subshell = $var" ) # 42 57 58 echo "\$var OUTSIDE subshell = $var" # 41 59 # Variable operations inside a subshell, even to a GLOBAL variable 60 #+ do not affect the value of the variable outside the subshell! 61 62 63 exit 0 64 65 # Question: 66 # -------- 67 # Once having exited a subshell, 68 #+ is there any way to reenter that very same subshell 69 #+ to modify or access the subshell variables?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="variables2.html#BASHPIDREF" >$BASHPID</A > and <A HREF="gotchas.html#SUBPIT" >Example 34-2</A >.</P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN18127" ></A ><P ><A NAME="SCOPEREF" ></A ></P ><P ><TT CLASS="USERINPUT" ><B >Definition:</B ></TT > The <I CLASS="FIRSTTERM" >scope</I > of a variable is the context in which it has meaning, in which it has a <I CLASS="FIRSTTERM" >value</I > that can be referenced. For example, the scope of a <A HREF="localvar.html#LOCALREF1" >local variable</A > lies only within the function, block of code, or subshell within which it is defined, while the scope of a <I CLASS="FIRSTTERM" >global</I > variable is the entire script in which it appears.</P ></DIV ></TD ></TR ></TABLE ><P ><A NAME="SUBSHNLEVREF" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >While the <A HREF="variables2.html#BASHSUBSHELLREF" >$BASH_SUBSHELL</A > internal variable indicates the nesting level of a subshell, the <A HREF="variables2.html#SHLVLREF" >$SHLVL</A > variable <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >shows no change</I ></SPAN > within a subshell.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo " \$BASH_SUBSHELL outside subshell = $BASH_SUBSHELL" # 0 2 ( echo " \$BASH_SUBSHELL inside subshell = $BASH_SUBSHELL" ) # 1 3 ( ( echo " \$BASH_SUBSHELL inside nested subshell = $BASH_SUBSHELL" ) ) # 2 4 # ^ ^ *** nested *** ^ ^ 5 6 echo 7 8 echo " \$SHLVL outside subshell = $SHLVL" # 3 9 ( echo " \$SHLVL inside subshell = $SHLVL" ) # 3 (No change!)</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><P >Directory changes made in a subshell do not carry over to the parent shell.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ALLPROFS" ></A ><P ><B >Example 21-2. List User Profiles</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # allprofs.sh: Print all user profiles. 3 4 # This script written by Heiner Steven, and modified by the document author. 5 6 FILE=.bashrc # File containing user profile, 7 #+ was ".profile" in original script. 8 9 for home in `awk -F: '{print $6}' /etc/passwd` 10 do 11 [ -d "$home" ] || continue # If no home directory, go to next. 12 [ -r "$home" ] || continue # If not readable, go to next. 13 (cd $home; [ -e $FILE ] && less $FILE) 14 done 15 16 # When script terminates, there is no need to 'cd' back to original directory, 17 #+ because 'cd $home' takes place in a subshell. 18 19 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >A subshell may be used to set up a <SPAN CLASS="QUOTE" >"dedicated environment"</SPAN > for a command group. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 COMMAND1 2 COMMAND2 3 COMMAND3 4 ( 5 IFS=: 6 PATH=/bin 7 unset TERMINFO 8 set -C 9 shift 5 10 COMMAND4 11 COMMAND5 12 exit 3 # Only exits the subshell! 13 ) 14 # The parent shell has not been affected, and the environment is preserved. 15 COMMAND6 16 COMMAND7</PRE ></TD ></TR ></TABLE > As seen here, the <A HREF="internal.html#EXITREF" >exit</A > command only terminates the subshell in which it is running, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > the parent shell or script.</P ><P >One application of such a <SPAN CLASS="QUOTE" >"dedicated environment"</SPAN > is testing whether a variable is defined. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if (set -u; : $variable) 2> /dev/null 2 then 3 echo "Variable is set." 4 fi # Variable has been set in current script, 5 #+ or is an an internal Bash variable, 6 #+ or is present in environment (has been exported). 7 8 # Could also be written [[ ${variable-x} != x || ${variable-y} != y ]] 9 # or [[ ${variable-x} != x$variable ]] 10 # or [[ ${variable+x} = x ]] 11 # or [[ ${variable-x} != x ]]</PRE ></TD ></TR ></TABLE ></P ><P >Another application is checking for a lock file: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if (set -C; : > lock_file) 2> /dev/null 2 then 3 : # lock_file didn't exist: no user running the script 4 else 5 echo "Another user is already running that script." 6 exit 65 7 fi 8 9 # Code snippet by Stéphane Chazelas, 10 #+ with modifications by Paulo Marcel Coelho Aragao.</PRE ></TD ></TR ></TABLE > </P ><P >+</P ><P >Processes may execute in parallel within different subshells. This permits breaking a complex task into subcomponents processed concurrently.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="PARALLEL-PROCESSES" ></A ><P ><B >Example 21-3. Running parallel processes in subshells</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 (cat list1 list2 list3 | sort | uniq > list123) & 2 (cat list4 list5 list6 | sort | uniq > list456) & 3 # Merges and sorts both sets of lists simultaneously. 4 # Running in background ensures parallel execution. 5 # 6 # Same effect as 7 # cat list1 list2 list3 | sort | uniq > list123 & 8 # cat list4 list5 list6 | sort | uniq > list456 & 9 10 wait # Don't execute the next command until subshells finish. 11 12 diff list123 list456</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Redirecting I/O to a subshell uses the <SPAN CLASS="QUOTE" >"|"</SPAN > pipe operator, as in <TT CLASS="USERINPUT" ><B >ls -al | (command)</B ></TT >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A code block between <A HREF="special-chars.html#CODEBLOCKREF" >curly brackets</A > does <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > launch a subshell.</P ><P >{ command1; command2; command3; . . . commandN; }</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var1=23 2 echo "$var1" # 23 3 4 { var1=76; } 5 echo "$var1" # 76</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN18102" HREF="subshells.html#AEN18102" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >An external command invoked with an <A HREF="internal.html#EXECREF" >exec</A > does <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > (usually) fork off a subprocess / subshell.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="redirapps.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="restricted-sh.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Applications</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Restricted Shells</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/system.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >System and Administrative Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Commands" HREF="part4.html"><LINK REL="PREVIOUS" TITLE="Miscellaneous Commands" HREF="extmisc.html"><LINK REL="NEXT" TITLE="Advanced Topics" HREF="part5.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="extmisc.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="part5.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="SYSTEM" ></A >Chapter 17. System and Administrative Commands</H1 ><P >The startup and shutdown scripts in <TT CLASS="FILENAME" >/etc/rc.d</TT > illustrate the uses (and usefulness) of many of these comands. These are usually invoked by <I CLASS="FIRSTTERM" >root</I > and used for system maintenance or emergency filesystem repairs. Use with caution, as some of these commands may damage your system if misused.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="USERSGROUPS1" ></A >Users and Groups</B ></P ><DL ><DT ><A NAME="USERSREF" ></A ><B CLASS="COMMAND" >users</B ></DT ><DD ><P >Show all logged on users. This is the approximate equivalent of <B CLASS="COMMAND" >who -q</B >.</P ></DD ><DT ><A NAME="GROUPSCMDREF" ></A ><B CLASS="COMMAND" >groups</B ></DT ><DD ><P >Lists the current user and the groups she belongs to. This corresponds to the <A HREF="variables2.html#GROUPSREF" >$GROUPS</A > internal variable, but gives the group names, rather than the numbers.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >groups</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bozita cdrom cdwriter audio xgrp</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $GROUPS</B ></TT > <TT CLASS="COMPUTEROUTPUT" >501</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="CHOWNREF" ></A ><B CLASS="COMMAND" >chown</B >, <A NAME="CHGRPREF" ></A ><B CLASS="COMMAND" >chgrp</B ></DT ><DD ><P >The <B CLASS="COMMAND" >chown</B > command changes the ownership of a file or files. This command is a useful method that <I CLASS="FIRSTTERM" >root</I > can use to shift file ownership from one user to another. An ordinary user may not change the ownership of files, not even her own files. <A NAME="AEN14695" HREF="#FTN.AEN14695" >[1]</A > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >chown bozo *.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" ></TT > </PRE ></TD ></TR ></TABLE > </P ><P >The <B CLASS="COMMAND" >chgrp</B > command changes the <TT CLASS="REPLACEABLE" ><I >group</I ></TT > ownership of a file or files. You must be owner of the file(s) as well as a member of the destination group (or <I CLASS="FIRSTTERM" >root</I >) to use this operation. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 chgrp --recursive dunderheads *.data 2 # The "dunderheads" group will now own all the "*.data" files 3 #+ all the way down the $PWD directory tree (that's what "recursive" means).</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="USERADDREF" ></A ><B CLASS="COMMAND" >useradd</B >, <B CLASS="COMMAND" >userdel</B ></DT ><DD ><P >The <B CLASS="COMMAND" >useradd</B > administrative command adds a user account to the system and creates a home directory for that particular user, if so specified. The corresponding <B CLASS="COMMAND" >userdel</B > command removes a user account from the system <A NAME="AEN14727" HREF="#FTN.AEN14727" >[2]</A > and deletes associated files.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >adduser</B > command is a synonym for <B CLASS="COMMAND" >useradd</B > and is usually a symbolic link to it.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="USERMODREF" ></A ><B CLASS="COMMAND" >usermod</B ></DT ><DD ><P >Modify a user account. Changes may be made to the password, group membership, expiration date, and other attributes of a given user's account. With this command, a user's password may be locked, which has the effect of disabling the account.</P ></DD ><DT ><A NAME="GROUPMODREF" ></A ><B CLASS="COMMAND" >groupmod</B ></DT ><DD ><P >Modify a given group. The group name and/or ID number may be changed using this command.</P ></DD ><DT ><A NAME="IDREF" ></A ><B CLASS="COMMAND" >id</B ></DT ><DD ><P >The <B CLASS="COMMAND" >id</B > command lists the real and effective user IDs and the group IDs of the user associated with the current process. This is the counterpart to the <A HREF="variables2.html#UIDREF" >$UID</A >, <A HREF="variables2.html#EUIDREF" >$EUID</A >, and <A HREF="variables2.html#GROUPSREF" >$GROUPS</A > internal Bash variables.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >id</B ></TT > <TT CLASS="COMPUTEROUTPUT" >uid=501(bozo) gid=501(bozo) groups=501(bozo),22(cdrom),80(cdwriter),81(audio)</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $UID</B ></TT > <TT CLASS="COMPUTEROUTPUT" >501</TT ></PRE ></TD ></TR ></TABLE ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >id</B > command shows the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >effective</I ></SPAN > IDs only when they differ from the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >real</I ></SPAN > ones.</P ></TD ></TR ></TABLE ></DIV ><P >Also see <A HREF="variables2.html#AMIROOT" >Example 9-5</A >.</P ></DD ><DT ><A NAME="LIDREF" ></A ><B CLASS="COMMAND" >lid</B ></DT ><DD ><P >The <I CLASS="FIRSTTERM" >lid</I > (list ID) command shows the group(s) that a given user belongs to, or alternately, the users belonging to a given group. May be invoked only by root.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >lid bozo</B ></TT > <TT CLASS="COMPUTEROUTPUT" > bozo(gid=500)</TT > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >lid daemon</B ></TT > <TT CLASS="COMPUTEROUTPUT" > bin(gid=1) daemon(gid=2) adm(gid=4) lp(gid=7)</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="WHOREF" ></A ><B CLASS="COMMAND" >who</B ></DT ><DD ><P >Show all users logged on to the system.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >who</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bozo tty1 Apr 27 17:45 bozo pts/0 Apr 27 17:46 bozo pts/1 Apr 27 17:47 bozo pts/2 Apr 27 17:49</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The <TT CLASS="OPTION" >-m</TT > gives detailed information about only the current user. Passing any two arguments to <B CLASS="COMMAND" >who</B > is the equivalent of <B CLASS="COMMAND" >who -m</B >, as in <B CLASS="COMMAND" >who am i</B > or <B CLASS="COMMAND" >who The Man</B >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >who -m</B ></TT > <TT CLASS="COMPUTEROUTPUT" >localhost.localdomain!bozo pts/2 Apr 27 17:49</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="WHOAMIREF" ></A ><B CLASS="COMMAND" >whoami</B > is similar to <B CLASS="COMMAND" >who -m</B >, but only lists the user name.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >whoami</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bozo</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="WREF" ></A ><B CLASS="COMMAND" >w</B ></DT ><DD ><P >Show all logged on users and the processes belonging to them. This is an extended version of <B CLASS="COMMAND" >who</B >. The output of <B CLASS="COMMAND" >w</B > may be piped to <A HREF="textproc.html#GREPREF" >grep</A > to find a specific user and/or process.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >w | grep startx</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bozo tty1 - 4:22pm 6:41 4.47s 0.45s startx</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="LOGNAMEREF" ></A ><B CLASS="COMMAND" >logname</B ></DT ><DD ><P >Show current user's login name (as found in <TT CLASS="FILENAME" >/var/run/utmp</TT >). This is a near-equivalent to <A HREF="system.html#WHOAMIREF" >whoami</A >, above.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >logname</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bozo</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >whoami</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bozo</TT ></PRE ></TD ></TR ></TABLE ><P >However . . .</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >su</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Password: ......</TT > <TT CLASS="PROMPT" >bash# </TT ><TT CLASS="USERINPUT" ><B >whoami</B ></TT > <TT CLASS="COMPUTEROUTPUT" >root</TT > <TT CLASS="PROMPT" >bash# </TT ><TT CLASS="USERINPUT" ><B >logname</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bozo</TT ></PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >While <B CLASS="COMMAND" >logname</B > prints the name of the logged in user, <B CLASS="COMMAND" >whoami</B > gives the name of the user attached to the current process. As we have just seen, sometimes these are not the same.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SUREF" ></A ><B CLASS="COMMAND" >su</B ></DT ><DD ><P >Runs a program or script as a <B CLASS="COMMAND" >s</B >ubstitute <B CLASS="COMMAND" >u</B >ser. <B CLASS="COMMAND" >su rjones</B > starts a shell as user <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >rjones</I ></SPAN >. A naked <B CLASS="COMMAND" >su</B > defaults to <I CLASS="FIRSTTERM" >root</I >. See <A HREF="contributed-scripts.html#FIFO" >Example A-14</A >.</P ></DD ><DT ><A NAME="SUDOREF" ></A ><B CLASS="COMMAND" >sudo</B ></DT ><DD ><P >Runs a command as <I CLASS="FIRSTTERM" >root</I > (or another user). This may be used in a script, thus permitting a <I CLASS="FIRSTTERM" >regular user</I > to run the script.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Some commands. 4 sudo cp /root/secretfile /home/bozo/secret 5 # Some more commands.</PRE ></TD ></TR ></TABLE ></P ><P >The file <TT CLASS="FILENAME" >/etc/sudoers</TT > holds the names of users permitted to invoke <B CLASS="COMMAND" >sudo</B >.</P ></DD ><DT ><A NAME="PASSWDREF" ></A ><B CLASS="COMMAND" >passwd</B ></DT ><DD ><P >Sets, changes, or manages a user's password.</P ><P >The <B CLASS="COMMAND" >passwd</B > command can be used in a script, but probably <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >should not</I ></SPAN > be.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SETNEWPW" ></A ><P ><B >Example 17-1. Setting a new password</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # setnew-password.sh: For demonstration purposes only. 3 # Not a good idea to actually run this script. 4 # This script must be run as root. 5 6 ROOT_UID=0 # Root has $UID 0. 7 E_WRONG_USER=65 # Not root? 8 9 E_NOSUCHUSER=70 10 SUCCESS=0 11 12 13 if [ "$UID" -ne "$ROOT_UID" ] 14 then 15 echo; echo "Only root can run this script."; echo 16 exit $E_WRONG_USER 17 else 18 echo 19 echo "You should know better than to run this script, root." 20 echo "Even root users get the blues... " 21 echo 22 fi 23 24 25 username=bozo 26 NEWPASSWORD=security_violation 27 28 # Check if bozo lives here. 29 grep -q "$username" /etc/passwd 30 if [ $? -ne $SUCCESS ] 31 then 32 echo "User $username does not exist." 33 echo "No password changed." 34 exit $E_NOSUCHUSER 35 fi 36 37 echo "$NEWPASSWORD" | passwd --stdin "$username" 38 # The '--stdin' option to 'passwd' permits 39 #+ getting a new password from stdin (or a pipe). 40 41 echo; echo "User $username's password changed!" 42 43 # Using the 'passwd' command in a script is dangerous. 44 45 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The <B CLASS="COMMAND" >passwd</B > command's <TT CLASS="OPTION" >-l</TT >, <TT CLASS="OPTION" >-u</TT >, and <TT CLASS="OPTION" >-d</TT > options permit locking, unlocking, and deleting a user's password. Only <I CLASS="FIRSTTERM" >root</I > may use these options.</P ></DD ><DT ><A NAME="ACREF" ></A ><B CLASS="COMMAND" >ac</B ></DT ><DD ><P >Show users' logged in time, as read from <TT CLASS="FILENAME" >/var/log/wtmp</TT >. This is one of the GNU accounting utilities.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ac</B ></TT > <TT CLASS="COMPUTEROUTPUT" > total 68.08</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="LASTREF" ></A ><B CLASS="COMMAND" >last</B ></DT ><DD ><P >List <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >last</I ></SPAN > logged in users, as read from <TT CLASS="FILENAME" >/var/log/wtmp</TT >. This command can also show remote logins.</P ><P >For example, to show the last few times the system rebooted:</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >last reboot</B ></TT > <TT CLASS="COMPUTEROUTPUT" >reboot system boot 2.6.9-1.667 Fri Feb 4 18:18 (00:02) reboot system boot 2.6.9-1.667 Fri Feb 4 15:20 (01:27) reboot system boot 2.6.9-1.667 Fri Feb 4 12:56 (00:49) reboot system boot 2.6.9-1.667 Thu Feb 3 21:08 (02:17) . . . wtmp begins Tue Feb 1 12:50:09 2005</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="NEWGRPREF" ></A ><B CLASS="COMMAND" >newgrp</B ></DT ><DD ><P >Change user's <I CLASS="FIRSTTERM" >group ID</I > without logging out. This permits access to the new group's files. Since users may be members of multiple groups simultaneously, this command finds only limited use.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Kurt Glaesemann points out that the <I CLASS="FIRSTTERM" >newgrp</I > command could prove helpful in setting the default group permissions for files a user writes. However, the <A HREF="system.html#CHGRPREF" >chgrp</A > command might be more convenient for this purpose.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="TERMINALSSYS1" ></A >Terminals</B ></P ><DL ><DT ><A NAME="TTYREF" ></A ><B CLASS="COMMAND" >tty</B ></DT ><DD ><P >Echoes the name (filename) of the current user's terminal. Note that each separate <I CLASS="FIRSTTERM" >xterm</I > window counts as a different terminal.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >tty</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/dev/pts/1</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="STTYREF" ></A ><B CLASS="COMMAND" >stty</B ></DT ><DD ><P >Shows and/or changes terminal settings. This complex command, used in a script, can control terminal behavior and the way output displays. See the info page, and study it carefully.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ERASE" ></A ><P ><B >Example 17-2. Setting an <I CLASS="FIRSTTERM" >erase</I > character</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # erase.sh: Using "stty" to set an erase character when reading input. 3 4 echo -n "What is your name? " 5 read name # Try to backspace 6 #+ to erase characters of input. 7 # Problems? 8 echo "Your name is $name." 9 10 stty erase '#' # Set "hashmark" (#) as erase character. 11 echo -n "What is your name? " 12 read name # Use # to erase last character typed. 13 echo "Your name is $name." 14 15 exit 0 16 17 # Even after the script exits, the new key value remains set. 18 # Exercise: How would you reset the erase character to the default value?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="SECRETPW" ></A ><P ><B >Example 17-3. <I CLASS="FIRSTTERM" >secret password</I >: Turning off terminal echoing </B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # secret-pw.sh: secret password 3 4 echo 5 echo -n "Enter password " 6 read passwd 7 echo "password is $passwd" 8 echo -n "If someone had been looking over your shoulder, " 9 echo "your password would have been compromised." 10 11 echo && echo # Two line-feeds in an "and list." 12 13 14 stty -echo # Turns off screen echo. 15 # May also be done with 16 # read -sp passwd 17 # A big Thank You to Leigh James for pointing this out. 18 19 echo -n "Enter password again " 20 read passwd 21 echo 22 echo "password is $passwd" 23 echo 24 25 stty echo # Restores screen echo. 26 27 exit 0 28 29 # Do an 'info stty' for more on this useful-but-tricky command.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >A creative use of <B CLASS="COMMAND" >stty</B > is detecting a user keypress (without hitting <B CLASS="KEYCAP" >ENTER</B >).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="KEYPRESS" ></A ><P ><B >Example 17-4. Keypress detection</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # keypress.sh: Detect a user keypress ("hot keys"). 3 4 echo 5 6 old_tty_settings=$(stty -g) # Save old settings (why?). 7 stty -icanon 8 Keypress=$(head -c1) # or $(dd bs=1 count=1 2> /dev/null) 9 # on non-GNU systems 10 11 echo 12 echo "Key pressed was \""$Keypress"\"." 13 echo 14 15 stty "$old_tty_settings" # Restore old settings. 16 17 # Thanks, Stephane Chazelas. 18 19 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Also see <A HREF="variables2.html#TIMEOUT" >Example 9-3</A > and <A HREF="contributed-scripts.html#STOPWATCH" >Example A-43</A >.</P ><P ><A NAME="TERMINALSREF" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN15053" ></A ><P ><B >terminals and modes</B ></P ><P >Normally, a terminal works in the <I CLASS="FIRSTTERM" >canonical</I > mode. When a user hits a key, the resulting character does not immediately go to the program actually running in this terminal. A buffer local to the terminal stores keystrokes. When the user hits the <B CLASS="KEYCAP" >ENTER</B > key, this sends all the stored keystrokes to the program running. There is even a basic line editor inside the terminal.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >stty -a</B ></TT > <TT CLASS="COMPUTEROUTPUT" >speed 9600 baud; rows 36; columns 96; line = 0; intr = ^C; quit = ^\; erase = ^H; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W; lnext = ^V; flush = ^O; ... isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Using canonical mode, it is possible to redefine the special keys for the local terminal line editor. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat > filexxx</B ></TT > <TT CLASS="USERINPUT" ><B >wha<ctl-W>I<ctl-H>foo bar<ctl-U>hello world<ENTER></B ></TT > <TT CLASS="USERINPUT" ><B ><ctl-D></B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat filexxx</B ></TT > <TT CLASS="COMPUTEROUTPUT" >hello world</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >wc -c < filexxx</B ></TT > <TT CLASS="COMPUTEROUTPUT" >12</TT > </PRE ></TD ></TR ></TABLE > The process controlling the terminal receives only 12 characters (11 alphabetic ones, plus a newline), although the user hit 26 keys. </P ><P >In non-canonical (<SPAN CLASS="QUOTE" >"raw"</SPAN >) mode, every key hit (including special editing keys such as <B CLASS="KEYCAP" >ctl-H</B >) sends a character immediately to the controlling process.</P ><P >The Bash prompt disables both <TT CLASS="OPTION" >icanon</TT > and <TT CLASS="OPTION" >echo</TT >, since it replaces the basic terminal line editor with its own more elaborate one. For example, when you hit <B CLASS="KEYCAP" >ctl-A</B > at the Bash prompt, there's no <B CLASS="KEYCAP" >^A</B > echoed by the terminal, but Bash gets a <B CLASS="KEYCAP" >\1</B > character, interprets it, and moves the cursor to the begining of the line.</P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Stéphane Chazelas</I ></SPAN ></P ></DIV ></TD ></TR ></TABLE ></DD ><DT ><A NAME="SETTERMREF" ></A ><B CLASS="COMMAND" >setterm</B ></DT ><DD ><P >Set certain terminal attributes. This command writes to its terminal's <TT CLASS="FILENAME" >stdout</TT > a string that changes the behavior of that terminal.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >setterm -cursor off</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bash$</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The <B CLASS="COMMAND" >setterm</B > command can be used within a script to change the appearance of text written to <TT CLASS="FILENAME" >stdout</TT >, although there are certainly <A HREF="colorizing.html#COLORIZINGREF" >better tools</A > available for this purpose.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 setterm -bold on 2 echo bold hello 3 4 setterm -bold off 5 echo normal hello</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="TSETREF" ></A ><B CLASS="COMMAND" >tset</B ></DT ><DD ><P >Show or initialize terminal settings. This is a less capable version of <B CLASS="COMMAND" >stty</B >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >tset -r</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Terminal type is xterm-xfree86. Kill is control-U (^U). Interrupt is control-C (^C).</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="SETSERIALREF" ></A ><B CLASS="COMMAND" >setserial</B ></DT ><DD ><P >Set or display serial port parameters. This command must be run by <I CLASS="FIRSTTERM" >root</I > and is usually found in a system setup script.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # From /etc/pcmcia/serial script: 2 3 IRQ=`setserial /dev/$DEVICE | sed -e 's/.*IRQ: //'` 4 setserial /dev/$DEVICE irq 0 ; setserial /dev/$DEVICE irq $IRQ</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="GETTYREF" ></A ><B CLASS="COMMAND" >getty</B >, <A NAME="AGETTYREF" ></A ><B CLASS="COMMAND" >agetty</B ></DT ><DD ><P >The initialization process for a terminal uses <B CLASS="COMMAND" >getty</B > or <B CLASS="COMMAND" >agetty</B > to set it up for login by a user. These commands are not used within user shell scripts. Their scripting counterpart is <B CLASS="COMMAND" >stty</B >.</P ></DD ><DT ><A NAME="MESGREF" ></A ><B CLASS="COMMAND" >mesg</B ></DT ><DD ><P >Enables or disables write access to the current user's terminal. Disabling access would prevent another user on the network to <A HREF="communications.html#WRITEREF" >write</A > to the terminal.</P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It can be quite annoying to have a message about ordering pizza suddenly appear in the middle of the text file you are editing. On a multi-user network, you might therefore wish to disable write access to your terminal when you need to avoid interruptions.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="WALLREF" ></A ><B CLASS="COMMAND" >wall</B ></DT ><DD ><P >This is an acronym for <SPAN CLASS="QUOTE" >"<A HREF="communications.html#WRITEREF" >write</A > all,"</SPAN > i.e., sending a message to all users at every terminal logged into the network. It is primarily a system administrator's tool, useful, for example, when warning everyone that the system will shortly go down due to a problem (see <A HREF="here-docs.html#EX70" >Example 19-1</A >).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >wall System going down for maintenance in 5 minutes!</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Broadcast message from bozo (pts/1) Sun Jul 8 13:53:27 2001... System going down for maintenance in 5 minutes!</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >If write access to a particular terminal has been disabled with <B CLASS="COMMAND" >mesg</B >, then <B CLASS="COMMAND" >wall</B > cannot send a message to that terminal.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="STATISTICSSYS1" ></A >Information and Statistics</B ></P ><DL ><DT ><A NAME="UNAMEREF" ></A ><B CLASS="COMMAND" >uname</B ></DT ><DD ><P >Output system specifications (OS, kernel version, etc.) to <TT CLASS="FILENAME" >stdout</TT >. Invoked with the <TT CLASS="OPTION" >-a</TT > option, gives verbose system info (see <A HREF="moreadv.html#EX41" >Example 16-5</A >). The <TT CLASS="OPTION" >-s</TT > option shows only the OS type.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >uname</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Linux</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >uname -s</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Linux</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >uname -a</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Linux iron.bozo 2.6.15-1.2054_FC5 #1 Tue Mar 14 15:48:33 EST 2006 i686 i686 i386 GNU/Linux</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="ARCHREF" ></A ><B CLASS="COMMAND" >arch</B ></DT ><DD ><P >Show system architecture. Equivalent to <B CLASS="COMMAND" >uname -m</B >. See <A HREF="testbranch.html#CASECMD" >Example 11-27</A >.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >arch</B ></TT > <TT CLASS="COMPUTEROUTPUT" >i686</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >uname -m</B ></TT > <TT CLASS="COMPUTEROUTPUT" >i686</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="LASTCOMMREF" ></A ><B CLASS="COMMAND" >lastcomm</B ></DT ><DD ><P >Gives information about previous commands, as stored in the <TT CLASS="FILENAME" >/var/account/pacct</TT > file. Command name and user name can be specified by options. This is one of the GNU accounting utilities.</P ></DD ><DT ><A NAME="LASTLOGREF" ></A ><B CLASS="COMMAND" >lastlog</B ></DT ><DD ><P >List the last login time of all system users. This references the <TT CLASS="FILENAME" >/var/log/lastlog</TT > file.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lastlog</B ></TT > <TT CLASS="COMPUTEROUTPUT" >root tty1 Fri Dec 7 18:43:21 -0700 2001 bin **Never logged in** daemon **Never logged in** ... bozo tty1 Sat Dec 8 21:14:29 -0700 2001</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lastlog | grep root</B ></TT > <TT CLASS="COMPUTEROUTPUT" >root tty1 Fri Dec 7 18:43:21 -0700 2001</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This command will fail if the user invoking it does not have read permission for the <TT CLASS="FILENAME" >/var/log/lastlog</TT > file.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="LSOFREF" ></A ><B CLASS="COMMAND" >lsof</B ></DT ><DD ><P >List open files. This command outputs a detailed table of all currently open files and gives information about their owner, size, the processes associated with them, and more. Of course, <B CLASS="COMMAND" >lsof</B > may be piped to <A HREF="textproc.html#GREPREF" >grep</A > and/or <A HREF="awk.html#AWKREF" >awk</A > to parse and analyze its results.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lsof</B ></TT > <TT CLASS="COMPUTEROUTPUT" >COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME init 1 root mem REG 3,5 30748 30303 /sbin/init init 1 root mem REG 3,5 73120 8069 /lib/ld-2.1.3.so init 1 root mem REG 3,5 931668 8075 /lib/libc-2.1.3.so cardmgr 213 root mem REG 3,5 36956 30357 /sbin/cardmgr ...</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The <B CLASS="COMMAND" >lsof</B > command is a useful, if complex administrative tool. If you are unable to dismount a filesystem and get an error message that it is still in use, then running <I CLASS="FIRSTTERM" >lsof</I > helps determine which files are still open on that filesystem. The <TT CLASS="OPTION" >-i</TT > option lists open network socket files, and this can help trace intrusion or hack attempts.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lsof -an -i tcp</B ></TT > <TT CLASS="COMPUTEROUTPUT" >COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME firefox 2330 bozo 32u IPv4 9956 TCP 66.0.118.137:57596->67.112.7.104:http ... firefox 2330 bozo 38u IPv4 10535 TCP 66.0.118.137:57708->216.79.48.24:http ...</TT > </PRE ></TD ></TR ></TABLE > </P ><P >See <A HREF="networkprogramming.html#IPADDRESSES" >Example 30-2</A > for an effective use of <B CLASS="COMMAND" >lsof</B >.</P ></DD ><DT ><A NAME="STRACEREF" ></A ><B CLASS="COMMAND" >strace</B ></DT ><DD ><P ><B CLASS="COMMAND" >S</B >ystem <B CLASS="COMMAND" >trace</B >: diagnostic and debugging tool for tracing <I CLASS="FIRSTTERM" >system calls</I > and signals. This command and <B CLASS="COMMAND" >ltrace</B >, following, are useful for diagnosing why a given program or package fails to run . . . perhaps due to missing libraries or related causes.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >strace df</B ></TT > <TT CLASS="COMPUTEROUTPUT" >execve("/bin/df", ["df"], [/* 45 vars */]) = 0 uname({sys="Linux", node="bozo.localdomain", ...}) = 0 brk(0) = 0x804f5e4 ...</TT > </PRE ></TD ></TR ></TABLE > </P ><P >This is the Linux equivalent of the Solaris <B CLASS="COMMAND" >truss</B > command.</P ></DD ><DT ><A NAME="LTRACEREF" ></A ><B CLASS="COMMAND" >ltrace</B ></DT ><DD ><P ><B CLASS="COMMAND" >L</B >ibrary <B CLASS="COMMAND" >trace</B >: diagnostic and debugging tool that traces <I CLASS="FIRSTTERM" >library calls</I > invoked by a given command.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ltrace df</B ></TT > <TT CLASS="COMPUTEROUTPUT" >__libc_start_main(0x804a910, 1, 0xbfb589a4, 0x804fb70, 0x804fb68 <unfinished ...>: setlocale(6, "") = "en_US.UTF-8" bindtextdomain("coreutils", "/usr/share/locale") = "/usr/share/locale" textdomain("coreutils") = "coreutils" __cxa_atexit(0x804b650, 0, 0, 0x8052bf0, 0xbfb58908) = 0 getenv("DF_BLOCK_SIZE") = NULL ...</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="NCREF" ></A ><B CLASS="COMMAND" >nc</B ></DT ><DD ><P >The <B CLASS="COMMAND" >nc</B > (<I CLASS="FIRSTTERM" >netcat</I >) utility is a complete toolkit for connecting to and listening to TCP and UDP ports. It is useful as a diagnostic and testing tool and as a component in simple script-based HTTP clients and servers.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >nc localhost.localdomain 25</B ></TT > <TT CLASS="COMPUTEROUTPUT" >220 localhost.localdomain ESMTP Sendmail 8.13.1/8.13.1; Thu, 31 Mar 2005 15:41:35 -0700</TT ></PRE ></TD ></TR ></TABLE > </P ><P >A real-life <A HREF="process-sub.html#NETCATEXAMPLE" >usage example</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ISCAN" ></A ><P ><B >Example 17-5. Checking a remote server for <I CLASS="FIRSTTERM" >identd</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /bin/sh 2 ## Duplicate DaveG's ident-scan thingie using netcat. Oooh, he'll be p*ssed. 3 ## Args: target port [port port port ...] 4 ## Hose stdout _and_ stderr together. 5 ## 6 ## Advantages: runs slower than ident-scan, giving remote inetd less cause 7 ##+ for alarm, and only hits the few known daemon ports you specify. 8 ## Disadvantages: requires numeric-only port args, the output sleazitude, 9 ##+ and won't work for r-services when coming from high source ports. 10 # Script author: Hobbit <hobbit@avian.org> 11 # Used in ABS Guide with permission. 12 13 # --------------------------------------------------- 14 E_BADARGS=65 # Need at least two args. 15 TWO_WINKS=2 # How long to sleep. 16 THREE_WINKS=3 17 IDPORT=113 # Authentication "tap ident" port. 18 RAND1=999 19 RAND2=31337 20 TIMEOUT0=9 21 TIMEOUT1=8 22 TIMEOUT2=4 23 # --------------------------------------------------- 24 25 case "${2}" in 26 "" ) echo "Need HOST and at least one PORT." ; exit $E_BADARGS ;; 27 esac 28 29 # Ping 'em once and see if they *are* running identd. 30 nc -z -w $TIMEOUT0 "$1" $IDPORT || \ 31 { echo "Oops, $1 isn't running identd." ; exit 0 ; } 32 # -z scans for listening daemons. 33 # -w $TIMEOUT = How long to try to connect. 34 35 # Generate a randomish base port. 36 RP=`expr $$ % $RAND1 + $RAND2` 37 38 TRG="$1" 39 shift 40 41 while test "$1" ; do 42 nc -v -w $TIMEOUT1 -p ${RP} "$TRG" ${1} < /dev/null > /dev/null & 43 PROC=$! 44 sleep $THREE_WINKS 45 echo "${1},${RP}" | nc -w $TIMEOUT2 -r "$TRG" $IDPORT 2>&1 46 sleep $TWO_WINKS 47 48 # Does this look like a lamer script or what . . . ? 49 # ABS Guide author comments: "Ain't really all that bad . . . 50 #+ kinda clever, actually." 51 52 kill -HUP $PROC 53 RP=`expr ${RP} + 1` 54 shift 55 done 56 57 exit $? 58 59 # Notes: 60 # ----- 61 62 # Try commenting out line 30 and running this script 63 #+ with "localhost.localdomain 25" as arguments. 64 65 # For more of Hobbit's 'nc' example scripts, 66 #+ look in the documentation: 67 #+ the /usr/share/doc/nc-X.XX/scripts directory.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P > And, of course, there's Dr. Andrew Tridgell's notorious one-line script in the BitKeeper Affair: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo clone | nc thunk.org 5000 > e2fsprogs.dat</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="FREEREF" ></A ><B CLASS="COMMAND" >free</B ></DT ><DD ><P >Shows memory and cache usage in tabular form. The output of this command lends itself to parsing, using <A HREF="textproc.html#GREPREF" >grep</A >, <A HREF="awk.html#AWKREF" >awk</A > or <B CLASS="COMMAND" >Perl</B >. The <B CLASS="COMMAND" >procinfo</B > command shows all the information that <B CLASS="COMMAND" >free</B > does, and much more.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><B CLASS="COMMAND" >free</B > <TT CLASS="COMPUTEROUTPUT" > total used free shared buffers cached Mem: 30504 28624 1880 15820 1608 16376 -/+ buffers/cache: 10640 19864 Swap: 68540 3128 65412</TT ></PRE ></TD ></TR ></TABLE ><P >To show unused RAM memory:</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><B CLASS="COMMAND" >free | grep Mem | awk '{ print $4 }'</B > <TT CLASS="COMPUTEROUTPUT" >1880</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="PROCINFOREF" ></A ><B CLASS="COMMAND" >procinfo</B ></DT ><DD ><P >Extract and list information and statistics from the <A HREF="devproc.html#DEVPROCREF" ><TT CLASS="FILENAME" >/proc</TT > pseudo-filesystem</A >. This gives a very extensive and detailed listing.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >procinfo | grep Bootup</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Bootup: Wed Mar 21 15:15:50 2001 Load average: 0.04 0.21 0.34 3/47 6829</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="LSDEVREF" ></A ><B CLASS="COMMAND" >lsdev</B ></DT ><DD ><P >List devices, that is, show installed hardware.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lsdev</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Device DMA IRQ I/O Ports ------------------------------------------------ cascade 4 2 dma 0080-008f dma1 0000-001f dma2 00c0-00df fpu 00f0-00ff ide0 14 01f0-01f7 03f6-03f6 ...</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="DUREF" ></A ><B CLASS="COMMAND" >du</B ></DT ><DD ><P >Show (disk) file usage, recursively. Defaults to current working directory, unless otherwise specified.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><B CLASS="COMMAND" >du -ach</B > <TT CLASS="COMPUTEROUTPUT" >1.0k ./wi.sh 1.0k ./tst.sh 1.0k ./random.file 6.0k . 6.0k total</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="DFREF" ></A ><B CLASS="COMMAND" >df</B ></DT ><DD ><P >Shows filesystem usage in tabular form.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><B CLASS="COMMAND" >df</B > <TT CLASS="COMPUTEROUTPUT" >Filesystem 1k-blocks Used Available Use% Mounted on /dev/hda5 273262 92607 166547 36% / /dev/hda8 222525 123951 87085 59% /home /dev/hda7 1408796 1075744 261488 80% /usr</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="DMESGREF" ></A ><B CLASS="COMMAND" >dmesg</B ></DT ><DD ><P >Lists all system bootup messages to <TT CLASS="FILENAME" >stdout</TT >. Handy for debugging and ascertaining which device drivers were installed and which system interrupts in use. The output of <B CLASS="COMMAND" >dmesg</B > may, of course, be parsed with <A HREF="textproc.html#GREPREF" >grep</A >, <A HREF="sedawk.html#SEDREF" >sed</A >, or <A HREF="awk.html#AWKREF" >awk</A > from within a script.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >dmesg | grep hda</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Kernel command line: ro root=/dev/hda2 hda: IBM-DLGA-23080, ATA DISK drive hda: 6015744 sectors (3080 MB) w/96KiB Cache, CHS=746/128/63 hda: hda1 hda2 hda3 < hda5 hda6 hda7 > hda4</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="STATREF" ></A ><B CLASS="COMMAND" >stat</B ></DT ><DD ><P >Gives detailed and verbose <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >stat</I ></SPAN >istics on a given file (even a directory or device file) or set of files.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >stat test.cru</B ></TT > <TT CLASS="COMPUTEROUTPUT" > File: "test.cru" Size: 49970 Allocated Blocks: 100 Filetype: Regular File Mode: (0664/-rw-rw-r--) Uid: ( 501/ bozo) Gid: ( 501/ bozo) Device: 3,8 Inode: 18185 Links: 1 Access: Sat Jun 2 16:40:24 2001 Modify: Sat Jun 2 16:40:24 2001 Change: Sat Jun 2 16:40:24 2001</TT > </PRE ></TD ></TR ></TABLE > </P ><P >If the target file does not exist, <B CLASS="COMMAND" >stat</B > returns an error message.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >stat nonexistent-file</B ></TT > <TT CLASS="COMPUTEROUTPUT" >nonexistent-file: No such file or directory</TT > </PRE ></TD ></TR ></TABLE > </P ><P >In a script, you can use <B CLASS="COMMAND" >stat</B > to extract information about files (and filesystems) and set variables accordingly.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # fileinfo2.sh 3 4 # Per suggestion of Joël Bourquard and . . . 5 # http://www.linuxquestions.org/questions/showthread.php?t=410766 6 7 8 FILENAME=testfile.txt 9 file_name=$(stat -c%n "$FILENAME") # Same as "$FILENAME" of course. 10 file_owner=$(stat -c%U "$FILENAME") 11 file_size=$(stat -c%s "$FILENAME") 12 # Certainly easier than using "ls -l $FILENAME" 13 #+ and then parsing with sed. 14 file_inode=$(stat -c%i "$FILENAME") 15 file_type=$(stat -c%F "$FILENAME") 16 file_access_rights=$(stat -c%A "$FILENAME") 17 18 echo "File name: $file_name" 19 echo "File owner: $file_owner" 20 echo "File size: $file_size" 21 echo "File inode: $file_inode" 22 echo "File type: $file_type" 23 echo "File access rights: $file_access_rights" 24 25 exit 0 26 27 sh fileinfo2.sh 28 29 File name: testfile.txt 30 File owner: bozo 31 File size: 418 32 File inode: 1730378 33 File type: regular file 34 File access rights: -rw-rw-r--</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="VMSTATREF" ></A ><B CLASS="COMMAND" >vmstat</B ></DT ><DD ><P >Display virtual memory statistics.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >vmstat</B ></TT > <TT CLASS="COMPUTEROUTPUT" > procs memory swap io system cpu r b w swpd free buff cache si so bi bo in cs us sy id 0 0 0 0 11040 2636 38952 0 0 33 7 271 88 8 3 89</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="UPTIMEREF" ></A ><B CLASS="COMMAND" >uptime</B ></DT ><DD ><P >Shows how long the system has been running, along with associated statistics.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >uptime</B ></TT > <TT CLASS="COMPUTEROUTPUT" >10:28pm up 1:57, 3 users, load average: 0.17, 0.34, 0.27</TT ></PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A <I CLASS="FIRSTTERM" >load average</I > of 1 or less indicates that the system handles processes immediately. A load average greater than 1 means that processes are being queued. When the load average gets above 3 (on a single-core processor), then system performance is significantly degraded.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="HNAMEREF" ></A ><B CLASS="COMMAND" >hostname</B ></DT ><DD ><P >Lists the system's host name. This command sets the host name in an <TT CLASS="FILENAME" >/etc/rc.d</TT > setup script (<TT CLASS="FILENAME" >/etc/rc.d/rc.sysinit</TT > or similar). It is equivalent to <B CLASS="COMMAND" >uname -n</B >, and a counterpart to the <A HREF="variables2.html#HOSTNAMEREF" >$HOSTNAME</A > internal variable.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >hostname</B ></TT > <TT CLASS="COMPUTEROUTPUT" >localhost.localdomain</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $HOSTNAME</B ></TT > <TT CLASS="COMPUTEROUTPUT" >localhost.localdomain</TT ></PRE ></TD ></TR ></TABLE ><P >Similar to the <B CLASS="COMMAND" >hostname</B > command are the <B CLASS="COMMAND" >domainname</B >, <B CLASS="COMMAND" >dnsdomainname</B >, <B CLASS="COMMAND" >nisdomainname</B >, and <B CLASS="COMMAND" >ypdomainname</B > commands. Use these to display or set the system DNS or NIS/YP domain name. Various options to <B CLASS="COMMAND" >hostname</B > also perform these functions.</P ></DD ><DT ><A NAME="HOSTIDREF" ></A ><B CLASS="COMMAND" >hostid</B ></DT ><DD ><P >Echo a 32-bit hexadecimal numerical identifier for the host machine.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >hostid</B ></TT > <TT CLASS="COMPUTEROUTPUT" >7f0100</TT ></PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This command allegedly fetches a <SPAN CLASS="QUOTE" >"unique"</SPAN > serial number for a particular system. Certain product registration procedures use this number to brand a particular user license. Unfortunately, <B CLASS="COMMAND" >hostid</B > only returns the machine network address in hexadecimal, with pairs of bytes transposed.</P ><P >The network address of a typical non-networked Linux machine, is found in <TT CLASS="FILENAME" >/etc/hosts</TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat /etc/hosts</B ></TT > <TT CLASS="COMPUTEROUTPUT" >127.0.0.1 localhost.localdomain localhost</TT ></PRE ></TD ></TR ></TABLE > </P ><P >As it happens, transposing the bytes of <TT CLASS="USERINPUT" ><B >127.0.0.1</B ></TT >, we get <TT CLASS="USERINPUT" ><B >0.127.1.0</B ></TT >, which translates in hex to <TT CLASS="USERINPUT" ><B >007f0100</B ></TT >, the exact equivalent of what <B CLASS="COMMAND" >hostid</B > returns, above. There exist only a few million other Linux machines with this identical <I CLASS="FIRSTTERM" >hostid</I >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SARREF" ></A ><B CLASS="COMMAND" >sar</B ></DT ><DD ><P >Invoking <B CLASS="COMMAND" >sar</B > (System Activity Reporter) gives a very detailed rundown on system statistics. The Santa Cruz Operation (<SPAN CLASS="QUOTE" >"Old"</SPAN > SCO) released <B CLASS="COMMAND" >sar</B > as Open Source in June, 1999.</P ><P >This command is not part of the base Linux distribution, but may be obtained as part of the<A HREF="http://perso.wanadoo.fr/sebastien.godard/" TARGET="_top" > sysstat utilities</A > package, written by <A HREF="mailto:sebastien.godard@wanadoo.fr" TARGET="_top" >Sebastien Godard</A >.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >sar</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Linux 2.4.9 (brooks.seringas.fr) 09/26/03 10:30:00 CPU %user %nice %system %iowait %idle 10:40:00 all 2.21 10.90 65.48 0.00 21.41 10:50:00 all 3.36 0.00 72.36 0.00 24.28 11:00:00 all 1.12 0.00 80.77 0.00 18.11 Average: all 2.23 3.63 72.87 0.00 21.27 14:32:30 LINUX RESTART 15:00:00 CPU %user %nice %system %iowait %idle 15:10:00 all 8.59 2.40 17.47 0.00 71.54 15:20:00 all 4.07 1.00 11.95 0.00 82.98 15:30:00 all 0.79 2.94 7.56 0.00 88.71 Average: all 6.33 1.70 14.71 0.00 77.26</TT > </PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="READELFREF" ></A ><B CLASS="COMMAND" >readelf</B ></DT ><DD ><P >Show information and statistics about a designated <I CLASS="FIRSTTERM" >elf</I > binary. This is part of the <I CLASS="FIRSTTERM" >binutils</I > package.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >readelf -h /bin/bash</B ></TT > <TT CLASS="COMPUTEROUTPUT" >ELF Header: Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 Class: ELF32 Data: 2's complement, little endian Version: 1 (current) OS/ABI: UNIX - System V ABI Version: 0 Type: EXEC (Executable file) . . .</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="SIZEREF" ></A ><B CLASS="COMMAND" >size</B ></DT ><DD ><P >The <B CLASS="COMMAND" >size [/path/to/binary]</B > command gives the segment sizes of a binary executable or archive file. This is mainly of use to programmers.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >size /bin/bash</B ></TT > <TT CLASS="COMPUTEROUTPUT" > text data bss dec hex filename 495971 22496 17392 535859 82d33 /bin/bash</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="SYSLOG1" ></A >System Logs</B ></P ><DL ><DT ><A NAME="LOGGERREF" ></A ><B CLASS="COMMAND" >logger</B ></DT ><DD ><P >Appends a user-generated message to the system log (<TT CLASS="FILENAME" >/var/log/messages</TT >). You do not have to be <I CLASS="FIRSTTERM" >root</I > to invoke <B CLASS="COMMAND" >logger</B >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 logger Experiencing instability in network connection at 23:10, 05/21. 2 # Now, do a 'tail /var/log/messages'.</PRE ></TD ></TR ></TABLE ></P ><P >By embedding a <B CLASS="COMMAND" >logger</B > command in a script, it is possible to write debugging information to <TT CLASS="FILENAME" >/var/log/messages</TT >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 logger -t $0 -i Logging at line "$LINENO". 2 # The "-t" option specifies the tag for the logger entry. 3 # The "-i" option records the process ID. 4 5 # tail /var/log/message 6 # ... 7 # Jul 7 20:48:58 localhost ./test.sh[1712]: Logging at line 3.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="LOGROTATEREF" ></A ><B CLASS="COMMAND" >logrotate</B ></DT ><DD ><P >This utility manages the system log files, rotating, compressing, deleting, and/or e-mailing them, as appropriate. This keeps the <TT CLASS="FILENAME" >/var/log</TT > from getting cluttered with old log files. Usually <A HREF="system.html#CRONREF" >cron</A > runs <B CLASS="COMMAND" >logrotate</B > on a daily basis.</P ><P >Adding an appropriate entry to <TT CLASS="FILENAME" >/etc/logrotate.conf</TT > makes it possible to manage personal log files, as well as system-wide ones.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Stefano Falsetto has created <A HREF="http://www.gnu.org/software/rottlog/" TARGET="_top" >rottlog</A >, which he considers to be an improved version of <B CLASS="COMMAND" >logrotate</B >.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="JOBCONTROLSYS1" ></A >Job Control</B ></P ><DL ><DT ><A NAME="PPSSREF" ></A ><B CLASS="COMMAND" >ps</B ></DT ><DD ><P ><TT CLASS="REPLACEABLE" ><I >P</I ></TT >rocess <TT CLASS="REPLACEABLE" ><I >S</I ></TT >tatistics: lists currently executing processes by owner and PID (process ID). This is usually invoked with <TT CLASS="OPTION" >ax</TT > or <TT CLASS="OPTION" >aux</TT > options, and may be piped to <A HREF="textproc.html#GREPREF" >grep</A > or <A HREF="sedawk.html#SEDREF" >sed</A > to search for a specific process (see <A HREF="internal.html#EX44" >Example 15-14</A > and <A HREF="procref1.html#PIDID" >Example 29-3</A >).</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B > ps ax | grep sendmail</B ></TT > <TT CLASS="COMPUTEROUTPUT" >295 ? S 0:00 sendmail: accepting connections on port 25</TT ></PRE ></TD ></TR ></TABLE ><P >To display system processes in graphical <SPAN CLASS="QUOTE" >"tree"</SPAN > format: <B CLASS="COMMAND" >ps afjx</B > or <B CLASS="COMMAND" >ps ax --forest</B >.</P ></DD ><DT ><A NAME="PGREPREF" ></A ><B CLASS="COMMAND" >pgrep</B >, <A NAME="PKILLREF" ></A ><B CLASS="COMMAND" >pkill</B ></DT ><DD ><P >Combining the <B CLASS="COMMAND" >ps</B > command with <A HREF="textproc.html#GREPREF" >grep</A > or <A HREF="internal.html#KILLREF" >kill</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ps a | grep mingetty</B ></TT > <TT CLASS="COMPUTEROUTPUT" >2212 tty2 Ss+ 0:00 /sbin/mingetty tty2 2213 tty3 Ss+ 0:00 /sbin/mingetty tty3 2214 tty4 Ss+ 0:00 /sbin/mingetty tty4 2215 tty5 Ss+ 0:00 /sbin/mingetty tty5 2216 tty6 Ss+ 0:00 /sbin/mingetty tty6 4849 pts/2 S+ 0:00 grep mingetty</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >pgrep mingetty</B ></TT > <TT CLASS="COMPUTEROUTPUT" >2212 mingetty 2213 mingetty 2214 mingetty 2215 mingetty 2216 mingetty</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Compare the action of <B CLASS="COMMAND" >pkill</B > with <A HREF="internal.html#KILLALLREF" >killall</A >.</P ></DD ><DT ><A NAME="PSTREEREF" ></A ><B CLASS="COMMAND" >pstree</B ></DT ><DD ><P >Lists currently executing processes in <SPAN CLASS="QUOTE" >"tree"</SPAN > format. The <TT CLASS="OPTION" >-p</TT > option shows the PIDs, as well as the process names.</P ></DD ><DT ><A NAME="TOPREF" ></A ><B CLASS="COMMAND" >top</B ></DT ><DD ><P >Continuously updated display of most cpu-intensive processes. The <TT CLASS="OPTION" >-b</TT > option displays in text mode, so that the output may be parsed or accessed from a script.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >top -b</B ></TT > <TT CLASS="COMPUTEROUTPUT" > 8:30pm up 3 min, 3 users, load average: 0.49, 0.32, 0.13 45 processes: 44 sleeping, 1 running, 0 zombie, 0 stopped CPU states: 13.6% user, 7.3% system, 0.0% nice, 78.9% idle Mem: 78396K av, 65468K used, 12928K free, 0K shrd, 2352K buff Swap: 157208K av, 0K used, 157208K free 37244K cached PID USER PRI NI SIZE RSS SHARE STAT %CPU %MEM TIME COMMAND 848 bozo 17 0 996 996 800 R 5.6 1.2 0:00 top 1 root 8 0 512 512 444 S 0.0 0.6 0:04 init 2 root 9 0 0 0 0 SW 0.0 0.0 0:00 keventd ...</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="NICEREF" ></A ><B CLASS="COMMAND" >nice</B ></DT ><DD ><P ><A NAME="NICE2REF" ></A ></P ><P >Run a background job with an altered priority. Priorities run from 19 (lowest) to -20 (highest). Only <I CLASS="FIRSTTERM" >root</I > may set the negative (higher) priorities. Related commands are <B CLASS="COMMAND" >renice</B > and <B CLASS="COMMAND" >snice</B >, which change the priority of a running process or processes, and <B CLASS="COMMAND" >skill</B >, which sends a <A HREF="internal.html#KILLREF" >kill</A > signal to a process or processes.</P ></DD ><DT ><A NAME="NOHUPREF" ></A ><B CLASS="COMMAND" >nohup</B ></DT ><DD ><P >Keeps a command running even after user logs off. The command will run as a foreground process unless followed by <SPAN CLASS="TOKEN" >&</SPAN >. If you use <B CLASS="COMMAND" >nohup</B > within a script, consider coupling it with a <A HREF="internal.html#WAITREF" >wait</A > to avoid creating an <I CLASS="FIRSTTERM" >orphan</I > or <A HREF="internal.html#ZOMBIEREF" >zombie</A > process.</P ></DD ><DT ><A NAME="PIDOFREF" ></A ><B CLASS="COMMAND" >pidof</B ></DT ><DD ><P >Identifies <I CLASS="FIRSTTERM" >process ID (PID)</I > of a running job. Since job control commands, such as <A HREF="internal.html#KILLREF" >kill</A > and <A HREF="system.html#NICE2REF" >renice</A > act on the <I CLASS="FIRSTTERM" >PID</I > of a process (not its name), it is sometimes necessary to identify that <I CLASS="FIRSTTERM" >PID</I >. The <B CLASS="COMMAND" >pidof</B > command is the approximate counterpart to the <A HREF="variables2.html#PPIDREF" >$PPID</A > internal variable.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >pidof xclock</B ></TT > <TT CLASS="COMPUTEROUTPUT" >880</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="KILLPROCESS" ></A ><P ><B >Example 17-6. <I CLASS="FIRSTTERM" >pidof</I > helps kill a process</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # kill-process.sh 3 4 NOPROCESS=2 5 6 process=xxxyyyzzz # Use nonexistent process. 7 # For demo purposes only... 8 # ... don't want to actually kill any actual process with this script. 9 # 10 # If, for example, you wanted to use this script to logoff the Internet, 11 # process=pppd 12 13 t=`pidof $process` # Find pid (process id) of $process. 14 # The pid is needed by 'kill' (can't 'kill' by program name). 15 16 if [ -z "$t" ] # If process not present, 'pidof' returns null. 17 then 18 echo "Process $process was not running." 19 echo "Nothing killed." 20 exit $NOPROCESS 21 fi 22 23 kill $t # May need 'kill -9' for stubborn process. 24 25 # Need a check here to see if process allowed itself to be killed. 26 # Perhaps another " t=`pidof $process` " or ... 27 28 29 # This entire script could be replaced by 30 # kill $(pidof -x process_name) 31 # or 32 # killall process_name 33 # but it would not be as instructive. 34 35 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="FUSERREF" ></A ><B CLASS="COMMAND" >fuser</B ></DT ><DD ><P >Identifies the processes (by PID) that are accessing a given file, set of files, or directory. May also be invoked with the <TT CLASS="OPTION" >-k</TT > option, which kills those processes. This has interesting implications for system security, especially in scripts preventing unauthorized users from accessing system services.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >fuser -u /usr/bin/vim</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/usr/bin/vim: 3207e(bozo)</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >fuser -u /dev/null</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/dev/null: 3009(bozo) 3010(bozo) 3197(bozo) 3199(bozo)</TT > </PRE ></TD ></TR ></TABLE > </P ><P >One important application for <B CLASS="COMMAND" >fuser</B > is when physically inserting or removing storage media, such as CD ROM disks or USB flash drives. Sometimes trying a <A HREF="system.html#UMOUNTREF" >umount</A > fails with a <SPAN CLASS="ERRORNAME" >device is busy</SPAN > error message. This means that some user(s) and/or process(es) are accessing the device. An <B CLASS="COMMAND" >fuser -um /dev/device_name</B > will clear up the mystery, so you can kill any relevant processes.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >umount /mnt/usbdrive</B ></TT > <TT CLASS="COMPUTEROUTPUT" >umount: /mnt/usbdrive: device is busy</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >fuser -um /dev/usbdrive</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/mnt/usbdrive: 1772c(bozo)</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >kill -9 1772</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >umount /mnt/usbdrive</B ></TT > </PRE ></TD ></TR ></TABLE > </P ><P > The <B CLASS="COMMAND" >fuser</B > command, invoked with the <TT CLASS="OPTION" >-n</TT > option identifies the processes accessing a <I CLASS="FIRSTTERM" >port</I >. This is especially useful in combination with <A HREF="system.html#NMAPREF" >nmap</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >nmap localhost.localdomain</B ></TT > <TT CLASS="COMPUTEROUTPUT" >PORT STATE SERVICE 25/tcp open smtp</TT > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >fuser -un tcp 25</B ></TT > <TT CLASS="COMPUTEROUTPUT" >25/tcp: 2095(root)</TT > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >ps ax | grep 2095 | grep -v grep</B ></TT > <TT CLASS="COMPUTEROUTPUT" >2095 ? Ss 0:00 sendmail: accepting connections</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="CRONREF" ></A ><B CLASS="COMMAND" >cron</B ></DT ><DD ><P >Administrative program scheduler, performing such duties as cleaning up and deleting system log files and updating the <SPAN CLASS="DATABASE" >slocate</SPAN > database. This is the <I CLASS="FIRSTTERM" >superuser</I > version of <A HREF="timedate.html#ATREF" >at</A > (although each user may have their own <TT CLASS="FILENAME" >crontab</TT > file which can be changed with the <B CLASS="COMMAND" >crontab</B > command). It runs as a <A HREF="communications.html#DAEMONREF" >daemon</A > and executes scheduled entries from <TT CLASS="FILENAME" >/etc/crontab</TT >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Some flavors of Linux run <B CLASS="COMMAND" >crond</B >, Matthew Dillon's version of <B CLASS="COMMAND" >cron</B >.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="RUNCONTROLSYS1" ></A >Process Control and Booting</B ></P ><DL ><DT ><A NAME="INITREF" ></A ><B CLASS="COMMAND" >init</B ></DT ><DD ><P ><A NAME="INITTABREF" ></A ></P ><P >The <B CLASS="COMMAND" >init</B > command is the <A HREF="internal.html#FORKREF" >parent</A > of all processes. Called in the final step of a bootup, <B CLASS="COMMAND" >init</B > determines the runlevel of the system from <TT CLASS="FILENAME" >/etc/inittab</TT >. Invoked by its alias <B CLASS="COMMAND" >telinit</B >, and by <I CLASS="FIRSTTERM" >root</I > only.</P ></DD ><DT ><A NAME="TELINITREF" ></A ><B CLASS="COMMAND" >telinit</B ></DT ><DD ><P >Symlinked to <B CLASS="COMMAND" >init</B >, this is a means of changing the system runlevel, usually done for system maintenance or emergency filesystem repairs. Invoked only by <I CLASS="FIRSTTERM" >root</I >. This command can be dangerous -- be certain you understand it well before using!</P ></DD ><DT ><A NAME="RUNLEVELREF" ></A ><B CLASS="COMMAND" >runlevel</B ></DT ><DD ><P >Shows the current and last runlevel, that is, whether the system is halted (runlevel <TT CLASS="LITERAL" >0</TT >), in single-user mode (<TT CLASS="LITERAL" >1</TT >), in multi-user mode (<TT CLASS="LITERAL" >2</TT > or <TT CLASS="LITERAL" >3</TT >), in X Windows (<TT CLASS="LITERAL" >5</TT >), or rebooting (<TT CLASS="LITERAL" >6</TT >). This command accesses the <TT CLASS="FILENAME" >/var/run/utmp</TT > file.</P ></DD ><DT ><A NAME="HALTREF" ></A ><B CLASS="COMMAND" >halt</B >, <A NAME="SHUTDOWNREF" ></A ><B CLASS="COMMAND" >shutdown</B >, <A NAME="REBOOTREF" ></A ><B CLASS="COMMAND" >reboot</B ></DT ><DD ><P >Command set to shut the system down, usually just prior to a power down.</P ><DIV CLASS="WARNING" ><TABLE CLASS="WARNING" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/warning.png" HSPACE="5" ALT="Warning"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >On some Linux distros, the <B CLASS="COMMAND" >halt</B > command has 755 permissions, so it can be invoked by a non-root user. A careless <I CLASS="FIRSTTERM" >halt</I > in a terminal or a script may shut down the system!</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="SERVICEREF" ></A ><B CLASS="COMMAND" >service</B ></DT ><DD ><P >Starts or stops a system <I CLASS="FIRSTTERM" >service</I >. The startup scripts in <TT CLASS="FILENAME" >/etc/init.d</TT > and <TT CLASS="FILENAME" >/etc/rc.d</TT > use this command to start services at bootup.</P ><P ><A NAME="IPTABLES01" ></A ></P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >/sbin/service iptables stop</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Flushing firewall rules: [ OK ] Setting chains to policy ACCEPT: filter [ OK ] Unloading iptables modules: [ OK ]</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="NETWORKSYS1" ></A >Network</B ></P ><DL ><DT ><A NAME="NMAPREF" ></A ><B CLASS="COMMAND" >nmap</B ></DT ><DD ><P ><B CLASS="COMMAND" >N</B >etwork <B CLASS="COMMAND" >map</B >per and port scanner. This command scans a server to locate open ports and the services associated with those ports. It can also report information about packet filters and firewalls. This is an important security tool for locking down a network against hacking attempts.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 SERVER=$HOST # localhost.localdomain (127.0.0.1). 4 PORT_NUMBER=25 # SMTP port. 5 6 nmap $SERVER | grep -w "$PORT_NUMBER" # Is that particular port open? 7 # grep -w matches whole words only, 8 #+ so this wouldn't match port 1025, for example. 9 10 exit 0 11 12 # 25/tcp open smtp</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="IFCONFIGREF" ></A ><B CLASS="COMMAND" >ifconfig</B ></DT ><DD ><P >Network <I CLASS="FIRSTTERM" >interface configuration</I > and tuning utility.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ifconfig -a</B ></TT > <TT CLASS="COMPUTEROUTPUT" >lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:10 errors:0 dropped:0 overruns:0 frame:0 TX packets:10 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:700 (700.0 b) TX bytes:700 (700.0 b)</TT ></PRE ></TD ></TR ></TABLE ><P >The <B CLASS="COMMAND" >ifconfig</B > command is most often used at bootup to set up the interfaces, or to shut them down when rebooting.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Code snippets from /etc/rc.d/init.d/network 2 3 # ... 4 5 # Check that networking is up. 6 [ ${NETWORKING} = "no" ] && exit 0 7 8 [ -x /sbin/ifconfig ] || exit 0 9 10 # ... 11 12 for i in $interfaces ; do 13 if ifconfig $i 2>/dev/null | grep -q "UP" >/dev/null 2>&1 ; then 14 action "Shutting down interface $i: " ./ifdown $i boot 15 fi 16 # The GNU-specific "-q" option to "grep" means "quiet", i.e., 17 #+ producing no output. 18 # Redirecting output to /dev/null is therefore not strictly necessary. 19 20 # ... 21 22 echo "Currently active devices:" 23 echo `/sbin/ifconfig | grep ^[a-z] | awk '{print $1}'` 24 # ^^^^^ should be quoted to prevent globbing. 25 # The following also work. 26 # echo $(/sbin/ifconfig | awk '/^[a-z]/ { print $1 })' 27 # echo $(/sbin/ifconfig | sed -e 's/ .*//') 28 # Thanks, S.C., for additional comments.</PRE ></TD ></TR ></TABLE ></P ><P >See also <A HREF="debugging.html#ONLINE" >Example 32-6</A >.</P ></DD ><DT ><A NAME="NETSTATREF" ></A ><B CLASS="COMMAND" >netstat</B ></DT ><DD ><P >Show current network statistics and information, such as routing tables and active connections. This utility accesses information in <TT CLASS="FILENAME" >/proc/net</TT > (<A HREF="devproc.html" >Chapter 29</A >). See <A HREF="procref1.html#CONSTAT" >Example 29-4</A >.</P ><P ><B CLASS="COMMAND" >netstat -r</B > is equivalent to <A HREF="system.html#ROUTEREF" >route</A >.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >netstat</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address Foreign Address State Active UNIX domain sockets (w/o servers) Proto RefCnt Flags Type State I-Node Path unix 11 [ ] DGRAM 906 /dev/log unix 3 [ ] STREAM CONNECTED 4514 /tmp/.X11-unix/X0 unix 3 [ ] STREAM CONNECTED 4513 . . .</TT ></PRE ></TD ></TR ></TABLE ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A <B CLASS="COMMAND" >netstat -lptu</B > shows <A HREF="devproc.html#SOCKETREF" >sockets</A > that are listening to ports, and the associated processes. This can be useful for determining whether a computer has been hacked or compromised.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="IWCONFIGREF" ></A ><B CLASS="COMMAND" >iwconfig</B ></DT ><DD ><P >This is the command set for configuring a wireless network. It is the wireless equivalent of <B CLASS="COMMAND" >ifconfig</B >, above.</P ></DD ><DT ><A NAME="IPREF" ></A ><B CLASS="COMMAND" >ip</B ></DT ><DD ><P >General purpose utility for setting up, changing, and analyzing <I CLASS="FIRSTTERM" >IP</I > (Internet Protocol) networks and attached devices. This command is part of the <I CLASS="FIRSTTERM" >iproute2</I > package.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ip link show</B ></TT > <TT CLASS="COMPUTEROUTPUT" >1: lo: <LOOPBACK,UP> mtu 16436 qdisc noqueue link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast qlen 1000 link/ether 00:d0:59:ce:af:da brd ff:ff:ff:ff:ff:ff 3: sit0: <NOARP> mtu 1480 qdisc noop link/sit 0.0.0.0 brd 0.0.0.0</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ip route list</B ></TT > <TT CLASS="COMPUTEROUTPUT" >169.254.0.0/16 dev lo scope link</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Or, in a script:</P ><P ><A NAME="IPSCRIPT0" ></A > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Script by Juan Nicolas Ruiz 3 # Used with his kind permission. 4 5 # Setting up (and stopping) a GRE tunnel. 6 7 8 # --- start-tunnel.sh --- 9 10 LOCAL_IP="192.168.1.17" 11 REMOTE_IP="10.0.5.33" 12 OTHER_IFACE="192.168.0.100" 13 REMOTE_NET="192.168.3.0/24" 14 15 /sbin/ip tunnel add netb mode gre remote $REMOTE_IP \ 16 local $LOCAL_IP ttl 255 17 /sbin/ip addr add $OTHER_IFACE dev netb 18 /sbin/ip link set netb up 19 /sbin/ip route add $REMOTE_NET dev netb 20 21 exit 0 ############################################# 22 23 # --- stop-tunnel.sh --- 24 25 REMOTE_NET="192.168.3.0/24" 26 27 /sbin/ip route del $REMOTE_NET dev netb 28 /sbin/ip link set netb down 29 /sbin/ip tunnel del netb 30 31 exit 0</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="ROUTEREF" ></A ><B CLASS="COMMAND" >route</B ></DT ><DD ><P >Show info about or make changes to the kernel routing table.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >route</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Destination Gateway Genmask Flags MSS Window irtt Iface pm3-67.bozosisp * 255.255.255.255 UH 40 0 0 ppp0 127.0.0.0 * 255.0.0.0 U 40 0 0 lo default pm3-67.bozosisp 0.0.0.0 UG 40 0 0 ppp0</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="IPTABLESREF" ></A ><B CLASS="COMMAND" >iptables</B ></DT ><DD ><P > The <B CLASS="COMMAND" >iptables</B > command set is a packet filtering tool used mainly for such security purposes as setting up network firewalls. This is a complex tool, and a detailed explanation of its use is beyond the scope of this document. <A HREF="http://www.frozentux.net/iptables-tutorial/iptables-tutorial.html" TARGET="_top" >Oskar Andreasson's tutorial</A > is a reasonable starting point.</P ><P >See also <A HREF="system.html#IPTABLES01" >shutting down <I CLASS="FIRSTTERM" >iptables</I ></A > and <A HREF="networkprogramming.html#IPADDRESSES" >Example 30-2</A >.</P ></DD ><DT ><A NAME="CHKCONFIGREF" ></A ><B CLASS="COMMAND" >chkconfig</B ></DT ><DD ><P >Check network and system configuration. This command lists and manages the network and system services started at bootup in the <TT CLASS="FILENAME" >/etc/rc?.d</TT > directory.</P ><P >Originally a port from IRIX to Red Hat Linux, <B CLASS="COMMAND" >chkconfig</B > may not be part of the core installation of some Linux flavors.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >chkconfig --list</B ></TT > <TT CLASS="COMPUTEROUTPUT" >atd 0:off 1:off 2:off 3:on 4:on 5:on 6:off rwhod 0:off 1:off 2:off 3:off 4:off 5:off 6:off ...</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="TCPDUMPREF" ></A ><B CLASS="COMMAND" >tcpdump</B ></DT ><DD ><P >Network packet <SPAN CLASS="QUOTE" >"sniffer."</SPAN > This is a tool for analyzing and troubleshooting traffic on a network by dumping packet headers that match specified criteria.</P ><P >Dump ip packet traffic between hosts <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >bozoville</I ></SPAN > and <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >caduceus</I ></SPAN >:</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >tcpdump ip host bozoville and caduceus</B ></TT > </PRE ></TD ></TR ></TABLE > </P ><P >Of course, the output of <B CLASS="COMMAND" >tcpdump</B > can be parsed with certain of the previously discussed <A HREF="textproc.html#TPCOMMANDLISTING1" >text processing utilities</A >.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="FILESYSTEMSYS1" ></A >Filesystem</B ></P ><DL ><DT ><A NAME="MOUNTREF" ></A ><B CLASS="COMMAND" >mount</B ></DT ><DD ><P >Mount a filesystem, usually on an external device, such as a floppy or CDROM. <A NAME="FSTABREF" ></A >The file <TT CLASS="FILENAME" >/etc/fstab</TT > provides a handy listing of available filesystems, partitions, and devices, including options, that may be automatically or manually mounted. The file <TT CLASS="FILENAME" >/etc/mtab</TT > shows the currently mounted filesystems and partitions (including the virtual ones, such as <TT CLASS="FILENAME" >/proc</TT >).</P ><P ><B CLASS="COMMAND" >mount -a</B > mounts all filesystems and partitions listed in <TT CLASS="FILENAME" >/etc/fstab</TT >, except those with a <TT CLASS="OPTION" >noauto</TT > option. At bootup, a startup script in <TT CLASS="FILENAME" >/etc/rc.d</TT > (<TT CLASS="FILENAME" >rc.sysinit</TT > or something similar) invokes this to get everything mounted.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 mount -t iso9660 /dev/cdrom /mnt/cdrom 2 # Mounts CD ROM. ISO 9660 is a standard CD ROM filesystem. 3 mount /mnt/cdrom 4 # Shortcut, if /mnt/cdrom listed in /etc/fstab</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="ISOMOUNTREF0" ></A ></P ><P >The versatile <I CLASS="FIRSTTERM" >mount</I > command can even mount an ordinary file on a block device, and the file will act as if it were a filesystem. <I CLASS="FIRSTTERM" >Mount</I > accomplishes that by associating the file with a <A HREF="devproc.html#LOOPBACKREF" >loopback device</A >. One application of this is to mount and examine an ISO9660 filesystem image before burning it onto a CDR. <A NAME="AEN16255" HREF="#FTN.AEN16255" >[3]</A > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ISOMOUNTREF" ></A ><P ><B >Example 17-7. Checking a CD image</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # As root... 2 3 mkdir /mnt/cdtest # Prepare a mount point, if not already there. 4 5 mount -r -t iso9660 -o loop cd-image.iso /mnt/cdtest # Mount the image. 6 # "-o loop" option equivalent to "losetup /dev/loop0" 7 cd /mnt/cdtest # Now, check the image. 8 ls -alR # List the files in the directory tree there. 9 # And so forth.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="UMOUNTREF" ></A ><B CLASS="COMMAND" >umount</B ></DT ><DD ><P >Unmount a currently mounted filesystem. Before physically removing a previously mounted floppy or CDROM disk, the device must be <B CLASS="COMMAND" >umount</B >ed, else filesystem corruption may result. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 umount /mnt/cdrom 2 # You may now press the eject button and safely remove the disk.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >automount</B > utility, if properly installed, can mount and unmount floppies or CDROM disks as they are accessed or removed. On <SPAN CLASS="QUOTE" >"multispindle"</SPAN > laptops with swappable floppy and optical drives, this can cause problems, however.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="GNOMEMOUNTREF" ></A ><B CLASS="COMMAND" >gnome-mount</B ></DT ><DD ><P >The newer Linux distros have deprecated <B CLASS="COMMAND" >mount</B > and <B CLASS="COMMAND" >umount</B >. The successor, for command-line mounting of removable storage devices, is <B CLASS="COMMAND" >gnome-mount</B >. It can take the <TT CLASS="OPTION" >-d</TT > option to mount a <A HREF="devproc.html#DEVFILEREF" >device file</A > by its listing in <TT CLASS="FILENAME" >/dev</TT >.</P ><P >For example, to mount a USB flash drive:</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >gnome-mount -d /dev/sda1</B ></TT > <TT CLASS="COMPUTEROUTPUT" >gnome-mount 0.4</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >df</B ></TT > <TT CLASS="COMPUTEROUTPUT" >. . . /dev/sda1 63584 12034 51550 19% /media/disk</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="SYNCREF" ></A ><B CLASS="COMMAND" >sync</B ></DT ><DD ><P >Forces an immediate write of all updated data from buffers to hard drive (synchronize drive with buffers). While not strictly necessary, a <B CLASS="COMMAND" >sync</B > assures the sys admin or user that the data just changed will survive a sudden power failure. In the olden days, a <TT CLASS="USERINPUT" ><B >sync; sync</B ></TT > (twice, just to make absolutely sure) was a useful precautionary measure before a system reboot.</P ><P >At times, you may wish to force an immediate buffer flush, as when securely deleting a file (see <A HREF="extmisc.html#BLOTOUT" >Example 16-61</A >) or when the lights begin to flicker.</P ></DD ><DT ><A NAME="LOSETUPREF" ></A ><B CLASS="COMMAND" >losetup</B ></DT ><DD ><P >Sets up and configures <A HREF="devproc.html#LOOPBACKREF" > loopback devices</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="CREATEFS" ></A ><P ><B >Example 17-8. Creating a filesystem in a file</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 SIZE=1000000 # 1 meg 2 3 head -c $SIZE < /dev/zero > file # Set up file of designated size. 4 losetup /dev/loop0 file # Set it up as loopback device. 5 mke2fs /dev/loop0 # Create filesystem. 6 mount -o loop /dev/loop0 /mnt # Mount it. 7 8 # Thanks, S.C.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="MKSWAPREF" ></A ><B CLASS="COMMAND" >mkswap</B ></DT ><DD ><P >Creates a swap partition or file. The swap area must subsequently be enabled with <B CLASS="COMMAND" >swapon</B >.</P ></DD ><DT ><A NAME="SWAPONREF" ></A ><B CLASS="COMMAND" >swapon</B >, <A NAME="SWAPOFFREF" ></A ><B CLASS="COMMAND" >swapoff</B ></DT ><DD ><P >Enable / disable swap partitition or file. These commands usually take effect at bootup and shutdown.</P ></DD ><DT ><A NAME="MKE2FSREF" ></A ><B CLASS="COMMAND" >mke2fs</B ></DT ><DD ><P >Create a Linux <I CLASS="FIRSTTERM" >ext2</I > filesystem. This command must be invoked as <I CLASS="FIRSTTERM" >root</I >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ADDDRV" ></A ><P ><B >Example 17-9. Adding a new hard drive</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Adding a second hard drive to system. 4 # Software configuration. Assumes hardware already mounted. 5 # From an article by the author of the ABS Guide. 6 # In issue #38 of _Linux Gazette_, http://www.linuxgazette.com. 7 8 ROOT_UID=0 # This script must be run as root. 9 E_NOTROOT=67 # Non-root exit error. 10 11 if [ "$UID" -ne "$ROOT_UID" ] 12 then 13 echo "Must be root to run this script." 14 exit $E_NOTROOT 15 fi 16 17 # Use with extreme caution! 18 # If something goes wrong, you may wipe out your current filesystem. 19 20 21 NEWDISK=/dev/hdb # Assumes /dev/hdb vacant. Check! 22 MOUNTPOINT=/mnt/newdisk # Or choose another mount point. 23 24 25 fdisk $NEWDISK 26 mke2fs -cv $NEWDISK1 # Check for bad blocks (verbose output). 27 # Note: ^ /dev/hdb1, *not* /dev/hdb! 28 mkdir $MOUNTPOINT 29 chmod 777 $MOUNTPOINT # Makes new drive accessible to all users. 30 31 32 # Now, test ... 33 # mount -t ext2 /dev/hdb1 /mnt/newdisk 34 # Try creating a directory. 35 # If it works, umount it, and proceed. 36 37 # Final step: 38 # Add the following line to /etc/fstab. 39 # /dev/hdb1 /mnt/newdisk ext2 defaults 1 1 40 41 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="system.html#CREATEFS" >Example 17-8</A > and <A HREF="zeros.html#RAMDISK" >Example 31-3</A >.</P ></DD ><DT ><A NAME="MKDOSFSREF" ></A ><B CLASS="COMMAND" >mkdosfs</B ></DT ><DD ><P >Create a DOS <I CLASS="FIRSTTERM" >FAT</I > filesystem.</P ></DD ><DT ><A NAME="TUNE2FSREF" ></A ><B CLASS="COMMAND" >tune2fs</B ></DT ><DD ><P >Tune <I CLASS="FIRSTTERM" >ext2</I > filesystem. May be used to change filesystem parameters, such as maximum mount count. This must be invoked as <I CLASS="FIRSTTERM" >root</I >.</P ><DIV CLASS="WARNING" ><TABLE CLASS="WARNING" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/warning.png" HSPACE="5" ALT="Warning"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This is an extremely dangerous command. Use it at your own risk, as you may inadvertently destroy your filesystem. </P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="DUMPE2FSREF" ></A ><B CLASS="COMMAND" >dumpe2fs</B ></DT ><DD ><P >Dump (list to <TT CLASS="FILENAME" >stdout</TT >) very verbose filesystem info. This must be invoked as <I CLASS="FIRSTTERM" >root</I >.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >root# </TT ><B CLASS="COMMAND" >dumpe2fs /dev/hda7 | grep 'ount count'</B > <TT CLASS="COMPUTEROUTPUT" >dumpe2fs 1.19, 13-Jul-2000 for EXT2 FS 0.5b, 95/08/09 Mount count: 6 Maximum mount count: 20</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="HDPARMREF" ></A ><B CLASS="COMMAND" >hdparm</B ></DT ><DD ><P >List or change hard disk parameters. This command must be invoked as <I CLASS="FIRSTTERM" >root</I >, and it may be dangerous if misused.</P ></DD ><DT ><A NAME="FDISKREF" ></A ><B CLASS="COMMAND" >fdisk</B ></DT ><DD ><P >Create or change a partition table on a storage device, usually a hard drive. This command must be invoked as <I CLASS="FIRSTTERM" >root</I >.</P ><DIV CLASS="WARNING" ><TABLE CLASS="WARNING" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/warning.png" HSPACE="5" ALT="Warning"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Use this command with extreme caution. If something goes wrong, you may destroy an existing filesystem.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="FSCKREF" ></A ><B CLASS="COMMAND" >fsck</B >, <A NAME="E2FSCKREF" ></A ><B CLASS="COMMAND" >e2fsck</B >, <A NAME="DEBUGFSREF" ></A ><B CLASS="COMMAND" >debugfs</B ></DT ><DD ><P >Filesystem check, repair, and debug command set.</P ><P ><B CLASS="COMMAND" >fsck</B >: a front end for checking a UNIX filesystem (may invoke other utilities). The actual filesystem type generally defaults to <I CLASS="FIRSTTERM" >ext2</I >.</P ><P ><B CLASS="COMMAND" >e2fsck</B >: ext2 filesystem checker.</P ><P ><B CLASS="COMMAND" >debugfs</B >: ext2 filesystem debugger. One of the uses of this versatile, but dangerous command is to (attempt to) recover deleted files. For advanced users only!</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >All of these should be invoked as <I CLASS="FIRSTTERM" >root</I >, and they can damage or destroy a filesystem if misused.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="BADBLOCKSREF" ></A ><B CLASS="COMMAND" >badblocks</B ></DT ><DD ><P >Checks for bad blocks (physical media flaws) on a storage device. This command finds use when formatting a newly installed hard drive or testing the integrity of backup media. <A NAME="AEN16504" HREF="#FTN.AEN16504" >[4]</A > As an example, <B CLASS="COMMAND" >badblocks /dev/fd0</B > tests a floppy disk.</P ><P >The <B CLASS="COMMAND" >badblocks</B > command may be invoked destructively (overwrite all data) or in non-destructive read-only mode. If <I CLASS="FIRSTTERM" >root user</I > owns the device to be tested, as is generally the case, then <I CLASS="FIRSTTERM" >root</I > must invoke this command.</P ></DD ><DT ><A NAME="LSUSBREF" ></A ><B CLASS="COMMAND" >lsusb</B >, <B CLASS="COMMAND" >usbmodules</B ></DT ><DD ><P >The <B CLASS="COMMAND" >lsusb</B > command lists all USB (Universal Serial Bus) buses and the devices hooked up to them.</P ><P >The <B CLASS="COMMAND" >usbmodules</B > command outputs information about the driver modules for connected USB devices.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lsusb</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Bus 001 Device 001: ID 0000:0000 Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 1.00 bDeviceClass 9 Hub bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 8 idVendor 0x0000 idProduct 0x0000 . . .</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="LSPCIREF" ></A ><B CLASS="COMMAND" >lspci</B ></DT ><DD ><P >Lists <I CLASS="FIRSTTERM" >pci</I > busses present.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lspci</B ></TT > <TT CLASS="COMPUTEROUTPUT" >00:00.0 Host bridge: Intel Corporation 82845 845 (Brookdale) Chipset Host Bridge (rev 04) 00:01.0 PCI bridge: Intel Corporation 82845 845 (Brookdale) Chipset AGP Bridge (rev 04) 00:1d.0 USB Controller: Intel Corporation 82801CA/CAM USB (Hub #1) (rev 02) 00:1d.1 USB Controller: Intel Corporation 82801CA/CAM USB (Hub #2) (rev 02) 00:1d.2 USB Controller: Intel Corporation 82801CA/CAM USB (Hub #3) (rev 02) 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 42) . . .</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="MKBOOTDISKREF" ></A ><B CLASS="COMMAND" >mkbootdisk</B ></DT ><DD ><P >Creates a boot floppy which can be used to bring up the system if, for example, the MBR (master boot record) becomes corrupted. Of special interest is the <TT CLASS="OPTION" >--iso</TT > option, which uses <B CLASS="COMMAND" >mkisofs</B > to create a bootable <I CLASS="FIRSTTERM" >ISO9660</I > filesystem image suitable for burning a bootable CDR.</P ><P >The <B CLASS="COMMAND" >mkbootdisk</B > command is actually a Bash script, written by Erik Troan, in the <TT CLASS="FILENAME" >/sbin</TT > directory.</P ></DD ><DT ><A NAME="MKISOFSREF" ></A ><B CLASS="COMMAND" >mkisofs</B ></DT ><DD ><P >Creates an <I CLASS="FIRSTTERM" >ISO9660</I > filesystem suitable for a CDR image.</P ></DD ><DT ><A NAME="CHROOTREF" ></A ><B CLASS="COMMAND" >chroot</B ></DT ><DD ><P >CHange ROOT directory. Normally commands are fetched from <A HREF="variables2.html#PATHREF" >$PATH</A >, relative to <TT CLASS="FILENAME" >/</TT >, the default <I CLASS="FIRSTTERM" >root directory</I >. This changes the <I CLASS="FIRSTTERM" >root</I > directory to a different one (and also changes the working directory to there). This is useful for security purposes, for instance when the system administrator wishes to restrict certain users, such as those <A HREF="communications.html#TELNETREF" >telnetting</A > in, to a secured portion of the filesystem (this is sometimes referred to as confining a guest user to a <SPAN CLASS="QUOTE" >"chroot jail"</SPAN >). Note that after a <B CLASS="COMMAND" >chroot</B >, the execution path for system binaries is no longer valid.</P ><P >A <TT CLASS="USERINPUT" ><B >chroot /opt</B ></TT > would cause references to <TT CLASS="FILENAME" >/usr/bin</TT > to be translated to <TT CLASS="FILENAME" >/opt/usr/bin</TT >. Likewise, <TT CLASS="USERINPUT" ><B >chroot /aaa/bbb /bin/ls</B ></TT > would redirect future instances of <B CLASS="COMMAND" >ls</B > to <TT CLASS="FILENAME" >/aaa/bbb</TT > as the base directory, rather than <TT CLASS="FILENAME" >/</TT > as is normally the case. An <B CLASS="COMMAND" >alias XX 'chroot /aaa/bbb ls'</B > in a user's <A HREF="sample-bashrc.html" ><TT CLASS="FILENAME" >~/.bashrc</TT ></A > effectively restricts which portion of the filesystem she may run command <SPAN CLASS="QUOTE" >"XX"</SPAN > on.</P ><P >The <B CLASS="COMMAND" >chroot</B > command is also handy when running from an emergency boot floppy (<B CLASS="COMMAND" >chroot</B > to <TT CLASS="FILENAME" >/dev/fd0</TT >), or as an option to <B CLASS="COMMAND" >lilo</B > when recovering from a system crash. Other uses include installation from a different filesystem (an <A HREF="filearchiv.html#RPMREF" >rpm</A > option) or running a readonly filesystem from a CD ROM. Invoke only as <I CLASS="FIRSTTERM" >root</I >, and use with care.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It might be necessary to copy certain system files to a <I CLASS="FIRSTTERM" >chrooted</I > directory, since the normal <TT CLASS="VARNAME" >$PATH</TT > can no longer be relied upon.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="LOCKFILEREF" ></A ><B CLASS="COMMAND" >lockfile</B ></DT ><DD ><P >This utility is part of the <B CLASS="COMMAND" >procmail</B > package (<A HREF="http://www.procmail.org" TARGET="_top" >www.procmail.org</A >). It creates a <I CLASS="FIRSTTERM" >lock file</I >, a <I CLASS="FIRSTTERM" >semaphore</I > that controls access to a file, device, or resource.</P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN16645" ></A ><P ><A NAME="SEMAPHOREREF" ></A > <TT CLASS="USERINPUT" ><B >Definition:</B ></TT > A <I CLASS="FIRSTTERM" >semaphore</I > is a flag or signal. (The usage originated in railroading, where a colored flag, lantern, or striped movable arm <I CLASS="FIRSTTERM" >semaphore</I > indicated whether a particular track was in use and therefore unavailable for another train.) A UNIX process can check the appropriate semaphore to determine whether a particular resource is available/accessible.</P ></DIV ></TD ></TR ></TABLE ><P >The lock file serves as a flag that this particular file, device, or resource is in use by a process (and is therefore <SPAN CLASS="QUOTE" >"busy"</SPAN >). The presence of a lock file permits only restricted access (or no access) to other processes.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 lockfile /home/bozo/lockfiles/$0.lock 2 # Creates a write-protected lockfile prefixed with the name of the script. 3 4 lockfile /home/bozo/lockfiles/${0##*/}.lock 5 # A safer version of the above, as pointed out by E. Choroba.</PRE ></TD ></TR ></TABLE ></P ><P >Lock files are used in such applications as protecting system mail folders from simultaneously being changed by multiple users, indicating that a modem port is being accessed, and showing that an instance of <SPAN CLASS="APPLICATION" >Firefox</SPAN > is using its cache. Scripts may check for the existence of a lock file created by a certain process to check if that process is running. Note that if a script attempts to create a lock file that already exists, the script will likely hang.</P ><P >Normally, applications create and check for lock files in the <TT CLASS="FILENAME" >/var/lock</TT > directory. <A NAME="AEN16659" HREF="#FTN.AEN16659" >[5]</A > A script can test for the presence of a lock file by something like the following. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 appname=xyzip 2 # Application "xyzip" created lock file "/var/lock/xyzip.lock". 3 4 if [ -e "/var/lock/$appname.lock" ] 5 then #+ Prevent other programs & scripts 6 # from accessing files/resources used by xyzip. 7 ...</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="FLOCKREF" ></A ><B CLASS="COMMAND" >flock</B ></DT ><DD ><P >Much less useful than the <B CLASS="COMMAND" >lockfile</B > command is <B CLASS="COMMAND" >flock</B >. It sets an <SPAN CLASS="QUOTE" >"advisory"</SPAN > lock on a file and then executes a command while the lock is on. This is to prevent any other process from setting a lock on that file until completion of the specified command.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 flock $0 cat $0 > lockfile__$0 2 # Set a lock on the script the above line appears in, 3 #+ while listing the script to stdout.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Unlike <B CLASS="COMMAND" >lockfile</B >, <B CLASS="COMMAND" >flock</B > does <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > automatically create a lock file.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="MKNODREF" ></A ><B CLASS="COMMAND" >mknod</B ></DT ><DD ><P >Creates block or character <A HREF="devproc.html#DEVFILEREF" >device files</A > (may be necessary when installing new hardware on the system). The <B CLASS="COMMAND" >MAKEDEV</B > utility has virtually all of the functionality of <B CLASS="COMMAND" >mknod</B >, and is easier to use.</P ></DD ><DT ><A NAME="MAKEDEVREF" ></A ><B CLASS="COMMAND" >MAKEDEV</B ></DT ><DD ><P >Utility for creating device files. It must be run as <I CLASS="FIRSTTERM" >root</I >, and in the <TT CLASS="FILENAME" >/dev</TT > directory. It is a sort of advanced version of <B CLASS="COMMAND" >mknod</B >.</P ></DD ><DT ><A NAME="TMPWATCHREF" ></A ><B CLASS="COMMAND" >tmpwatch</B ></DT ><DD ><P >Automatically deletes files which have not been accessed within a specified period of time. Usually invoked by <A HREF="system.html#CRONREF" >cron</A > to remove stale log files.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="PERIPHSYS1" ></A >Backup</B ></P ><DL ><DT ><A NAME="DUMPREF" ></A ><B CLASS="COMMAND" >dump</B >, <A NAME="RESTOREREF" ></A ><B CLASS="COMMAND" >restore</B ></DT ><DD ><P >The <B CLASS="COMMAND" >dump</B > command is an elaborate filesystem backup utility, generally used on larger installations and networks. <A NAME="AEN16748" HREF="#FTN.AEN16748" >[6]</A > It reads raw disk partitions and writes a backup file in a binary format. Files to be backed up may be saved to a variety of storage media, including disks and tape drives. The <B CLASS="COMMAND" >restore</B > command restores backups made with <B CLASS="COMMAND" >dump</B >.</P ></DD ><DT ><A NAME="FDFORMATREF" ></A ><B CLASS="COMMAND" >fdformat</B ></DT ><DD ><P >Perform a low-level format on a floppy disk (<TT CLASS="FILENAME" >/dev/fd0*</TT >).</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="SYSRESOURCES1" ></A >System Resources</B ></P ><DL ><DT ><A NAME="ULIMITREF" ></A ><B CLASS="COMMAND" >ulimit</B ></DT ><DD ><P >Sets an <I CLASS="FIRSTTERM" >upper limit</I > on use of system resources. Usually invoked with the <TT CLASS="OPTION" >-f</TT > option, which sets a limit on file size (<B CLASS="COMMAND" >ulimit -f 1000</B > limits files to 1 meg maximum). <A NAME="AEN16782" HREF="#FTN.AEN16782" >[7]</A > The <TT CLASS="OPTION" >-t</TT > option limits the coredump size (<B CLASS="COMMAND" >ulimit -c 0</B > eliminates coredumps). Normally, the value of <B CLASS="COMMAND" >ulimit</B > would be set in <TT CLASS="FILENAME" >/etc/profile</TT > and/or <TT CLASS="FILENAME" >~/.bash_profile</TT > (see <A HREF="files.html" >Appendix H</A >).</P ><DIV CLASS="IMPORTANT" ><TABLE CLASS="IMPORTANT" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/important.png" HSPACE="5" ALT="Important"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Judicious use of <B CLASS="COMMAND" >ulimit</B > can protect a system against the dreaded <I CLASS="FIRSTTERM" >fork bomb</I >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # This script is for illustrative purposes only. 3 # Run it at your own peril -- it WILL freeze your system. 4 5 while true # Endless loop. 6 do 7 $0 & # This script invokes itself . . . 8 #+ forks an infinite number of times . . . 9 #+ until the system freezes up because all resources exhausted. 10 done # This is the notorious <SPAN CLASS="QUOTE" >"sorcerer's appentice"</SPAN > scenario. 11 12 exit 0 # Will not exit here, because this script will never terminate.</PRE ></TD ></TR ></TABLE > </P ><P >A <B CLASS="COMMAND" >ulimit -Hu XX</B > (where <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >XX</I ></SPAN > is the user process limit) in <TT CLASS="FILENAME" >/etc/profile</TT > would abort this script when it exceeded the preset limit. </P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="QUOTAREF" ></A ><B CLASS="COMMAND" >quota</B ></DT ><DD ><P >Display user or group disk quotas.</P ></DD ><DT ><A NAME="SETQUOTAREF" ></A ><B CLASS="COMMAND" >setquota</B ></DT ><DD ><P >Set user or group disk quotas from the command-line.</P ></DD ><DT ><A NAME="UMASKREF" ></A ><B CLASS="COMMAND" >umask</B ></DT ><DD ><P >User file creation permissions <I CLASS="FIRSTTERM" >mask</I >. Limit the default file attributes for a particular user. All files created by that user take on the attributes specified by <B CLASS="COMMAND" >umask</B >. The (octal) value passed to <B CLASS="COMMAND" >umask</B > defines the file permissions <I CLASS="FIRSTTERM" >disabled</I >. For example, <B CLASS="COMMAND" >umask 022</B > ensures that new files will have at most 755 permissions (777 NAND 022). <A NAME="AEN16847" HREF="#FTN.AEN16847" >[8]</A > Of course, the user may later change the attributes of particular files with <A HREF="external.html#CHMODREF" >chmod</A >. The usual practice is to set the value of <B CLASS="COMMAND" >umask</B > in <TT CLASS="FILENAME" >/etc/profile</TT > and/or <TT CLASS="FILENAME" >~/.bash_profile</TT > (see <A HREF="files.html" >Appendix H</A >).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ROT13A" ></A ><P ><B >Example 17-10. Using <I CLASS="FIRSTTERM" >umask</I > to hide an output file from prying eyes</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # rot13a.sh: Same as "rot13.sh" script, but writes output to "secure" file. 3 4 # Usage: ./rot13a.sh filename 5 # or ./rot13a.sh <filename 6 # or ./rot13a.sh and supply keyboard input (stdin) 7 8 umask 177 # File creation mask. 9 # Files created by this script 10 #+ will have 600 permissions. 11 12 OUTFILE=decrypted.txt # Results output to file "decrypted.txt" 13 #+ which can only be read/written 14 # by invoker of script (or root). 15 16 cat "$@" | tr 'a-zA-Z' 'n-za-mN-ZA-M' > $OUTFILE 17 # ^^ Input from stdin or a file. ^^^^^^^^^^ Output redirected to file. 18 19 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="RDEVREF" ></A ><B CLASS="COMMAND" >rdev</B ></DT ><DD ><P >Get info about or make changes to root device, swap space, or video mode. The functionality of <B CLASS="COMMAND" >rdev</B > has generally been taken over by <B CLASS="COMMAND" >lilo</B >, but <B CLASS="COMMAND" >rdev</B > remains useful for setting up a ram disk. This is a dangerous command, if misused. </P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="MODULESSYS1" ></A >Modules</B ></P ><DL ><DT ><A NAME="LSMODREF" ></A ><B CLASS="COMMAND" >lsmod</B ></DT ><DD ><P >List installed kernel modules.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >lsmod</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Module Size Used by autofs 9456 2 (autoclean) opl3 11376 0 serial_cs 5456 0 (unused) sb 34752 0 uart401 6384 0 [sb] sound 58368 0 [opl3 sb uart401] soundlow 464 0 [sound] soundcore 2800 6 [sb sound] ds 6448 2 [serial_cs] i82365 22928 2 pcmcia_core 45984 0 [serial_cs ds i82365]</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Doing a <B CLASS="COMMAND" >cat /proc/modules</B > gives the same information.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="INSMODREF" ></A ><B CLASS="COMMAND" >insmod</B ></DT ><DD ><P >Force installation of a kernel module (use <B CLASS="COMMAND" >modprobe</B > instead, when possible). Must be invoked as <I CLASS="FIRSTTERM" >root</I >.</P ></DD ><DT ><A NAME="RMMODREF" ></A ><B CLASS="COMMAND" >rmmod</B ></DT ><DD ><P >Force unloading of a kernel module. Must be invoked as <I CLASS="FIRSTTERM" >root</I >.</P ></DD ><DT ><A NAME="MODPROBEREF" ></A ><B CLASS="COMMAND" >modprobe</B ></DT ><DD ><P >Module loader that is normally invoked automatically in a startup script. Must be invoked as <I CLASS="FIRSTTERM" >root</I >.</P ></DD ><DT ><A NAME="DEPMODREF" ></A ><B CLASS="COMMAND" >depmod</B ></DT ><DD ><P >Creates module dependency file. Usually invoked from a startup script.</P ></DD ><DT ><A NAME="MODINFOREF" ></A ><B CLASS="COMMAND" >modinfo</B ></DT ><DD ><P >Output information about a loadable module.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >modinfo hid</B ></TT > <TT CLASS="COMPUTEROUTPUT" >filename: /lib/modules/2.4.20-6/kernel/drivers/usb/hid.o description: "USB HID support drivers" author: "Andreas Gal, Vojtech Pavlik <vojtech@suse.cz>" license: "GPL"</TT > </PRE ></TD ></TR ></TABLE ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="MISCSYS1" ></A >Miscellaneous</B ></P ><DL ><DT ><A NAME="ENVVREF" ></A ><B CLASS="COMMAND" >env</B ></DT ><DD ><P > Runs a program or script with certain <A HREF="othertypesv.html#ENVREF" >environmental variables</A > set or changed (without changing the overall system environment). The <TT CLASS="OPTION" >[varname=xxx]</TT > permits changing the environmental variable <TT CLASS="VARNAME" >varname</TT > for the duration of the script. With no options specified, this command lists all the environmental variable settings. <A NAME="AEN16975" HREF="#FTN.AEN16975" >[9]</A > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="ENVV2REF" ></A >The first line of a script (the <SPAN CLASS="QUOTE" >"sha-bang"</SPAN > line) may use <B CLASS="COMMAND" >env</B > when the path to the shell or interpreter is unknown.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /usr/bin/env perl 2 3 print "This Perl script will run,\n"; 4 print "even when I don't know where to find Perl.\n"; 5 6 # Good for portable cross-platform scripts, 7 # where the Perl binaries may not be in the expected place. 8 # Thanks, S.C.</PRE ></TD ></TR ></TABLE ></P ><P >Or even ... </P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/env bash 2 # Queries the $PATH enviromental variable for the location of bash. 3 # Therefore ... 4 # This script will run where Bash is not in its usual place, in /bin. 5 ...</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="LDDREF" ></A ><B CLASS="COMMAND" >ldd</B ></DT ><DD ><P >Show shared lib dependencies for an executable file.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ldd /bin/ls</B ></TT > <TT CLASS="COMPUTEROUTPUT" >libc.so.6 => /lib/libc.so.6 (0x4000c000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="WATCHREF" ></A ><B CLASS="COMMAND" >watch</B ></DT ><DD ><P >Run a command repeatedly, at specified time intervals.</P ><P >The default is two-second intervals, but this may be changed with the <TT CLASS="OPTION" >-n</TT > option.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 watch -n 5 tail /var/log/messages 2 # Shows tail end of system log, /var/log/messages, every five seconds.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Unfortunately, <A HREF="special-chars.html#PIPEREF" >piping</A > the output of <B CLASS="COMMAND" >watch command</B > to <A HREF="textproc.html#GREPREF" >grep</A > does not work.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="STRIPREF" ></A ><B CLASS="COMMAND" >strip</B ></DT ><DD ><P >Remove the debugging symbolic references from an executable binary. This decreases its size, but makes debugging it impossible.</P ><P >This command often occurs in a <A HREF="filearchiv.html#MAKEFILEREF" >Makefile</A >, but rarely in a shell script.</P ></DD ><DT ><A NAME="NMREF" ></A ><B CLASS="COMMAND" >nm</B ></DT ><DD ><P >List symbols in an unstripped compiled binary.</P ></DD ><DT ><A NAME="XRANDRREF" ></A ><B CLASS="COMMAND" >xrandr</B ></DT ><DD ><P >Command-line tool for manipulating the root window of the screen.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BACKLIGHT" ></A ><P ><B >Example 17-11. <I CLASS="FIRSTTERM" >Backlight</I >: changes the brightness of the (laptop) screen backlight</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # backlight.sh 3 # reldate 02dec2011 4 5 # A bug in Fedora Core 16/17 messes up the keyboard backlight controls. 6 # This script is a quick-n-dirty workaround, essentially a shell wrapper 7 #+ for xrandr. It gives more control than on-screen sliders and widgets. 8 9 OUTPUT=$(xrandr | grep LV | awk '{print $1}') # Get display name! 10 INCR=.05 # For finer-grained control, set INCR to .03 or .02. 11 12 old_brightness=$(xrandr --verbose | grep rightness | awk '{ print $2 }') 13 14 15 if [ -z "$1" ] 16 then 17 bright=1 # If no command-line arg, set brightness to 1.0 (default). 18 19 else 20 if [ "$1" = "+" ] 21 then 22 bright=$(echo "scale=2; $old_brightness + $INCR" | bc) # +.05 23 24 else 25 if [ "$1" = "-" ] 26 then 27 bright=$(echo "scale=2; $old_brightness - $INCR" | bc) # -.05 28 29 else 30 if [ "$1" = "#" ] # Echoes current brightness; does not change it. 31 then 32 bright=$old_brightness 33 34 else 35 if [[ "$1" = "h" || "$1" = "H" ]] 36 then 37 echo 38 echo "Usage:" 39 echo "$0 [No args] Sets/resets brightness to default (1.0)." 40 echo "$0 + Increments brightness by 0.5." 41 echo "$0 - Decrements brightness by 0.5." 42 echo "$0 # Echoes current brightness without changing it." 43 echo "$0 N (number) Sets brightness to N (useful range .7 - 1.2)." 44 echo "$0 h [H] Echoes this help message." 45 echo "$0 any-other Gives xrandr usage message." 46 47 bright=$old_brightness 48 49 else 50 bright="$1" 51 52 fi 53 fi 54 fi 55 fi 56 fi 57 58 59 xrandr --output "$OUTPUT" --brightness "$bright" # See xrandr manpage. 60 # As root! 61 E_CHANGE0=$? 62 echo "Current brightness = $bright" 63 64 exit $E_CHANGE0 65 66 67 # =========== Or, alternately . . . ==================== # 68 69 #!/bin/bash 70 # backlight2.sh 71 # reldate 20jun2012 72 73 # A bug in Fedora Core 16/17 messes up the keyboard backlight controls. 74 # This is a quick-n-dirty workaround, an alternate to backlight.sh. 75 76 target_dir=\ 77 /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/backlight/acpi_video0 78 # Hardware directory. 79 80 actual_brightness=$(cat $target_dir/actual_brightness) 81 max_brightness=$(cat $target_dir/max_brightness) 82 Brightness=$target_dir/brightness 83 84 let "req_brightness = actual_brightness" # Requested brightness. 85 86 if [ "$1" = "-" ] 87 then # Decrement brightness 1 notch. 88 let "req_brightness = $actual_brightness - 1" 89 else 90 if [ "$1" = "+" ] 91 then # Increment brightness 1 notch. 92 let "req_brightness = $actual_brightness + 1" 93 fi 94 fi 95 96 if [ $req_brightness -gt $max_brightness ] 97 then 98 req_brightness=$max_brightness 99 fi # Do not exceed max. hardware design brightness. 100 101 echo 102 103 echo "Old brightness = $actual_brightness" 104 echo "Max brightness = $max_brightness" 105 echo "Requested brightness = $req_brightness" 106 echo 107 108 # ===================================== 109 echo $req_brightness > $Brightness 110 # Must be root for this to take effect. 111 E_CHANGE1=$? # Successful? 112 # ===================================== 113 114 if [ "$?" -eq 0 ] 115 then 116 echo "Changed brightness!" 117 else 118 echo "Failed to change brightness!" 119 fi 120 121 act_brightness=$(cat $Brightness) 122 echo "Actual brightness = $act_brightness" 123 124 scale0=2 125 sf=100 # Scale factor. 126 pct=$(echo "scale=$scale0; $act_brightness / $max_brightness * $sf" | bc) 127 echo "Percentage brightness = $pct%" 128 129 exit $E_CHANGE1</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="RDISTREF" ></A ><B CLASS="COMMAND" >rdist</B ></DT ><DD ><P >Remote distribution client: synchronizes, clones, or backs up a file system on a remote server.</P ></DD ></DL ></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="SYSSCRIPTS" ></A >17.1. Analyzing a System Script</H1 ><P ><A NAME="KILLALL2REF" ></A ></P ><P >Using our knowledge of administrative commands, let us examine a system script. One of the shortest and simplest to understand scripts is <SPAN CLASS="QUOTE" >"killall,"</SPAN > <A NAME="AEN17079" HREF="#FTN.AEN17079" >[10]</A > used to suspend running processes at system shutdown.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX55" ></A ><P ><B >Example 17-12. <I CLASS="FIRSTTERM" >killall</I >, from <TT CLASS="FILENAME" >/etc/rc.d/init.d</TT ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/sh 2 3 # --> Comments added by the author of this document marked by "# -->". 4 5 # --> This is part of the 'rc' script package 6 # --> by Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>. 7 8 # --> This particular script seems to be Red Hat / FC specific 9 # --> (may not be present in other distributions). 10 11 # Bring down all unneeded services that are still running 12 #+ (there shouldn't be any, so this is just a sanity check) 13 14 for i in /var/lock/subsys/*; do 15 # --> Standard for/in loop, but since "do" is on same line, 16 # --> it is necessary to add ";". 17 # Check if the script is there. 18 [ ! -f $i ] && continue 19 # --> This is a clever use of an "and list", equivalent to: 20 # --> if [ ! -f "$i" ]; then continue 21 22 # Get the subsystem name. 23 subsys=${i#/var/lock/subsys/} 24 # --> Match variable name, which, in this case, is the file name. 25 # --> This is the exact equivalent of subsys=`basename $i`. 26 27 # --> It gets it from the lock file name 28 # -->+ (if there is a lock file, 29 # -->+ that's proof the process has been running). 30 # --> See the "lockfile" entry, above. 31 32 33 # Bring the subsystem down. 34 if [ -f /etc/rc.d/init.d/$subsys.init ]; then 35 /etc/rc.d/init.d/$subsys.init stop 36 else 37 /etc/rc.d/init.d/$subsys stop 38 # --> Suspend running jobs and daemons. 39 # --> Note that "stop" is a positional parameter, 40 # -->+ not a shell builtin. 41 fi 42 done</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >That wasn't so bad. Aside from a little fancy footwork with variable matching, there is no new material there.</P ><DIV CLASS="FORMALPARA" ><P ><B >Exercise 1. </B >In <TT CLASS="FILENAME" >/etc/rc.d/init.d</TT >, analyze the <B CLASS="COMMAND" >halt</B > script. It is a bit longer than <B CLASS="COMMAND" >killall</B >, but similar in concept. Make a copy of this script somewhere in your home directory and experiment with it (do <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > run it as <I CLASS="FIRSTTERM" >root</I >). Do a simulated run with the <TT CLASS="OPTION" >-vn</TT > flags (<TT CLASS="USERINPUT" ><B >sh -vn scriptname</B ></TT >). Add extensive comments. Change the commands to <A HREF="internal.html#ECHOREF" >echos</A >.</P ></DIV ><DIV CLASS="FORMALPARA" ><P ><B >Exercise 2. </B >Look at some of the more complex scripts in <TT CLASS="FILENAME" >/etc/rc.d/init.d</TT >. Try to understand at least portions of them. Follow the above procedure to analyze them. For some additional insight, you might also examine the file <TT CLASS="FILENAME" >sysvinitfiles</TT > in <TT CLASS="FILENAME" >/usr/share/doc/initscripts-?.??</TT >, which is part of the <SPAN CLASS="QUOTE" >"initscripts"</SPAN > documentation.</P ></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN14695" HREF="system.html#AEN14695" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This is the case on a Linux machine or a UNIX system with disk quotas.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN14727" HREF="system.html#AEN14727" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The <B CLASS="COMMAND" >userdel</B > command will fail if the particular user being deleted is still logged on.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN16255" HREF="system.html#AEN16255" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >For more detail on burning CDRs, see Alex Withers' article, <A HREF="http://www2.linuxjournal.com/lj-issues/issue66/3335.html" TARGET="_top" >Creating CDs</A >, in the October, 1999 issue of <A HREF="http://www.linuxjournal.com" TARGET="_top" ><I CLASS="CITETITLE" >Linux Journal</I ></A >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN16504" HREF="system.html#AEN16504" >[4]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The <TT CLASS="OPTION" >-c</TT > option to <A HREF="system.html#MKE2FSREF" >mke2fs</A > also invokes a check for bad blocks.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN16659" HREF="system.html#AEN16659" >[5]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Since only <I CLASS="FIRSTTERM" >root</I > has write permission in the <TT CLASS="FILENAME" >/var/lock</TT > directory, a user script cannot set a lock file there.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN16748" HREF="system.html#AEN16748" >[6]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Operators of single-user Linux systems generally prefer something simpler for backups, such as <B CLASS="COMMAND" >tar</B >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN16782" HREF="system.html#AEN16782" >[7]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >As of the <A HREF="bashver4.html#BASH4REF" >version 4 update</A > of Bash, the <TT CLASS="OPTION" >-f</TT > and <TT CLASS="OPTION" >-c</TT > options take a block size of 512 when in <A HREF="sha-bang.html#POSIX2REF" >POSIX</A > mode. Additionally, there are two new options: <TT CLASS="OPTION" >-b</TT > for <A HREF="devproc.html#SOCKETREF" >socket</A > buffer size, and <TT CLASS="OPTION" >-T</TT > for the limit on the number of <I CLASS="FIRSTTERM" >threads</I >.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN16847" HREF="system.html#AEN16847" >[8]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >NAND is the logical <I CLASS="FIRSTTERM" >not-and</I > operator. Its effect is somewhat similar to subtraction.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN16975" HREF="system.html#AEN16975" >[9]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >In Bash and other Bourne shell derivatives, it is possible to set variables in a single command's environment. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var1=value1 var2=value2 commandXXX 2 # $var1 and $var2 set in the environment of 'commandXXX' only.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN17079" HREF="system.html#AEN17079" >[10]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The <I CLASS="FIRSTTERM" >killall</I > system script should not be confused with the <A HREF="internal.html#KILLALLREF" >killall</A > command in <TT CLASS="FILENAME" >/usr/bin</TT >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="extmisc.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Miscellaneous Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part4.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Advanced Topics</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/systemdirs.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Important System Directories</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE=" Important Files" HREF="files.html"><LINK REL="NEXT" TITLE="An Introduction to Programmable Completion" HREF="tabexpansion.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="files.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="tabexpansion.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="SYSTEMDIRS" ></A >Appendix I. Important System Directories</H1 ><P >Sysadmins and anyone else writing administrative scripts should be intimately familiar with the following system directories.</P ><UL ><LI ><P ><TT CLASS="FILENAME" >/bin</TT ></P ><P >Binaries (executables). Basic system programs and utilities (such as <B CLASS="COMMAND" >bash</B >).</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/usr/bin</TT > <A NAME="AEN23969" HREF="#FTN.AEN23969" >[1]</A > </P ><P >More system binaries.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/usr/local/bin</TT ></P ><P >Miscellaneous binaries local to the particular machine.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/sbin</TT ></P ><P >System binaries. Basic system administrative programs and utilities (such as <B CLASS="COMMAND" >fsck</B >).</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/usr/sbin</TT ></P ><P >More system administrative programs and utilities.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/etc</TT ></P ><P ><I CLASS="FIRSTTERM" >Et cetera</I >. Systemwide configuration scripts.</P ><P >Of particular interest are the <A HREF="system.html#FSTABREF" ><TT CLASS="FILENAME" >/etc/fstab</TT ></A > (filesystem table), <TT CLASS="FILENAME" >/etc/mtab</TT > (mounted filesystem table), and the <A HREF="system.html#INITTABREF" ><TT CLASS="FILENAME" >/etc/inittab</TT ></A > files.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/etc/rc.d</TT ></P ><P >Boot scripts, on Red Hat and derivative distributions of Linux.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/usr/share/doc</TT ></P ><P >Documentation for installed packages.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/usr/man</TT ></P ><P >The systemwide <A HREF="external.html#MANREF" >manpages</A >.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/dev</TT ></P ><P >Device directory. Entries (but <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > mount points) for physical and virtual devices. See <A HREF="devproc.html" >Chapter 29</A >.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/proc</TT ></P ><P >Process directory. Contains information and statistics about running processes and kernel parameters. See <A HREF="devproc.html" >Chapter 29</A >.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/sys</TT ></P ><P >Systemwide device directory. Contains information and statistics about device and device names. This is newly added to Linux with the 2.6.X kernels.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/mnt</TT ></P ><P ><I CLASS="FIRSTTERM" >Mount</I >. Directory for mounting hard drive partitions, such as <TT CLASS="FILENAME" >/mnt/dos</TT >, and physical devices. In newer Linux distros, the <TT CLASS="FILENAME" >/media</TT > directory has taken over as the preferred mount point for I/O devices.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/media</TT ></P ><P >In newer Linux distros, the preferred mount point for I/O devices, such as CD/DVD drives or USB flash drives.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/var</TT ></P ><P ><I CLASS="FIRSTTERM" >Variable</I > (changeable) system files. This is a catchall <SPAN CLASS="QUOTE" >"scratchpad"</SPAN > directory for data generated while a Linux/UNIX machine is running.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/var/log</TT ></P ><P >Systemwide log files.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/var/spool/mail</TT ></P ><P >User mail spool.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/lib</TT ></P ><P >Systemwide library files.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/usr/lib</TT ></P ><P >More systemwide library files.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/tmp</TT ></P ><P >System temporary files.</P ></LI ><LI ><P ><TT CLASS="FILENAME" >/boot</TT ></P ><P >System <I CLASS="FIRSTTERM" >boot</I > directory. The kernel, module links, system map, and boot manager reside here.</P ><DIV CLASS="WARNING" ><TABLE CLASS="WARNING" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/warning.png" HSPACE="5" ALT="Warning"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Altering files in this directory may result in an unbootable system.</P ></TD ></TR ></TABLE ></DIV ></LI ></UL ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN23969" HREF="systemdirs.html#AEN23969" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Some early UNIX systems had a fast, small-capacity fixed disk (containing <TT CLASS="FILENAME" >/</TT >, the root partition), and a second drive which was larger, but slower (containing <TT CLASS="FILENAME" >/usr</TT > and other partitions). The most frequently used programs and utilities therefore resided on the small-but-fast drive, in <TT CLASS="FILENAME" >/bin</TT >, and the others on the slower drive, in <TT CLASS="FILENAME" >/usr/bin</TT >.</P ><P >This likewise accounts for the split between <TT CLASS="FILENAME" >/sbin</TT > and <TT CLASS="FILENAME" >/usr/sbin</TT >, <TT CLASS="FILENAME" >/lib</TT > and <TT CLASS="FILENAME" >/usr/lib</TT >, etc.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="files.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="tabexpansion.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Important Files</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >An Introduction to Programmable Completion</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/tabexpansion.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >An Introduction to Programmable Completion</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Important System Directories" HREF="systemdirs.html"><LINK REL="NEXT" TITLE="Localization" HREF="localization.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="systemdirs.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="localization.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="TABEXPANSION" ></A >Appendix J. An Introduction to Programmable Completion</H1 ><P >The <I CLASS="FIRSTTERM" >programmable completion</I > feature in Bash permits typing a partial command, then pressing the <B CLASS="KEYCAP" >[Tab]</B > key to auto-complete the command sequence. <A NAME="AEN24082" HREF="#FTN.AEN24082" >[1]</A > If multiple completions are possible, then <B CLASS="KEYCAP" >[Tab]</B > lists them all. Let's see how it works.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >xtra[Tab]</B ></TT > <TT CLASS="COMPUTEROUTPUT" >xtraceroute xtrapin xtrapproto xtraceroute.real xtrapinfo xtrapreset xtrapchar xtrapout xtrapstats</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >xtrac[Tab]</B ></TT > <TT CLASS="COMPUTEROUTPUT" >xtraceroute xtraceroute.real</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >xtraceroute.r[Tab]</B ></TT > <TT CLASS="COMPUTEROUTPUT" >xtraceroute.real</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Tab completion also works for variables and path names.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $BASH[Tab]</B ></TT > <TT CLASS="COMPUTEROUTPUT" >$BASH $BASH_COMPLETION $BASH_SUBSHELL $BASH_ARGC $BASH_COMPLETION_DIR $BASH_VERSINFO $BASH_ARGV $BASH_LINENO $BASH_VERSION $BASH_COMMAND $BASH_SOURCE</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo /usr/local/[Tab]</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bin/ etc/ include/ libexec/ sbin/ src/ doc/ games/ lib/ man/ share/</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="COMPLETEREF" ></A ></P ><P >The Bash <B CLASS="COMMAND" >complete</B > and <B CLASS="COMMAND" >compgen</B > <A HREF="internal.html#BUILTINREF" >builtins</A > make it possible for <I CLASS="FIRSTTERM" >tab completion</I > to recognize partial <I CLASS="FIRSTTERM" >parameters</I > and <I CLASS="FIRSTTERM" >options</I > to commands. In a very simple case, we can use <B CLASS="COMMAND" >complete</B > from the command-line to specify a short list of acceptable parameters.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >touch sample_command</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >touch file1.txt file2.txt file2.doc file30.txt file4.zzz</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >chmod +x sample_command</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >complete -f -X '!*.txt' sample_command</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >./sample[Tab][Tab]</B ></TT > <TT CLASS="COMPUTEROUTPUT" >sample_command</TT > <TT CLASS="COMPUTEROUTPUT" >file1.txt file2.txt file30.txt</TT > </PRE ></TD ></TR ></TABLE ><P >The <TT CLASS="OPTION" >-f</TT > option to <I CLASS="FIRSTTERM" >complete</I > specifies filenames, and <TT CLASS="OPTION" >-X</TT > the filter pattern.</P ><P ><A NAME="COMPGENREF" ></A ></P ><P >For anything more complex, we could write a script that specifies a list of acceptable command-line parameters. The <B CLASS="COMMAND" >compgen</B > builtin expands a list of <I CLASS="FIRSTTERM" >arguments</I > to <I CLASS="FIRSTTERM" >generate</I > completion matches. </P ><P >Let us take a <A HREF="contributed-scripts.html#USEGETOPT2" >modified version</A > of the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >UseGetOpt.sh</I ></SPAN > script as an example command. This script accepts a number of command-line parameters, preceded by either a single or double dash. And here is the corresponding <I CLASS="FIRSTTERM" >completion script</I >, by convention given a filename corresponding to its associated command.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="USEGETOPTEX" ></A ><P ><B >Example J-1. Completion script for <I CLASS="FIRSTTERM" >UseGetOpt.sh</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # file: UseGetOpt-2 2 # UseGetOpt-2.sh parameter-completion 3 4 _UseGetOpt-2 () # By convention, the function name 5 { #+ starts with an underscore. 6 local cur 7 # Pointer to current completion word. 8 # By convention, it's named "cur" but this isn't strictly necessary. 9 10 COMPREPLY=() # Array variable storing the possible completions. 11 cur=${COMP_WORDS[COMP_CWORD]} 12 13 case "$cur" in 14 -*) 15 COMPREPLY=( $( compgen -W '-a -d -f -l -t -h --aoption --debug \ 16 --file --log --test --help --' -- $cur ) );; 17 # Generate the completion matches and load them into $COMPREPLY array. 18 # xx) May add more cases here. 19 # yy) 20 # zz) 21 esac 22 23 return 0 24 } 25 26 complete -F _UseGetOpt-2 -o filenames ./UseGetOpt-2.sh 27 # ^^ ^^^^^^^^^^^^ Invokes the function _UseGetOpt-2.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Now, let's try it.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >source UseGetOpt-2</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >./UseGetOpt-2.sh -[Tab]</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-- --aoption --debug --file --help --log --test -a -d -f -h -l -t</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >./UseGetOpt-2.sh --[Tab]</B ></TT > <TT CLASS="COMPUTEROUTPUT" >-- --aoption --debug --file --help --log --test</TT > </PRE ></TD ></TR ></TABLE ><P > We begin by <A HREF="internal.html#SOURCEREF" >sourcing</A > the <SPAN CLASS="QUOTE" >"completion script."</SPAN > This sets the command-line parameters. <A NAME="AEN24160" HREF="#FTN.AEN24160" >[2]</A > </P ><P >In the first instance, hitting <B CLASS="KEYCAP" >[Tab]</B > after a single dash, the output is all the possible parameters preceded by <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >one or more</I ></SPAN > dashes. Hitting <B CLASS="KEYCAP" >[Tab]</B > after <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >two</I ></SPAN > dashes gives the possible parameters preceded by <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >two or more</I ></SPAN > dashes.</P ><P >Now, just what is the point of having to jump through flaming hoops to enable command-line tab completion? <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >It saves keystrokes.</I ></SPAN > <A NAME="AEN24173" HREF="#FTN.AEN24173" >[3]</A > </P ><P >--</P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Resources:</I ></SPAN ></P ><P >Bash <A HREF="http://freshmeat.net/projects/bashcompletion" TARGET="_top" > programmable completion</A > project</P ><P >Mitch Frazier's <A HREF="http://www.linuxjournal.com" TARGET="_top" ><I CLASS="CITETITLE" >Linux Journal</I ></A > article, <A HREF="http://www.linuxjournal.com/content/more-using-bash-complete-command" TARGET="_top" ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >More on Using the Bash Complete Command</I ></SPAN ></A ></P ><P >Steve's excellent two-part article, <SPAN CLASS="QUOTE" >"An Introduction to Bash Completion"</SPAN >: <A HREF="http://www.debian-administration.org/article/An_introduction_to_bash_completion_part_1" TARGET="_top" >Part 1</A > and <A HREF="http://www.debian-administration.org/article/An_introduction_to_bash_completion_part_2" TARGET="_top" >Part 2</A ></P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN24082" HREF="tabexpansion.html#AEN24082" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This works only from the <I CLASS="FIRSTTERM" >command line</I >, of course, and not within a script.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN24160" HREF="tabexpansion.html#AEN24160" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Normally the default parameter completion files reside in either the <TT CLASS="FILENAME" >/etc/profile.d</TT > directory or in <TT CLASS="FILENAME" >/etc/bash_completion</TT >. These autoload on system startup. So, after writing a useful completion script, you might wish to move it (as <I CLASS="FIRSTTERM" >root</I >, of course) to one of these directories.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN24173" HREF="tabexpansion.html#AEN24173" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >It has been extensively documented that programmers are willing to put in long hours of effort in order to save ten minutes of <SPAN CLASS="QUOTE" >"unnecessary"</SPAN > labor. This is known as <I CLASS="FIRSTTERM" >optimization</I >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="systemdirs.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="localization.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Important System Directories</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Localization</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/terminalccmds.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Terminal Control Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="External Filters, Programs and Commands" HREF="external.html"><LINK REL="PREVIOUS" TITLE="Communications Commands" HREF="communications.html"><LINK REL="NEXT" TITLE="Math Commands" HREF="mathc.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="communications.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 16. External Filters, Programs and Commands</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="mathc.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="TERMINALCCMDS" ></A >16.7. Terminal Control Commands</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="TERMCOMMANDLISTING1" ></A >Command affecting the console or terminal</B ></P ><DL ><DT ><A NAME="TPUTREF" ></A ><B CLASS="COMMAND" >tput</B ></DT ><DD ><P >Initialize terminal and/or fetch information about it from <SPAN CLASS="DATABASE" >terminfo</SPAN > data. Various options permit certain terminal operations: <B CLASS="COMMAND" >tput clear</B > is the equivalent of <A HREF="terminalccmds.html#CLEARREF" >clear</A >; <B CLASS="COMMAND" >tput reset</B > is the equivalent of <A HREF="terminalccmds.html#RESETREF" >reset</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >tput longname</B ></TT > <TT CLASS="COMPUTEROUTPUT" >xterm terminal emulator (X Window System)</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Issuing a <B CLASS="COMMAND" >tput cup X Y</B > moves the cursor to the (X,Y) coordinates in the current terminal. A <B CLASS="COMMAND" >clear</B > to erase the terminal screen would normally precede this.</P ><P > Some interesting options to <I CLASS="FIRSTTERM" >tput</I > are: <UL ><LI ><P ><TT CLASS="OPTION" >bold</TT >, for high-intensity text</P ></LI ><LI ><P ><TT CLASS="OPTION" >smul</TT >, to underline text in the terminal</P ></LI ><LI ><P ><TT CLASS="OPTION" >smso</TT >, to render text in reverse</P ></LI ><LI ><P ><TT CLASS="OPTION" >sgr0</TT >, to reset the terminal parameters (to normal), without clearing the screen</P ></LI ></UL > </P ><P >Example scripts using <I CLASS="FIRSTTERM" >tput</I >: <OL TYPE="1" ><LI ><P ><A HREF="colorizing.html#COLORECHO" >Example 36-15</A ></P ></LI ><LI ><P ><A HREF="colorizing.html#EX30A" >Example 36-13</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#HOMEWORK" >Example A-44</A ></P ></LI ><LI ><P ><A HREF="contributed-scripts.html#NIM" >Example A-42</A ></P ></LI ><LI ><P ><A HREF="arrays.html#POEM" >Example 27-2</A ></P ></LI ></OL > </P ><P >Note that <A HREF="system.html#STTYREF" >stty</A > offers a more powerful command set for controlling a terminal.</P ></DD ><DT ><A NAME="INFOCMPREF" ></A ><B CLASS="COMMAND" >infocmp</B ></DT ><DD ><P >This command prints out extensive information about the current terminal. It references the <I CLASS="FIRSTTERM" >terminfo</I > database.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >infocmp</B ></TT > <TT CLASS="COMPUTEROUTPUT" ># Reconstructed via infocmp from file: /usr/share/terminfo/r/rxvt rxvt|rxvt terminal emulator (X Window System), am, bce, eo, km, mir, msgr, xenl, xon, colors#8, cols#80, it#8, lines#24, pairs#64, acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l, clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M, ...</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="RESETREF" ></A ><B CLASS="COMMAND" >reset</B ></DT ><DD ><P >Reset terminal parameters and clear text screen. As with <B CLASS="COMMAND" >clear</B >, the cursor and prompt reappear in the upper lefthand corner of the terminal.</P ></DD ><DT ><A NAME="CLEARREF" ></A ><B CLASS="COMMAND" >clear</B ></DT ><DD ><P >The <B CLASS="COMMAND" >clear</B > command simply clears the text screen at the console or in an <I CLASS="FIRSTTERM" >xterm</I >. The prompt and cursor reappear at the upper lefthand corner of the screen or xterm window. This command may be used either at the command line or in a script. See <A HREF="testbranch.html#EX30" >Example 11-26</A >.</P ></DD ><DT ><A NAME="RESIZEREF" ></A ><B CLASS="COMMAND" >resize</B ></DT ><DD ><P >Echoes commands necessary to set <TT CLASS="VARNAME" >$TERM</TT > and <TT CLASS="VARNAME" >$TERMCAP</TT > to duplicate the <I CLASS="FIRSTTERM" >size</I > (dimensions) of the current terminal.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >resize</B ></TT > <TT CLASS="COMPUTEROUTPUT" >set noglob; setenv COLUMNS '80'; setenv LINES '24'; unset noglob;</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="SCRIPTREF" ></A ><B CLASS="COMMAND" >script</B ></DT ><DD ><P >This utility records (saves to a file) all the user keystrokes at the command-line in a console or an xterm window. This, in effect, creates a record of a session.</P ></DD ></DL ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="communications.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="mathc.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Communications Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="external.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Math Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/testbranch.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Testing and Branching</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Loops and Branches" HREF="loops.html"><LINK REL="PREVIOUS" TITLE="Loop Control" HREF="loopcontrol.html"><LINK REL="NEXT" TITLE="Command Substitution" HREF="commandsub.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="loopcontrol.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 11. Loops and Branches</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="commandsub.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="TESTBRANCH" ></A >11.4. Testing and Branching</H1 ><P >The <B CLASS="COMMAND" >case</B > and <B CLASS="COMMAND" >select</B > constructs are technically not loops, since they do not iterate the execution of a code block. Like loops, however, they direct program flow according to conditions at the top or bottom of the block.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="CASEESAC1" ></A >Controlling program flow in a code block</B ></P ><DL ><DT ><B CLASS="COMMAND" >case (in) / esac</B ></DT ><DD ><P >The <B CLASS="COMMAND" >case</B > construct is the shell scripting analog to <TT CLASS="REPLACEABLE" ><I >switch</I ></TT > in <B CLASS="COMMAND" >C/C++</B >. It permits branching to one of a number of code blocks, depending on condition tests. It serves as a kind of shorthand for multiple <SPAN CLASS="TOKEN" >if/then/else</SPAN > statements and is an appropriate tool for creating menus.</P ><P ><P ><B CLASS="COMMAND" >case</B > "$<TT CLASS="REPLACEABLE" ><I >variable</I ></TT >" in <BR><BR> "$<TT CLASS="REPLACEABLE" ><I >condition1</I ></TT >" ) <BR> <TT CLASS="REPLACEABLE" ><I >command</I ></TT >... <BR> ;; <BR><BR> "$<TT CLASS="REPLACEABLE" ><I >condition2</I ></TT >" ) <BR> <TT CLASS="REPLACEABLE" ><I >command</I ></TT >... <BR> ;; <BR><BR><BR><B CLASS="COMMAND" >esac</B > </P ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P > <UL ><LI ><P >Quoting the variables is not mandatory, since word splitting does not take place.</P ></LI ><LI ><P ><A NAME="CASEPAREN" ></A >Each test line ends with a right paren <B CLASS="COMMAND" >)</B >. <A NAME="AEN7087" HREF="#FTN.AEN7087" >[1]</A > </P ></LI ><LI ><P >Each condition block ends with a <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >double</I ></SPAN > semicolon <SPAN CLASS="TOKEN" >;;</SPAN >.</P ></LI ><LI ><P >If a condition tests <I CLASS="FIRSTTERM" >true</I >, then the associated commands execute and the <B CLASS="COMMAND" >case</B > block terminates.</P ></LI ><LI ><P >The entire <B CLASS="COMMAND" >case</B > block ends with an <B CLASS="COMMAND" >esac</B > (<I CLASS="WORDASWORD" >case</I > spelled backwards).</P ></LI ></UL > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX29" ></A ><P ><B >Example 11-25. Using <I CLASS="FIRSTTERM" >case</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Testing ranges of characters. 3 4 echo; echo "Hit a key, then hit return." 5 read Keypress 6 7 case "$Keypress" in 8 [[:lower:]] ) echo "Lowercase letter";; 9 [[:upper:]] ) echo "Uppercase letter";; 10 [0-9] ) echo "Digit";; 11 * ) echo "Punctuation, whitespace, or other";; 12 esac # Allows ranges of characters in [square brackets], 13 #+ or POSIX ranges in [[double square brackets. 14 15 # In the first version of this example, 16 #+ the tests for lowercase and uppercase characters were 17 #+ [a-z] and [A-Z]. 18 # This no longer works in certain locales and/or Linux distros. 19 # POSIX is more portable. 20 # Thanks to Frank Wang for pointing this out. 21 22 # Exercise: 23 # -------- 24 # As the script stands, it accepts a single keystroke, then terminates. 25 # Change the script so it accepts repeated input, 26 #+ reports on each keystroke, and terminates only when "X" is hit. 27 # Hint: enclose everything in a "while" loop. 28 29 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX30" ></A ><P ><B >Example 11-26. Creating menus using <I CLASS="FIRSTTERM" >case</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Crude address database 4 5 clear # Clear the screen. 6 7 echo " Contact List" 8 echo " ------- ----" 9 echo "Choose one of the following persons:" 10 echo 11 echo "[E]vans, Roland" 12 echo "[J]ones, Mildred" 13 echo "[S]mith, Julie" 14 echo "[Z]ane, Morris" 15 echo 16 17 read person 18 19 case "$person" in 20 # Note variable is quoted. 21 22 "E" | "e" ) 23 # Accept upper or lowercase input. 24 echo 25 echo "Roland Evans" 26 echo "4321 Flash Dr." 27 echo "Hardscrabble, CO 80753" 28 echo "(303) 734-9874" 29 echo "(303) 734-9892 fax" 30 echo "revans@zzy.net" 31 echo "Business partner & old friend" 32 ;; 33 # Note double semicolon to terminate each option. 34 35 "J" | "j" ) 36 echo 37 echo "Mildred Jones" 38 echo "249 E. 7th St., Apt. 19" 39 echo "New York, NY 10009" 40 echo "(212) 533-2814" 41 echo "(212) 533-9972 fax" 42 echo "milliej@loisaida.com" 43 echo "Ex-girlfriend" 44 echo "Birthday: Feb. 11" 45 ;; 46 47 # Add info for Smith & Zane later. 48 49 * ) 50 # Default option. 51 # Empty input (hitting RETURN) fits here, too. 52 echo 53 echo "Not yet in database." 54 ;; 55 56 esac 57 58 echo 59 60 # Exercise: 61 # -------- 62 # Change the script so it accepts multiple inputs, 63 #+ instead of terminating after displaying just one address. 64 65 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="CASECL" ></A ></P ><P >An exceptionally clever use of <B CLASS="COMMAND" >case</B > involves testing for command-line parameters. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /bin/bash 2 3 case "$1" in 4 "") echo "Usage: ${0##*/} <filename>"; exit $E_PARAM;; 5 # No command-line parameters, 6 # or first parameter empty. 7 # Note that ${0##*/} is ${var##pattern} param substitution. 8 # Net result is $0. 9 10 -*) FILENAME=./$1;; # If filename passed as argument ($1) 11 #+ starts with a dash, 12 #+ replace it with ./$1 13 #+ so further commands don't interpret it 14 #+ as an option. 15 16 * ) FILENAME=$1;; # Otherwise, $1. 17 esac</PRE ></TD ></TR ></TABLE ></P ><P >Here is a more straightforward example of command-line parameter handling: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #! /bin/bash 2 3 4 while [ $# -gt 0 ]; do # Until you run out of parameters . . . 5 case "$1" in 6 -d|--debug) 7 # "-d" or "--debug" parameter? 8 DEBUG=1 9 ;; 10 -c|--conf) 11 CONFFILE="$2" 12 shift 13 if [ ! -f $CONFFILE ]; then 14 echo "Error: Supplied file doesn't exist!" 15 exit $E_CONFFILE # File not found error. 16 fi 17 ;; 18 esac 19 shift # Check next set of parameters. 20 done 21 22 # From Stefano Falsetto's "Log2Rot" script, 23 #+ part of his "rottlog" package. 24 # Used with permission.</PRE ></TD ></TR ></TABLE ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="CASECMD" ></A ><P ><B >Example 11-27. Using <I CLASS="FIRSTTERM" >command substitution</I > to generate the <I CLASS="FIRSTTERM" >case</I > variable</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # case-cmd.sh: Using command substitution to generate a "case" variable. 3 4 case $( arch ) in # $( arch ) returns machine architecture. 5 # Equivalent to 'uname -m' ... 6 i386 ) echo "80386-based machine";; 7 i486 ) echo "80486-based machine";; 8 i586 ) echo "Pentium-based machine";; 9 i686 ) echo "Pentium2+-based machine";; 10 * ) echo "Other type of machine";; 11 esac 12 13 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="CSGLOB" ></A ></P ><P >A <B CLASS="COMMAND" >case</B > construct can filter strings for <A HREF="globbingref.html" >globbing</A > patterns.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="MATCHSTRING" ></A ><P ><B >Example 11-28. Simple string matching</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # match-string.sh: Simple string matching 3 # using a 'case' construct. 4 5 match_string () 6 { # Exact string match. 7 MATCH=0 8 E_NOMATCH=90 9 PARAMS=2 # Function requires 2 arguments. 10 E_BAD_PARAMS=91 11 12 [ $# -eq $PARAMS ] || return $E_BAD_PARAMS 13 14 case "$1" in 15 "$2") return $MATCH;; 16 * ) return $E_NOMATCH;; 17 esac 18 19 } 20 21 22 a=one 23 b=two 24 c=three 25 d=two 26 27 28 match_string $a # wrong number of parameters 29 echo $? # 91 30 31 match_string $a $b # no match 32 echo $? # 90 33 34 match_string $b $d # match 35 echo $? # 0 36 37 38 exit 0 </PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ISALPHA" ></A ><P ><B >Example 11-29. Checking for alphabetic input</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # isalpha.sh: Using a "case" structure to filter a string. 3 4 SUCCESS=0 5 FAILURE=1 # Was FAILURE=-1, 6 #+ but Bash no longer allows negative return value. 7 8 isalpha () # Tests whether *first character* of input string is alphabetic. 9 { 10 if [ -z "$1" ] # No argument passed? 11 then 12 return $FAILURE 13 fi 14 15 case "$1" in 16 [a-zA-Z]*) return $SUCCESS;; # Begins with a letter? 17 * ) return $FAILURE;; 18 esac 19 } # Compare this with "isalpha ()" function in C. 20 21 22 isalpha2 () # Tests whether *entire string* is alphabetic. 23 { 24 [ $# -eq 1 ] || return $FAILURE 25 26 case $1 in 27 *[!a-zA-Z]*|"") return $FAILURE;; 28 *) return $SUCCESS;; 29 esac 30 } 31 32 isdigit () # Tests whether *entire string* is numerical. 33 { # In other words, tests for integer variable. 34 [ $# -eq 1 ] || return $FAILURE 35 36 case $1 in 37 *[!0-9]*|"") return $FAILURE;; 38 *) return $SUCCESS;; 39 esac 40 } 41 42 43 44 check_var () # Front-end to isalpha (). 45 { 46 if isalpha "$@" 47 then 48 echo "\"$*\" begins with an alpha character." 49 if isalpha2 "$@" 50 then # No point in testing if first char is non-alpha. 51 echo "\"$*\" contains only alpha characters." 52 else 53 echo "\"$*\" contains at least one non-alpha character." 54 fi 55 else 56 echo "\"$*\" begins with a non-alpha character." 57 # Also "non-alpha" if no argument passed. 58 fi 59 60 echo 61 62 } 63 64 digit_check () # Front-end to isdigit (). 65 { 66 if isdigit "$@" 67 then 68 echo "\"$*\" contains only digits [0 - 9]." 69 else 70 echo "\"$*\" has at least one non-digit character." 71 fi 72 73 echo 74 75 } 76 77 a=23skidoo 78 b=H3llo 79 c=-What? 80 d=What? 81 e=$(echo $b) # Command substitution. 82 f=AbcDef 83 g=27234 84 h=27a34 85 i=27.34 86 87 check_var $a 88 check_var $b 89 check_var $c 90 check_var $d 91 check_var $e 92 check_var $f 93 check_var # No argument passed, so what happens? 94 # 95 digit_check $g 96 digit_check $h 97 digit_check $i 98 99 100 exit 0 # Script improved by S.C. 101 102 # Exercise: 103 # -------- 104 # Write an 'isfloat ()' function that tests for floating point numbers. 105 # Hint: The function duplicates 'isdigit ()', 106 #+ but adds a test for a mandatory decimal point.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="SELECTREF" ></A ><B CLASS="COMMAND" >select</B ></DT ><DD ><P >The <B CLASS="COMMAND" >select</B > construct, adopted from the Korn Shell, is yet another tool for building menus.</P ><P ><P ><B CLASS="COMMAND" >select</B > <TT CLASS="REPLACEABLE" ><I >variable</I ></TT > [in <TT CLASS="REPLACEABLE" ><I >list</I ></TT >]<BR> do <BR> <TT CLASS="REPLACEABLE" ><I >command</I ></TT >... <BR> break <BR> done </P ></P ><P >This prompts the user to enter one of the choices presented in the variable list. Note that <B CLASS="COMMAND" >select</B > uses the <TT CLASS="VARNAME" >$PS3</TT > prompt (<TT CLASS="PROMPT" >#? </TT >) by default, but this may be changed.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX31" ></A ><P ><B >Example 11-30. Creating menus using <I CLASS="FIRSTTERM" >select</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 PS3='Choose your favorite vegetable: ' # Sets the prompt string. 4 # Otherwise it defaults to #? . 5 6 echo 7 8 select vegetable in "beans" "carrots" "potatoes" "onions" "rutabagas" 9 do 10 echo 11 echo "Your favorite veggie is $vegetable." 12 echo "Yuck!" 13 echo 14 break # What happens if there is no 'break' here? 15 done 16 17 exit 18 19 # Exercise: 20 # -------- 21 # Fix this script to accept user input not specified in 22 #+ the "select" statement. 23 # For example, if the user inputs "peas," 24 #+ the script would respond "Sorry. That is not on the menu."</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="INLISTOMIT" ></A ></P ><P >If <TT CLASS="USERINPUT" ><B >in <TT CLASS="REPLACEABLE" ><I >list</I ></TT ></B ></TT > is omitted, then <B CLASS="COMMAND" >select</B > uses the list of command line arguments (<TT CLASS="VARNAME" >$@</TT >) passed to the script or the function containing the <B CLASS="COMMAND" >select</B > construct.</P ><P >Compare this to the behavior of a <P ><B CLASS="COMMAND" >for</B > <TT CLASS="REPLACEABLE" ><I >variable</I ></TT > [in <TT CLASS="REPLACEABLE" ><I >list</I ></TT >]</P > construct with the <TT CLASS="USERINPUT" ><B >in <TT CLASS="REPLACEABLE" ><I >list</I ></TT ></B ></TT > omitted.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX32" ></A ><P ><B >Example 11-31. Creating menus using <I CLASS="FIRSTTERM" >select</I > in a function</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 PS3='Choose your favorite vegetable: ' 4 5 echo 6 7 choice_of() 8 { 9 select vegetable 10 # [in list] omitted, so 'select' uses arguments passed to function. 11 do 12 echo 13 echo "Your favorite veggie is $vegetable." 14 echo "Yuck!" 15 echo 16 break 17 done 18 } 19 20 choice_of beans rice carrots radishes rutabaga spinach 21 # $1 $2 $3 $4 $5 $6 22 # passed to choice_of() function 23 24 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="bash2.html#RESISTOR" >Example 37-3</A >.</P ></DD ></DL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN7087" HREF="testbranch.html#AEN7087" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Pattern-match lines may also <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >start</I ></SPAN > with a <B CLASS="COMMAND" >(</B > left paren to give the layout a more structured appearance.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 case $( arch ) in # $( arch ) returns machine architecture. 2 ( i386 ) echo "80386-based machine";; 3 # ^ ^ 4 ( i486 ) echo "80486-based machine";; 5 ( i586 ) echo "Pentium-based machine";; 6 ( i686 ) echo "Pentium2+-based machine";; 7 ( * ) echo "Other type of machine";; 8 esac</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="loopcontrol.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="commandsub.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Loop Control</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="loops.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Command Substitution</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/tests.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Tests</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Basics" HREF="part2.html"><LINK REL="PREVIOUS" TITLE="Exit and Exit Status" HREF="exit-status.html"><LINK REL="NEXT" TITLE="File test operators" HREF="fto.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="exit-status.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="fto.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="TESTS" ></A >Chapter 7. Tests</H1 ><P ><A NAME="IFTHEN" ></A ></P ><P >Every reasonably complete programming language can test for a condition, then act according to the result of the test. Bash has the <A HREF="tests.html#TTESTREF" >test</A > command, various <A HREF="tests.html#DBLBRACKETS" >bracket</A > and <A HREF="tests.html#DBLPARENSTST" >parenthesis</A > operators, and the <B CLASS="COMMAND" >if/then</B > construct.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="TESTCONSTRUCTS" ></A >7.1. Test Constructs</H1 ><P ><A NAME="TESTCONSTRUCTS1" ></A ></P ><UL ><LI ><P >An <B CLASS="COMMAND" >if/then</B > construct tests whether the <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of a list of commands is <SPAN CLASS="RETURNVALUE" >0</SPAN > (since 0 means <SPAN CLASS="QUOTE" >"success"</SPAN > by UNIX convention), and if so, executes one or more commands.</P ></LI ><LI ><P >There exists a dedicated command called <B CLASS="COMMAND" > [</B > (<A HREF="special-chars.html#LEFTBRACKET" >left bracket</A > special character). It is a synonym for <B CLASS="COMMAND" >test</B >, and a <A HREF="internal.html#BUILTINREF" >builtin</A > for efficiency reasons. This command considers its arguments as comparison expressions or file tests and returns an exit status corresponding to the result of the comparison (0 for true, 1 for false).</P ></LI ><LI ><P >With version 2.02, Bash introduced the <A HREF="tests.html#DBLBRACKETS" >[[ ... ]]</A > <I CLASS="FIRSTTERM" >extended test command</I >, which performs comparisons in a manner more familiar to programmers from other languages. Note that <B CLASS="COMMAND" >[[</B > is a <A HREF="internal.html#KEYWORDREF" >keyword</A >, not a command.</P ><P >Bash sees <TT CLASS="USERINPUT" ><B >[[ $a -lt $b ]]</B ></TT > as a single element, which returns an exit status.</P ></LI ><LI ><P ><A NAME="DBLPARENSTST" ></A ></P ><P >The <A HREF="dblparens.html" >(( ... ))</A > and <A HREF="internal.html#LETREF" >let ...</A > constructs return an <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A >, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >according to whether the arithmetic expressions they evaluate expand to a non-zero value</I ></SPAN >. These <A HREF="arithexp.html#ARITHEXPREF" >arithmetic-expansion</A > constructs may therefore be used to perform <A HREF="comparison-ops.html#ICOMPARISON1" >arithmetic comparisons</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 (( 0 && 1 )) # Logical AND 2 echo $? # 1 *** 3 # And so ... 4 let "num = (( 0 && 1 ))" 5 echo $num # 0 6 # But ... 7 let "num = (( 0 && 1 ))" 8 echo $? # 1 *** 9 10 11 (( 200 || 11 )) # Logical OR 12 echo $? # 0 *** 13 # ... 14 let "num = (( 200 || 11 ))" 15 echo $num # 1 16 let "num = (( 200 || 11 ))" 17 echo $? # 0 *** 18 19 20 (( 200 | 11 )) # Bitwise OR 21 echo $? # 0 *** 22 # ... 23 let "num = (( 200 | 11 ))" 24 echo $num # 203 25 let "num = (( 200 | 11 ))" 26 echo $? # 0 *** 27 28 # The "let" construct returns the same exit status 29 #+ as the double-parentheses arithmetic expansion.</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="ARXS" ></A >Again, note that the <I CLASS="FIRSTTERM" >exit status</I > of an arithmetic expression is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > an error value. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var=-2 && (( var+=2 )) 2 echo $? # 1 3 4 var=-2 && (( var+=2 )) && echo $var 5 # Will not echo $var!</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></LI ><LI ><P ><A NAME="IFGREPREF" ></A ></P ><P >An <B CLASS="COMMAND" >if</B > can test any command, not just conditions enclosed within brackets.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if cmp a b &> /dev/null # Suppress output. 2 then echo "Files a and b are identical." 3 else echo "Files a and b differ." 4 fi 5 6 # The very useful "if-grep" construct: 7 # ----------------------------------- 8 if grep -q Bash file 9 then echo "File contains at least one occurrence of Bash." 10 fi 11 12 word=Linux 13 letter_sequence=inu 14 if echo "$word" | grep -q "$letter_sequence" 15 # The "-q" option to grep suppresses output. 16 then 17 echo "$letter_sequence found in $word" 18 else 19 echo "$letter_sequence not found in $word" 20 fi 21 22 23 if COMMAND_WHOSE_EXIT_STATUS_IS_0_UNLESS_ERROR_OCCURRED 24 then echo "Command succeeded." 25 else echo "Command failed." 26 fi</PRE ></TD ></TR ></TABLE > </P ></LI ><LI ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >These last two examples courtesy of Stéphane Chazelas.</I ></SPAN ></P ></LI ></UL ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX10" ></A ><P ><B >Example 7-1. What is truth?</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Tip: 4 # If you're unsure how a certain condition might evaluate, 5 #+ test it in an if-test. 6 7 echo 8 9 echo "Testing \"0\"" 10 if [ 0 ] # zero 11 then 12 echo "0 is true." 13 else # Or else ... 14 echo "0 is false." 15 fi # 0 is true. 16 17 echo 18 19 echo "Testing \"1\"" 20 if [ 1 ] # one 21 then 22 echo "1 is true." 23 else 24 echo "1 is false." 25 fi # 1 is true. 26 27 echo 28 29 echo "Testing \"-1\"" 30 if [ -1 ] # minus one 31 then 32 echo "-1 is true." 33 else 34 echo "-1 is false." 35 fi # -1 is true. 36 37 echo 38 39 echo "Testing \"NULL\"" 40 if [ ] # NULL (empty condition) 41 then 42 echo "NULL is true." 43 else 44 echo "NULL is false." 45 fi # NULL is false. 46 47 echo 48 49 echo "Testing \"xyz\"" 50 if [ xyz ] # string 51 then 52 echo "Random string is true." 53 else 54 echo "Random string is false." 55 fi # Random string is true. 56 57 echo 58 59 echo "Testing \"\$xyz\"" 60 if [ $xyz ] # Tests if $xyz is null, but... 61 # it's only an uninitialized variable. 62 then 63 echo "Uninitialized variable is true." 64 else 65 echo "Uninitialized variable is false." 66 fi # Uninitialized variable is false. 67 68 echo 69 70 echo "Testing \"-n \$xyz\"" 71 if [ -n "$xyz" ] # More pedantically correct. 72 then 73 echo "Uninitialized variable is true." 74 else 75 echo "Uninitialized variable is false." 76 fi # Uninitialized variable is false. 77 78 echo 79 80 81 xyz= # Initialized, but set to null value. 82 83 echo "Testing \"-n \$xyz\"" 84 if [ -n "$xyz" ] 85 then 86 echo "Null variable is true." 87 else 88 echo "Null variable is false." 89 fi # Null variable is false. 90 91 92 echo 93 94 95 # When is "false" true? 96 97 echo "Testing \"false\"" 98 if [ "false" ] # It seems that "false" is just a string ... 99 then 100 echo "\"false\" is true." #+ and it tests true. 101 else 102 echo "\"false\" is false." 103 fi # "false" is true. 104 105 echo 106 107 echo "Testing \"\$false\"" # Again, uninitialized variable. 108 if [ "$false" ] 109 then 110 echo "\"\$false\" is true." 111 else 112 echo "\"\$false\" is false." 113 fi # "$false" is false. 114 # Now, we get the expected result. 115 116 # What would happen if we tested the uninitialized variable "$true"? 117 118 echo 119 120 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="FORMALPARA" ><P ><B >Exercise. </B >Explain the behavior of <A HREF="tests.html#EX10" >Example 7-1</A >, above.</P ></DIV ><P ><A NAME="ELSEREF" ></A ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ condition-true ] 2 then 3 command 1 4 command 2 5 ... 6 else # Or else ... 7 # Adds default code block executing if original condition tests false. 8 command 3 9 command 4 10 ... 11 fi</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >When <I CLASS="FIRSTTERM" >if</I > and <I CLASS="FIRSTTERM" >then</I > are on same line in a condition test, a semicolon must terminate the <I CLASS="FIRSTTERM" >if</I > statement. Both <I CLASS="FIRSTTERM" >if</I > and <I CLASS="FIRSTTERM" >then</I > are <A HREF="internal.html#KEYWORDREF" >keywords</A >. Keywords (or commands) begin statements, and before a new statement on the same line begins, the old one must terminate.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ -x "$filename" ]; then</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="ELIFREF1" ></A >Else if and elif</B ></P ><DL ><DT ><SPAN CLASS="TOKEN" >elif</SPAN ></DT ><DD ><P ><TT CLASS="USERINPUT" ><B >elif</B ></TT > is a contraction for <I CLASS="FIRSTTERM" >else if</I >. The effect is to nest an inner <SPAN CLASS="TOKEN" >if/then</SPAN > construct within an outer one.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ condition1 ] 2 then 3 command1 4 command2 5 command3 6 elif [ condition2 ] 7 # Same as else if 8 then 9 command4 10 command5 11 else 12 default-command 13 fi</PRE ></TD ></TR ></TABLE > </P ></DD ></DL ></DIV ><P > <A NAME="IFREF2" ></A > The <TT CLASS="USERINPUT" ><B >if test condition-true</B ></TT > construct is the exact equivalent of <TT CLASS="USERINPUT" ><B >if [ condition-true ]</B ></TT >. As it happens, the left bracket, <B CLASS="COMMAND" >[</B > , is a <I CLASS="FIRSTTERM" >token</I > <A NAME="AEN3140" HREF="#FTN.AEN3140" >[1]</A > which invokes the <B CLASS="COMMAND" >test</B > command. The closing right bracket, <B CLASS="COMMAND" >]</B > , in an if/test should not therefore be strictly necessary, however newer versions of Bash require it.</P ><P ><A NAME="TTESTREF" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >test</B > command is a Bash <A HREF="internal.html#BUILTINREF" >builtin</A > which tests file types and compares strings. Therefore, in a Bash script, <B CLASS="COMMAND" >test</B > does <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > call the external <TT CLASS="FILENAME" >/usr/bin/test</TT > binary, which is part of the <I CLASS="FIRSTTERM" >sh-utils</I > package. Likewise, <B CLASS="COMMAND" >[</B > does not call <TT CLASS="FILENAME" >/usr/bin/[</TT >, which is linked to <TT CLASS="FILENAME" >/usr/bin/test</TT >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >type test</B ></TT > <TT CLASS="COMPUTEROUTPUT" >test is a shell builtin</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >type '['</B ></TT > <TT CLASS="COMPUTEROUTPUT" >[ is a shell builtin</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >type '[['</B ></TT > <TT CLASS="COMPUTEROUTPUT" >[[ is a shell keyword</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >type ']]'</B ></TT > <TT CLASS="COMPUTEROUTPUT" >]] is a shell keyword</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >type ']'</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bash: type: ]: not found</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="USRBINTEST" ></A ></P ><P >If, for some reason, you wish to use <TT CLASS="FILENAME" >/usr/bin/test</TT > in a Bash script, then specify it by full pathname.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX11" ></A ><P ><B >Example 7-2. Equivalence of <I CLASS="FIRSTTERM" >test</I >, <TT CLASS="FILENAME" >/usr/bin/test</TT >, <SPAN CLASS="TOKEN" >[ ]</SPAN >, and <TT CLASS="FILENAME" >/usr/bin/[</TT ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo 4 5 if test -z "$1" 6 then 7 echo "No command-line arguments." 8 else 9 echo "First command-line argument is $1." 10 fi 11 12 echo 13 14 if /usr/bin/test -z "$1" # Equivalent to "test" builtin. 15 # ^^^^^^^^^^^^^ # Specifying full pathname. 16 then 17 echo "No command-line arguments." 18 else 19 echo "First command-line argument is $1." 20 fi 21 22 echo 23 24 if [ -z "$1" ] # Functionally identical to above code blocks. 25 # if [ -z "$1" should work, but... 26 #+ Bash responds to a missing close-bracket with an error message. 27 then 28 echo "No command-line arguments." 29 else 30 echo "First command-line argument is $1." 31 fi 32 33 echo 34 35 36 if /usr/bin/[ -z "$1" ] # Again, functionally identical to above. 37 # if /usr/bin/[ -z "$1" # Works, but gives an error message. 38 # # Note: 39 # This has been fixed in Bash, version 3.x. 40 then 41 echo "No command-line arguments." 42 else 43 echo "First command-line argument is $1." 44 fi 45 46 echo 47 48 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN3206" ></A ><P ><A NAME="DBLBRACKETS" ></A >The <SPAN CLASS="TOKEN" >[[ ]]</SPAN > construct is the more versatile Bash version of <SPAN CLASS="TOKEN" >[ ]</SPAN >. This is the <I CLASS="FIRSTTERM" >extended test command</I >, adopted from <I CLASS="FIRSTTERM" >ksh88</I >.</P ><P >* * *</P ><P >No filename expansion or word splitting takes place between <SPAN CLASS="TOKEN" >[[</SPAN > and <SPAN CLASS="TOKEN" >]]</SPAN >, but there is parameter expansion and command substitution. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 file=/etc/passwd 2 3 if [[ -e $file ]] 4 then 5 echo "Password file exists." 6 fi</PRE ></TD ></TR ></TABLE > </P ><P >Using the <B CLASS="COMMAND" >[[ ... ]]</B > test construct, rather than <B CLASS="COMMAND" >[ ... ]</B > can prevent many logic errors in scripts. For example, the <SPAN CLASS="TOKEN" >&&</SPAN >, <SPAN CLASS="TOKEN" >||</SPAN >, <SPAN CLASS="TOKEN" ><</SPAN >, and <SPAN CLASS="TOKEN" >></SPAN > operators work within a <SPAN CLASS="TOKEN" >[[ ]]</SPAN > test, despite giving an error within a <SPAN CLASS="TOKEN" >[ ]</SPAN > construct.</P ><P ><A NAME="DBLBRAEV" ></A ></P ><P ><I CLASS="FIRSTTERM" >Arithmetic evaluation</I > of octal / hexadecimal constants takes place automatically within a <SPAN CLASS="TOKEN" >[[ ... ]]</SPAN > construct. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # [[ Octal and hexadecimal evaluation ]] 2 # Thank you, Moritz Gronbach, for pointing this out. 3 4 5 decimal=15 6 octal=017 # = 15 (decimal) 7 hex=0x0f # = 15 (decimal) 8 9 if [ "$decimal" -eq "$octal" ] 10 then 11 echo "$decimal equals $octal" 12 else 13 echo "$decimal is not equal to $octal" # 15 is not equal to 017 14 fi # Doesn't evaluate within [ single brackets ]! 15 16 17 if [[ "$decimal" -eq "$octal" ]] 18 then 19 echo "$decimal equals $octal" # 15 equals 017 20 else 21 echo "$decimal is not equal to $octal" 22 fi # Evaluates within [[ double brackets ]]! 23 24 if [[ "$decimal" -eq "$hex" ]] 25 then 26 echo "$decimal equals $hex" # 15 equals 0x0f 27 else 28 echo "$decimal is not equal to $hex" 29 fi # [[ $hexadecimal ]] also evaluates!</PRE ></TD ></TR ></TABLE > </P ></DIV ></TD ></TR ></TABLE ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="100%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Following an <B CLASS="COMMAND" >if</B >, neither the <B CLASS="COMMAND" >test</B > command nor the test brackets ( [ ] or [[ ]] ) are strictly necessary. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 dir=/home/bozo 2 3 if cd "$dir" 2>/dev/null; then # "2>/dev/null" hides error message. 4 echo "Now in $dir." 5 else 6 echo "Can't change to $dir." 7 fi</PRE ></TD ></TR ></TABLE > The "if COMMAND" construct returns the exit status of COMMAND.</P ><P >Similarly, a condition within test brackets may stand alone without an <B CLASS="COMMAND" >if</B >, when used in combination with a <A HREF="list-cons.html#LISTCONSREF" >list construct</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var1=20 2 var2=22 3 [ "$var1" -ne "$var2" ] && echo "$var1 is not equal to $var2" 4 5 home=/home/bozo 6 [ -d "$home" ] || echo "$home directory does not exist."</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="DBLPRX" ></A >The <A HREF="dblparens.html" >(( )) construct</A > expands and evaluates an arithmetic expression. If the expression evaluates as zero, it returns an <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of <SPAN CLASS="RETURNVALUE" >1</SPAN >, or <SPAN CLASS="QUOTE" >"false"</SPAN >. A non-zero expression returns an exit status of <SPAN CLASS="RETURNVALUE" >0</SPAN >, or <SPAN CLASS="QUOTE" >"true"</SPAN >. This is in marked contrast to using the <B CLASS="COMMAND" >test</B > and <SPAN CLASS="TOKEN" >[ ]</SPAN > constructs previously discussed.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="ARITHTESTS" ></A ><P ><B >Example 7-3. Arithmetic Tests using <SPAN CLASS="TOKEN" >(( ))</SPAN ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # arith-tests.sh 3 # Arithmetic tests. 4 5 # The (( ... )) construct evaluates and tests numerical expressions. 6 # Exit status opposite from [ ... ] construct! 7 8 (( 0 )) 9 echo "Exit status of \"(( 0 ))\" is $?." # 1 10 11 (( 1 )) 12 echo "Exit status of \"(( 1 ))\" is $?." # 0 13 14 (( 5 > 4 )) # true 15 echo "Exit status of \"(( 5 > 4 ))\" is $?." # 0 16 17 (( 5 > 9 )) # false 18 echo "Exit status of \"(( 5 > 9 ))\" is $?." # 1 19 20 (( 5 == 5 )) # true 21 echo "Exit status of \"(( 5 == 5 ))\" is $?." # 0 22 # (( 5 = 5 )) gives an error message. 23 24 (( 5 - 5 )) # 0 25 echo "Exit status of \"(( 5 - 5 ))\" is $?." # 1 26 27 (( 5 / 4 )) # Division o.k. 28 echo "Exit status of \"(( 5 / 4 ))\" is $?." # 0 29 30 (( 1 / 2 )) # Division result < 1. 31 echo "Exit status of \"(( 1 / 2 ))\" is $?." # Rounded off to 0. 32 # 1 33 34 (( 1 / 0 )) 2>/dev/null # Illegal division by 0. 35 # ^^^^^^^^^^^ 36 echo "Exit status of \"(( 1 / 0 ))\" is $?." # 1 37 38 # What effect does the "2>/dev/null" have? 39 # What would happen if it were removed? 40 # Try removing it, then rerunning the script. 41 42 # ======================================= # 43 44 # (( ... )) also useful in an if-then test. 45 46 var1=5 47 var2=4 48 49 if (( var1 > var2 )) 50 then #^ ^ Note: Not $var1, $var2. Why? 51 echo "$var1 is greater than $var2" 52 fi # 5 is greater than 4 53 54 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN3140" HREF="tests.html#AEN3140" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="TOKENREF" ></A >A <I CLASS="FIRSTTERM" >token</I > is a symbol or short string with a special meaning attached to it (a <A HREF="regexp.html#METAMEANINGREF" >meta-meaning</A >). In Bash, certain tokens, such as <B CLASS="COMMAND" >[</B > and <A HREF="special-chars.html#DOTREF" >. (dot-command)</A >, may expand to <I CLASS="FIRSTTERM" >keywords</I > and commands.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="exit-status.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="fto.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Exit and Exit Status</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part2.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >File test operators</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/testsandcomparisons.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Tests and Comparisons: Alternatives</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Miscellany" HREF="miscellany.html"><LINK REL="PREVIOUS" TITLE="Shell Wrappers" HREF="wrapper.html"><LINK REL="NEXT" TITLE="Recursion: a script calling itself" HREF="recursionsct.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="wrapper.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 36. Miscellany</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="recursionsct.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="TESTSANDCOMPARISONS" ></A >36.3. Tests and Comparisons: Alternatives</H1 ><P >For tests, the <A HREF="tests.html#DBLBRACKETS" >[[ ]]</A > construct may be more appropriate than <TT CLASS="USERINPUT" ><B >[ ]</B ></TT >. Likewise, <A HREF="comparison-ops.html#ICOMPARISON1" >arithmetic comparisons</A > might benefit from the <A HREF="dblparens.html" >(( ))</A > construct. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 a=8 2 3 # All of the comparisons below are equivalent. 4 test "$a" -lt 16 && echo "yes, $a < 16" # "and list" 5 /bin/test "$a" -lt 16 && echo "yes, $a < 16" 6 [ "$a" -lt 16 ] && echo "yes, $a < 16" 7 [[ $a -lt 16 ]] && echo "yes, $a < 16" # Quoting variables within 8 (( a < 16 )) && echo "yes, $a < 16" # [[ ]] and (( )) not necessary. 9 10 city="New York" 11 # Again, all of the comparisons below are equivalent. 12 test "$city" \< Paris && echo "Yes, Paris is greater than $city" 13 # Greater ASCII order. 14 /bin/test "$city" \< Paris && echo "Yes, Paris is greater than $city" 15 [ "$city" \< Paris ] && echo "Yes, Paris is greater than $city" 16 [[ $city < Paris ]] && echo "Yes, Paris is greater than $city" 17 # Need not quote $city. 18 19 # Thank you, S.C.</PRE ></TD ></TR ></TABLE ></P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="wrapper.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="recursionsct.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Shell Wrappers</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Recursion: a script calling itself</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/testtest.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Testing Your Knowledge of Tests</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Tests" HREF="tests.html"><LINK REL="PREVIOUS" TITLE="Nested if/then Condition Tests" HREF="nestedifthen.html"><LINK REL="NEXT" TITLE="Operations and Related Topics" HREF="operations.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="nestedifthen.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 7. Tests</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="operations.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="TESTTEST" ></A >7.5. Testing Your Knowledge of Tests</H1 ><P >The systemwide <TT CLASS="FILENAME" >xinitrc</TT > file can be used to launch the X server. This file contains quite a number of <I CLASS="FIRSTTERM" >if/then</I > tests. The following is excerpted from an <SPAN CLASS="QUOTE" >"ancient"</SPAN > version of <TT CLASS="FILENAME" >xinitrc</TT > (<I CLASS="FIRSTTERM" >Red Hat 7.1</I >, or thereabouts).</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ -f $HOME/.Xclients ]; then 2 exec $HOME/.Xclients 3 elif [ -f /etc/X11/xinit/Xclients ]; then 4 exec /etc/X11/xinit/Xclients 5 else 6 # failsafe settings. Although we should never get here 7 # (we provide fallbacks in Xclients as well) it can't hurt. 8 xclock -geometry 100x100-5+5 & 9 xterm -geometry 80x50-50+150 & 10 if [ -f /usr/bin/netscape -a -f /usr/share/doc/HTML/index.html ]; then 11 netscape /usr/share/doc/HTML/index.html & 12 fi 13 fi</PRE ></TD ></TR ></TABLE ></P ><P >Explain the <I CLASS="FIRSTTERM" >test</I > constructs in the above snippet, then examine an updated version of the file, <TT CLASS="FILENAME" >/etc/X11/xinit/xinitrc</TT >, and analyze the <I CLASS="FIRSTTERM" >if/then</I > test constructs there. You may need to refer ahead to the discussions of <A HREF="textproc.html#GREPREF" >grep</A >, <A HREF="sedawk.html#SEDREF" >sed</A >, and <A HREF="regexp.html#REGEXREF" >regular expressions</A >.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="nestedifthen.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="operations.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Nested <TT CLASS="REPLACEABLE" ><I >if/then</I ></TT > Condition Tests</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="tests.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Operations and Related Topics</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/textproc.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Text Processing Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="External Filters, Programs and Commands" HREF="external.html"><LINK REL="PREVIOUS" TITLE="Time / Date Commands" HREF="timedate.html"><LINK REL="NEXT" TITLE="File and Archiving Commands" HREF="filearchiv.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="timedate.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 16. External Filters, Programs and Commands</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="filearchiv.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="TEXTPROC" ></A >16.4. Text Processing Commands</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="TPCOMMANDLISTING1" ></A >Commands affecting text and text files</B ></P ><DL ><DT ><A NAME="SORTREF" ></A ><B CLASS="COMMAND" >sort</B ></DT ><DD ><P >File sort utility, often used as a filter in a pipe. This command sorts a <I CLASS="FIRSTTERM" >text stream</I > or file forwards or backwards, or according to various keys or character positions. Using the <TT CLASS="OPTION" >-m</TT > option, it merges presorted input files. The <I CLASS="FIRSTTERM" >info page</I > lists its many capabilities and options. See <A HREF="loops.html#FINDSTRING" >Example 11-10</A >, <A HREF="loops.html#SYMLINKS" >Example 11-11</A >, and <A HREF="contributed-scripts.html#MAKEDICT" >Example A-8</A >.</P ></DD ><DT ><A NAME="TSORTREF" ></A ><B CLASS="COMMAND" >tsort</B ></DT ><DD ><P ><I CLASS="FIRSTTERM" >Topological sort</I >, reading in pairs of whitespace-separated strings and sorting according to input patterns. The original purpose of <B CLASS="COMMAND" >tsort</B > was to sort a list of dependencies for an obsolete version of the <I CLASS="FIRSTTERM" >ld</I > linker in an <SPAN CLASS="QUOTE" >"ancient"</SPAN > version of UNIX.</P ><P >The results of a <I CLASS="FIRSTTERM" >tsort</I > will usually differ markedly from those of the standard <B CLASS="COMMAND" >sort</B > command, above.</P ></DD ><DT ><A NAME="UNIQREF" ></A ><B CLASS="COMMAND" >uniq</B ></DT ><DD ><P >This filter removes duplicate lines from a sorted file. It is often seen in a pipe coupled with <A HREF="textproc.html#SORTREF" >sort</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat list-1 list-2 list-3 | sort | uniq > final.list 2 # Concatenates the list files, 3 # sorts them, 4 # removes duplicate lines, 5 # and finally writes the result to an output file.</PRE ></TD ></TR ></TABLE ></P ><P >The useful <TT CLASS="OPTION" >-c</TT > option prefixes each line of the input file with its number of occurrences.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat testfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" >This line occurs only once. This line occurs twice. This line occurs twice. This line occurs three times. This line occurs three times. This line occurs three times.</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >uniq -c testfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" > 1 This line occurs only once. 2 This line occurs twice. 3 This line occurs three times.</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >sort testfile | uniq -c | sort -nr</B ></TT > <TT CLASS="COMPUTEROUTPUT" > 3 This line occurs three times. 2 This line occurs twice. 1 This line occurs only once.</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The <TT CLASS="USERINPUT" ><B >sort INPUTFILE | uniq -c | sort -nr</B ></TT > command string produces a <I CLASS="FIRSTTERM" >frequency of occurrence</I > listing on the <TT CLASS="FILENAME" >INPUTFILE</TT > file (the <TT CLASS="OPTION" >-nr</TT > options to <B CLASS="COMMAND" >sort</B > cause a reverse numerical sort). This template finds use in analysis of log files and dictionary lists, and wherever the lexical structure of a document needs to be examined.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="WF" ></A ><P ><B >Example 16-12. Word Frequency Analysis</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # wf.sh: Crude word frequency analysis on a text file. 3 # This is a more efficient version of the "wf2.sh" script. 4 5 6 # Check for input file on command-line. 7 ARGS=1 8 E_BADARGS=85 9 E_NOFILE=86 10 11 if [ $# -ne "$ARGS" ] # Correct number of arguments passed to script? 12 then 13 echo "Usage: `basename $0` filename" 14 exit $E_BADARGS 15 fi 16 17 if [ ! -f "$1" ] # Check if file exists. 18 then 19 echo "File \"$1\" does not exist." 20 exit $E_NOFILE 21 fi 22 23 24 25 ######################################################## 26 # main () 27 sed -e 's/\.//g' -e 's/\,//g' -e 's/ /\ 28 /g' "$1" | tr 'A-Z' 'a-z' | sort | uniq -c | sort -nr 29 # ========================= 30 # Frequency of occurrence 31 32 # Filter out periods and commas, and 33 #+ change space between words to linefeed, 34 #+ then shift characters to lowercase, and 35 #+ finally prefix occurrence count and sort numerically. 36 37 # Arun Giridhar suggests modifying the above to: 38 # . . . | sort | uniq -c | sort +1 [-f] | sort +0 -nr 39 # This adds a secondary sort key, so instances of 40 #+ equal occurrence are sorted alphabetically. 41 # As he explains it: 42 # "This is effectively a radix sort, first on the 43 #+ least significant column 44 #+ (word or string, optionally case-insensitive) 45 #+ and last on the most significant column (frequency)." 46 # 47 # As Frank Wang explains, the above is equivalent to 48 #+ . . . | sort | uniq -c | sort +0 -nr 49 #+ and the following also works: 50 #+ . . . | sort | uniq -c | sort -k1nr -k 51 ######################################################## 52 53 exit 0 54 55 # Exercises: 56 # --------- 57 # 1) Add 'sed' commands to filter out other punctuation, 58 #+ such as semicolons. 59 # 2) Modify the script to also filter out multiple spaces and 60 #+ other whitespace.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat testfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" >This line occurs only once. This line occurs twice. This line occurs twice. This line occurs three times. This line occurs three times. This line occurs three times.</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >./wf.sh testfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" > 6 this 6 occurs 6 line 3 times 3 three 2 twice 1 only 1 once</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="EXPANDREF" ></A ><B CLASS="COMMAND" >expand</B >, <B CLASS="COMMAND" >unexpand</B ></DT ><DD ><P >The <B CLASS="COMMAND" >expand</B > filter converts tabs to spaces. It is often used in a <A HREF="special-chars.html#PIPEREF" >pipe</A >.</P ><P >The <B CLASS="COMMAND" >unexpand</B > filter converts spaces to tabs. This reverses the effect of <B CLASS="COMMAND" >expand</B >.</P ></DD ><DT ><A NAME="CUTREF" ></A ><B CLASS="COMMAND" >cut</B ></DT ><DD ><P >A tool for extracting <A HREF="special-chars.html#FIELDREF" >fields</A > from files. It is similar to the <TT CLASS="USERINPUT" ><B >print $N</B ></TT > command set in <A HREF="awk.html#AWKREF" >awk</A >, but more limited. It may be simpler to use <I CLASS="FIRSTTERM" >cut</I > in a script than <I CLASS="FIRSTTERM" >awk</I >. Particularly important are the <TT CLASS="OPTION" >-d</TT > (delimiter) and <TT CLASS="OPTION" >-f</TT > (field specifier) options.</P ><P >Using <B CLASS="COMMAND" >cut</B > to obtain a listing of the mounted filesystems: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cut -d ' ' -f1,2 /etc/mtab</PRE ></TD ></TR ></TABLE ></P ><P >Using <B CLASS="COMMAND" >cut</B > to list the OS and kernel version: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 uname -a | cut -d" " -f1,3,11,12</PRE ></TD ></TR ></TABLE ></P ><P >Using <B CLASS="COMMAND" >cut</B > to extract message headers from an e-mail folder: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep '^Subject:' read-messages | cut -c10-80</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Re: Linux suitable for mission-critical apps? MAKE MILLIONS WORKING AT HOME!!! Spam complaint Re: Spam complaint</TT ></PRE ></TD ></TR ></TABLE > </P ><P >Using <B CLASS="COMMAND" >cut</B > to parse a file: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # List all the users in /etc/passwd. 2 3 FILENAME=/etc/passwd 4 5 for user in $(cut -d: -f1 $FILENAME) 6 do 7 echo $user 8 done 9 10 # Thanks, Oleg Philon for suggesting this.</PRE ></TD ></TR ></TABLE ></P ><P ><TT CLASS="USERINPUT" ><B >cut -d ' ' -f2,3 filename</B ></TT > is equivalent to <TT CLASS="USERINPUT" ><B >awk -F'[ ]' '{ print $2, $3 }' filename</B ></TT ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >It is even possible to specify a linefeed as a delimiter. The trick is to actually embed a linefeed (<B CLASS="KEYCAP" >RETURN</B >) in the command sequence.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cut -d' ' -f3,7,19 testfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" >This is line 3 of testfile. This is line 7 of testfile. This is line 19 of testfile.</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Thank you, Jaka Kranjc, for pointing this out.</P ></TD ></TR ></TABLE ></DIV ><P >See also <A HREF="mathc.html#BASE" >Example 16-48</A >.</P ></DD ><DT ><A NAME="PASTEREF" ></A ><B CLASS="COMMAND" >paste</B ></DT ><DD ><P >Tool for merging together different files into a single, multi-column file. In combination with <A HREF="textproc.html#CUTREF" >cut</A >, useful for creating system log files. </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat items</B ></TT > <TT CLASS="COMPUTEROUTPUT" >alphabet blocks building blocks cables</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cat prices</B ></TT > <TT CLASS="COMPUTEROUTPUT" >$1.00/dozen $2.50 ea. $3.75</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >paste items prices</B ></TT > <TT CLASS="COMPUTEROUTPUT" >alphabet blocks $1.00/dozen building blocks $2.50 ea. cables $3.75</TT ></PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="JOINREF" ></A ><B CLASS="COMMAND" >join</B ></DT ><DD ><P >Consider this a special-purpose cousin of <B CLASS="COMMAND" >paste</B >. This powerful utility allows merging two files in a meaningful fashion, which essentially creates a simple version of a relational database.</P ><P >The <B CLASS="COMMAND" >join</B > command operates on exactly two files, but pastes together only those lines with a common tagged <A HREF="special-chars.html#FIELDREF" >field</A > (usually a numerical label), and writes the result to <TT CLASS="FILENAME" >stdout</TT >. The files to be joined should be sorted according to the tagged field for the matchups to work properly.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 File: 1.data 2 3 100 Shoes 4 200 Laces 5 300 Socks</PRE ></TD ></TR ></TABLE ></P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 File: 2.data 2 3 100 $40.00 4 200 $1.00 5 300 $2.00</PRE ></TD ></TR ></TABLE ></P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >join 1.data 2.data</B ></TT > <TT CLASS="COMPUTEROUTPUT" >File: 1.data 2.data 100 Shoes $40.00 200 Laces $1.00 300 Socks $2.00</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The tagged field appears only once in the output.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="HEADREF" ></A ><B CLASS="COMMAND" >head</B ></DT ><DD ><P >lists the beginning of a file to <TT CLASS="FILENAME" >stdout</TT >. The default is <TT CLASS="LITERAL" >10</TT > lines, but a different number can be specified. The command has a number of interesting options. <DIV CLASS="EXAMPLE" ><HR><A NAME="SCRIPTDETECTOR" ></A ><P ><B >Example 16-13. Which files are scripts?</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # script-detector.sh: Detects scripts within a directory. 3 4 TESTCHARS=2 # Test first 2 characters. 5 SHABANG='#!' # Scripts begin with a "sha-bang." 6 7 for file in * # Traverse all the files in current directory. 8 do 9 if [[ `head -c$TESTCHARS "$file"` = "$SHABANG" ]] 10 # head -c2 #! 11 # The '-c' option to "head" outputs a specified 12 #+ number of characters, rather than lines (the default). 13 then 14 echo "File \"$file\" is a script." 15 else 16 echo "File \"$file\" is *not* a script." 17 fi 18 done 19 20 exit 0 21 22 # Exercises: 23 # --------- 24 # 1) Modify this script to take as an optional argument 25 #+ the directory to scan for scripts 26 #+ (rather than just the current working directory). 27 # 28 # 2) As it stands, this script gives "false positives" for 29 #+ Perl, awk, and other scripting language scripts. 30 # Correct this.</PRE ></TD ></TR ></TABLE ><HR></DIV > <DIV CLASS="EXAMPLE" ><HR><A NAME="RND" ></A ><P ><B >Example 16-14. Generating 10-digit random numbers</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # rnd.sh: Outputs a 10-digit random number 3 4 # Script by Stephane Chazelas. 5 6 head -c4 /dev/urandom | od -N4 -tu4 | sed -ne '1s/.* //p' 7 8 9 # =================================================================== # 10 11 # Analysis 12 # -------- 13 14 # head: 15 # -c4 option takes first 4 bytes. 16 17 # od: 18 # -N4 option limits output to 4 bytes. 19 # -tu4 option selects unsigned decimal format for output. 20 21 # sed: 22 # -n option, in combination with "p" flag to the "s" command, 23 # outputs only matched lines. 24 25 26 27 # The author of this script explains the action of 'sed', as follows. 28 29 # head -c4 /dev/urandom | od -N4 -tu4 | sed -ne '1s/.* //p' 30 # ----------------------------------> | 31 32 # Assume output up to "sed" --------> | 33 # is 0000000 1198195154\n 34 35 # sed begins reading characters: 0000000 1198195154\n. 36 # Here it finds a newline character, 37 #+ so it is ready to process the first line (0000000 1198195154). 38 # It looks at its <range><action>s. The first and only one is 39 40 # range action 41 # 1 s/.* //p 42 43 # The line number is in the range, so it executes the action: 44 #+ tries to substitute the longest string ending with a space in the line 45 # ("0000000 ") with nothing (//), and if it succeeds, prints the result 46 # ("p" is a flag to the "s" command here, this is different 47 #+ from the "p" command). 48 49 # sed is now ready to continue reading its input. (Note that before 50 #+ continuing, if -n option had not been passed, sed would have printed 51 #+ the line once again). 52 53 # Now, sed reads the remainder of the characters, and finds the 54 #+ end of the file. 55 # It is now ready to process its 2nd line (which is also numbered '$' as 56 #+ it's the last one). 57 # It sees it is not matched by any <range>, so its job is done. 58 59 # In few word this sed commmand means: 60 # "On the first line only, remove any character up to the right-most space, 61 #+ then print it." 62 63 # A better way to do this would have been: 64 # sed -e 's/.* //;q' 65 66 # Here, two <range><action>s (could have been written 67 # sed -e 's/.* //' -e q): 68 69 # range action 70 # nothing (matches line) s/.* // 71 # nothing (matches line) q (quit) 72 73 # Here, sed only reads its first line of input. 74 # It performs both actions, and prints the line (substituted) before 75 #+ quitting (because of the "q" action) since the "-n" option is not passed. 76 77 # =================================================================== # 78 79 # An even simpler altenative to the above one-line script would be: 80 # head -c4 /dev/urandom| od -An -tu4 81 82 exit</PRE ></TD ></TR ></TABLE ><HR></DIV > See also <A HREF="filearchiv.html#EX52" >Example 16-39</A >.</P ></DD ><DT ><A NAME="TAILREF" ></A ><B CLASS="COMMAND" >tail</B ></DT ><DD ><P >lists the (tail) end of a file to <TT CLASS="FILENAME" >stdout</TT >. The default is <TT CLASS="LITERAL" >10</TT > lines, but this can be changed with the <TT CLASS="OPTION" >-n</TT > option. Commonly used to keep track of changes to a system logfile, using the <TT CLASS="OPTION" >-f</TT > option, which outputs lines appended to the file.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX12" ></A ><P ><B >Example 16-15. Using <I CLASS="FIRSTTERM" >tail</I > to monitor the system log</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 filename=sys.log 4 5 cat /dev/null > $filename; echo "Creating / cleaning out file." 6 # Creates the file if it does not already exist, 7 #+ and truncates it to zero length if it does. 8 # : > filename and > filename also work. 9 10 tail /var/log/messages > $filename 11 # /var/log/messages must have world read permission for this to work. 12 13 echo "$filename contains tail end of system log." 14 15 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >To list a specific line of a text file, <A HREF="special-chars.html#PIPEREF" >pipe</A > the output of <B CLASS="COMMAND" >head</B > to <B CLASS="COMMAND" >tail -n 1</B >. For example <TT CLASS="USERINPUT" ><B >head -n 8 database.txt | tail -n 1</B ></TT > lists the 8th line of the file <TT CLASS="FILENAME" >database.txt</TT >.</P ><P >To set a variable to a given block of a text file: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 var=$(head -n $m $filename | tail -n $n) 2 3 # filename = name of file 4 # m = from beginning of file, number of lines to end of block 5 # n = number of lines to set variable to (trim from end of block)</PRE ></TD ></TR ></TABLE ></P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Newer implementations of <B CLASS="COMMAND" >tail</B > deprecate the older <B CLASS="COMMAND" >tail -$LINES filename</B > usage. The standard <B CLASS="COMMAND" >tail -n $LINES filename</B > is correct.</P ></TD ></TR ></TABLE ></DIV ><P >See also <A HREF="moreadv.html#EX41" >Example 16-5</A >, <A HREF="filearchiv.html#EX52" >Example 16-39</A > and <A HREF="debugging.html#ONLINE" >Example 32-6</A >.</P ></DD ><DT ><A NAME="GREPREF" ></A ><B CLASS="COMMAND" >grep</B ></DT ><DD ><P >A multi-purpose file search tool that uses <A HREF="regexp.html#REGEXREF" >Regular Expressions</A >. It was originally a command/filter in the venerable <B CLASS="COMMAND" >ed</B > line editor: <TT CLASS="USERINPUT" ><B >g/re/p</B ></TT > -- <I CLASS="FIRSTTERM" >global - regular expression - print</I >.</P ><P ><P ><B CLASS="COMMAND" >grep</B > <TT CLASS="REPLACEABLE" ><I >pattern</I ></TT > [<TT CLASS="REPLACEABLE" ><I >file</I ></TT >...]</P >Search the target file(s) for occurrences of <TT CLASS="REPLACEABLE" ><I >pattern</I ></TT >, where <TT CLASS="REPLACEABLE" ><I >pattern</I ></TT > may be literal text or a Regular Expression.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep '[rst]ystem.$' osinfo.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" >The GPL governs the distribution of the Linux operating system.</TT > </PRE ></TD ></TR ></TABLE > </P ><P >If no target file(s) specified, <B CLASS="COMMAND" >grep</B > works as a filter on <TT CLASS="FILENAME" >stdout</TT >, as in a <A HREF="special-chars.html#PIPEREF" >pipe</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ps ax | grep clock</B ></TT > <TT CLASS="COMPUTEROUTPUT" >765 tty1 S 0:00 xclock 901 pts/1 S 0:00 grep clock</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The <TT CLASS="OPTION" >-i</TT > option causes a case-insensitive search.</P ><P >The <TT CLASS="OPTION" >-w</TT > option matches only whole words.</P ><P >The <TT CLASS="OPTION" >-l</TT > option lists only the files in which matches were found, but not the matching lines.</P ><P >The <TT CLASS="OPTION" >-r</TT > (recursive) option searches files in the current working directory and all subdirectories below it.</P ><P >The <TT CLASS="OPTION" >-n</TT > option lists the matching lines, together with line numbers.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep -n Linux osinfo.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" >2:This is a file containing information about Linux. 6:The GPL governs the distribution of the Linux operating system.</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The <TT CLASS="OPTION" >-v</TT > (or <TT CLASS="OPTION" >--invert-match</TT >) option <I CLASS="FIRSTTERM" >filters out</I > matches. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 grep pattern1 *.txt | grep -v pattern2 2 3 # Matches all lines in "*.txt" files containing "pattern1", 4 # but ***not*** "pattern2". </PRE ></TD ></TR ></TABLE ></P ><P >The <TT CLASS="OPTION" >-c</TT > (<TT CLASS="OPTION" >--count</TT >) option gives a numerical count of matches, rather than actually listing the matches. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 grep -c txt *.sgml # (number of occurrences of "txt" in "*.sgml" files) 2 3 4 # grep -cz . 5 # ^ dot 6 # means count (-c) zero-separated (-z) items matching "." 7 # that is, non-empty ones (containing at least 1 character). 8 # 9 printf 'a b\nc d\n\n\n\n\n\000\n\000e\000\000\nf' | grep -cz . # 3 10 printf 'a b\nc d\n\n\n\n\n\000\n\000e\000\000\nf' | grep -cz '$' # 5 11 printf 'a b\nc d\n\n\n\n\n\000\n\000e\000\000\nf' | grep -cz '^' # 5 12 # 13 printf 'a b\nc d\n\n\n\n\n\000\n\000e\000\000\nf' | grep -c '$' # 9 14 # By default, newline chars (\n) separate items to match. 15 16 # Note that the -z option is GNU "grep" specific. 17 18 19 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><P >The <TT CLASS="OPTION" >--color</TT > (or <TT CLASS="OPTION" >--colour</TT >) option marks the matching string in color (on the console or in an <I CLASS="FIRSTTERM" >xterm</I > window). Since <I CLASS="FIRSTTERM" >grep</I > prints out each entire line containing the matching pattern, this lets you see exactly <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >what</I ></SPAN > is being matched. See also the <TT CLASS="OPTION" >-o</TT > option, which shows only the matching portion of the line(s).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="FROMSH" ></A ><P ><B >Example 16-16. Printing out the <I CLASS="FIRSTTERM" >From</I > lines in stored e-mail messages</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # from.sh 3 4 # Emulates the useful 'from' utility in Solaris, BSD, etc. 5 # Echoes the "From" header line in all messages 6 #+ in your e-mail directory. 7 8 9 MAILDIR=~/mail/* # No quoting of variable. Why? 10 # Maybe check if-exists $MAILDIR: if [ -d $MAILDIR ] . . . 11 GREP_OPTS="-H -A 5 --color" # Show file, plus extra context lines 12 #+ and display "From" in color. 13 TARGETSTR="^From" # "From" at beginning of line. 14 15 for file in $MAILDIR # No quoting of variable. 16 do 17 grep $GREP_OPTS "$TARGETSTR" "$file" 18 # ^^^^^^^^^^ # Again, do not quote this variable. 19 echo 20 done 21 22 exit $? 23 24 # You might wish to pipe the output of this script to 'more' 25 #+ or redirect it to a file . . .</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >When invoked with more than one target file given, <B CLASS="COMMAND" >grep</B > specifies which file contains matches.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep Linux osinfo.txt misc.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" >osinfo.txt:This is a file containing information about Linux. osinfo.txt:The GPL governs the distribution of the Linux operating system. misc.txt:The Linux operating system is steadily gaining in popularity.</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >To force <B CLASS="COMMAND" >grep</B > to show the filename when searching only one target file, simply give <TT CLASS="FILENAME" >/dev/null</TT > as the second file.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep Linux osinfo.txt /dev/null</B ></TT > <TT CLASS="COMPUTEROUTPUT" >osinfo.txt:This is a file containing information about Linux. osinfo.txt:The GPL governs the distribution of the Linux operating system.</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><P >If there is a successful match, <B CLASS="COMMAND" >grep</B > returns an <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > of 0, which makes it useful in a condition test in a script, especially in combination with the <TT CLASS="OPTION" >-q</TT > option to suppress output. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 SUCCESS=0 # if grep lookup succeeds 2 word=Linux 3 filename=data.file 4 5 grep -q "$word" "$filename" # The "-q" option 6 #+ causes nothing to echo to stdout. 7 if [ $? -eq $SUCCESS ] 8 # if grep -q "$word" "$filename" can replace lines 5 - 7. 9 then 10 echo "$word found in $filename" 11 else 12 echo "$word not found in $filename" 13 fi</PRE ></TD ></TR ></TABLE > </P ><P ><A HREF="debugging.html#ONLINE" >Example 32-6</A > demonstrates how to use <B CLASS="COMMAND" >grep</B > to search for a word pattern in a system logfile.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="GRP" ></A ><P ><B >Example 16-17. Emulating <I CLASS="FIRSTTERM" >grep</I > in a script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # grp.sh: Rudimentary reimplementation of grep. 3 4 E_BADARGS=85 5 6 if [ -z "$1" ] # Check for argument to script. 7 then 8 echo "Usage: `basename $0` pattern" 9 exit $E_BADARGS 10 fi 11 12 echo 13 14 for file in * # Traverse all files in $PWD. 15 do 16 output=$(sed -n /"$1"/p $file) # Command substitution. 17 18 if [ ! -z "$output" ] # What happens if "$output" is not quoted? 19 then 20 echo -n "$file: " 21 echo "$output" 22 fi # sed -ne "/$1/s|^|${file}: |p" is equivalent to above. 23 24 echo 25 done 26 27 echo 28 29 exit 0 30 31 # Exercises: 32 # --------- 33 # 1) Add newlines to output, if more than one match in any given file. 34 # 2) Add features.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >How can <B CLASS="COMMAND" >grep</B > search for two (or more) separate patterns? What if you want <B CLASS="COMMAND" >grep</B > to display all lines in a file or files that contain both <SPAN CLASS="QUOTE" >"pattern1"</SPAN > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >and</I ></SPAN > <SPAN CLASS="QUOTE" >"pattern2"</SPAN >?</P ><P >One method is to <A HREF="special-chars.html#PIPEREF" >pipe</A > the result of <B CLASS="COMMAND" >grep pattern1</B > to <B CLASS="COMMAND" >grep pattern2</B >.</P ><P >For example, given the following file:</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Filename: tstfile 2 3 This is a sample file. 4 This is an ordinary text file. 5 This file does not contain any unusual text. 6 This file is not unusual. 7 Here is some text.</PRE ></TD ></TR ></TABLE > </P ><P >Now, let's search this file for lines containing <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >both</I ></SPAN > <SPAN CLASS="QUOTE" >"file"</SPAN > and <SPAN CLASS="QUOTE" >"text"</SPAN > . . . </P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep file tstfile</B ></TT > <TT CLASS="COMPUTEROUTPUT" ># Filename: tstfile This is a sample file. This is an ordinary text file. This file does not contain any unusual text. This file is not unusual.</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep file tstfile | grep text</B ></TT > <TT CLASS="COMPUTEROUTPUT" >This is an ordinary text file. This file does not contain any unusual text.</TT ></PRE ></TD ></TR ></TABLE ><P >Now, for an interesting recreational use of <I CLASS="FIRSTTERM" >grep</I > . . .</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="CWSOLVER" ></A ><P ><B >Example 16-18. Crossword puzzle solver</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # cw-solver.sh 3 # This is actually a wrapper around a one-liner (line 46). 4 5 # Crossword puzzle and anagramming word game solver. 6 # You know *some* of the letters in the word you're looking for, 7 #+ so you need a list of all valid words 8 #+ with the known letters in given positions. 9 # For example: w...i....n 10 # 1???5????10 11 # w in position 1, 3 unknowns, i in the 5th, 4 unknowns, n at the end. 12 # (See comments at end of script.) 13 14 15 E_NOPATT=71 16 DICT=/usr/share/dict/word.lst 17 # ^^^^^^^^ Looks for word list here. 18 # ASCII word list, one word per line. 19 # If you happen to need an appropriate list, 20 #+ download the author's "yawl" word list package. 21 # http://ibiblio.org/pub/Linux/libs/yawl-0.3.2.tar.gz 22 # or 23 # http://bash.deta.in/yawl-0.3.2.tar.gz 24 25 26 if [ -z "$1" ] # If no word pattern specified 27 then #+ as a command-line argument . . . 28 echo #+ . . . then . . . 29 echo "Usage:" #+ Usage message. 30 echo 31 echo ""$0" \"pattern,\"" 32 echo "where \"pattern\" is in the form" 33 echo "xxx..x.x..." 34 echo 35 echo "The x's represent known letters," 36 echo "and the periods are unknown letters (blanks)." 37 echo "Letters and periods can be in any position." 38 echo "For example, try: sh cw-solver.sh w...i....n" 39 echo 40 exit $E_NOPATT 41 fi 42 43 echo 44 # =============================================== 45 # This is where all the work gets done. 46 grep ^"$1"$ "$DICT" # Yes, only one line! 47 # | | 48 # ^ is start-of-word regex anchor. 49 # $ is end-of-word regex anchor. 50 51 # From _Stupid Grep Tricks_, vol. 1, 52 #+ a book the ABS Guide author may yet get around 53 #+ to writing . . . one of these days . . . 54 # =============================================== 55 echo 56 57 58 exit $? # Script terminates here. 59 # If there are too many words generated, 60 #+ redirect the output to a file. 61 62 $ sh cw-solver.sh w...i....n 63 64 wellington 65 workingman 66 workingmen</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="EGREPREF" ></A ><B CLASS="COMMAND" >egrep</B > -- <I CLASS="FIRSTTERM" >extended grep</I > -- is the same as <B CLASS="COMMAND" >grep -E</B >. This uses a somewhat different, extended set of <A HREF="regexp.html#REGEXREF" >Regular Expressions</A >, which can make the search a bit more flexible. It also allows the boolean | (<I CLASS="FIRSTTERM" >or</I >) operator. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash $ </TT ><TT CLASS="USERINPUT" ><B >egrep 'matches|Matches' file.txt</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Line 1 matches. Line 3 Matches. Line 4 contains matches, but also Matches</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="FGREPREF" ></A ><B CLASS="COMMAND" >fgrep</B > -- <I CLASS="FIRSTTERM" >fast grep</I > -- is the same as <B CLASS="COMMAND" >grep -F</B >. It does a literal string search (no <A HREF="regexp.html#REGEXREF" >Regular Expressions</A >), which generally speeds things up a bit.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >On some Linux distros, <B CLASS="COMMAND" >egrep</B > and <B CLASS="COMMAND" >fgrep</B > are symbolic links to, or aliases for <B CLASS="COMMAND" >grep</B >, but invoked with the <TT CLASS="OPTION" >-E</TT > and <TT CLASS="OPTION" >-F</TT > options, respectively.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="DICTLOOKUP" ></A ><P ><B >Example 16-19. Looking up definitions in <I CLASS="CITETITLE" >Webster's 1913 Dictionary</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # dict-lookup.sh 3 4 # This script looks up definitions in the 1913 Webster's Dictionary. 5 # This Public Domain dictionary is available for download 6 #+ from various sites, including 7 #+ Project Gutenberg (http://www.gutenberg.org/etext/247). 8 # 9 # Convert it from DOS to UNIX format (with only LF at end of line) 10 #+ before using it with this script. 11 # Store the file in plain, uncompressed ASCII text. 12 # Set DEFAULT_DICTFILE variable below to path/filename. 13 14 15 E_BADARGS=85 16 MAXCONTEXTLINES=50 # Maximum number of lines to show. 17 DEFAULT_DICTFILE="/usr/share/dict/webster1913-dict.txt" 18 # Default dictionary file pathname. 19 # Change this as necessary. 20 # Note: 21 # ---- 22 # This particular edition of the 1913 Webster's 23 #+ begins each entry with an uppercase letter 24 #+ (lowercase for the remaining characters). 25 # Only the *very first line* of an entry begins this way, 26 #+ and that's why the search algorithm below works. 27 28 29 30 if [[ -z $(echo "$1" | sed -n '/^[A-Z]/p') ]] 31 # Must at least specify word to look up, and 32 #+ it must start with an uppercase letter. 33 then 34 echo "Usage: `basename $0` Word-to-define [dictionary-file]" 35 echo 36 echo "Note: Word to look up must start with capital letter," 37 echo "with the rest of the word in lowercase." 38 echo "--------------------------------------------" 39 echo "Examples: Abandon, Dictionary, Marking, etc." 40 exit $E_BADARGS 41 fi 42 43 44 if [ -z "$2" ] # May specify different dictionary 45 #+ as an argument to this script. 46 then 47 dictfile=$DEFAULT_DICTFILE 48 else 49 dictfile="$2" 50 fi 51 52 # --------------------------------------------------------- 53 Definition=$(fgrep -A $MAXCONTEXTLINES "$1 \\" "$dictfile") 54 # Definitions in form "Word \..." 55 # 56 # And, yes, "fgrep" is fast enough 57 #+ to search even a very large text file. 58 59 60 # Now, snip out just the definition block. 61 62 echo "$Definition" | 63 sed -n '1,/^[A-Z]/p' | 64 # Print from first line of output 65 #+ to the first line of the next entry. 66 sed '$d' | sed '$d' 67 # Delete last two lines of output 68 #+ (blank line and first line of next entry). 69 # --------------------------------------------------------- 70 71 exit $? 72 73 # Exercises: 74 # --------- 75 # 1) Modify the script to accept any type of alphabetic input 76 # + (uppercase, lowercase, mixed case), and convert it 77 # + to an acceptable format for processing. 78 # 79 # 2) Convert the script to a GUI application, 80 # + using something like 'gdialog' or 'zenity' . . . 81 # The script will then no longer take its argument(s) 82 # + from the command-line. 83 # 84 # 3) Modify the script to parse one of the other available 85 # + Public Domain Dictionaries, such as the U.S. Census Bureau Gazetteer.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >See also <A HREF="contributed-scripts.html#QKY" >Example A-41</A > for an example of speedy <I CLASS="FIRSTTERM" >fgrep</I > lookup on a large text file.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="AGREPREF" ></A ></P ><P ><B CLASS="COMMAND" >agrep</B > (<I CLASS="FIRSTTERM" >approximate grep</I >) extends the capabilities of <B CLASS="COMMAND" >grep</B > to approximate matching. The search string may differ by a specified number of characters from the resulting matches. This utility is not part of the core Linux distribution.</P ><P ><A NAME="ZEGREPREF" ></A ></P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >To search compressed files, use <B CLASS="COMMAND" >zgrep</B >, <B CLASS="COMMAND" >zegrep</B >, or <B CLASS="COMMAND" >zfgrep</B >. These also work on non-compressed files, though slower than plain <B CLASS="COMMAND" >grep</B >, <B CLASS="COMMAND" >egrep</B >, <B CLASS="COMMAND" >fgrep</B >. They are handy for searching through a mixed set of files, some compressed, some not.</P ><P ><A NAME="BZGREPREF" ></A ></P ><P >To search <A HREF="filearchiv.html#BZIPREF" >bzipped</A > files, use <B CLASS="COMMAND" >bzgrep</B >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="LOOKREF" ></A ><B CLASS="COMMAND" >look</B ></DT ><DD ><P >The command <B CLASS="COMMAND" >look</B > works like <B CLASS="COMMAND" >grep</B >, but does a lookup on a <SPAN CLASS="QUOTE" >"dictionary,"</SPAN > a sorted word list. By default, <B CLASS="COMMAND" >look</B > searches for a match in <TT CLASS="FILENAME" >/usr/dict/words</TT >, but a different dictionary file may be specified.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="LOOKUP" ></A ><P ><B >Example 16-20. Checking words in a list for validity</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # lookup: Does a dictionary lookup on each word in a data file. 3 4 file=words.data # Data file from which to read words to test. 5 6 echo 7 echo "Testing file $file" 8 echo 9 10 while [ "$word" != end ] # Last word in data file. 11 do # ^^^ 12 read word # From data file, because of redirection at end of loop. 13 look $word > /dev/null # Don't want to display lines in dictionary file. 14 # Searches for words in the file /usr/share/dict/words 15 #+ (usually a link to linux.words). 16 lookup=$? # Exit status of 'look' command. 17 18 if [ "$lookup" -eq 0 ] 19 then 20 echo "\"$word\" is valid." 21 else 22 echo "\"$word\" is invalid." 23 fi 24 25 done <"$file" # Redirects stdin to $file, so "reads" come from there. 26 27 echo 28 29 exit 0 30 31 # ---------------------------------------------------------------- 32 # Code below line will not execute because of "exit" command above. 33 34 35 # Stephane Chazelas proposes the following, more concise alternative: 36 37 while read word && [[ $word != end ]] 38 do if look "$word" > /dev/null 39 then echo "\"$word\" is valid." 40 else echo "\"$word\" is invalid." 41 fi 42 done <"$file" 43 44 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><B CLASS="COMMAND" >sed</B >, <B CLASS="COMMAND" >awk</B ></DT ><DD ><P >Scripting languages especially suited for parsing text files and command output. May be embedded singly or in combination in pipes and shell scripts.</P ></DD ><DT ><B CLASS="COMMAND" ><A HREF="sedawk.html#SEDREF" >sed</A ></B ></DT ><DD ><P >Non-interactive <SPAN CLASS="QUOTE" >"stream editor"</SPAN >, permits using many <B CLASS="COMMAND" >ex</B > commands in <A HREF="timedate.html#BATCHPROCREF" >batch</A > mode. It finds many uses in shell scripts.</P ></DD ><DT ><B CLASS="COMMAND" ><A HREF="awk.html#AWKREF" >awk</A ></B ></DT ><DD ><P >Programmable file extractor and formatter, good for manipulating and/or extracting <A HREF="special-chars.html#FIELDREF" >fields</A > (columns) in structured text files. Its syntax is similar to C.</P ></DD ><DT ><A NAME="WCREF" ></A ><B CLASS="COMMAND" >wc</B ></DT ><DD ><P ><I CLASS="FIRSTTERM" >wc</I > gives a <SPAN CLASS="QUOTE" >"word count"</SPAN > on a file or I/O stream: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash $ </TT ><TT CLASS="USERINPUT" ><B >wc /usr/share/doc/sed-4.1.2/README</B ></TT > <TT CLASS="COMPUTEROUTPUT" >13 70 447 README</TT > [13 lines 70 words 447 characters]</PRE ></TD ></TR ></TABLE ></P ><P ><TT CLASS="USERINPUT" ><B >wc -w</B ></TT > gives only the word count.</P ><P ><TT CLASS="USERINPUT" ><B >wc -l</B ></TT > gives only the line count.</P ><P ><TT CLASS="USERINPUT" ><B >wc -c</B ></TT > gives only the byte count.</P ><P ><TT CLASS="USERINPUT" ><B >wc -m</B ></TT > gives only the character count.</P ><P ><TT CLASS="USERINPUT" ><B >wc -L</B ></TT > gives only the length of the longest line.</P ><P >Using <B CLASS="COMMAND" >wc</B > to count how many <TT CLASS="FILENAME" >.txt</TT > files are in current working directory: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 $ ls *.txt | wc -l 2 # Will work as long as none of the "*.txt" files 3 #+ have a linefeed embedded in their name. 4 5 # Alternative ways of doing this are: 6 # find . -maxdepth 1 -name \*.txt -print0 | grep -cz . 7 # (shopt -s nullglob; set -- *.txt; echo $#) 8 9 # Thanks, S.C.</PRE ></TD ></TR ></TABLE > </P ><P >Using <B CLASS="COMMAND" >wc</B > to total up the size of all the files whose names begin with letters in the range d - h <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >wc [d-h]* | grep total | awk '{print $3}'</B ></TT > <TT CLASS="COMPUTEROUTPUT" >71832</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Using <B CLASS="COMMAND" >wc</B > to count the instances of the word <SPAN CLASS="QUOTE" >"Linux"</SPAN > in the main source file for this book. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >grep Linux abs-book.sgml | wc -l</B ></TT > <TT CLASS="COMPUTEROUTPUT" >138</TT > </PRE ></TD ></TR ></TABLE > </P ><P >See also <A HREF="filearchiv.html#EX52" >Example 16-39</A > and <A HREF="redircb.html#REDIR4" >Example 20-8</A >.</P ><P >Certain commands include some of the functionality of <B CLASS="COMMAND" >wc</B > as options. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 ... | grep foo | wc -l 2 # This frequently used construct can be more concisely rendered. 3 4 ... | grep -c foo 5 # Just use the "-c" (or "--count") option of grep. 6 7 # Thanks, S.C.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="TRREF" ></A ><B CLASS="COMMAND" >tr</B ></DT ><DD ><P >character translation filter.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A HREF="special-chars.html#UCREF" >Must use quoting and/or brackets</A >, as appropriate. Quotes prevent the shell from reinterpreting the special characters in <B CLASS="COMMAND" >tr</B > command sequences. Brackets should be quoted to prevent expansion by the shell. </P ></TD ></TR ></TABLE ></DIV ><P >Either <TT CLASS="USERINPUT" ><B >tr "A-Z" "*" <filename</B ></TT > or <TT CLASS="USERINPUT" ><B >tr A-Z \* <filename</B ></TT > changes all the uppercase letters in <TT CLASS="FILENAME" >filename</TT > to asterisks (writes to <TT CLASS="FILENAME" >stdout</TT >). On some systems this may not work, but <TT CLASS="USERINPUT" ><B >tr A-Z '[**]'</B ></TT > will.</P ><P ><A NAME="TROPTIONS" ></A ></P ><P >The <TT CLASS="OPTION" >-d</TT > option deletes a range of characters. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "abcdef" # abcdef 2 echo "abcdef" | tr -d b-d # aef 3 4 5 tr -d 0-9 <filename 6 # Deletes all digits from the file "filename".</PRE ></TD ></TR ></TABLE ></P ><P >The <TT CLASS="OPTION" >--squeeze-repeats</TT > (or <TT CLASS="OPTION" >-s</TT >) option deletes all but the first instance of a string of consecutive characters. This option is useful for removing excess <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "XXXXX" | tr --squeeze-repeats 'X'</B ></TT > <TT CLASS="COMPUTEROUTPUT" >X</TT ></PRE ></TD ></TR ></TABLE ></P ><P >The <TT CLASS="OPTION" >-c</TT > <SPAN CLASS="QUOTE" >"complement"</SPAN > option <I CLASS="FIRSTTERM" >inverts</I > the character set to match. With this option, <B CLASS="COMMAND" >tr</B > acts only upon those characters <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > matching the specified set.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "acfdeb123" | tr -c b-d +</B ></TT > <TT CLASS="COMPUTEROUTPUT" >+c+d+b++++</TT ></PRE ></TD ></TR ></TABLE > </P ><P >Note that <B CLASS="COMMAND" >tr</B > recognizes <A HREF="regexp.html#POSIXREF" >POSIX character classes</A >. <A NAME="AEN11502" HREF="#FTN.AEN11502" >[1]</A > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "abcd2ef1" | tr '[:alpha:]' -</B ></TT > <TT CLASS="COMPUTEROUTPUT" >----2--1</TT > </PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX49" ></A ><P ><B >Example 16-21. <I CLASS="FIRSTTERM" >toupper</I >: Transforms a file to all uppercase.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Changes a file to all uppercase. 3 4 E_BADARGS=85 5 6 if [ -z "$1" ] # Standard check for command-line arg. 7 then 8 echo "Usage: `basename $0` filename" 9 exit $E_BADARGS 10 fi 11 12 tr a-z A-Z <"$1" 13 14 # Same effect as above, but using POSIX character set notation: 15 # tr '[:lower:]' '[:upper:]' <"$1" 16 # Thanks, S.C. 17 18 # Or even . . . 19 # cat "$1" | tr a-z A-Z 20 # Or dozens of other ways . . . 21 22 exit 0 23 24 # Exercise: 25 # Rewrite this script to give the option of changing a file 26 #+ to *either* upper or lowercase. 27 # Hint: Use either the "case" or "select" command.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="LOWERCASE" ></A ><P ><B >Example 16-22. <I CLASS="FIRSTTERM" >lowercase</I >: Changes all filenames in working directory to lowercase.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # 3 # Changes every filename in working directory to all lowercase. 4 # 5 # Inspired by a script of John Dubois, 6 #+ which was translated into Bash by Chet Ramey, 7 #+ and considerably simplified by the author of the ABS Guide. 8 9 10 for filename in * # Traverse all files in directory. 11 do 12 fname=`basename $filename` 13 n=`echo $fname | tr A-Z a-z` # Change name to lowercase. 14 if [ "$fname" != "$n" ] # Rename only files not already lowercase. 15 then 16 mv $fname $n 17 fi 18 done 19 20 exit $? 21 22 23 # Code below this line will not execute because of "exit". 24 #--------------------------------------------------------# 25 # To run it, delete script above line. 26 27 # The above script will not work on filenames containing blanks or newlines. 28 # Stephane Chazelas therefore suggests the following alternative: 29 30 31 for filename in * # Not necessary to use basename, 32 # since "*" won't return any file containing "/". 33 do n=`echo "$filename/" | tr '[:upper:]' '[:lower:]'` 34 # POSIX char set notation. 35 # Slash added so that trailing newlines are not 36 # removed by command substitution. 37 # Variable substitution: 38 n=${n%/} # Removes trailing slash, added above, from filename. 39 [[ $filename == $n ]] || mv "$filename" "$n" 40 # Checks if filename already lowercase. 41 done 42 43 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="TRD2U" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="DU" ></A ><P ><B >Example 16-23. <I CLASS="FIRSTTERM" >du</I >: DOS to UNIX text file conversion.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Du.sh: DOS to UNIX text file converter. 3 4 E_WRONGARGS=85 5 6 if [ -z "$1" ] 7 then 8 echo "Usage: `basename $0` filename-to-convert" 9 exit $E_WRONGARGS 10 fi 11 12 NEWFILENAME=$1.unx 13 14 CR='\015' # Carriage return. 15 # 015 is octal ASCII code for CR. 16 # Lines in a DOS text file end in CR-LF. 17 # Lines in a UNIX text file end in LF only. 18 19 tr -d $CR < $1 > $NEWFILENAME 20 # Delete CR's and write to new file. 21 22 echo "Original DOS text file is \"$1\"." 23 echo "Converted UNIX text file is \"$NEWFILENAME\"." 24 25 exit 0 26 27 # Exercise: 28 # -------- 29 # Change the above script to convert from UNIX to DOS.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ROT13" ></A ><P ><B >Example 16-24. <I CLASS="FIRSTTERM" >rot13</I >: ultra-weak encryption.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # rot13.sh: Classic rot13 algorithm, 3 # encryption that might fool a 3-year old 4 # for about 10 minutes. 5 6 # Usage: ./rot13.sh filename 7 # or ./rot13.sh <filename 8 # or ./rot13.sh and supply keyboard input (stdin) 9 10 cat "$@" | tr 'a-zA-Z' 'n-za-mN-ZA-M' # "a" goes to "n", "b" to "o" ... 11 # The cat "$@" construct 12 #+ permits input either from stdin or from files. 13 14 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="CRYPTOQUOTE" ></A ><P ><B >Example 16-25. Generating <SPAN CLASS="QUOTE" >"Crypto-Quote"</SPAN > Puzzles</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # crypto-quote.sh: Encrypt quotes 3 4 # Will encrypt famous quotes in a simple monoalphabetic substitution. 5 # The result is similar to the "Crypto Quote" puzzles 6 #+ seen in the Op Ed pages of the Sunday paper. 7 8 9 key=ETAOINSHRDLUBCFGJMQPVWZYXK 10 # The "key" is nothing more than a scrambled alphabet. 11 # Changing the "key" changes the encryption. 12 13 # The 'cat "$@"' construction gets input either from stdin or from files. 14 # If using stdin, terminate input with a Control-D. 15 # Otherwise, specify filename as command-line parameter. 16 17 cat "$@" | tr "a-z" "A-Z" | tr "A-Z" "$key" 18 # | to uppercase | encrypt 19 # Will work on lowercase, uppercase, or mixed-case quotes. 20 # Passes non-alphabetic characters through unchanged. 21 22 23 # Try this script with something like: 24 # "Nothing so needs reforming as other people's habits." 25 # --Mark Twain 26 # 27 # Output is: 28 # "CFPHRCS QF CIIOQ MINFMBRCS EQ FPHIM GIFGUI'Q HETRPQ." 29 # --BEML PZERC 30 31 # To reverse the encryption: 32 # cat "$@" | tr "$key" "A-Z" 33 34 35 # This simple-minded cipher can be broken by an average 12-year old 36 #+ using only pencil and paper. 37 38 exit 0 39 40 # Exercise: 41 # -------- 42 # Modify the script so that it will either encrypt or decrypt, 43 #+ depending on command-line argument(s).</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="JABH" ></A >Of course, <I CLASS="FIRSTTERM" >tr</I > lends itself to <I CLASS="FIRSTTERM" >code obfuscation</I >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # jabh.sh 3 4 x="wftedskaebjgdBstbdbsmnjgz" 5 echo $x | tr "a-z" 'oh, turtleneck Phrase Jar!' 6 7 # Based on the Wikipedia "Just another Perl hacker" article.</PRE ></TD ></TR ></TABLE ></P ><P ><A NAME="TRVARIANTS" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN11540" ></A ><P ><B ><I CLASS="FIRSTTERM" >tr</I > variants</B ></P ><P > The <B CLASS="COMMAND" >tr</B > utility has two historic variants. The BSD version does not use brackets (<TT CLASS="USERINPUT" ><B >tr a-z A-Z</B ></TT >), but the SysV one does (<TT CLASS="USERINPUT" ><B >tr '[a-z]' '[A-Z]'</B ></TT >). The GNU version of <B CLASS="COMMAND" >tr</B > resembles the BSD one. </P ></DIV ></TD ></TR ></TABLE ></DD ><DT ><A NAME="FOLDREF" ></A ><B CLASS="COMMAND" >fold</B ></DT ><DD ><P >A filter that wraps lines of input to a specified width. This is especially useful with the <TT CLASS="OPTION" >-s</TT > option, which breaks lines at word spaces (see <A HREF="textproc.html#EX50" >Example 16-26</A > and <A HREF="contributed-scripts.html#MAILFORMAT" >Example A-1</A >).</P ></DD ><DT ><A NAME="FMTREF" ></A ><B CLASS="COMMAND" >fmt</B ></DT ><DD ><P >Simple-minded file formatter, used as a filter in a pipe to <SPAN CLASS="QUOTE" >"wrap"</SPAN > long lines of text output.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX50" ></A ><P ><B >Example 16-26. Formatted file listing.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 WIDTH=40 # 40 columns wide. 4 5 b=`ls /usr/local/bin` # Get a file listing... 6 7 echo $b | fmt -w $WIDTH 8 9 # Could also have been done by 10 # echo $b | fold - -s -w $WIDTH 11 12 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="moreadv.html#EX41" >Example 16-5</A >.</P ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >A powerful alternative to <B CLASS="COMMAND" >fmt</B > is Kamil Toman's <B CLASS="COMMAND" >par</B > utility, available from <A HREF="http://www.cs.berkeley.edu/~amc/Par/" TARGET="_top" >http://www.cs.berkeley.edu/~amc/Par/</A >. </P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="COLREF" ></A ><B CLASS="COMMAND" >col</B ></DT ><DD ><P >This deceptively named filter removes reverse line feeds from an input stream. It also attempts to replace whitespace with equivalent tabs. The chief use of <B CLASS="COMMAND" >col</B > is in filtering the output from certain text processing utilities, such as <B CLASS="COMMAND" >groff</B > and <B CLASS="COMMAND" >tbl</B >.</P ></DD ><DT ><A NAME="COLUMNREF" ></A ><B CLASS="COMMAND" >column</B ></DT ><DD ><P >Column formatter. This filter transforms list-type text output into a <SPAN CLASS="QUOTE" >"pretty-printed"</SPAN > table by inserting tabs at appropriate places.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="COL" ></A ><P ><B >Example 16-27. Using <I CLASS="FIRSTTERM" >column</I > to format a directory listing</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # colms.sh 3 # A minor modification of the example file in the "column" man page. 4 5 6 (printf "PERMISSIONS LINKS OWNER GROUP SIZE MONTH DAY HH:MM PROG-NAME\n" \ 7 ; ls -l | sed 1d) | column -t 8 # ^^^^^^ ^^ 9 10 # The "sed 1d" in the pipe deletes the first line of output, 11 #+ which would be "total N", 12 #+ where "N" is the total number of files found by "ls -l". 13 14 # The -t option to "column" pretty-prints a table. 15 16 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="COLRMREF" ></A ><B CLASS="COMMAND" >colrm</B ></DT ><DD ><P >Column removal filter. This removes columns (characters) from a file and writes the file, lacking the range of specified columns, back to <TT CLASS="FILENAME" >stdout</TT >. <TT CLASS="USERINPUT" ><B >colrm 2 4 <filename</B ></TT > removes the second through fourth characters from each line of the text file <TT CLASS="FILENAME" >filename</TT >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >If the file contains tabs or nonprintable characters, this may cause unpredictable behavior. In such cases, consider using <A HREF="textproc.html#EXPANDREF" >expand</A > and <B CLASS="COMMAND" >unexpand</B > in a pipe preceding <B CLASS="COMMAND" >colrm</B >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="NLREF" ></A ><B CLASS="COMMAND" >nl</B ></DT ><DD ><P >Line numbering filter: <TT CLASS="USERINPUT" ><B >nl filename</B ></TT > lists <TT CLASS="FILENAME" >filename</TT > to <TT CLASS="FILENAME" >stdout</TT >, but inserts consecutive numbers at the beginning of each non-blank line. If <TT CLASS="FILENAME" >filename</TT > omitted, operates on <TT CLASS="FILENAME" >stdin.</TT ></P ><P >The output of <B CLASS="COMMAND" >nl</B > is very similar to <TT CLASS="USERINPUT" ><B >cat -b</B ></TT >, since, by default <B CLASS="COMMAND" >nl</B > does not list blank lines.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="LNUM" ></A ><P ><B >Example 16-28. <I CLASS="FIRSTTERM" >nl</I >: A self-numbering script.</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # line-number.sh 3 4 # This script echoes itself twice to stdout with its lines numbered. 5 6 echo " line number = $LINENO" # 'nl' sees this as line 4 7 # (nl does not number blank lines). 8 # 'cat -n' sees it correctly as line #6. 9 10 nl `basename $0` 11 12 echo; echo # Now, let's try it with 'cat -n' 13 14 cat -n `basename $0` 15 # The difference is that 'cat -n' numbers the blank lines. 16 # Note that 'nl -ba' will also do so. 17 18 exit 0 19 # -----------------------------------------------------------------</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="PRREF" ></A ><B CLASS="COMMAND" >pr</B ></DT ><DD ><P >Print formatting filter. This will paginate files (or <TT CLASS="FILENAME" >stdout</TT >) into sections suitable for hard copy printing or viewing on screen. Various options permit row and column manipulation, joining lines, setting margins, numbering lines, adding page headers, and merging files, among other things. The <B CLASS="COMMAND" >pr</B > command combines much of the functionality of <B CLASS="COMMAND" >nl</B >, <B CLASS="COMMAND" >paste</B >, <B CLASS="COMMAND" >fold</B >, <B CLASS="COMMAND" >column</B >, and <B CLASS="COMMAND" >expand</B >.</P ><P ><TT CLASS="USERINPUT" ><B >pr -o 5 --width=65 fileZZZ | more</B ></TT > gives a nice paginated listing to screen of <TT CLASS="FILENAME" >fileZZZ</TT > with margins set at 5 and 65.</P ><P >A particularly useful option is <TT CLASS="OPTION" >-d</TT >, forcing double-spacing (same effect as <B CLASS="COMMAND" >sed -G</B >).</P ></DD ><DT ><A NAME="GETTEXTREF" ></A ><B CLASS="COMMAND" >gettext</B ></DT ><DD ><P >The GNU <B CLASS="COMMAND" >gettext</B > package is a set of utilities for <A HREF="localization.html" >localizing</A > and translating the text output of programs into foreign languages. While originally intended for C programs, it now supports quite a number of programming and scripting languages.</P ><P >The <B CLASS="COMMAND" >gettext</B > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >program</I ></SPAN > works on shell scripts. See the <TT CLASS="REPLACEABLE" ><I >info page</I ></TT >.</P ></DD ><DT ><A NAME="MSGFMTREF" ></A ><B CLASS="COMMAND" >msgfmt</B ></DT ><DD ><P >A program for generating binary message catalogs. It is used for <A HREF="localization.html" >localization</A >.</P ></DD ><DT ><A NAME="ICONVREF" ></A ><B CLASS="COMMAND" >iconv</B ></DT ><DD ><P >A utility for converting file(s) to a different encoding (character set). Its chief use is for <A HREF="localization.html" >localization</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Convert a string from UTF-8 to UTF-16 and print to the BookList 2 function write_utf8_string { 3 STRING=$1 4 BOOKLIST=$2 5 echo -n "$STRING" | iconv -f UTF8 -t UTF16 | \ 6 cut -b 3- | tr -d \\n >> "$BOOKLIST" 7 } 8 9 # From Peter Knowles' "booklistgen.sh" script 10 #+ for converting files to Sony Librie/PRS-50X format. 11 # (http://booklistgensh.peterknowles.com)</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="RECODEREF" ></A ><B CLASS="COMMAND" >recode</B ></DT ><DD ><P >Consider this a fancier version of <B CLASS="COMMAND" >iconv</B >, above. This very versatile utility for converting a file to a different encoding scheme. Note that <I CLASS="FIRSTTERM" >recode</I > is not part of the standard Linux installation.</P ></DD ><DT ><A NAME="TEXREF" ></A ><B CLASS="COMMAND" >TeX</B >, <A NAME="GSREF" ></A ><B CLASS="COMMAND" >gs</B ></DT ><DD ><P ><B CLASS="COMMAND" >TeX</B > and <B CLASS="COMMAND" >Postscript</B > are text markup languages used for preparing copy for printing or formatted video display.</P ><P ><B CLASS="COMMAND" >TeX</B > is Donald Knuth's elaborate typsetting system. It is often convenient to write a shell script encapsulating all the options and arguments passed to one of these markup languages.</P ><P ><I CLASS="FIRSTTERM" >Ghostscript</I > (<B CLASS="COMMAND" >gs</B >) is a GPL-ed Postscript interpreter.</P ></DD ><DT ><A NAME="TEXEXECREF" ></A ><B CLASS="COMMAND" >texexec</B ></DT ><DD ><P >Utility for processing <I CLASS="FIRSTTERM" >TeX</I > and <I CLASS="FIRSTTERM" >pdf</I > files. Found in <TT CLASS="FILENAME" >/usr/bin</TT > on many Linux distros, it is actually a <A HREF="wrapper.html#SHWRAPPER" >shell wrapper</A > that calls <A HREF="wrapper.html#PERLREF" >Perl</A > to invoke <I CLASS="FIRSTTERM" >Tex</I >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 texexec --pdfarrange --result=Concatenated.pdf *pdf 2 3 # Concatenates all the pdf files in the current working directory 4 #+ into the merged file, Concatenated.pdf . . . 5 # (The --pdfarrange option repaginates a pdf file. See also --pdfcombine.) 6 # The above command-line could be parameterized and put into a shell script.</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="ENSCRIPTREF" ></A ><B CLASS="COMMAND" >enscript</B ></DT ><DD ><P >Utility for converting plain text file to PostScript</P ><P >For example, <B CLASS="COMMAND" >enscript filename.txt -p filename.ps</B > produces the PostScript output file <TT CLASS="FILENAME" >filename.ps</TT >.</P ></DD ><DT ><A NAME="GROFFREF" ></A ><B CLASS="COMMAND" >groff</B >, <A NAME="TBLREF" ></A ><B CLASS="COMMAND" >tbl</B >, <A NAME="EQNREF" ></A ><B CLASS="COMMAND" >eqn</B ></DT ><DD ><P >Yet another text markup and display formatting language is <B CLASS="COMMAND" >groff</B >. This is the enhanced GNU version of the venerable UNIX <B CLASS="COMMAND" >roff/troff</B > display and typesetting package. <A HREF="external.html#MANREF" >Manpages</A > use <B CLASS="COMMAND" >groff</B >.</P ><P >The <B CLASS="COMMAND" >tbl</B > table processing utility is considered part of <B CLASS="COMMAND" >groff</B >, as its function is to convert table markup into <B CLASS="COMMAND" >groff</B > commands.</P ><P >The <B CLASS="COMMAND" >eqn</B > equation processing utility is likewise part of <B CLASS="COMMAND" >groff</B >, and its function is to convert equation markup into <B CLASS="COMMAND" >groff</B > commands.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="MANVIEW" ></A ><P ><B >Example 16-29. <I CLASS="FIRSTTERM" >manview</I >: Viewing formatted manpages</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # manview.sh: Formats the source of a man page for viewing. 3 4 # This script is useful when writing man page source. 5 # It lets you look at the intermediate results on the fly 6 #+ while working on it. 7 8 E_WRONGARGS=85 9 10 if [ -z "$1" ] 11 then 12 echo "Usage: `basename $0` filename" 13 exit $E_WRONGARGS 14 fi 15 16 # --------------------------- 17 groff -Tascii -man $1 | less 18 # From the man page for groff. 19 # --------------------------- 20 21 # If the man page includes tables and/or equations, 22 #+ then the above code will barf. 23 # The following line can handle such cases. 24 # 25 # gtbl < "$1" | geqn -Tlatin1 | groff -Tlatin1 -mtty-char -man 26 # 27 # Thanks, S.C. 28 29 exit $? # See also the "maned.sh" script.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="contributed-scripts.html#MANED" >Example A-39</A >.</P ></DD ><DT ><A NAME="LEXREF" ></A ><B CLASS="COMMAND" >lex</B >, <A NAME="YACCREF" ></A ><B CLASS="COMMAND" >yacc</B ></DT ><DD ><P ><A NAME="FLEXREF" ></A ></P ><P >The <B CLASS="COMMAND" >lex</B > lexical analyzer produces programs for pattern matching. This has been replaced by the nonproprietary <B CLASS="COMMAND" >flex</B > on Linux systems.</P ><P ><A NAME="BISONREF" ></A ></P ><P >The <B CLASS="COMMAND" >yacc</B > utility creates a parser based on a set of specifications. This has been replaced by the nonproprietary <B CLASS="COMMAND" >bison</B > on Linux systems.</P ></DD ></DL ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN11502" HREF="textproc.html#AEN11502" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >This is only true of the GNU version of <B CLASS="COMMAND" >tr</B >, not the generic version often found on commercial UNIX systems.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="timedate.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="filearchiv.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Time / Date Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="external.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >File and Archiving Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/timedate.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Time / Date Commands</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="External Filters, Programs and Commands" HREF="external.html"><LINK REL="PREVIOUS" TITLE="Complex Commands" HREF="moreadv.html"><LINK REL="NEXT" TITLE="Text Processing Commands" HREF="textproc.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="moreadv.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 16. External Filters, Programs and Commands</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="textproc.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="TIMEDATE" ></A >16.3. Time / Date Commands</H1 ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="TDLISTING1" ></A >Time/date and timing</B ></P ><DL ><DT ><A NAME="DATEREF" ></A ><B CLASS="COMMAND" >date</B ></DT ><DD ><P >Simply invoked, <B CLASS="COMMAND" >date</B > prints the date and time to <TT CLASS="FILENAME" >stdout</TT >. Where this command gets interesting is in its formatting and parsing options.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX51" ></A ><P ><B >Example 16-10. Using <I CLASS="FIRSTTERM" >date</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Exercising the 'date' command 3 4 echo "The number of days since the year's beginning is `date +%j`." 5 # Needs a leading '+' to invoke formatting. 6 # %j gives day of year. 7 8 echo "The number of seconds elapsed since 01/01/1970 is `date +%s`." 9 # %s yields number of seconds since "UNIX epoch" began, 10 #+ but how is this useful? 11 12 prefix=temp 13 suffix=$(date +%s) # The "+%s" option to 'date' is GNU-specific. 14 filename=$prefix.$suffix 15 echo "Temporary filename = $filename" 16 # It's great for creating "unique and random" temp filenames, 17 #+ even better than using $$. 18 19 # Read the 'date' man page for more formatting options. 20 21 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >The <TT CLASS="OPTION" >-u</TT > option gives the UTC (Universal Coordinated Time).</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >date</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Fri Mar 29 21:07:39 MST 2002</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >date -u</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Sat Mar 30 04:07:42 UTC 2002</TT > </PRE ></TD ></TR ></TABLE > </P ><P >This option facilitates calculating the time between different dates.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="DATECALC" ></A ><P ><B >Example 16-11. <I CLASS="FIRSTTERM" >Date</I > calculations</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # date-calc.sh 3 # Author: Nathan Coulter 4 # Used in ABS Guide with permission (thanks!). 5 6 MPHR=60 # Minutes per hour. 7 HPD=24 # Hours per day. 8 9 diff () { 10 printf '%s' $(( $(date -u -d"$TARGET" +%s) - 11 $(date -u -d"$CURRENT" +%s))) 12 # %d = day of month. 13 } 14 15 16 CURRENT=$(date -u -d '2007-09-01 17:30:24' '+%F %T.%N %Z') 17 TARGET=$(date -u -d'2007-12-25 12:30:00' '+%F %T.%N %Z') 18 # %F = full date, %T = %H:%M:%S, %N = nanoseconds, %Z = time zone. 19 20 printf '\nIn 2007, %s ' \ 21 "$(date -d"$CURRENT + 22 $(( $(diff) /$MPHR /$MPHR /$HPD / 2 )) days" '+%d %B')" 23 # %B = name of month ^ halfway 24 printf 'was halfway between %s ' "$(date -d"$CURRENT" '+%d %B')" 25 printf 'and %s\n' "$(date -d"$TARGET" '+%d %B')" 26 27 printf '\nOn %s at %s, there were\n' \ 28 $(date -u -d"$CURRENT" +%F) $(date -u -d"$CURRENT" +%T) 29 DAYS=$(( $(diff) / $MPHR / $MPHR / $HPD )) 30 CURRENT=$(date -d"$CURRENT +$DAYS days" '+%F %T.%N %Z') 31 HOURS=$(( $(diff) / $MPHR / $MPHR )) 32 CURRENT=$(date -d"$CURRENT +$HOURS hours" '+%F %T.%N %Z') 33 MINUTES=$(( $(diff) / $MPHR )) 34 CURRENT=$(date -d"$CURRENT +$MINUTES minutes" '+%F %T.%N %Z') 35 printf '%s days, %s hours, ' "$DAYS" "$HOURS" 36 printf '%s minutes, and %s seconds ' "$MINUTES" "$(diff)" 37 printf 'until Christmas Dinner!\n\n' 38 39 # Exercise: 40 # -------- 41 # Rewrite the diff () function to accept passed parameters, 42 #+ rather than using global variables.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="DATERANDREF" ></A ></P ><P >The <I CLASS="FIRSTTERM" >date</I > command has quite a number of <I CLASS="FIRSTTERM" >output</I > options. For example <TT CLASS="OPTION" >%N</TT > gives the nanosecond portion of the current time. One interesting use for this is to generate random integers. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 date +%N | sed -e 's/000$//' -e 's/^0//' 2 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 3 # Strip off leading and trailing zeroes, if present. 4 # Length of generated integer depends on 5 #+ how many zeroes stripped off. 6 7 # 115281032 8 # 63408725 9 # 394504284</PRE ></TD ></TR ></TABLE > </P ><P >There are many more options (try <B CLASS="COMMAND" >man date</B >).</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 date +%j 2 # Echoes day of the year (days elapsed since January 1). 3 4 date +%k%M 5 # Echoes hour and minute in 24-hour format, as a single digit string. 6 7 8 9 # The 'TZ' parameter permits overriding the default time zone. 10 date # Mon Mar 28 21:42:16 MST 2005 11 TZ=EST date # Mon Mar 28 23:42:16 EST 2005 12 # Thanks, Frank Kannemann and Pete Sjoberg, for the tip. 13 14 15 SixDaysAgo=$(date --date='6 days ago') 16 OneMonthAgo=$(date --date='1 month ago') # Four weeks back (not a month!) 17 OneYearAgo=$(date --date='1 year ago')</PRE ></TD ></TR ></TABLE ></P ><P >See also <A HREF="special-chars.html#EX58" >Example 3-4</A > and <A HREF="contributed-scripts.html#STOPWATCH" >Example A-43</A >.</P ></DD ><DT ><A NAME="ZDUMPREF" ></A ><B CLASS="COMMAND" >zdump</B ></DT ><DD ><P >Time zone dump: echoes the time in a specified time zone.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >zdump EST</B ></TT > <TT CLASS="COMPUTEROUTPUT" >EST Tue Sep 18 22:09:22 2001 EST</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="TIMREF" ></A ><B CLASS="COMMAND" >time</B ></DT ><DD ><P >Outputs verbose timing statistics for executing a command.</P ><P ><TT CLASS="USERINPUT" ><B >time ls -l /</B ></TT > gives something like this:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="COMPUTEROUTPUT" >real 0m0.067s user 0m0.004s sys 0m0.005s</TT ></PRE ></TD ></TR ></TABLE > </P ><P >See also the very similar <A HREF="internal.html#TIMESREF" >times</A > command in the previous section.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >As of <A HREF="bash2.html#BASH2REF" >version 2.0</A > of Bash, <B CLASS="COMMAND" >time</B > became a shell reserved word, with slightly altered behavior in a pipeline.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="TOUCHREF" ></A ><B CLASS="COMMAND" >touch</B ></DT ><DD ><P >Utility for updating access/modification times of a file to current system time or other specified time, but also useful for creating a new file. The command <TT CLASS="USERINPUT" ><B >touch zzz</B ></TT > will create a new file of zero length, named <TT CLASS="FILENAME" >zzz</TT >, assuming that <TT CLASS="FILENAME" >zzz</TT > did not previously exist. Time-stamping empty files in this way is useful for storing date information, for example in keeping track of modification times on a project. </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >touch</B > command is equivalent to <TT CLASS="USERINPUT" ><B >: >> newfile</B ></TT > or <TT CLASS="USERINPUT" ><B >>> newfile</B ></TT > (for ordinary files).</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="TIP" ><TABLE CLASS="TIP" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/tip.png" HSPACE="5" ALT="Tip"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Before doing a <A HREF="external.html#CPREF" >cp -u</A > (<I CLASS="FIRSTTERM" >copy/update</I >), use <B CLASS="COMMAND" >touch</B > to update the time stamp of files you don't wish overwritten.</P ><P >As an example, if the directory <TT CLASS="FILENAME" >/home/bozo/tax_audit</TT > contains the files <TT CLASS="FILENAME" >spreadsheet-051606.data</TT >, <TT CLASS="FILENAME" >spreadsheet-051706.data</TT >, and <TT CLASS="FILENAME" >spreadsheet-051806.data</TT >, then doing a <B CLASS="COMMAND" >touch spreadsheet*.data</B > will protect these files from being overwritten by files with the same names during a <B CLASS="COMMAND" >cp -u /home/bozo/financial_info/spreadsheet*data /home/bozo/tax_audit</B >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="ATREF" ></A ><B CLASS="COMMAND" >at</B ></DT ><DD ><P >The <B CLASS="COMMAND" >at</B > job control command executes a given set of commands at a specified time. Superficially, it resembles <A HREF="system.html#CRONREF" >cron</A >, however, <B CLASS="COMMAND" >at</B > is chiefly useful for one-time execution of a command set.</P ><P ><TT CLASS="USERINPUT" ><B >at 2pm January 15</B ></TT > prompts for a set of commands to execute at that time. These commands should be shell-script compatible, since, for all practical purposes, the user is typing in an executable shell script a line at a time. Input terminates with a <A HREF="special-chars.html#CTLDREF" >Ctl-D</A >.</P ><P >Using either the <TT CLASS="OPTION" >-f</TT > option or input redirection (<SPAN CLASS="TOKEN" ><</SPAN >), <B CLASS="COMMAND" >at</B > reads a command list from a file. This file is an executable shell script, though it should, of course, be non-interactive. Particularly clever is including the <A HREF="extmisc.html#RUNPARTSREF" >run-parts</A > command in the file to execute a different set of scripts.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >at 2:30 am Friday < at-jobs.list</B ></TT > <TT CLASS="COMPUTEROUTPUT" >job 2 at 2000-10-27 02:30</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="BATCHREF" ></A ><B CLASS="COMMAND" >batch</B ></DT ><DD ><P >The <B CLASS="COMMAND" >batch</B > job control command is similar to <B CLASS="COMMAND" >at</B >, but it runs a command list when the system load drops below <TT CLASS="LITERAL" >.8</TT >. Like <B CLASS="COMMAND" >at</B >, it can read commands from a file with the <TT CLASS="OPTION" >-f</TT > option.</P ><P ><A NAME="BATCHPROCREF" ></A ></P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN10811" ></A ><P >The concept of <I CLASS="FIRSTTERM" >batch processing</I > dates back to the era of mainframe computers. It means running a set of commands without user intervention.</P ></DIV ></TD ></TR ></TABLE ></DD ><DT ><A NAME="CALREF" ></A ><B CLASS="COMMAND" >cal</B ></DT ><DD ><P >Prints a neatly formatted monthly calendar to <TT CLASS="FILENAME" >stdout</TT >. Will do current year or a large range of past and future years.</P ></DD ><DT ><A NAME="SLEEPREF" ></A ><B CLASS="COMMAND" >sleep</B ></DT ><DD ><P >This is the shell equivalent of a <I CLASS="FIRSTTERM" >wait loop</I >. It pauses for a specified number of seconds, doing nothing. It can be useful for timing or in processes running in the background, checking for a specific event every so often (polling), as in <A HREF="debugging.html#ONLINE" >Example 32-6</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 sleep 3 # Pauses 3 seconds.</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >sleep</B > command defaults to seconds, but minute, hours, or days may also be specified. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 sleep 3 h # Pauses 3 hours!</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <A HREF="system.html#WATCHREF" >watch</A > command may be a better choice than <B CLASS="COMMAND" >sleep</B > for running commands at timed intervals.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="USLEEPREF" ></A ><B CLASS="COMMAND" >usleep</B ></DT ><DD ><P ><I CLASS="FIRSTTERM" >Microsleep</I > (the <I CLASS="FIRSTTERM" >u</I > may be read as the Greek <I CLASS="FIRSTTERM" >mu</I >, or <I CLASS="FIRSTTERM" >micro-</I > prefix). This is the same as <B CLASS="COMMAND" >sleep</B >, above, but <SPAN CLASS="QUOTE" >"sleeps"</SPAN > in microsecond intervals. It can be used for fine-grained timing, or for polling an ongoing process at very frequent intervals.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 usleep 30 # Pauses 30 microseconds.</PRE ></TD ></TR ></TABLE > </P ><P >This command is part of the Red Hat <I CLASS="FIRSTTERM" >initscripts / rc-scripts</I > package.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >usleep</B > command does not provide particularly accurate timing, and is therefore unsuitable for critical timing loops.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="HWCLOCKREF" ></A ><B CLASS="COMMAND" >hwclock</B >, <A NAME="CLOCKREF" ></A ><B CLASS="COMMAND" >clock</B ></DT ><DD ><P >The <B CLASS="COMMAND" >hwclock</B > command accesses or adjusts the machine's hardware clock. Some options require <I CLASS="FIRSTTERM" >root</I > privileges. The <TT CLASS="FILENAME" >/etc/rc.d/rc.sysinit</TT > startup file uses <B CLASS="COMMAND" >hwclock</B > to set the system time from the hardware clock at bootup.</P ><P >The <B CLASS="COMMAND" >clock</B > command is a synonym for <B CLASS="COMMAND" >hwclock</B >.</P ></DD ></DL ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="moreadv.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="textproc.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Complex Commands</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="external.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Text Processing Commands</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/todolist.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >To Do List</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="PREVIOUS" TITLE="Download and Mirror Sites" HREF="mirrorsites.html"><LINK REL="NEXT" TITLE="Copyright" HREF="copyright.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="APPENDIX" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="mirrorsites.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="copyright.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="APPENDIX" ><H1 ><A NAME="TODOLIST" ></A >Appendix R. To Do List</H1 ><UL ><LI ><P >A comprehensive survey of <A HREF="portabilityissues.html#BASHCOMPAT" >incompatibilities</A > between Bash and the classic <A HREF="why-shell.html#BASHDEF" >Bourne shell</A >.</P ></LI ><LI ><P >Same as above, but for the Korn shell (<I CLASS="FIRSTTERM" >ksh</I >).</P ></LI ></UL ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="mirrorsites.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="copyright.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Download and Mirror Sites</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" > </TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Copyright</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/toolsused.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Tools Used to Produce This Book</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Endnotes" HREF="endnotes.html"><LINK REL="PREVIOUS" TITLE="Where to Go For Help" HREF="wherehelp.html"><LINK REL="NEXT" TITLE="Credits" HREF="credits.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="wherehelp.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 38. Endnotes</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="credits.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="TOOLSUSED" ></A >38.4. Tools Used to Produce This Book</H1 ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="SOFTWARE-HARDWARE" ></A >38.4.1. Hardware</H2 ><P >A used IBM Thinkpad, model 760XL laptop (P166, 104 meg RAM) running Red Hat 7.1/7.3. Sure, it's slow and has a funky keyboard, but it beats the heck out of a No. 2 pencil and a Big Chief tablet.</P ><P > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Update:</I ></SPAN > upgraded to a 770Z Thinkpad (P2-366, 192 meg RAM) running FC3. Anyone feel like donating a later-model laptop to a starving writer <g>? </P ><P > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Update:</I ></SPAN > upgraded to a T61 Thinkpad running Mandriva 2011. No longer starving <g>, but not too proud to accept donations. </P ></DIV ><DIV CLASS="SECT2" ><H2 CLASS="SECT2" ><A NAME="SOFTWARE-PRINTWARE" ></A >38.4.2. Software and Printware</H2 ><OL TYPE="i" ><LI ><P >Bram Moolenaar's powerful SGML-aware <A HREF="http://www.vim.org" TARGET="_top" >vim</A > text editor.</P ></LI ><LI ><P ><A HREF="http://www.netfolder.com/DSSSL/" TARGET="_top" >OpenJade</A >, a DSSSL rendering engine for converting SGML documents into other formats.</P ></LI ><LI ><P ><A HREF="http://nwalsh.com/docbook/dsssl/" TARGET="_top" > Norman Walsh's DSSSL stylesheets</A >.</P ></LI ><LI ><P ><I CLASS="CITETITLE" >DocBook, The Definitive Guide</I >, by Norman Walsh and Leonard Muellner (O'Reilly, ISBN 1-56592-580-7). This is still the standard reference for anyone attempting to write a document in Docbook SGML format.</P ></LI ></OL ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="wherehelp.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="credits.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Where to Go For Help</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="endnotes.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Credits</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/untyped.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Bash Variables Are Untyped</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Introduction to Variables and Parameters" HREF="variables.html"><LINK REL="PREVIOUS" TITLE="Variable Assignment" HREF="varassignment.html"><LINK REL="NEXT" TITLE="Special Variable Types" HREF="othertypesv.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="varassignment.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 4. Introduction to Variables and Parameters</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="othertypesv.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="UNTYPED" ></A >4.3. Bash Variables Are Untyped</H1 ><P ><A NAME="BVUNTYPED" ></A ></P ><P >Unlike many other programming languages, Bash does not segregate its variables by <SPAN CLASS="QUOTE" >"type."</SPAN > Essentially, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Bash variables are character strings</I ></SPAN >, but, depending on context, Bash permits arithmetic operations and comparisons on variables. The determining factor is whether the value of a variable contains only digits.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="INTORSTRING" ></A ><P ><B >Example 4-4. Integer or string?</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # int-or-string.sh 3 4 a=2334 # Integer. 5 let "a += 1" 6 echo "a = $a " # a = 2335 7 echo # Integer, still. 8 9 10 b=${a/23/BB} # Substitute "BB" for "23". 11 # This transforms $b into a string. 12 echo "b = $b" # b = BB35 13 declare -i b # Declaring it an integer doesn't help. 14 echo "b = $b" # b = BB35 15 16 let "b += 1" # BB35 + 1 17 echo "b = $b" # b = 1 18 echo # Bash sets the "integer value" of a string to 0. 19 20 c=BB34 21 echo "c = $c" # c = BB34 22 d=${c/BB/23} # Substitute "23" for "BB". 23 # This makes $d an integer. 24 echo "d = $d" # d = 2334 25 let "d += 1" # 2334 + 1 26 echo "d = $d" # d = 2335 27 echo 28 29 30 # What about null variables? 31 e='' # ... Or e="" ... Or e= 32 echo "e = $e" # e = 33 let "e += 1" # Arithmetic operations allowed on a null variable? 34 echo "e = $e" # e = 1 35 echo # Null variable transformed into an integer. 36 37 # What about undeclared variables? 38 echo "f = $f" # f = 39 let "f += 1" # Arithmetic operations allowed? 40 echo "f = $f" # f = 1 41 echo # Undeclared variable transformed into an integer. 42 # 43 # However ... 44 let "f /= $undecl_var" # Divide by zero? 45 # let: f /= : syntax error: operand expected (error token is " ") 46 # Syntax error! Variable $undecl_var is not set to zero here! 47 # 48 # But still ... 49 let "f /= 0" 50 # let: f /= 0: division by 0 (error token is "0") 51 # Expected behavior. 52 53 54 # Bash (usually) sets the "integer value" of null to zero 55 #+ when performing an arithmetic operation. 56 # But, don't try this at home, folks! 57 # It's undocumented and probably non-portable behavior. 58 59 60 # Conclusion: Variables in Bash are untyped, 61 #+ with all attendant consequences. 62 63 exit $?</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Untyped variables are both a blessing and a curse. They permit more flexibility in scripting and make it easier to grind out lines of code (and give you enough rope to hang yourself!). However, they likewise permit subtle errors to creep in and encourage sloppy programming habits.</P ><P >To lighten the burden of keeping track of variable types in a script, Bash <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >does</I ></SPAN > permit <A HREF="declareref.html" >declaring</A > variables.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="varassignment.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="othertypesv.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Variable Assignment</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="variables.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Special Variable Types</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/varassignment.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Variable Assignment</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Introduction to Variables and Parameters" HREF="variables.html"><LINK REL="PREVIOUS" TITLE="Introduction to Variables and Parameters" HREF="variables.html"><LINK REL="NEXT" TITLE="Bash Variables Are Untyped" HREF="untyped.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="variables.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 4. Introduction to Variables and Parameters</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="untyped.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="VARASSIGNMENT" ></A >4.2. Variable Assignment</H1 ><DIV CLASS="VARIABLELIST" ><DL ><DT ><A NAME="EQREF" ></A ><SPAN CLASS="TOKEN" >=</SPAN ></DT ><DD ><P >the assignment operator (<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >no space before and after</I ></SPAN >)</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Do not confuse this with <A HREF="comparison-ops.html#EQUALSIGNREF" >=</A > and <A HREF="comparison-ops.html#EQUALREF" >-eq</A >, which <A HREF="tests.html#IFTHEN" >test</A >, rather than assign!</P ><P >Note that <SPAN CLASS="TOKEN" >=</SPAN > can be either an <I CLASS="FIRSTTERM" >assignment</I > or a <I CLASS="FIRSTTERM" >test</I > operator, depending on context.</P ></TD ></TR ></TABLE ></DIV ><P ><A NAME="EX15_0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX15" ></A ><P ><B >Example 4-2. Plain Variable Assignment</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Naked variables 3 4 echo 5 6 # When is a variable "naked", i.e., lacking the '$' in front? 7 # When it is being assigned, rather than referenced. 8 9 # Assignment 10 a=879 11 echo "The value of \"a\" is $a." 12 13 # Assignment using 'let' 14 let a=16+5 15 echo "The value of \"a\" is now $a." 16 17 echo 18 19 # In a 'for' loop (really, a type of disguised assignment): 20 echo -n "Values of \"a\" in the loop are: " 21 for a in 7 8 9 11 22 do 23 echo -n "$a " 24 done 25 26 echo 27 echo 28 29 # In a 'read' statement (also a type of assignment): 30 echo -n "Enter \"a\" " 31 read a 32 echo "The value of \"a\" is now $a." 33 34 echo 35 36 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="EX16_0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX16" ></A ><P ><B >Example 4-3. Variable Assignment, plain and fancy</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 a=23 # Simple case 4 echo $a 5 b=$a 6 echo $b 7 8 # Now, getting a little bit fancier (command substitution). 9 10 a=`echo Hello!` # Assigns result of 'echo' command to 'a' ... 11 echo $a 12 # Note that including an exclamation mark (!) within a 13 #+ command substitution construct will not work from the command-line, 14 #+ since this triggers the Bash "history mechanism." 15 # Inside a script, however, the history functions are disabled by default. 16 17 a=`ls -l` # Assigns result of 'ls -l' command to 'a' 18 echo $a # Unquoted, however, it removes tabs and newlines. 19 echo 20 echo "$a" # The quoted variable preserves whitespace. 21 # (See the chapter on "Quoting.") 22 23 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="COMMANDSUBREF0" ></A ></P ><P >Variable assignment using the <I CLASS="FIRSTTERM" >$(...)</I > mechanism (a newer method than <A HREF="commandsub.html#BACKQUOTESREF" >backquotes</A >). This is likewise a form of <A HREF="commandsub.html#COMMANDSUBREF" >command substitution</A >.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # From /etc/rc.d/rc.local 2 R=$(cat /etc/redhat-release) 3 arch=$(uname -m)</PRE ></TD ></TR ></TABLE ></P ></DD ></DL ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="variables.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="untyped.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Introduction to Variables and Parameters</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="variables.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Bash Variables Are Untyped</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/variables.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Introduction to Variables and Parameters</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Basics" HREF="part2.html"><LINK REL="PREVIOUS" TITLE="Special Characters" HREF="special-chars.html"><LINK REL="NEXT" TITLE="Variable Assignment" HREF="varassignment.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="special-chars.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="varassignment.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="VARIABLES" ></A >Chapter 4. Introduction to Variables and Parameters</H1 ><P ><I CLASS="FIRSTTERM" >Variables</I > are how programming and scripting languages represent data. A variable is nothing more than a <I CLASS="FIRSTTERM" >label</I >, a name assigned to a location or set of locations in computer memory holding an item of data.</P ><P >Variables appear in arithmetic operations and manipulation of quantities, and in string parsing.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="VARSUBN" ></A >4.1. Variable Substitution</H1 ><P >The <I CLASS="FIRSTTERM" >name</I > of a variable is a placeholder for its <I CLASS="FIRSTTERM" >value</I >, the data it holds. Referencing (retrieving) its value is called <I CLASS="FIRSTTERM" >variable substitution</I >.</P ><DIV CLASS="VARIABLELIST" ><DL ><DT ><SPAN CLASS="TOKEN" >$</SPAN ></DT ><DD ><P ><A NAME="VARNAMEVAL" ></A ></P ><P >Let us carefully distinguish between the <I CLASS="FIRSTTERM" >name</I > of a variable and its <I CLASS="FIRSTTERM" >value</I >. If <TT CLASS="USERINPUT" ><B >variable1</B ></TT > is the name of a variable, then <TT CLASS="USERINPUT" ><B >$variable1</B ></TT > is a reference to its <I CLASS="FIRSTTERM" >value</I >, the data item it contains. <A NAME="AEN2258" HREF="#FTN.AEN2258" >[1]</A > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >variable1=23</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo variable1</B ></TT > <TT CLASS="COMPUTEROUTPUT" >variable1</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $variable1</B ></TT > <TT CLASS="COMPUTEROUTPUT" >23</TT ></PRE ></TD ></TR ></TABLE > </P ><P >The only times a variable appears <SPAN CLASS="QUOTE" >"naked"</SPAN > -- without the <SPAN CLASS="TOKEN" >$</SPAN > prefix -- is when declared or assigned, when <I CLASS="FIRSTTERM" >unset</I >, when <A HREF="internal.html#EXPORTREF" >exported</A >, in an arithmetic expression within <A HREF="dblparens.html" >double parentheses (( ... ))</A >, or in the special case of a variable representing a <A HREF="debugging.html#SIGNALD" >signal</A > (see <A HREF="debugging.html#EX76" >Example 32-5</A >). Assignment may be with an <SPAN CLASS="TOKEN" >=</SPAN > (as in <TT CLASS="PARAMETER" ><I >var1=27</I ></TT >), in a <A HREF="internal.html#READREF" >read</A > statement, and at the head of a loop (<TT CLASS="PARAMETER" ><I >for var2 in 1 2 3</I ></TT >).</P ><P ><A NAME="DBLQUO" ></A >Enclosing a referenced value in <I CLASS="FIRSTTERM" >double quotes</I > (<SPAN CLASS="TOKEN" >" ... "</SPAN >) does not interfere with variable substitution. This is called <I CLASS="FIRSTTERM" >partial quoting</I >, sometimes referred to as <SPAN CLASS="QUOTE" >"weak quoting."</SPAN > <A NAME="SNGLQUO" ></A >Using single quotes (<SPAN CLASS="TOKEN" >' ... '</SPAN >) causes the variable name to be used literally, and no substitution will take place. This is <I CLASS="FIRSTTERM" >full quoting</I >, sometimes referred to as 'strong quoting.' See <A HREF="quoting.html" >Chapter 5</A > for a detailed discussion.</P ><P >Note that <TT CLASS="USERINPUT" ><B >$variable</B ></TT > is actually a simplified form of <TT CLASS="USERINPUT" ><B >${variable}</B ></TT >. In contexts where the <TT CLASS="USERINPUT" ><B >$variable</B ></TT > syntax causes an error, the longer form may work (see <A HREF="parameter-substitution.html" >Section 10.2</A >, below).</P ><P ><A NAME="VARUNSETTING" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX9" ></A ><P ><B >Example 4-1. Variable assignment and substitution</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ex9.sh 3 4 # Variables: assignment and substitution 5 6 a=375 7 hello=$a 8 # ^ ^ 9 10 #------------------------------------------------------------------------- 11 # No space permitted on either side of = sign when initializing variables. 12 # What happens if there is a space? 13 14 # "VARIABLE =value" 15 # ^ 16 #% Script tries to run "VARIABLE" command with one argument, "=value". 17 18 # "VARIABLE= value" 19 # ^ 20 #% Script tries to run "value" command with 21 #+ the environmental variable "VARIABLE" set to "". 22 #------------------------------------------------------------------------- 23 24 25 echo hello # hello 26 # Not a variable reference, just the string "hello" ... 27 28 echo $hello # 375 29 # ^ This *is* a variable reference. 30 echo ${hello} # 375 31 # Likewise a variable reference, as above. 32 33 # Quoting . . . 34 echo "$hello" # 375 35 echo "${hello}" # 375 36 37 echo 38 39 hello="A B C D" 40 echo $hello # A B C D 41 echo "$hello" # A B C D 42 # As we see, echo $hello and echo "$hello" give different results. 43 # ======================================= 44 # Quoting a variable preserves whitespace. 45 # ======================================= 46 47 echo 48 49 echo '$hello' # $hello 50 # ^ ^ 51 # Variable referencing disabled (escaped) by single quotes, 52 #+ which causes the "$" to be interpreted literally. 53 54 # Notice the effect of different types of quoting. 55 56 57 hello= # Setting it to a null value. 58 echo "\$hello (null value) = $hello" # $hello (null value) = 59 # Note that setting a variable to a null value is not the same as 60 #+ unsetting it, although the end result is the same (see below). 61 62 # -------------------------------------------------------------- 63 64 # It is permissible to set multiple variables on the same line, 65 #+ if separated by white space. 66 # Caution, this may reduce legibility, and may not be portable. 67 68 var1=21 var2=22 var3=$V3 69 echo 70 echo "var1=$var1 var2=$var2 var3=$var3" 71 72 # May cause problems with legacy versions of "sh" . . . 73 74 # -------------------------------------------------------------- 75 76 echo; echo 77 78 numbers="one two three" 79 # ^ ^ 80 other_numbers="1 2 3" 81 # ^ ^ 82 # If there is whitespace embedded within a variable, 83 #+ then quotes are necessary. 84 # other_numbers=1 2 3 # Gives an error message. 85 echo "numbers = $numbers" 86 echo "other_numbers = $other_numbers" # other_numbers = 1 2 3 87 # Escaping the whitespace also works. 88 mixed_bag=2\ ---\ Whatever 89 # ^ ^ Space after escape (\). 90 91 echo "$mixed_bag" # 2 --- Whatever 92 93 echo; echo 94 95 echo "uninitialized_variable = $uninitialized_variable" 96 # Uninitialized variable has null value (no value at all!). 97 uninitialized_variable= # Declaring, but not initializing it -- 98 #+ same as setting it to a null value, as above. 99 echo "uninitialized_variable = $uninitialized_variable" 100 # It still has a null value. 101 102 uninitialized_variable=23 # Set it. 103 unset uninitialized_variable # Unset it. 104 echo "uninitialized_variable = $uninitialized_variable" 105 # uninitialized_variable = 106 # It still has a null value. 107 echo 108 109 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><A NAME="UNINITVAR1" ></A ></P ><P >An uninitialized variable has a <SPAN CLASS="QUOTE" >"null"</SPAN > value -- no assigned value at all (<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > zero!). <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 if [ -z "$unassigned" ] 2 then 3 echo "\$unassigned is NULL." 4 fi # $unassigned is NULL.</PRE ></TD ></TR ></TABLE ></P ><P >Using a variable before assigning a value to it may cause problems. It is nevertheless possible to perform arithmetic operations on an uninitialized variable. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 echo "$uninitialized" # (blank line) 2 let "uninitialized += 5" # Add 5 to it. 3 echo "$uninitialized" # 5 4 5 # Conclusion: 6 # An uninitialized variable has no value, 7 #+ however it evaluates as 0 in an arithmetic operation.</PRE ></TD ></TR ></TABLE > See also <A HREF="internal.html#SELFSOURCE" >Example 15-23</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN2258" HREF="variables.html#AEN2258" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="LVALUEREF" ></A >Technically, the <I CLASS="FIRSTTERM" >name</I > of a variable is called an <I CLASS="FIRSTTERM" >lvalue</I >, meaning that it appears on the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >left</I ></SPAN > side of an assignment statment, as in <TT CLASS="USERINPUT" ><B >VARIABLE=23</B ></TT >. A variable's <I CLASS="FIRSTTERM" >value</I > is an <I CLASS="FIRSTTERM" >rvalue</I >, meaning that it appears on the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >right</I ></SPAN > side of an assignment statement, as in <TT CLASS="USERINPUT" ><B >VAR2=$VARIABLE</B ></TT >.</P ><P ><A NAME="POINTERREF" ></A >A variable's <I CLASS="FIRSTTERM" >name</I > is, in fact, a <I CLASS="FIRSTTERM" >reference</I >, a <I CLASS="FIRSTTERM" >pointer</I > to the memory location(s) where the actual data associated with that variable is kept.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="special-chars.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="varassignment.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Special Characters</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part2.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Variable Assignment</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/variables2.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Another Look at Variables</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Beyond the Basics" HREF="part3.html"><LINK REL="PREVIOUS" TITLE="Beyond the Basics" HREF="part3.html"><LINK REL="NEXT" TITLE="Typing variables: declare or typeset" HREF="declareref.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="part3.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="declareref.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="VARIABLES2" ></A >Chapter 9. Another Look at Variables</H1 ><P >Used properly, variables can add power and flexibility to scripts. This requires learning their subtleties and nuances.</P ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="INTERNALVARIABLES" ></A >9.1. Internal Variables</H1 ><DIV CLASS="VARIABLELIST" ><DL ><DT ><TT CLASS="REPLACEABLE" ><I ><A HREF="internal.html#BUILTINREF" >Builtin</A > variables:</I ></TT ></DT ><DD ><P >variables affecting bash script behavior</P ></DD ><DT ><A NAME="BASHVARREF" ></A ><TT CLASS="VARNAME" >$BASH</TT ></DT ><DD ><P >The path to the <I CLASS="FIRSTTERM" >Bash</I > binary itself <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $BASH</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/bin/bash</TT ></PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="BASHENVREF" ></A ><TT CLASS="VARNAME" >$BASH_ENV</TT ></DT ><DD ><P >An <A HREF="othertypesv.html#ENVREF" >environmental variable</A > pointing to a Bash startup file to be read when a script is invoked</P ></DD ><DT ><A NAME="BASHSUBSHELLREF" ></A ><TT CLASS="VARNAME" >$BASH_SUBSHELL</TT ></DT ><DD ><P >A variable indicating the <A HREF="subshells.html#SUBSHELLSREF" >subshell</A > level. This is a new addition to Bash, <A HREF="bashver3.html#BASH3REF" >version 3</A >.</P ><P >See <A HREF="subshells.html#SUBSHELL" >Example 21-1</A > for usage.</P ></DD ><DT ><A NAME="BASHPIDREF" ></A ><TT CLASS="VARNAME" >$BASHPID</TT ></DT ><DD ><P ><I CLASS="FIRSTTERM" >Process ID</I > of the current instance of Bash. This is not the same as the <A HREF="variables2.html#PROCCID" >$$</A > variable, but it often gives the same result.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash4$ </TT ><TT CLASS="USERINPUT" ><B >echo $$</B ></TT > <TT CLASS="COMPUTEROUTPUT" >11015</TT > <TT CLASS="PROMPT" >bash4$ </TT ><TT CLASS="USERINPUT" ><B >echo $BASHPID</B ></TT > <TT CLASS="COMPUTEROUTPUT" >11015</TT > <TT CLASS="PROMPT" >bash4$ </TT ><TT CLASS="USERINPUT" ><B >ps ax | grep bash4</B ></TT > <TT CLASS="COMPUTEROUTPUT" >11015 pts/2 R 0:00 bash4</TT > </PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="BASHPIDREF2" ></A >But ...</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash4 2 3 echo "\$\$ outside of subshell = $$" # 9602 4 echo "\$BASH_SUBSHELL outside of subshell = $BASH_SUBSHELL" # 0 5 echo "\$BASHPID outside of subshell = $BASHPID" # 9602 6 7 echo 8 9 ( echo "\$\$ inside of subshell = $$" # 9602 10 echo "\$BASH_SUBSHELL inside of subshell = $BASH_SUBSHELL" # 1 11 echo "\$BASHPID inside of subshell = $BASHPID" ) # 9603 12 # Note that $$ returns PID of parent process.</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><TT CLASS="VARNAME" >$BASH_VERSINFO[n]</TT ></DT ><DD ><P >A 6-element <A HREF="arrays.html#ARRAYREF" >array</A > containing version information about the installed release of Bash. This is similar to <TT CLASS="VARNAME" >$BASH_VERSION</TT >, below, but a bit more detailed.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Bash version info: 2 3 for n in 0 1 2 3 4 5 4 do 5 echo "BASH_VERSINFO[$n] = ${BASH_VERSINFO[$n]}" 6 done 7 8 # BASH_VERSINFO[0] = 3 # Major version no. 9 # BASH_VERSINFO[1] = 00 # Minor version no. 10 # BASH_VERSINFO[2] = 14 # Patch level. 11 # BASH_VERSINFO[3] = 1 # Build version. 12 # BASH_VERSINFO[4] = release # Release status. 13 # BASH_VERSINFO[5] = i386-redhat-linux-gnu # Architecture 14 # (same as $MACHTYPE).</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><TT CLASS="VARNAME" >$BASH_VERSION</TT ></DT ><DD ><P >The version of Bash installed on the system</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $BASH_VERSION</B ></TT > <TT CLASS="COMPUTEROUTPUT" >3.2.25(1)-release</TT > </PRE ></TD ></TR ></TABLE > </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >tcsh% </TT ><TT CLASS="USERINPUT" ><B >echo $BASH_VERSION</B ></TT > <TT CLASS="COMPUTEROUTPUT" >BASH_VERSION: Undefined variable.</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Checking $BASH_VERSION is a good method of determining which shell is running. <A HREF="variables2.html#SHELLVARREF" >$SHELL</A > does not necessarily give the correct answer.</P ></DD ><DT ><A NAME="CDPATHREF" ></A ><TT CLASS="VARNAME" >$CDPATH</TT ></DT ><DD ><P >A colon-separated list of search paths available to the <A HREF="internal.html#CDREF" >cd</A > command, similar in function to the <A HREF="variables2.html#PATHREF" >$PATH</A > variable for binaries. The <TT CLASS="VARNAME" >$CDPATH</TT > variable may be set in the local <A HREF="sample-bashrc.html#BASHRC" ><TT CLASS="FILENAME" >~/.bashrc</TT ></A > file.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cd bash-doc</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bash: cd: bash-doc: No such file or directory</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >CDPATH=/usr/share/doc</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >cd bash-doc</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/usr/share/doc/bash-doc</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $PWD</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/usr/share/doc/bash-doc</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="DIRSTACKREF" ></A ><TT CLASS="VARNAME" >$DIRSTACK</TT ></DT ><DD ><P >The top value in the directory stack <A NAME="AEN4671" HREF="#FTN.AEN4671" >[1]</A > (affected by <A HREF="internal.html#PUSHDREF" >pushd</A > and <A HREF="internal.html#POPDREF" >popd</A >)</P ><P >This builtin variable corresponds to the <A HREF="internal.html#DIRSD" >dirs</A > command, however <B CLASS="COMMAND" >dirs</B > shows the entire contents of the directory stack.</P ></DD ><DT ><TT CLASS="VARNAME" >$EDITOR</TT ></DT ><DD ><P >The default editor invoked by a script, usually <B CLASS="COMMAND" >vi</B > or <B CLASS="COMMAND" >emacs</B >.</P ></DD ><DT ><A NAME="EUIDREF" ></A ><TT CLASS="VARNAME" >$EUID</TT ></DT ><DD ><P ><SPAN CLASS="QUOTE" >"effective"</SPAN > user ID number</P ><P >Identification number of whatever identity the current user has assumed, perhaps by means of <A HREF="system.html#SUREF" >su</A >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="VARNAME" >$EUID</TT > is not necessarily the same as the <A HREF="variables2.html#UIDREF" >$UID</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><TT CLASS="VARNAME" >$FUNCNAME</TT ></DT ><DD ><P >Name of the current function</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 xyz23 () 2 { 3 echo "$FUNCNAME now executing." # xyz23 now executing. 4 } 5 6 xyz23 7 8 echo "FUNCNAME = $FUNCNAME" # FUNCNAME = 9 # Null value outside a function.</PRE ></TD ></TR ></TABLE > </P ><P >See also <A HREF="contributed-scripts.html#USEGETOPT" >Example A-50</A >.</P ></DD ><DT ><TT CLASS="VARNAME" >$GLOBIGNORE</TT ></DT ><DD ><P >A list of filename patterns to be excluded from matching in <A HREF="globbingref.html" >globbing</A >.</P ></DD ><DT ><A NAME="GROUPSREF" ></A ><TT CLASS="VARNAME" >$GROUPS</TT ></DT ><DD ><P >Groups current user belongs to</P ><P >This is a listing (array) of the group id numbers for current user, as recorded in <A HREF="files.html#DATAFILESREF1" ><TT CLASS="FILENAME" >/etc/passwd</TT ></A > and <TT CLASS="FILENAME" >/etc/group</TT >. </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >echo $GROUPS</B ></TT > <TT CLASS="COMPUTEROUTPUT" >0</TT > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >echo ${GROUPS[1]}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >1</TT > <TT CLASS="PROMPT" >root# </TT ><TT CLASS="USERINPUT" ><B >echo ${GROUPS[5]}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >6</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="HOMEDIRREF" ></A ><TT CLASS="VARNAME" >$HOME</TT ></DT ><DD ><P >Home directory of the user, usually <TT CLASS="FILENAME" >/home/username</TT > (see <A HREF="parameter-substitution.html#EX6" >Example 10-7</A >)</P ></DD ><DT ><A NAME="HOSTNAMEREF" ></A ><TT CLASS="VARNAME" >$HOSTNAME</TT ></DT ><DD ><P >The <A HREF="system.html#HNAMEREF" >hostname</A > command assigns the system host name at bootup in an init script. However, the <TT CLASS="FUNCTION" >gethostname()</TT > function sets the Bash internal variable <TT CLASS="VARNAME" >$HOSTNAME</TT >. See also <A HREF="parameter-substitution.html#EX6" >Example 10-7</A >.</P ></DD ><DT ><TT CLASS="VARNAME" >$HOSTTYPE</TT ></DT ><DD ><P >host type</P ><P >Like <A HREF="variables2.html#MACHTYPEREF" >$MACHTYPE</A >, identifies the system hardware.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $HOSTTYPE</B ></TT > <TT CLASS="COMPUTEROUTPUT" >i686</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="IFSREF" ></A ><TT CLASS="VARNAME" >$IFS</TT ></DT ><DD ><P >internal field separator</P ><P >This variable determines how Bash recognizes <A HREF="special-chars.html#FIELDREF" >fields</A >, or word boundaries, when it interprets character strings.</P ><P ><A NAME="IFSWS" ></A ></P ><P >$IFS defaults to <A HREF="special-chars.html#WHITESPACEREF" >whitespace</A > (space, tab, and newline), but may be changed, for example, to parse a comma-separated data file. Note that <A HREF="variables2.html#APPREF" >$*</A > uses the first character held in <TT CLASS="VARNAME" >$IFS</TT >. See <A HREF="quoting.html#WEIRDVARS" >Example 5-1</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "$IFS"</B ></TT > <TT CLASS="COMPUTEROUTPUT" ></TT > <TT CLASS="COMPUTEROUTPUT" >(With $IFS set to default, a blank line displays.)</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo "$IFS" | cat -vte</B ></TT > <TT CLASS="COMPUTEROUTPUT" > ^I$ $</TT > <TT CLASS="COMPUTEROUTPUT" >(Show whitespace: here a single space, ^I [horizontal tab], and newline, and display "$" at end-of-line.)</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >bash -c 'set w x y z; IFS=":-;"; echo "$*"'</B ></TT > <TT CLASS="COMPUTEROUTPUT" >w:x:y:z</TT > <TT CLASS="COMPUTEROUTPUT" >(Read commands from string and assign any arguments to pos params.)</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Set <TT CLASS="VARNAME" >$IFS</TT > to eliminate whitespace in <A HREF="special-chars.html#PATHNAMEREF" >pathnames</A >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 IFS="$(printf '\n\t')" # Per David Wheeler.</PRE ></TD ></TR ></TABLE > </P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><TT CLASS="VARNAME" >$IFS</TT > does not handle whitespace the same as it does other characters. <DIV CLASS="EXAMPLE" ><HR><A NAME="IFSH" ></A ><P ><B >Example 9-1. $IFS and whitespace</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ifs.sh 3 4 5 var1="a+b+c" 6 var2="d-e-f" 7 var3="g,h,i" 8 9 IFS=+ 10 # The plus sign will be interpreted as a separator. 11 echo $var1 # a b c 12 echo $var2 # d-e-f 13 echo $var3 # g,h,i 14 15 echo 16 17 IFS="-" 18 # The plus sign reverts to default interpretation. 19 # The minus sign will be interpreted as a separator. 20 echo $var1 # a+b+c 21 echo $var2 # d e f 22 echo $var3 # g,h,i 23 24 echo 25 26 IFS="," 27 # The comma will be interpreted as a separator. 28 # The minus sign reverts to default interpretation. 29 echo $var1 # a+b+c 30 echo $var2 # d-e-f 31 echo $var3 # g h i 32 33 echo 34 35 IFS=" " 36 # The space character will be interpreted as a separator. 37 # The comma reverts to default interpretation. 38 echo $var1 # a+b+c 39 echo $var2 # d-e-f 40 echo $var3 # g,h,i 41 42 # ======================================================== # 43 44 # However ... 45 # $IFS treats whitespace differently than other characters. 46 47 output_args_one_per_line() 48 { 49 for arg 50 do 51 echo "[$arg]" 52 done # ^ ^ Embed within brackets, for your viewing pleasure. 53 } 54 55 echo; echo "IFS=\" \"" 56 echo "-------" 57 58 IFS=" " 59 var=" a b c " 60 # ^ ^^ ^^^ 61 output_args_one_per_line $var # output_args_one_per_line `echo " a b c "` 62 # [a] 63 # [b] 64 # [c] 65 66 67 echo; echo "IFS=:" 68 echo "-----" 69 70 IFS=: 71 var=":a::b:c:::" # Same pattern as above, 72 # ^ ^^ ^^^ #+ but substituting ":" for " " ... 73 output_args_one_per_line $var 74 # [] 75 # [a] 76 # [] 77 # [b] 78 # [c] 79 # [] 80 # [] 81 82 # Note "empty" brackets. 83 # The same thing happens with the "FS" field separator in awk. 84 85 86 echo 87 88 exit</PRE ></TD ></TR ></TABLE ><HR></DIV > </P ></TD ></TR ></TABLE ></DIV ><P >(Many thanks, Stéphane Chazelas, for clarification and above examples.)</P ><P >See also <A HREF="communications.html#ISSPAMMER" >Example 16-41</A >, <A HREF="loops.html#BINGREP" >Example 11-8</A >, and <A HREF="here-docs.html#MAILBOXGREP" >Example 19-14</A > for instructive examples of using <TT CLASS="VARNAME" >$IFS</TT >.</P ></DD ><DT ><TT CLASS="VARNAME" >$IGNOREEOF</TT ></DT ><DD ><P >Ignore EOF: how many end-of-files (control-D) the shell will ignore before logging out.</P ></DD ><DT ><TT CLASS="VARNAME" >$LC_COLLATE</TT ></DT ><DD ><P >Often set in the <A HREF="sample-bashrc.html" ><TT CLASS="FILENAME" >.bashrc</TT ></A > or <TT CLASS="FILENAME" >/etc/profile</TT > files, this variable controls collation order in filename expansion and pattern matching. If mishandled, <TT CLASS="VARNAME" >LC_COLLATE</TT > can cause unexpected results in <A HREF="globbingref.html" >filename globbing</A >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >As of version 2.05 of Bash, filename globbing no longer distinguishes between lowercase and uppercase letters in a character range between brackets. For example, <B CLASS="COMMAND" >ls [A-M]*</B > would match both <TT CLASS="FILENAME" >File1.txt</TT > and <TT CLASS="FILENAME" >file1.txt</TT >. To revert to the customary behavior of bracket matching, set <TT CLASS="VARNAME" >LC_COLLATE</TT > to <TT CLASS="OPTION" >C</TT > by an <TT CLASS="USERINPUT" ><B >export LC_COLLATE=C</B ></TT > in <TT CLASS="FILENAME" >/etc/profile</TT > and/or <TT CLASS="FILENAME" >~/.bashrc</TT >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><TT CLASS="VARNAME" >$LC_CTYPE</TT ></DT ><DD ><P >This internal variable controls character interpretation in <A HREF="globbingref.html" >globbing</A > and pattern matching.</P ></DD ><DT ><A NAME="LINENOREF" ></A ><TT CLASS="VARNAME" >$LINENO</TT ></DT ><DD ><P >This variable is the line number of the shell script in which this variable appears. It has significance only within the script in which it appears, and is chiefly useful for debugging purposes.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # *** BEGIN DEBUG BLOCK *** 2 last_cmd_arg=$_ # Save it. 3 4 echo "At line number $LINENO, variable \"v1\" = $v1" 5 echo "Last command argument processed = $last_cmd_arg" 6 # *** END DEBUG BLOCK ***</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="MACHTYPEREF" ></A ><TT CLASS="VARNAME" >$MACHTYPE</TT ></DT ><DD ><P >machine type</P ><P >Identifies the system hardware.</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $MACHTYPE</B ></TT > <TT CLASS="COMPUTEROUTPUT" >i686</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="OLDPWD" ></A ><TT CLASS="VARNAME" >$OLDPWD</TT ></DT ><DD ><P >Old working directory (<SPAN CLASS="QUOTE" >"OLD-Print-Working-Directory"</SPAN >, previous directory you were in).</P ></DD ><DT ><TT CLASS="VARNAME" >$OSTYPE</TT ></DT ><DD ><P >operating system type</P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $OSTYPE</B ></TT > <TT CLASS="COMPUTEROUTPUT" >linux</TT ></PRE ></TD ></TR ></TABLE ></DD ><DT ><A NAME="PATHREF" ></A ><TT CLASS="VARNAME" >$PATH</TT ></DT ><DD ><P >Path to binaries, usually <TT CLASS="FILENAME" >/usr/bin/</TT >, <TT CLASS="FILENAME" >/usr/X11R6/bin/</TT >, <TT CLASS="FILENAME" >/usr/local/bin</TT >, etc.</P ><P >When given a command, the shell automatically does a hash table search on the directories listed in the <I CLASS="FIRSTTERM" >path</I > for the executable. The path is stored in the <A HREF="othertypesv.html#ENVREF" >environmental variable</A >, <TT CLASS="VARNAME" >$PATH</TT >, a list of directories, separated by colons. Normally, the system stores the <TT CLASS="VARNAME" >$PATH</TT > definition in <TT CLASS="FILENAME" >/etc/profile</TT > and/or <A HREF="sample-bashrc.html" ><TT CLASS="FILENAME" >~/.bashrc</TT ></A > (see <A HREF="files.html" >Appendix H</A >).</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><B CLASS="COMMAND" >echo $PATH</B > <TT CLASS="COMPUTEROUTPUT" >/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin:/sbin:/usr/sbin</TT ></PRE ></TD ></TR ></TABLE > </P ><P ><TT CLASS="USERINPUT" ><B >PATH=${PATH}:/opt/bin</B ></TT > appends the <TT CLASS="FILENAME" >/opt/bin</TT > directory to the current path. In a script, it may be expedient to temporarily add a directory to the path in this way. When the script exits, this restores the original <TT CLASS="VARNAME" >$PATH</TT > (a child process, such as a script, may not change the environment of the parent process, the shell).</P ><P ><A NAME="CURRENTWDREF" ></A ></P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The current <SPAN CLASS="QUOTE" >"working directory"</SPAN >, <TT CLASS="FILENAME" >./</TT >, is usually omitted from the <TT CLASS="VARNAME" >$PATH</TT > as a security measure.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="PIPESTATUSREF" ></A ><TT CLASS="VARNAME" >$PIPESTATUS</TT ></DT ><DD ><P ><A HREF="arrays.html#ARRAYREF" >Array</A > variable holding <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A >(es) of last executed <I CLASS="FIRSTTERM" >foreground</I > <A HREF="special-chars.html#PIPEREF" >pipe</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $PIPESTATUS</B ></TT > <TT CLASS="COMPUTEROUTPUT" >0</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -al | bogus_command</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bash: bogus_command: command not found</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ${PIPESTATUS[1]}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >127</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >ls -al | bogus_command</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bash: bogus_command: command not found</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $?</B ></TT > <TT CLASS="COMPUTEROUTPUT" >127</TT > </PRE ></TD ></TR ></TABLE > </P ><P >The members of the <TT CLASS="VARNAME" >$PIPESTATUS</TT > array hold the exit status of each respective command executed in a pipe. <TT CLASS="VARNAME" >$PIPESTATUS[0]</TT > holds the exit status of the first command in the pipe, <TT CLASS="VARNAME" >$PIPESTATUS[1]</TT > the exit status of the second command, and so on.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P > The <TT CLASS="VARNAME" >$PIPESTATUS</TT > variable may contain an erroneous <SPAN CLASS="ERRORCODE" >0</SPAN > value in a login shell (in releases prior to 3.0 of Bash). </P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >tcsh% </TT ><TT CLASS="USERINPUT" ><B >bash</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >who | grep nobody | sort</B ></TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ${PIPESTATUS[*]}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >0</TT > </PRE ></TD ></TR ></TABLE > </P ><P > The above lines contained in a script would produce the expected <TT CLASS="COMPUTEROUTPUT" >0 1 0</TT > output. </P ><P > Thank you, Wayne Pollock for pointing this out and supplying the above example. </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="VARNAME" >$PIPESTATUS</TT > variable gives unexpected results in some contexts.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $BASH_VERSION</B ></TT > <TT CLASS="COMPUTEROUTPUT" >3.00.14(1)-release</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >$ ls | bogus_command | wc</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bash: bogus_command: command not found 0 0 0</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ${PIPESTATUS[@]}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >141 127 0</TT > </PRE ></TD ></TR ></TABLE > </P ><P >Chet Ramey attributes the above output to the behavior of <A HREF="external.html#LSREF" >ls</A >. If <I CLASS="FIRSTTERM" >ls</I > writes to a <I CLASS="FIRSTTERM" >pipe</I > whose output is not read, then <TT CLASS="REPLACEABLE" ><I >SIGPIPE</I ></TT > kills it, and its <A HREF="exit-status.html#EXITSTATUSREF" >exit status</A > is <SPAN CLASS="RETURNVALUE" >141</SPAN >. Otherwise its exit status is <SPAN CLASS="RETURNVALUE" >0</SPAN >, as expected. This likewise is the case for <A HREF="textproc.html#TRREF" >tr</A >.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><TT CLASS="VARNAME" >$PIPESTATUS</TT > is a <SPAN CLASS="QUOTE" >"volatile"</SPAN > variable. It needs to be captured immediately after the pipe in question, before any other command intervenes.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >$ ls | bogus_command | wc</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bash: bogus_command: command not found 0 0 0</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ${PIPESTATUS[@]}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >0 127 0</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo ${PIPESTATUS[@]}</B ></TT > <TT CLASS="COMPUTEROUTPUT" >0</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <A HREF="bashver3.html#PIPEFAILREF" >pipefail option</A > may be useful in cases where <TT CLASS="VARNAME" >$PIPESTATUS</TT > does not give the desired information.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="PPIDREF" ></A ><TT CLASS="VARNAME" >$PPID</TT ></DT ><DD ><P ></P ><P >The <TT CLASS="VARNAME" >$PPID</TT > of a process is the process ID (<TT CLASS="VARNAME" >pid</TT >) of its parent process. <A NAME="AEN5154" HREF="#FTN.AEN5154" >[2]</A > </P ><P >Compare this with the <A HREF="system.html#PIDOFREF" >pidof</A > command.</P ></DD ><DT ><TT CLASS="VARNAME" >$PROMPT_COMMAND</TT ></DT ><DD ><P >A variable holding a command to be executed just before the primary prompt, <TT CLASS="VARNAME" >$PS1</TT > is to be displayed.</P ></DD ><DT ><A NAME="PS1REF" ></A ><TT CLASS="VARNAME" >$PS1</TT ></DT ><DD ><P >This is the main prompt, seen at the command-line.</P ></DD ><DT ><A NAME="SECPROMPTREF" ></A ><TT CLASS="VARNAME" >$PS2</TT ></DT ><DD ><P >The secondary prompt, seen when additional input is expected. It displays as <SPAN CLASS="QUOTE" >">"</SPAN >.</P ></DD ><DT ><TT CLASS="VARNAME" >$PS3</TT ></DT ><DD ><P >The tertiary prompt, displayed in a <A HREF="testbranch.html#SELECTREF" >select</A > loop (see <A HREF="testbranch.html#EX31" >Example 11-30</A >).</P ></DD ><DT ><TT CLASS="VARNAME" >$PS4</TT ></DT ><DD ><P >The quartenary prompt, shown at the beginning of each line of output when invoking a script with the <SPAN CLASS="TOKEN" >-x</SPAN > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >[verbose trace]</I ></SPAN > <A HREF="options.html#OPTIONSREF" >option</A >. It displays as <SPAN CLASS="QUOTE" >"+"</SPAN >.</P ><P >As a debugging aid, it may be useful to embed diagnostic information in <TT CLASS="VARNAME" >$PS4</TT >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 P4='$(read time junk < /proc/$$/schedstat; echo "@@@ $time @@@ " )' 2 # Per suggestion by Erik Brandsberg. 3 set -x 4 # Various commands follow ...</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="PWDREF" ></A ><TT CLASS="VARNAME" >$PWD</TT ></DT ><DD ><P >Working directory (directory you are in at the time)</P ><P >This is the analog to the <A HREF="internal.html#PWD2REF" >pwd</A > builtin command.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 E_WRONG_DIRECTORY=85 4 5 clear # Clear the screen. 6 7 TargetDirectory=/home/bozo/projects/GreatAmericanNovel 8 9 cd $TargetDirectory 10 echo "Deleting stale files in $TargetDirectory." 11 12 if [ "$PWD" != "$TargetDirectory" ] 13 then # Keep from wiping out wrong directory by accident. 14 echo "Wrong directory!" 15 echo "In $PWD, rather than $TargetDirectory!" 16 echo "Bailing out!" 17 exit $E_WRONG_DIRECTORY 18 fi 19 20 rm -rf * 21 rm .[A-Za-z0-9]* # Delete dotfiles. 22 # rm -f .[^.]* ..?* to remove filenames beginning with multiple dots. 23 # (shopt -s dotglob; rm -f *) will also work. 24 # Thanks, S.C. for pointing this out. 25 26 # A filename (`basename`) may contain all characters in the 0 - 255 range, 27 #+ except "/". 28 # Deleting files beginning with weird characters, such as - 29 #+ is left as an exercise. (Hint: rm ./-weirdname or rm -- -weirdname) 30 result=$? # Result of delete operations. If successful = 0. 31 32 echo 33 ls -al # Any files left? 34 echo "Done." 35 echo "Old files deleted in $TargetDirectory." 36 echo 37 38 # Various other operations here, as necessary. 39 40 exit $result</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><A NAME="REPLYREF" ></A ><TT CLASS="VARNAME" >$REPLY</TT ></DT ><DD ><P >The default value when a variable is not supplied to <A HREF="internal.html#READREF" >read</A >. Also applicable to <A HREF="testbranch.html#SELECTREF" >select</A > menus, but only supplies the item number of the variable chosen, not the value of the variable itself.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # reply.sh 3 4 # REPLY is the default value for a 'read' command. 5 6 echo 7 echo -n "What is your favorite vegetable? " 8 read 9 10 echo "Your favorite vegetable is $REPLY." 11 # REPLY holds the value of last "read" if and only if 12 #+ no variable supplied. 13 14 echo 15 echo -n "What is your favorite fruit? " 16 read fruit 17 echo "Your favorite fruit is $fruit." 18 echo "but..." 19 echo "Value of \$REPLY is still $REPLY." 20 # $REPLY is still set to its previous value because 21 #+ the variable $fruit absorbed the new "read" value. 22 23 echo 24 25 exit 0</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><TT CLASS="VARNAME" >$SECONDS</TT ></DT ><DD ><P >The number of seconds the script has been running.</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 TIME_LIMIT=10 4 INTERVAL=1 5 6 echo 7 echo "Hit Control-C to exit before $TIME_LIMIT seconds." 8 echo 9 10 while [ "$SECONDS" -le "$TIME_LIMIT" ] 11 do # $SECONDS is an internal shell variable. 12 if [ "$SECONDS" -eq 1 ] 13 then 14 units=second 15 else 16 units=seconds 17 fi 18 19 echo "This script has been running $SECONDS $units." 20 # On a slow or overburdened machine, the script may skip a count 21 #+ every once in a while. 22 sleep $INTERVAL 23 done 24 25 echo -e "\a" # Beep! 26 27 exit 0</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><TT CLASS="VARNAME" >$SHELLOPTS</TT ></DT ><DD ><P >The list of enabled shell <A HREF="options.html#OPTIONSREF" >options</A >, a readonly variable. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $SHELLOPTS</B ></TT > <TT CLASS="COMPUTEROUTPUT" >braceexpand:hashall:histexpand:monitor:history:interactive-comments:emacs</TT > </PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="SHLVLREF" ></A ><TT CLASS="VARNAME" >$SHLVL</TT ></DT ><DD ><P >Shell level, how deeply Bash is nested. <A NAME="AEN5320" HREF="#FTN.AEN5320" >[3]</A > If, at the command-line, $SHLVL is 1, then in a script it will increment to 2.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This variable is <A HREF="subshells.html#SUBSHNLEVREF" > <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > affected by subshells</A >. Use <A HREF="variables2.html#BASHSUBSHELLREF" >$BASH_SUBSHELL</A > when you need an indication of subshell nesting.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="TMOUTREF" ></A ><TT CLASS="VARNAME" >$TMOUT</TT ></DT ><DD ><P >If the <TT CLASS="REPLACEABLE" ><I >$TMOUT</I ></TT > environmental variable is set to a non-zero value <TT CLASS="VARNAME" >time</TT >, then the shell prompt will time out after <TT CLASS="VARNAME" >$time</TT > seconds. This will cause a logout.</P ><P >As of version 2.05b of Bash, it is now possible to use <TT CLASS="REPLACEABLE" ><I >$TMOUT</I ></TT > in a script in combination with <A HREF="internal.html#READREF" >read</A >.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Works in scripts for Bash, versions 2.05b and later. 2 3 TMOUT=3 # Prompt times out at three seconds. 4 5 echo "What is your favorite song?" 6 echo "Quickly now, you only have $TMOUT seconds to answer!" 7 read song 8 9 if [ -z "$song" ] 10 then 11 song="(no answer)" 12 # Default response. 13 fi 14 15 echo "Your favorite song is $song."</PRE ></TD ></TR ></TABLE > </P ><P ><A NAME="TIMINGLOOP" ></A ></P ><P >There are other, more complex, ways of implementing timed input in a script. One alternative is to set up a timing loop to signal the script when it times out. This also requires a signal handling routine to <A HREF="debugging.html#TRAPREF1" >trap</A > (see <A HREF="debugging.html#EX76" >Example 32-5</A >) the interrupt generated by the timing loop (whew!).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="TMDIN" ></A ><P ><B >Example 9-2. Timed Input</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # timed-input.sh 3 4 # TMOUT=3 Also works, as of newer versions of Bash. 5 6 TIMER_INTERRUPT=14 7 TIMELIMIT=3 # Three seconds in this instance. 8 # May be set to different value. 9 10 PrintAnswer() 11 { 12 if [ "$answer" = TIMEOUT ] 13 then 14 echo $answer 15 else # Don't want to mix up the two instances. 16 echo "Your favorite veggie is $answer" 17 kill $! # Kills no-longer-needed TimerOn function 18 #+ running in background. 19 # $! is PID of last job running in background. 20 fi 21 22 } 23 24 25 TimerOn() 26 { 27 sleep $TIMELIMIT && kill -s 14 $$ & 28 # Waits 3 seconds, then sends sigalarm to script. 29 } 30 31 32 Int14Vector() 33 { 34 answer="TIMEOUT" 35 PrintAnswer 36 exit $TIMER_INTERRUPT 37 } 38 39 trap Int14Vector $TIMER_INTERRUPT 40 # Timer interrupt (14) subverted for our purposes. 41 42 echo "What is your favorite vegetable " 43 TimerOn 44 read answer 45 PrintAnswer 46 47 48 # Admittedly, this is a kludgy implementation of timed input. 49 # However, the "-t" option to "read" simplifies this task. 50 # See the "t-out.sh" script. 51 # However, what about timing not just single user input, 52 #+ but an entire script? 53 54 # If you need something really elegant ... 55 #+ consider writing the application in C or C++, 56 #+ using appropriate library functions, such as 'alarm' and 'setitimer.' 57 58 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="STTYTO" ></A ></P ><P >An alternative is using <A HREF="system.html#STTYREF" >stty</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="TIMEOUT" ></A ><P ><B >Example 9-3. Once more, timed input</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # timeout.sh 3 4 # Written by Stephane Chazelas, 5 #+ and modified by the document author. 6 7 INTERVAL=5 # timeout interval 8 9 timedout_read() { 10 timeout=$1 11 varname=$2 12 old_tty_settings=`stty -g` 13 stty -icanon min 0 time ${timeout}0 14 eval read $varname # or just read $varname 15 stty "$old_tty_settings" 16 # See man page for "stty." 17 } 18 19 echo; echo -n "What's your name? Quick! " 20 timedout_read $INTERVAL your_name 21 22 # This may not work on every terminal type. 23 # The maximum timeout depends on the terminal. 24 #+ (it is often 25.5 seconds). 25 26 echo 27 28 if [ ! -z "$your_name" ] # If name input before timeout ... 29 then 30 echo "Your name is $your_name." 31 else 32 echo "Timed out." 33 fi 34 35 echo 36 37 # The behavior of this script differs somewhat from "timed-input.sh." 38 # At each keystroke, the counter resets. 39 40 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Perhaps the simplest method is using the <TT CLASS="OPTION" >-t</TT > option to <A HREF="internal.html#READREF" >read</A >.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="TOUT" ></A ><P ><B >Example 9-4. Timed <I CLASS="FIRSTTERM" >read</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # t-out.sh [time-out] 3 # Inspired by a suggestion from "syngin seven" (thanks). 4 5 6 TIMELIMIT=4 # 4 seconds 7 8 read -t $TIMELIMIT variable <&1 9 # ^^^ 10 # In this instance, "<&1" is needed for Bash 1.x and 2.x, 11 # but unnecessary for Bash 3+. 12 13 echo 14 15 if [ -z "$variable" ] # Is null? 16 then 17 echo "Timed out, variable still unset." 18 else 19 echo "variable = $variable" 20 fi 21 22 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="UIDREF" ></A ><TT CLASS="VARNAME" >$UID</TT ></DT ><DD ><P >User ID number</P ><P >Current user's user identification number, as recorded in <A HREF="files.html#DATAFILESREF1" ><TT CLASS="FILENAME" >/etc/passwd</TT ></A ></P ><P >This is the current user's real id, even if she has temporarily assumed another identity through <A HREF="system.html#SUREF" >su</A >. <TT CLASS="VARNAME" >$UID</TT > is a readonly variable, not subject to change from the command line or within a script, and is the counterpart to the <A HREF="system.html#IDREF" >id</A > builtin.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="AMIROOT" ></A ><P ><B >Example 9-5. Am I root?</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # am-i-root.sh: Am I root or not? 3 4 ROOT_UID=0 # Root has $UID 0. 5 6 if [ "$UID" -eq "$ROOT_UID" ] # Will the real "root" please stand up? 7 then 8 echo "You are root." 9 else 10 echo "You are just an ordinary user (but mom loves you just the same)." 11 fi 12 13 exit 0 14 15 16 # ============================================================= # 17 # Code below will not execute, because the script already exited. 18 19 # An alternate method of getting to the root of matters: 20 21 ROOTUSER_NAME=root 22 23 username=`id -nu` # Or... username=`whoami` 24 if [ "$username" = "$ROOTUSER_NAME" ] 25 then 26 echo "Rooty, toot, toot. You are root." 27 else 28 echo "You are just a regular fella." 29 fi</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >See also <A HREF="sha-bang.html#EX2" >Example 2-3</A >.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The variables <TT CLASS="VARNAME" >$ENV</TT >, <TT CLASS="VARNAME" >$LOGNAME</TT >, <TT CLASS="VARNAME" >$MAIL</TT >, <TT CLASS="VARNAME" >$TERM</TT >, <TT CLASS="VARNAME" >$USER</TT >, and <TT CLASS="VARNAME" >$USERNAME</TT > are <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > Bash <A HREF="internal.html#BUILTINREF" >builtins</A >. These are, however, often set as <A HREF="othertypesv.html#ENVREF" >environmental variables</A > in one of the <A HREF="files.html#FILESREF1" >Bash</A > or <I CLASS="FIRSTTERM" >login</I > startup files. <A NAME="SHELLVARREF" ></A ><TT CLASS="VARNAME" >$SHELL</TT >, the name of the user's login shell, may be set from <TT CLASS="FILENAME" >/etc/passwd</TT > or in an <SPAN CLASS="QUOTE" >"init"</SPAN > script, and it is likewise not a Bash builtin.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >tcsh% </TT ><TT CLASS="USERINPUT" ><B >echo $LOGNAME</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bozo</TT > <TT CLASS="PROMPT" >tcsh% </TT ><TT CLASS="USERINPUT" ><B >echo $SHELL</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/bin/tcsh</TT > <TT CLASS="PROMPT" >tcsh% </TT ><TT CLASS="USERINPUT" ><B >echo $TERM</B ></TT > <TT CLASS="COMPUTEROUTPUT" >rxvt</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $LOGNAME</B ></TT > <TT CLASS="COMPUTEROUTPUT" >bozo</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $SHELL</B ></TT > <TT CLASS="COMPUTEROUTPUT" >/bin/tcsh</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >echo $TERM</B ></TT > <TT CLASS="COMPUTEROUTPUT" >rxvt</TT > </PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B >Positional Parameters</B ></P ><DL ><DT ><A NAME="POSPARAMREF" ></A ><TT CLASS="VARNAME" >$0</TT >, <TT CLASS="VARNAME" >$1</TT >, <TT CLASS="VARNAME" >$2</TT >, etc.</DT ><DD ><P >Positional parameters, passed from command line to script, passed to a function, or <A HREF="internal.html#SETREF" >set</A > to a variable (see <A HREF="othertypesv.html#EX17" >Example 4-5</A > and <A HREF="internal.html#EX34" >Example 15-16</A >)</P ></DD ><DT ><A NAME="CLACOUNTREF" ></A ><TT CLASS="VARNAME" >$#</TT ></DT ><DD ><P >Number of command-line arguments <A NAME="AEN5479" HREF="#FTN.AEN5479" >[4]</A > or positional parameters (see <A HREF="wrapper.html#EX4" >Example 36-2</A >)</P ></DD ><DT ><A NAME="APPREF" ></A ><TT CLASS="VARNAME" >$*</TT ></DT ><DD ><P >All of the positional parameters, seen as a single word</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P ><SPAN CLASS="QUOTE" >"<TT CLASS="VARNAME" >$*</TT >"</SPAN > must be quoted.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="APPREF2" ></A ><TT CLASS="VARNAME" >$@</TT ></DT ><DD ><P >Same as <SPAN CLASS="TOKEN" >$*</SPAN >, but each parameter is a quoted string, that is, the parameters are passed on intact, without interpretation or expansion. This means, among other things, that each parameter in the argument list is seen as a separate word.</P ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >Of course, <SPAN CLASS="QUOTE" >"<TT CLASS="VARNAME" >$@</TT >"</SPAN > should be quoted.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="ARGLIST" ></A ><P ><B >Example 9-6. <I CLASS="FIRSTTERM" >arglist</I >: Listing arguments with $* and $@</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # arglist.sh 3 # Invoke this script with several arguments, such as "one two three" ... 4 5 E_BADARGS=85 6 7 if [ ! -n "$1" ] 8 then 9 echo "Usage: `basename $0` argument1 argument2 etc." 10 exit $E_BADARGS 11 fi 12 13 echo 14 15 index=1 # Initialize count. 16 17 echo "Listing args with \"\$*\":" 18 for arg in "$*" # Doesn't work properly if "$*" isn't quoted. 19 do 20 echo "Arg #$index = $arg" 21 let "index+=1" 22 done # $* sees all arguments as single word. 23 echo "Entire arg list seen as single word." 24 25 echo 26 27 index=1 # Reset count. 28 # What happens if you forget to do this? 29 30 echo "Listing args with \"\$@\":" 31 for arg in "$@" 32 do 33 echo "Arg #$index = $arg" 34 let "index+=1" 35 done # $@ sees arguments as separate words. 36 echo "Arg list seen as separate words." 37 38 echo 39 40 index=1 # Reset count. 41 42 echo "Listing args with \$* (unquoted):" 43 for arg in $* 44 do 45 echo "Arg #$index = $arg" 46 let "index+=1" 47 done # Unquoted $* sees arguments as separate words. 48 echo "Arg list seen as separate words." 49 50 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Following a <B CLASS="COMMAND" >shift</B >, the <TT CLASS="VARNAME" >$@</TT > holds the remaining command-line parameters, lacking the previous <TT CLASS="VARNAME" >$1</TT >, which was lost. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Invoke with ./scriptname 1 2 3 4 5 3 4 echo "$@" # 1 2 3 4 5 5 shift 6 echo "$@" # 2 3 4 5 7 shift 8 echo "$@" # 3 4 5 9 10 # Each "shift" loses parameter $1. 11 # "$@" then contains the remaining parameters.</PRE ></TD ></TR ></TABLE > </P ><P >The <TT CLASS="VARNAME" >$@</TT > special parameter finds use as a tool for filtering input into shell scripts. The <B CLASS="COMMAND" >cat "$@"</B > construction accepts input to a script either from <TT CLASS="FILENAME" >stdin</TT > or from files given as parameters to the script. See <A HREF="textproc.html#ROT13" >Example 16-24</A > and <A HREF="textproc.html#CRYPTOQUOTE" >Example 16-25</A >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <TT CLASS="VARNAME" >$*</TT > and <TT CLASS="VARNAME" >$@</TT > parameters sometimes display inconsistent and puzzling behavior, depending on the setting of <A HREF="variables2.html#IFSREF" >$IFS</A >.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="INCOMPAT" ></A ><P ><B >Example 9-7. Inconsistent <TT CLASS="VARNAME" >$*</TT > and <TT CLASS="VARNAME" >$@</TT > behavior</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Erratic behavior of the "$*" and "$@" internal Bash variables, 4 #+ depending on whether or not they are quoted. 5 # Demonstrates inconsistent handling of word splitting and linefeeds. 6 7 8 set -- "First one" "second" "third:one" "" "Fifth: :one" 9 # Setting the script arguments, $1, $2, $3, etc. 10 11 echo 12 13 echo 'IFS unchanged, using "$*"' 14 c=0 15 for i in "$*" # quoted 16 do echo "$((c+=1)): [$i]" # This line remains the same in every instance. 17 # Echo args. 18 done 19 echo --- 20 21 echo 'IFS unchanged, using $*' 22 c=0 23 for i in $* # unquoted 24 do echo "$((c+=1)): [$i]" 25 done 26 echo --- 27 28 echo 'IFS unchanged, using "$@"' 29 c=0 30 for i in "$@" 31 do echo "$((c+=1)): [$i]" 32 done 33 echo --- 34 35 echo 'IFS unchanged, using $@' 36 c=0 37 for i in $@ 38 do echo "$((c+=1)): [$i]" 39 done 40 echo --- 41 42 IFS=: 43 echo 'IFS=":", using "$*"' 44 c=0 45 for i in "$*" 46 do echo "$((c+=1)): [$i]" 47 done 48 echo --- 49 50 echo 'IFS=":", using $*' 51 c=0 52 for i in $* 53 do echo "$((c+=1)): [$i]" 54 done 55 echo --- 56 57 var=$* 58 echo 'IFS=":", using "$var" (var=$*)' 59 c=0 60 for i in "$var" 61 do echo "$((c+=1)): [$i]" 62 done 63 echo --- 64 65 echo 'IFS=":", using $var (var=$*)' 66 c=0 67 for i in $var 68 do echo "$((c+=1)): [$i]" 69 done 70 echo --- 71 72 var="$*" 73 echo 'IFS=":", using $var (var="$*")' 74 c=0 75 for i in $var 76 do echo "$((c+=1)): [$i]" 77 done 78 echo --- 79 80 echo 'IFS=":", using "$var" (var="$*")' 81 c=0 82 for i in "$var" 83 do echo "$((c+=1)): [$i]" 84 done 85 echo --- 86 87 echo 'IFS=":", using "$@"' 88 c=0 89 for i in "$@" 90 do echo "$((c+=1)): [$i]" 91 done 92 echo --- 93 94 echo 'IFS=":", using $@' 95 c=0 96 for i in $@ 97 do echo "$((c+=1)): [$i]" 98 done 99 echo --- 100 101 var=$@ 102 echo 'IFS=":", using $var (var=$@)' 103 c=0 104 for i in $var 105 do echo "$((c+=1)): [$i]" 106 done 107 echo --- 108 109 echo 'IFS=":", using "$var" (var=$@)' 110 c=0 111 for i in "$var" 112 do echo "$((c+=1)): [$i]" 113 done 114 echo --- 115 116 var="$@" 117 echo 'IFS=":", using "$var" (var="$@")' 118 c=0 119 for i in "$var" 120 do echo "$((c+=1)): [$i]" 121 done 122 echo --- 123 124 echo 'IFS=":", using $var (var="$@")' 125 c=0 126 for i in $var 127 do echo "$((c+=1)): [$i]" 128 done 129 130 echo 131 132 # Try this script with ksh or zsh -y. 133 134 exit 0 135 136 # This example script written by Stephane Chazelas, 137 #+ and slightly modified by the document author.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="NOTE" ><TABLE CLASS="NOTE" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/note.png" HSPACE="5" ALT="Note"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >The <B CLASS="COMMAND" >$@</B > and <B CLASS="COMMAND" >$*</B > parameters differ only when between double quotes.</P ></TD ></TR ></TABLE ></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="IFSEMPTY" ></A ><P ><B >Example 9-8. <TT CLASS="VARNAME" >$*</TT > and <TT CLASS="VARNAME" >$@</TT > when <TT CLASS="VARNAME" >$IFS</TT > is empty</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # If $IFS set, but empty, 4 #+ then "$*" and "$@" do not echo positional params as expected. 5 6 mecho () # Echo positional parameters. 7 { 8 echo "$1,$2,$3"; 9 } 10 11 12 IFS="" # Set, but empty. 13 set a b c # Positional parameters. 14 15 mecho "$*" # abc,, 16 # ^^ 17 mecho $* # a,b,c 18 19 mecho $@ # a,b,c 20 mecho "$@" # a,b,c 21 22 # The behavior of $* and $@ when $IFS is empty depends 23 #+ on which Bash or sh version being run. 24 # It is therefore inadvisable to depend on this "feature" in a script. 25 26 27 # Thanks, Stephane Chazelas. 28 29 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B >Other Special Parameters</B ></P ><DL ><DT ><A NAME="FLPREF" ></A ><TT CLASS="VARNAME" >$-</TT ></DT ><DD ><P >Flags passed to script (using <A HREF="internal.html#SETREF" >set</A >). See <A HREF="internal.html#EX34" >Example 15-16</A >.</P ><DIV CLASS="CAUTION" ><TABLE CLASS="CAUTION" WIDTH="90%" BORDER="0" ><TR ><TD WIDTH="25" ALIGN="CENTER" VALIGN="TOP" ><IMG SRC="common/caution.png" HSPACE="5" ALT="Caution"></TD ><TD ALIGN="LEFT" VALIGN="TOP" ><P >This was originally a <I CLASS="FIRSTTERM" >ksh</I > construct adopted into Bash, and unfortunately it does not seem to work reliably in Bash scripts. One possible use for it is to have a script <A HREF="miscellany.html#IITEST" >self-test whether it is interactive</A >.</P ></TD ></TR ></TABLE ></DIV ></DD ><DT ><A NAME="PIDVARREF" ></A ><TT CLASS="VARNAME" >$!</TT ></DT ><DD ><P ><A HREF="special-chars.html#PROCESSIDDEF" >PID</A > (process ID) of last job run in background</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 LOG=$0.log 2 3 COMMAND1="sleep 100" 4 5 echo "Logging PIDs background commands for script: $0" >> "$LOG" 6 # So they can be monitored, and killed as necessary. 7 echo >> "$LOG" 8 9 # Logging commands. 10 11 echo -n "PID of \"$COMMAND1\": " >> "$LOG" 12 ${COMMAND1} & 13 echo $! >> "$LOG" 14 # PID of "sleep 100": 1506 15 16 # Thank you, Jacques Lederer, for suggesting this.</PRE ></TD ></TR ></TABLE > </P ><P >Using <TT CLASS="VARNAME" >$!</TT > for job control:</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 possibly_hanging_job & { sleep ${TIMEOUT}; eval 'kill -9 $!' &> /dev/null; } 2 # Forces completion of an ill-behaved program. 3 # Useful, for example, in init scripts. 4 5 # Thank you, Sylvain Fourmanoit, for this creative use of the "!" variable.</PRE ></TD ></TR ></TABLE > </P ><P >Or, alternately:</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # This example by Matthew Sage. 2 # Used with permission. 3 4 TIMEOUT=30 # Timeout value in seconds 5 count=0 6 7 possibly_hanging_job & { 8 while ((count < TIMEOUT )); do 9 eval '[ ! -d "/proc/$!" ] && ((count = TIMEOUT))' 10 # /proc is where information about running processes is found. 11 # "-d" tests whether it exists (whether directory exists). 12 # So, we're waiting for the job in question to show up. 13 ((count++)) 14 sleep 1 15 done 16 eval '[ -d "/proc/$!" ] && kill -15 $!' 17 # If the hanging job is running, kill it. 18 } 19 20 # -------------------------------------------------------------- # 21 22 # However, this may not not work as specified if another process 23 #+ begins to run after the "hanging_job" . . . 24 # In such a case, the wrong job may be killed. 25 # Ariel Meragelman suggests the following fix. 26 27 TIMEOUT=30 28 count=0 29 # Timeout value in seconds 30 possibly_hanging_job & { 31 32 while ((count < TIMEOUT )); do 33 eval '[ ! -d "/proc/$lastjob" ] && ((count = TIMEOUT))' 34 lastjob=$! 35 ((count++)) 36 sleep 1 37 done 38 eval '[ -d "/proc/$lastjob" ] && kill -15 $lastjob' 39 40 } 41 42 exit</PRE ></TD ></TR ></TABLE > </P ></DD ><DT ><A NAME="UNDERSCOREREF" ></A ><TT CLASS="VARNAME" >$_</TT ></DT ><DD ><P >Special variable set to final argument of previous command executed.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="USCREF" ></A ><P ><B >Example 9-9. Underscore variable</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 echo $_ # /bin/bash 4 # Just called /bin/bash to run the script. 5 # Note that this will vary according to 6 #+ how the script is invoked. 7 8 du >/dev/null # So no output from command. 9 echo $_ # du 10 11 ls -al >/dev/null # So no output from command. 12 echo $_ # -al (last argument) 13 14 : 15 echo $_ # :</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="XSTATVARREF" ></A ><TT CLASS="VARNAME" >$?</TT ></DT ><DD ><P ><A HREF="exit-status.html#EXITSTATUSREF" >Exit status</A > of a command, <A HREF="functions.html#FUNCTIONREF" >function</A >, or the script itself (see <A HREF="functions.html#MAX" >Example 24-7</A >)</P ></DD ><DT ><A NAME="PROCCID" ></A ><TT CLASS="VARNAME" >$$</TT ></DT ><DD ><P >Process ID (<I CLASS="FIRSTTERM" >PID</I >) of the script itself. <A NAME="AEN5654" HREF="#FTN.AEN5654" >[5]</A > The <TT CLASS="VARNAME" >$$</TT > variable often finds use in scripts to construct <SPAN CLASS="QUOTE" >"unique"</SPAN > temp file names (see <A HREF="debugging.html#ONLINE" >Example 32-6</A >, <A HREF="filearchiv.html#DERPM" >Example 16-31</A >, and <A HREF="internal.html#SELFDESTRUCT" >Example 15-27</A >). This is usually simpler than invoking <A HREF="filearchiv.html#MKTEMPREF" >mktemp</A >.</P ></DD ></DL ></DIV ></DIV ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN4671" HREF="variables2.html#AEN4671" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P ><A NAME="STACKDEFREF" ></A > A <I CLASS="FIRSTTERM" >stack register</I > is a set of consecutive memory locations, such that the values stored (<I CLASS="FIRSTTERM" >pushed</I >) are retrieved (<I CLASS="FIRSTTERM" >popped</I >) in <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >reverse</I ></SPAN > order. The last value stored is the first retrieved. This is sometimes called a <TT CLASS="REPLACEABLE" ><I >LIFO</I ></TT > (<I CLASS="FIRSTTERM" >last-in-first-out</I >) or <I CLASS="FIRSTTERM" >pushdown</I > stack.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN5154" HREF="variables2.html#AEN5154" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The PID of the currently running script is <TT CLASS="VARNAME" >$$</TT >, of course.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN5320" HREF="variables2.html#AEN5320" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P > Somewhat analogous to <A HREF="localvar.html#RECURSIONREF" >recursion</A >, in this context <I CLASS="FIRSTTERM" >nesting</I > refers to a pattern embedded within a larger pattern. One of the definitions of <I CLASS="FIRSTTERM" >nest</I >, according to the 1913 edition of <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Webster's Dictionary</I ></SPAN >, illustrates this beautifully: <SPAN CLASS="QUOTE" >"<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >A collection of boxes, cases, or the like, of graduated size, each put within the one next larger.</I ></SPAN >"</SPAN > </P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN5479" HREF="variables2.html#AEN5479" >[4]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >The words <SPAN CLASS="QUOTE" >"argument"</SPAN > and <SPAN CLASS="QUOTE" >"parameter"</SPAN > are often used interchangeably. In the context of this document, they have the same precise meaning: <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >a variable passed to a script or function.</I ></SPAN ></P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN5654" HREF="variables2.html#AEN5654" >[5]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Within a script, inside a subshell, <TT CLASS="VARNAME" >$$</TT > <A HREF="variables2.html#BASHPIDREF" >returns the PID of the script</A >, not the subshell.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="part3.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="declareref.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Beyond the Basics</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part3.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Typing variables: <B CLASS="COMMAND" >declare</B > or <B CLASS="COMMAND" >typeset</B ></TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/wherehelp.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Where to Go For Help</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Endnotes" HREF="endnotes.html"><LINK REL="PREVIOUS" TITLE="About the Author" HREF="aboutauthor.html"><LINK REL="NEXT" TITLE="Tools Used to Produce This Book" HREF="toolsused.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="aboutauthor.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 38. Endnotes</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="toolsused.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="WHEREHELP" ></A >38.3. Where to Go For Help</H1 ><P ><A HREF="mailto:thegrendel.abs@gmail.com" TARGET="_top" >The author</A > is no longer supporting or updating this document. He will not answer questions about this book or about general scripting topics. </P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN21326" ></A ><P >If you need assistance with a schoolwork assignment, read the pertinent sections of this and other reference works. Do your best to solve the problem using your own wits and resources. <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Please do not waste the author's time.</I ></SPAN > You will get neither help nor sympathy. <A NAME="AEN21329" HREF="#FTN.AEN21329" >[1]</A > </P ><P >Likewise, kindly refrain from annoying the author with solicitations, offers of employment, or <SPAN CLASS="QUOTE" >"business opportunities."</SPAN > He is doing just fine, and requires neither help nor sympathy, thank you.</P ><P >Please note that the author will <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > answer scripting questions for Sun/Solaris/Oracle or Apple systems. The endarkened execs and the arachnoid corporate attorneys of those particular outfits have been using litigation in a predatory manner and/or as a weapon against the Open Source Community. Any Solaris or Apple users needing scripting help will therefore kindly direct their concerns to corporate customer service.</P ></DIV ></TD ></TR ></TABLE ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >... sophisticated in mechanism but possibly agile operating under noises being extremely suppressed ...</I ></P ><P ><I >--<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >CI-300 printer manual</I ></SPAN ></I ></P ></I ></TD ></TR ></TABLE ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN21329" HREF="wherehelp.html#AEN21329" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Well, if you <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >absolutely</I ></SPAN > insist, you can try modifying <A HREF="contributed-scripts.html#HOMEWORK" >Example A-44</A > to suit your purposes.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="aboutauthor.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="toolsused.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >About the Author</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="endnotes.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Tools Used to Produce This Book</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/why-shell.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Shell Programming!</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Introduction" HREF="part1.html"><LINK REL="PREVIOUS" TITLE="Introduction" HREF="part1.html"><LINK REL="NEXT" TITLE="Starting Off With a Sha-Bang" HREF="sha-bang.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="part1.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="sha-bang.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="WHY-SHELL" ></A >Chapter 1. Shell Programming!</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >No programming language is perfect. There is not even a single best language; there are only languages well suited or perhaps poorly suited for particular purposes.</I ></P ><P ><I >--Herbert Mayer</I ></P ></I ></TD ></TR ></TABLE ><P >A working knowledge of shell scripting is essential to anyone wishing to become reasonably proficient at system administration, even if they do not anticipate ever having to actually write a script. Consider that as a Linux machine boots up, it executes the shell scripts in <TT CLASS="FILENAME" >/etc/rc.d</TT > to restore the system configuration and set up services. A detailed understanding of these startup scripts is important for analyzing the behavior of a system, and possibly modifying it.</P ><P >The craft of scripting is not hard to master, since scripts can be built in bite-sized sections and there is only a fairly small set of shell-specific operators and options <A NAME="AEN62" HREF="#FTN.AEN62" >[1]</A > to learn. The syntax is simple -- even austere -- similar to that of invoking and chaining together utilities at the command line, and there are only a few <SPAN CLASS="QUOTE" >"rules"</SPAN > governing their use. Most short scripts work right the first time, and debugging even the longer ones is straightforward.</P ><P > <A NAME="AEN67" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" ><P CLASS="LITERALLAYOUT" > In the early days of personal computing, the BASIC language enabled<br> anyone reasonably computer proficient to write programs on an early<br> generation of microcomputers. Decades later, the Bash scripting<br> language enables anyone with a rudimentary knowledge of Linux or<br> UNIX to do the same on modern machines.<br> <br> We now have miniaturized single-board computers with amazing<br> capabilities, such as the <A HREF="http://www.raspberrypi.org/" TARGET="_top" >Raspberry Pi</A >.<br> Bash scripting provides a way to explore the capabilities of these<br> fascinating devices.<br> </P ></BLOCKQUOTE > </P ><P >A shell script is a quick-and-dirty method of prototyping a complex application. Getting even a limited subset of the functionality to work in a script is often a useful first stage in project development. In this way, the structure of the application can be tested and tinkered with, and the major pitfalls found before proceeding to the final coding in <I CLASS="FIRSTTERM" >C</I >, <I CLASS="FIRSTTERM" >C++</I >, <I CLASS="FIRSTTERM" >Java</I >, <A HREF="wrapper.html#PERLREF" >Perl</A >, or <I CLASS="FIRSTTERM" >Python</I >.</P ><P >Shell scripting hearkens back to the classic UNIX philosophy of breaking complex projects into simpler subtasks, of chaining together components and utilities. Many consider this a better, or at least more esthetically pleasing approach to problem solving than using one of the new generation of high-powered all-in-one languages, such as <I CLASS="FIRSTTERM" >Perl</I >, which attempt to be all things to all people, but at the cost of forcing you to alter your thinking processes to fit the tool.</P ><P >According to <A HREF="biblio.html#MAYERREF" >Herbert Mayer</A >, <SPAN CLASS="QUOTE" >"a useful language needs arrays, pointers, and a generic mechanism for building data structures."</SPAN > By these criteria, shell scripting falls somewhat short of being <SPAN CLASS="QUOTE" >"useful."</SPAN > Or, perhaps not. . . .</P ><TABLE CLASS="SIDEBAR" BORDER="1" CELLPADDING="5" ><TR ><TD ><DIV CLASS="SIDEBAR" ><A NAME="AEN82" ></A ><P >When not to use shell scripts <UL ><LI ><P >Resource-intensive tasks, especially where speed is a factor (sorting, hashing, recursion <A NAME="AEN87" HREF="#FTN.AEN87" >[2]</A > ...)</P ></LI ><LI ><P >Procedures involving heavy-duty math operations, especially floating point arithmetic, arbitrary precision calculations, or complex numbers (use <I CLASS="FIRSTTERM" >C++</I > or <I CLASS="FIRSTTERM" >FORTRAN</I > instead)</P ></LI ><LI ><P >Cross-platform portability required (use <I CLASS="FIRSTTERM" >C</I > or <I CLASS="FIRSTTERM" >Java</I > instead)</P ></LI ><LI ><P >Complex applications, where structured programming is a necessity (type-checking of variables, function prototypes, etc.)</P ></LI ><LI ><P >Mission-critical applications upon which you are betting the future of the company</P ></LI ><LI ><P >Situations where <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >security</I ></SPAN > is important, where you need to guarantee the integrity of your system and protect against intrusion, cracking, and vandalism</P ></LI ><LI ><P >Project consists of subcomponents with interlocking dependencies</P ></LI ><LI ><P >Extensive file operations required (<I CLASS="FIRSTTERM" >Bash</I > is limited to serial file access, and that only in a particularly clumsy and inefficient line-by-line fashion.)</P ></LI ><LI ><P >Need native support for multi-dimensional arrays</P ></LI ><LI ><P >Need data structures, such as linked lists or trees</P ></LI ><LI ><P >Need to generate / manipulate graphics or GUIs</P ></LI ><LI ><P >Need direct access to system hardware or external peripherals</P ></LI ><LI ><P >Need port or <A HREF="devproc.html#SOCKETREF" >socket</A > I/O</P ></LI ><LI ><P >Need to use libraries or interface with legacy code</P ></LI ><LI ><P >Proprietary, closed-source applications (Shell scripts put the source code right out in the open for all the world to see.)</P ></LI ></UL ></P ><P >If any of the above applies, consider a more powerful scripting language -- perhaps <I CLASS="FIRSTTERM" >Perl</I >, <I CLASS="FIRSTTERM" >Tcl</I >, <I CLASS="FIRSTTERM" >Python</I >, <I CLASS="FIRSTTERM" >Ruby</I > -- or possibly a compiled language such as <I CLASS="FIRSTTERM" >C</I >, <I CLASS="FIRSTTERM" >C++</I >, or <I CLASS="FIRSTTERM" >Java</I >. Even then, prototyping the application as a shell script might still be a useful development step.</P ></DIV ></TD ></TR ></TABLE ><P ><A NAME="BASHDEF" ></A ></P ><P >We will be using <SPAN CLASS="ACRONYM" >Bash</SPAN >, an acronym <A NAME="AEN139" HREF="#FTN.AEN139" >[3]</A > for <SPAN CLASS="QUOTE" >"Bourne-Again shell"</SPAN > and a pun on Stephen Bourne's now classic <I CLASS="FIRSTTERM" >Bourne</I > shell. Bash has become a <I CLASS="FOREIGNPHRASE" >de facto</I > standard for shell scripting on most flavors of UNIX. Most of the principles this book covers apply equally well to scripting with other shells, such as the <I CLASS="FIRSTTERM" >Korn Shell</I >, from which Bash derives some of its features, <A NAME="AEN147" HREF="#FTN.AEN147" >[4]</A > and the <I CLASS="FIRSTTERM" >C Shell</I > and its variants. (Note that <I CLASS="FIRSTTERM" >C Shell</I > programming is not recommended due to certain inherent problems, as pointed out in an October, 1993 <A HREF="http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/" TARGET="_top" >Usenet post</A > by Tom Christiansen.) </P ><P >What follows is a tutorial on shell scripting. It relies heavily on examples to illustrate various features of the shell. The example scripts work -- they've been tested, insofar as possible -- and some of them are even useful in real life. The reader can play with the actual working code of the examples in the source archive (<TT CLASS="FILENAME" >scriptname.sh</TT > or <TT CLASS="FILENAME" >scriptname.bash</TT >), <A NAME="AEN157" HREF="#FTN.AEN157" >[5]</A > give them <I CLASS="FIRSTTERM" >execute</I > permission (<TT CLASS="USERINPUT" ><B >chmod u+rx scriptname</B ></TT >), then run them to see what happens. Should the <A HREF="http://bash.deta.in/abs-guide-latest.tar.bz2" TARGET="_top" >source archive</A > not be available, then cut-and-paste from the <A HREF="http://www.tldp.org/LDP/abs/abs-guide.html.tar.gz" TARGET="_top" >HTML</A > or <A HREF="http://bash.deta.in/abs-guide.pdf" TARGET="_top" >pdf</A > rendered versions. Be aware that some of the scripts presented here introduce features before they are explained, and this may require the reader to temporarily skip ahead for enlightenment.</P ><P >Unless otherwise noted, <A HREF="mailto:thegrendel.abs@gmail.com" TARGET="_top" >the author</A > of this book wrote the example scripts that follow.</P ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >His countenance was bold and bashed not.</I ></P ><P ><I >--Edmund Spenser</I ></P ></I ></TD ></TR ></TABLE ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN62" HREF="why-shell.html#AEN62" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >These are referred to as <A HREF="internal.html#BUILTINREF" >builtins</A >, features internal to the shell.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN87" HREF="why-shell.html#AEN87" >[2]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Although <A HREF="localvar.html#RECURSIONREF0" >recursion <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >is</I ></SPAN > possible in a shell script</A >, it tends to be slow and its implementation is often an <A HREF="recurnolocvar.html#FIBOREF" >ugly kludge</A >. </P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN139" HREF="why-shell.html#AEN139" >[3]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >An <I CLASS="FIRSTTERM" >acronym</I > is an <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >ersatz</I ></SPAN > word formed by pasting together the initial letters of the words into a tongue-tripping phrase. This morally corrupt and pernicious practice deserves appropriately severe punishment. Public flogging suggests itself.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN147" HREF="why-shell.html#AEN147" >[4]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Many of the features of <I CLASS="FIRSTTERM" >ksh88</I >, and even a few from the updated <I CLASS="FIRSTTERM" >ksh93</I > have been merged into Bash.</P ></TD ></TR ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN157" HREF="why-shell.html#AEN157" >[5]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >By convention, user-written shell scripts that are Bourne shell compliant generally take a name with a <TT CLASS="FILENAME" >.sh</TT > extension. System scripts, such as those found in <TT CLASS="FILENAME" >/etc/rc.d</TT >, do not necessarily conform to this nomenclature.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="part1.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="sha-bang.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Introduction</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part1.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Starting Off With a Sha-Bang</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/winscript.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Shell Scripting Under Windows</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Miscellany" HREF="miscellany.html"><LINK REL="PREVIOUS" TITLE="Portability Issues" HREF="portabilityissues.html"><LINK REL="NEXT" TITLE="Bash, versions 2, 3, and 4" HREF="bash2.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="portabilityissues.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 36. Miscellany</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="bash2.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="WINSCRIPT" ></A >36.10. Shell Scripting Under Windows</H1 ><P >Even users running <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >that other</I ></SPAN > OS can run UNIX-like shell scripts, and therefore benefit from many of the lessons of this book. The <A HREF="http://sourceware.cygnus.com/cygwin/" TARGET="_top" > Cygwin</A > package from Cygnus and the <A HREF="http://www.mkssoftware.com/" TARGET="_top" >MKS utilities</A > from Mortice Kern Associates add shell scripting capabilities to Windows.</P ><P >Another alternative is <A HREF="http://www2.research.att.com/~gsf/download/uwin/uwin.html" TARGET="_top" > UWIN</A >, written by David Korn of AT&T, of <A HREF="biblio.html#KORNSHELLREF" >Korn Shell</A > fame.</P ><P >In 2006, Microsoft released the <SPAN CLASS="TRADEMARK" >Windows Powershell</SPAN >®, which contains limited Bash-like command-line scripting capabilities.</P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="portabilityissues.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="bash2.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Portability Issues</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Bash, versions 2, 3, and 4</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/wrapper.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Shell Wrappers</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Miscellany" HREF="miscellany.html"><LINK REL="PREVIOUS" TITLE="Miscellany" HREF="miscellany.html"><LINK REL="NEXT" TITLE="Tests and Comparisons: Alternatives" HREF="testsandcomparisons.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="miscellany.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Chapter 36. Miscellany</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="testsandcomparisons.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="WRAPPER" ></A >36.2. Shell Wrappers</H1 ><P ><A NAME="SHWRAPPER" ></A ></P ><P >A <I CLASS="FIRSTTERM" >wrapper</I > is a shell script that embeds a system command or utility, that accepts and passes a set of parameters to that command. <A NAME="AEN20130" HREF="#FTN.AEN20130" >[1]</A > Wrapping a script around a complex command-line simplifies invoking it. This is expecially useful with <A HREF="sedawk.html#SEDREF" >sed</A > and <A HREF="awk.html#AWKREF" >awk</A >.</P ><P >A <B CLASS="COMMAND" > sed</B > or <B CLASS="COMMAND" > awk</B > script would normally be invoked from the command-line by a <TT CLASS="USERINPUT" ><B >sed -e <TT CLASS="REPLACEABLE" ><I >'commands'</I ></TT ></B ></TT > or <TT CLASS="USERINPUT" ><B >awk <TT CLASS="REPLACEABLE" ><I >'commands'</I ></TT ></B ></TT >. Embedding such a script in a Bash script permits calling it more simply, and makes it <I CLASS="FIRSTTERM" >reusable</I >. This also enables combining the functionality of <I CLASS="FIRSTTERM" >sed</I > and <I CLASS="FIRSTTERM" >awk</I >, for example <A HREF="special-chars.html#PIPEREF" >piping</A > the output of a set of <I CLASS="FIRSTTERM" >sed</I > commands to <I CLASS="FIRSTTERM" >awk</I >. As a saved executable file, you can then repeatedly invoke it in its original form or modified, without the inconvenience of retyping it on the command-line.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX3" ></A ><P ><B >Example 36-1. <I CLASS="FIRSTTERM" >shell wrapper</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # This simple script removes blank lines from a file. 4 # No argument checking. 5 # 6 # You might wish to add something like: 7 # 8 # E_NOARGS=85 9 # if [ -z "$1" ] 10 # then 11 # echo "Usage: `basename $0` target-file" 12 # exit $E_NOARGS 13 # fi 14 15 16 17 sed -e /^$/d "$1" 18 # Same as 19 # sed -e '/^$/d' filename 20 # invoked from the command-line. 21 22 # The '-e' means an "editing" command follows (optional here). 23 # '^' indicates the beginning of line, '$' the end. 24 # This matches lines with nothing between the beginning and the end -- 25 #+ blank lines. 26 # The 'd' is the delete command. 27 28 # Quoting the command-line arg permits 29 #+ whitespace and special characters in the filename. 30 31 # Note that this script doesn't actually change the target file. 32 # If you need to do that, redirect its output. 33 34 exit</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX4" ></A ><P ><B >Example 36-2. A slightly more complex <I CLASS="FIRSTTERM" >shell wrapper</I ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # subst.sh: a script that substitutes one pattern for 4 #+ another in a file, 5 #+ i.e., "sh subst.sh Smith Jones letter.txt". 6 # Jones replaces Smith. 7 8 ARGS=3 # Script requires 3 arguments. 9 E_BADARGS=85 # Wrong number of arguments passed to script. 10 11 if [ $# -ne "$ARGS" ] 12 then 13 echo "Usage: `basename $0` old-pattern new-pattern filename" 14 exit $E_BADARGS 15 fi 16 17 old_pattern=$1 18 new_pattern=$2 19 20 if [ -f "$3" ] 21 then 22 file_name=$3 23 else 24 echo "File \"$3\" does not exist." 25 exit $E_BADARGS 26 fi 27 28 29 # ----------------------------------------------- 30 # Here is where the heavy work gets done. 31 sed -e "s/$old_pattern/$new_pattern/g" $file_name 32 # ----------------------------------------------- 33 34 # 's' is, of course, the substitute command in sed, 35 #+ and /pattern/ invokes address matching. 36 # The 'g,' or global flag causes substitution for EVERY 37 #+ occurence of $old_pattern on each line, not just the first. 38 # Read the 'sed' docs for an in-depth explanation. 39 40 exit $? # Redirect the output of this script to write to a file.</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="LOGGINGWRAPPER" ></A ><P ><B >Example 36-3. A generic <I CLASS="FIRSTTERM" >shell wrapper</I > that writes to a logfile</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # logging-wrapper.sh 3 # Generic shell wrapper that performs an operation 4 #+ and logs it. 5 6 DEFAULT_LOGFILE=logfile.txt 7 8 # Set the following two variables. 9 OPERATION= 10 # Can be a complex chain of commands, 11 #+ for example an awk script or a pipe . . . 12 13 LOGFILE= 14 if [ -z "$LOGFILE" ] 15 then # If not set, default to ... 16 LOGFILE="$DEFAULT_LOGFILE" 17 fi 18 19 # Command-line arguments, if any, for the operation. 20 OPTIONS="$@" 21 22 23 # Log it. 24 echo "`date` + `whoami` + $OPERATION "$@"" >> $LOGFILE 25 # Now, do it. 26 exec $OPERATION "$@" 27 28 # It's necessary to do the logging before the operation. 29 # Why?</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="PRASC" ></A ><P ><B >Example 36-4. A <I CLASS="FIRSTTERM" >shell wrapper</I > around an awk script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # pr-ascii.sh: Prints a table of ASCII characters. 3 4 START=33 # Range of printable ASCII characters (decimal). 5 END=127 # Will not work for unprintable characters (> 127). 6 7 echo " Decimal Hex Character" # Header. 8 echo " ------- --- ---------" 9 10 for ((i=START; i<=END; i++)) 11 do 12 echo $i | awk '{printf(" %3d %2x %c\n", $1, $1, $1)}' 13 # The Bash printf builtin will not work in this context: 14 # printf "%c" "$i" 15 done 16 17 exit 0 18 19 20 # Decimal Hex Character 21 # ------- --- --------- 22 # 33 21 ! 23 # 34 22 " 24 # 35 23 # 25 # 36 24 $ 26 # 27 # . . . 28 # 29 # 122 7a z 30 # 123 7b { 31 # 124 7c | 32 # 125 7d } 33 34 35 # Redirect the output of this script to a file 36 #+ or pipe it to "more": sh pr-asc.sh | more</PRE ></TD ></TR ></TABLE ><HR></DIV ><DIV CLASS="EXAMPLE" ><HR><A NAME="COLTOTALER" ></A ><P ><B >Example 36-5. A <I CLASS="FIRSTTERM" >shell wrapper</I > around another awk script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Adds up a specified column (of numbers) in the target file. 4 # Floating-point (decimal) numbers okay, because awk can handle them. 5 6 ARGS=2 7 E_WRONGARGS=85 8 9 if [ $# -ne "$ARGS" ] # Check for proper number of command-line args. 10 then 11 echo "Usage: `basename $0` filename column-number" 12 exit $E_WRONGARGS 13 fi 14 15 filename=$1 16 column_number=$2 17 18 # Passing shell variables to the awk part of the script is a bit tricky. 19 # One method is to strong-quote the Bash-script variable 20 #+ within the awk script. 21 # $'$BASH_SCRIPT_VAR' 22 # ^ ^ 23 # This is done in the embedded awk script below. 24 # See the awk documentation for more details. 25 26 # A multi-line awk script is here invoked by 27 # awk ' 28 # ... 29 # ... 30 # ... 31 # ' 32 33 34 # Begin awk script. 35 # ----------------------------- 36 awk ' 37 38 { total += $'"${column_number}"' 39 } 40 END { 41 print total 42 } 43 44 ' "$filename" 45 # ----------------------------- 46 # End awk script. 47 48 49 # It may not be safe to pass shell variables to an embedded awk script, 50 #+ so Stephane Chazelas proposes the following alternative: 51 # --------------------------------------- 52 # awk -v column_number="$column_number" ' 53 # { total += $column_number 54 # } 55 # END { 56 # print total 57 # }' "$filename" 58 # --------------------------------------- 59 60 61 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P ><A NAME="PERLREF" ></A >For those scripts needing a single do-it-all tool, a Swiss army knife, there is <I CLASS="FIRSTTERM" >Perl</I >. Perl combines the capabilities of <A HREF="sedawk.html#SEDREF" >sed</A > and <A HREF="awk.html#AWKREF" >awk</A >, and throws in a large subset of <B CLASS="COMMAND" >C</B >, to boot. It is modular and contains support for everything ranging from object-oriented programming up to and including the kitchen sink. Short Perl scripts lend themselves to embedding within shell scripts, and there may be some substance to the claim that Perl can totally replace shell scripting (though the author of the <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >ABS Guide</I ></SPAN > remains skeptical).</P ><P ><A NAME="PERLEMB" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX56" ></A ><P ><B >Example 36-6. Perl embedded in a <I CLASS="FIRSTTERM" >Bash</I > script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 3 # Shell commands may precede the Perl script. 4 echo "This precedes the embedded Perl script within \"$0\"." 5 echo "===============================================================" 6 7 perl -e 'print "This line prints from an embedded Perl script.\n";' 8 # Like sed, Perl also uses the "-e" option. 9 10 echo "===============================================================" 11 echo "However, the script may also contain shell and system commands." 12 13 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >It is even possible to combine a Bash script and Perl script within the same file. Depending on how the script is invoked, either the Bash part or the Perl part will execute.</P ><P ><A NAME="BASHANDPERL0" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="BASHANDPERL" ></A ><P ><B >Example 36-7. Bash and Perl scripts combined</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # bashandperl.sh 3 4 echo "Greetings from the Bash part of the script, $0." 5 # More Bash commands may follow here. 6 7 exit 8 # End of Bash part of the script. 9 10 # ======================================================= 11 12 #!/usr/bin/perl 13 # This part of the script must be invoked with 14 # perl -x bashandperl.sh 15 16 print "Greetings from the Perl part of the script, $0.\n"; 17 # Perl doesn't seem to like "echo" ... 18 # More Perl commands may follow here. 19 20 # End of Perl part of the script.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="SCREEN" > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >bash bashandperl.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Greetings from the Bash part of the script.</TT > <TT CLASS="PROMPT" >bash$ </TT ><TT CLASS="USERINPUT" ><B >perl -x bashandperl.sh</B ></TT > <TT CLASS="COMPUTEROUTPUT" >Greetings from the Perl part of the script.</TT > </PRE ></TD ></TR ></TABLE > </P ><P >It is, of course, possible to embed even more exotic scripting languages within shell wrappers. <I CLASS="FIRSTTERM" >Python</I >, for example ...</P ><P ><A NAME="PYTHONEMB" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX56PY" ></A ><P ><B >Example 36-8. Python embedded in a <I CLASS="FIRSTTERM" >Bash</I > script</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ex56py.sh 3 4 # Shell commands may precede the Python script. 5 echo "This precedes the embedded Python script within \"$0.\"" 6 echo "===============================================================" 7 8 python -c 'print "This line prints from an embedded Python script.\n";' 9 # Unlike sed and perl, Python uses the "-c" option. 10 python -c 'k = raw_input( "Hit a key to exit to outer script. " )' 11 12 echo "===============================================================" 13 echo "However, the script may also contain shell and system commands." 14 15 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Wrapping a script around <I CLASS="FIRSTTERM" >mplayer</I > and the Google's translation server, you can create something that talks back to you.</P ><P ><A NAME="SPEECH00" ></A ></P ><DIV CLASS="EXAMPLE" ><HR><A NAME="SPEECH0" ></A ><P ><B >Example 36-9. A script that speaks</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="100%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Courtesy of: 3 # http://elinux.org/RPi_Text_to_Speech_(Speech_Synthesis) 4 5 # You must be on-line for this script to work, 6 #+ so you can access the Google translation server. 7 # Of course, mplayer must be present on your computer. 8 9 speak() 10 { 11 local IFS=+ 12 # Invoke mplayer, then connect to Google translation server. 13 /usr/bin/mplayer -ao alsa -really-quiet -noconsolecontrols \ 14 "http://translate.google.com/translate_tts?tl=en&q="$*"" 15 # Google translates, but can also speak. 16 } 17 18 LINES=4 19 20 spk=$(tail -$LINES $0) # Tail end of same script! 21 speak "$spk" 22 exit 23 # Browns. Nice talking to you.</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >One interesting example of a complex shell wrapper is Martin Matusiak's <A HREF="http://sourceforge.net/projects/undvd/" TARGET="_top" ><I CLASS="FIRSTTERM" >undvd</I > script</A >, which provides an easy-to-use command-line interface to the complex <A HREF="http://www.mplayerhq.hu/DOCS/HTML/en/mencoder.html" TARGET="_top" >mencoder</A > utility. Another example is Itzchak Rehberg's <A HREF="http://projects.izzysoft.de/trac/ext3undel" TARGET="_top" >Ext3Undel</A >, a set of scripts to recover deleted file on an <I CLASS="FIRSTTERM" >ext3</I > filesystem.</P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN20130" HREF="wrapper.html#AEN20130" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >Quite a number of Linux utilities are, in fact, shell wrappers. Some examples are <TT CLASS="FILENAME" >/usr/bin/pdf2ps</TT >, <TT CLASS="FILENAME" >/usr/bin/batch</TT >, and <TT CLASS="FILENAME" >/usr/bin/xmkmf</TT >.</P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="testsandcomparisons.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Miscellany</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="miscellany.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Tests and Comparisons: Alternatives</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/writingscripts.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Writing Scripts</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Exercises" HREF="exercises.html"><LINK REL="PREVIOUS" TITLE="Exercises" HREF="exercises.html"><LINK REL="NEXT" TITLE="Revision History" HREF="revisionhistory.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="SECT1" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="exercises.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" >Appendix O. Exercises</TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="revisionhistory.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="WRITINGSCRIPTS" ></A >O.2. Writing Scripts</H1 ><P ><A NAME="WRITINGSCRIPTS1" ></A ></P ><P >Write a script to carry out each of the following tasks.</P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="EXEASY1" ></A >EASY</B ></P ><DL ><DT ><B CLASS="COMMAND" >Self-reproducing Script</B ></DT ><DD ><P >Write a script that backs itself up, that is, copies itself to a file named <TT CLASS="FILENAME" >backup.sh</TT >.</P ><P >Hint: Use the <A HREF="external.html#CATREF" >cat</A > command and the appropriate <A HREF="othertypesv.html#SCRNAMEPARAM" >positional parameter</A >.</P ></DD ><DT ><B CLASS="COMMAND" >Home Directory Listing</B ></DT ><DD ><P >Perform a recursive directory listing on the user's home directory and save the information to a file. Compress the file, have the script prompt the user to insert a USB flash drive, then press <B CLASS="KEYCAP" >ENTER</B >. Finally, save the file to the flash drive after making certain the flash drive has properly mounted by parsing the output of <A HREF="system.html#DFREF" >df</A >. Note that the flash drive must be <I CLASS="FIRSTTERM" >unmounted</I > before it is removed.</P ></DD ><DT ><B CLASS="COMMAND" >Converting <A HREF="loops.html#FORLOOPREF1" >for</A > loops to <A HREF="loops.html#WHILELOOPREF" >while</A > and <A HREF="loops.html#UNTILLOOPREF" >until</A > loops</B ></DT ><DD ><P >Convert the <I CLASS="FIRSTTERM" >for loops</I > in <A HREF="loops.html#EX22" >Example 11-1</A > to <I CLASS="FIRSTTERM" >while loops</I >. Hint: store the data in an <A HREF="arrays.html#ARRAYREF" >array</A > and step through the array elements.</P ><P >Having already done the <SPAN CLASS="QUOTE" >"heavy lifting,"</SPAN > now convert the loops in the example to <I CLASS="FIRSTTERM" > until loops</I >.</P ></DD ><DT ><B CLASS="COMMAND" >Changing the line spacing of a text file</B ></DT ><DD ><P >Write a script that reads each line of a target file, then writes the line back to <TT CLASS="FILENAME" >stdout</TT >, but with an extra blank line following. This has the effect of <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >double-spacing</I ></SPAN > the file.</P ><P >Include all necessary code to check whether the script gets the necessary command-line argument (a filename), and whether the specified file exists.</P ><P >When the script runs correctly, modify it to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >triple-space</I ></SPAN > the target file.</P ><P >Finally, write a script to remove all blank lines from the target file, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >single-spacing</I ></SPAN > it.</P ></DD ><DT ><B CLASS="COMMAND" >Backwards Listing</B ></DT ><DD ><P >Write a script that echoes itself to <TT CLASS="FILENAME" >stdout</TT >, but <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >backwards</I ></SPAN >.</P ></DD ><DT ><B CLASS="COMMAND" >Automatically Decompressing Files</B ></DT ><DD ><P >Given a list of filenames as input, this script queries each target file (parsing the output of the <A HREF="filearchiv.html#FILEREF" >file</A > command) for the type of compression used on it. Then the script automatically invokes the appropriate decompression command (<B CLASS="COMMAND" >gunzip</B >, <B CLASS="COMMAND" >bunzip2</B >, <B CLASS="COMMAND" >unzip</B >, <B CLASS="COMMAND" >uncompress</B >, or whatever). If a target file is not compressed, the script emits a warning message, but takes no other action on that particular file.</P ></DD ><DT ><B CLASS="COMMAND" >Unique System ID</B ></DT ><DD ><P >Generate a <SPAN CLASS="QUOTE" >"unique"</SPAN > 6-digit hexadecimal identifier for your computer. Do <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > use the flawed <A HREF="system.html#HOSTIDREF" >hostid</A > command. Hint: <B CLASS="COMMAND" ><A HREF="filearchiv.html#MD5SUMREF" >md5sum</A > <A HREF="files.html#DATAFILESREF1" ><TT CLASS="FILENAME" >/etc/passwd</TT ></A ></B >, then select the first 6 digits of output.</P ></DD ><DT ><B CLASS="COMMAND" >Backup</B ></DT ><DD ><P >Archive as a <SPAN CLASS="QUOTE" >"tarball"</SPAN > (<TT CLASS="FILENAME" >*.tar.gz</TT > file) all the files in your home directory tree (<TT CLASS="FILENAME" >/home/your-name</TT >) that have been modified in the last 24 hours. Hint: use <A HREF="moreadv.html#FINDREF" >find</A >.</P ><P >Optional: you may use this as the basis of a <I CLASS="FIRSTTERM" >backup</I > script.</P ></DD ><DT ><B CLASS="COMMAND" >Checking whether a process is still running</B ></DT ><DD ><P >Given a <A HREF="special-chars.html#PROCESSIDREF" >process ID</A > (<I CLASS="FIRSTTERM" >PID</I >) as an argument, this script will check, at user-specified intervals, whether the given process is still running. You may use the <A HREF="system.html#PPSSREF" >ps</A > and <A HREF="timedate.html#SLEEPREF" >sleep</A > commands.</P ></DD ><DT ><B CLASS="COMMAND" >Primes</B ></DT ><DD ><P >Print (to <TT CLASS="FILENAME" >stdout</TT >) all prime numbers between 60000 and 63000. The output should be nicely formatted in columns (hint: use <A HREF="internal.html#PRINTFREF" >printf</A >).</P ></DD ><DT ><B CLASS="COMMAND" >Lottery Numbers</B ></DT ><DD ><P >One type of lottery involves picking five different numbers, in the range of 1 - 50. Write a script that generates five pseudorandom numbers in this range, <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >with no duplicates</I ></SPAN >. The script will give the option of echoing the numbers to <TT CLASS="FILENAME" >stdout</TT > or saving them to a file, along with the date and time the particular number set was generated. (If your script consistently generates <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >winning</I ></SPAN > lottery numbers, then you can retire on the proceeds and leave shell scripting to those of us who have to work for a living.)</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="EXMEDIUM1" ></A >INTERMEDIATE</B ></P ><DL ><DT ><B CLASS="COMMAND" >Integer or String</B ></DT ><DD ><P >Write a script <A HREF="functions.html#FUNCTIONREF" >function</A > that determines if an argument passed to it is an integer or a string. The function will return TRUE (0) if passed an integer, and FALSE (1) if passed a string.</P ><P >Hint: What does the following expression return when <TT CLASS="VARNAME" >$1</TT > is <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > an integer?</P ><P ><TT CLASS="VARNAME" >expr $1 + 0</TT ></P ></DD ><DT ><B CLASS="COMMAND" ><A HREF="special-chars.html#ASCIIDEF" >ASCII</A > to Integer</B ></DT ><DD ><P >The <I CLASS="FIRSTTERM" >atoi</I > function in <B CLASS="COMMAND" >C</B > converts a string character to an integer. Write a shell script function that performs the same operation. Likewise, write a shell script function that does the inverse, mirroring the <B CLASS="COMMAND" >C</B > <I CLASS="FIRSTTERM" >itoa</I > function which converts an integer into an ASCII character.</P ></DD ><DT ><B CLASS="COMMAND" >Managing Disk Space</B ></DT ><DD ><P >List, one at a time, all files larger than 100K in the <TT CLASS="FILENAME" >/home/username</TT > directory tree. Give the user the option to delete or compress the file, then proceed to show the next one. Write to a logfile the names of all deleted files and the deletion times.</P ></DD ><DT ><B CLASS="COMMAND" >Banner</B ></DT ><DD ><P >Simulate the functionality of the deprecated <A HREF="extmisc.html#BANNERREF" >banner</A > command in a script.</P ></DD ><DT ><B CLASS="COMMAND" >Removing Inactive Accounts</B ></DT ><DD ><P >Inactive accounts on a network server waste disk space and may become a security risk. Write an administrative script (to be invoked by <I CLASS="FIRSTTERM" >root</I > or the <A HREF="system.html#CRONREF" >cron daemon</A >) that checks for and deletes user accounts that have not been accessed within the last 90 days.</P ></DD ><DT ><B CLASS="COMMAND" >Enforcing Disk Quotas</B ></DT ><DD ><P >Write a script for a multi-user system that checks users' disk usage. If a user surpasses a preset limit (500 MB, for example) in her <TT CLASS="FILENAME" >/home/username</TT > directory, then the script automatically sends her a <SPAN CLASS="QUOTE" >"pigout"</SPAN > warning e-mail.</P ><P >The script will use the <A HREF="system.html#DUREF" >du</A > and <A HREF="communications.html#COMMMAIL1" >mail</A > commands. As an option, it will allow setting and enforcing quotas using the <A HREF="system.html#QUOTAREF" >quota</A > and <A HREF="system.html#SETQUOTAREF" >setquota</A > commands.</P ></DD ><DT ><B CLASS="COMMAND" >Logged in User Information</B ></DT ><DD ><P >For all logged in users, show their real names and the time and date of their last login.</P ><P >Hint: use <A HREF="system.html#WHOREF" >who</A >, <A HREF="system.html#LASTLOGREF" >lastlog</A >, and parse <A HREF="files.html#DATAFILESREF1" ><TT CLASS="FILENAME" >/etc/passwd</TT ></A >.</P ></DD ><DT ><B CLASS="COMMAND" >Safe Delete</B ></DT ><DD ><P >Implement, as a script, a <SPAN CLASS="QUOTE" >"safe"</SPAN > delete command, <TT CLASS="FILENAME" >sdel.sh</TT >. Filenames passed as command-line arguments to this script are not deleted, but instead <A HREF="filearchiv.html#GZIPREF" >gzipped</A > if not already compressed (use <A HREF="filearchiv.html#FILEREF" >file</A > to check), then moved to a <TT CLASS="FILENAME" >~/TRASH</TT > directory. Upon invocation, the script checks the <TT CLASS="FILENAME" >~/TRASH</TT > directory for files older than 48 hours and <A HREF="external.html#RMREF" >permanently deletes</A > them. (An better alternative might be to have a second script handle this, periodically invoked by the <A HREF="system.html#CRONREF" >cron daemon</A >.)</P ><P ><SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >Extra credit:</I ></SPAN > Write the script so it can handle files and directories <A HREF="external.html#RMRECURS" >recursively</A >. This would give it the capability of <SPAN CLASS="QUOTE" >"safely deleting"</SPAN > entire directory structures.</P ></DD ><DT ><B CLASS="COMMAND" >Making Change</B ></DT ><DD ><P >What is the most efficient way to make change for $1.68, using only coins in common circulations (up to 25c)? It's 6 quarters, 1 dime, a nickel, and three cents.</P ><P >Given any arbitrary command-line input in dollars and cents ($*.??), calculate the change, using the minimum number of coins. If your home country is not the United States, you may use your local currency units instead. The script will need to parse the command-line input, then change it to multiples of the smallest monetary unit (cents or whatever). Hint: look at <A HREF="functions.html#EX61" >Example 24-8</A >.</P ></DD ><DT ><B CLASS="COMMAND" >Quadratic Equations</B ></DT ><DD ><P >Solve a <I CLASS="FIRSTTERM" >quadratic</I > equation of the form <TT CLASS="PARAMETER" ><I >Ax^2 + Bx + C = 0</I ></TT >. Have a script take as arguments the coefficients, <TT CLASS="USERINPUT" ><B >A</B ></TT >, <TT CLASS="USERINPUT" ><B >B</B ></TT >, and <TT CLASS="USERINPUT" ><B >C</B ></TT >, and return the solutions to five decimal places.</P ><P >Hint: pipe the coefficients to <A HREF="mathc.html#BCREF" >bc</A >, using the well-known formula, <TT CLASS="PARAMETER" ><I >x = ( -B +/- sqrt( B^2 - 4AC ) ) / 2A</I ></TT >.</P ></DD ><DT ><B CLASS="COMMAND" >Table of Logarithms</B ></DT ><DD ><P >Using the <A HREF="mathc.html#BCREF" >bc</A > and <A HREF="internal.html#PRINTFREF" >printf</A > commands, print out a nicely-formatted table of eight-place natural logarithms in the interval between 0.00 and 100.00, in steps of .01.</P ><P >Hint: <I CLASS="FIRSTTERM" >bc</I > requires the <TT CLASS="OPTION" >-l</TT > option to load the math library.</P ></DD ><DT ><B CLASS="COMMAND" >Unicode Table</B ></DT ><DD ><P >Using <A HREF="asciitable.html#ASCIISH" >Example T-1</A > as a template, write a script that prints to a file a complete <A HREF="bashver4.html#UNICODEREF" >Unicode</A > table.</P ><P >Hint: Use the <TT CLASS="OPTION" >-e</TT > option to <A HREF="internal.html#ECHOREF" >echo</A >: <B CLASS="COMMAND" >echo -e '\uXXXX'</B >, where <TT CLASS="REPLACEABLE" ><I >XXXX</I ></TT > is the Unicode numerical character designation. This requires <A HREF="bashver4.html#BASH42" >version 4.2</A > or later of Bash.</P ></DD ><DT ><B CLASS="COMMAND" >Sum of Matching Numbers</B ></DT ><DD ><P >Find the sum of all five-digit numbers (in the range 10000 - 99999) containing <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >exactly two</I ></SPAN > out of the following set of digits: { 4, 5, 6 }. These may repeat within the same number, and if so, they count once for each occurrence.</P ><P >Some examples of <I CLASS="FIRSTTERM" >matching numbers</I > are 42057, 74638, and 89515.</P ></DD ><DT ><B CLASS="COMMAND" >Lucky Numbers</B ></DT ><DD ><P >A <I CLASS="FIRSTTERM" >lucky number</I > is one whose individual digits add up to 7, in successive additions. For example, 62431 is a <I CLASS="FIRSTTERM" >lucky number</I > (6 + 2 + 4 + 3 + 1 = 16, 1 + 6 = 7). Find all the <I CLASS="FIRSTTERM" >lucky numbers</I > between 1000 and 10000.</P ></DD ><DT ><B CLASS="COMMAND" >Craps</B ></DT ><DD ><P >Borrowing the ASCII graphics from <A HREF="contributed-scripts.html#PETALS" >Example A-40</A >, write a script that plays the well-known gambling game of <I CLASS="FIRSTTERM" >craps</I >. The script will accept bets from one or more players, roll the dice, and keep track of wins and losses, as well as of each player's bankroll.</P ></DD ><DT ><B CLASS="COMMAND" >Tic-tac-toe</B ></DT ><DD ><P >Write a script that plays the child's game of <I CLASS="FIRSTTERM" >tic-tac-toe</I > against a human player. The script will let the human choose whether to take the first move. The script will follow an optimal strategy, and therefore never lose. To simplify matters, you may use ASCII graphics:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 o | x | 2 ---------- 3 | x | 4 ---------- 5 | o | 6 7 Your move, human (row, column)?</PRE ></TD ></TR ></TABLE ></P ></DD ><DT ><B CLASS="COMMAND" >Alphabetizing a String</B ></DT ><DD ><P >Alphabetize (in ASCII order) an arbitrary string read from the command-line.</P ></DD ><DT ><B CLASS="COMMAND" >Parsing</B ></DT ><DD ><P >Parse <A HREF="files.html#DATAFILESREF1" ><TT CLASS="FILENAME" >/etc/passwd</TT ></A >, and output its contents in nice, easy-to-read tabular form.</P ></DD ><DT ><B CLASS="COMMAND" >Logging Logins</B ></DT ><DD ><P >Parse <TT CLASS="FILENAME" >/var/log/messages</TT > to produce a nicely formatted file of user logins and login times. The script may need to run as <I CLASS="FIRSTTERM" >root</I >. (Hint: Search for the string <SPAN CLASS="QUOTE" >"LOGIN."</SPAN >)</P ></DD ><DT ><B CLASS="COMMAND" >Pretty-Printing a Data File</B ></DT ><DD ><P >Certain database and spreadsheet packages use save-files with the fields separated by commas, commonly referred to as <I CLASS="FIRSTTERM" >comma-separated values</I > or CSVs. Other applications often need to parse these files.</P ><P >Given a data file with comma-separated <A HREF="special-chars.html#FIELDREF" >fields</A >, of the form: <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 Jones,Bill,235 S. Williams St.,Denver,CO,80221,(303) 244-7989 2 Smith,Tom,404 Polk Ave.,Los Angeles,CA,90003,(213) 879-5612 3 ...</PRE ></TD ></TR ></TABLE > Reformat the data and print it out to <TT CLASS="FILENAME" >stdout</TT > in labeled, evenly-spaced columns.</P ></DD ><DT ><B CLASS="COMMAND" >Justification</B ></DT ><DD ><P >Given ASCII text input either from <TT CLASS="FILENAME" >stdin</TT > or a file, adjust the word spacing to right-justify each line to a user-specified line-width, then send the output to <TT CLASS="FILENAME" >stdout</TT >.</P ></DD ><DT ><B CLASS="COMMAND" >Mailing List</B ></DT ><DD ><P >Using the <A HREF="communications.html#COMMMAIL1" >mail</A > command, write a script that manages a simple mailing list. The script automatically e-mails the monthly company newsletter, read from a specified text file, and sends it to all the addresses on the mailing list, which the script reads from another specified file.</P ></DD ><DT ><B CLASS="COMMAND" >Generating Passwords</B ></DT ><DD ><P >Generate pseudorandom 8-character passwords, using characters in the ranges [0-9], [A-Z], [a-z]. Each password must contain at least two digits.</P ></DD ><DT ><B CLASS="COMMAND" >Monitoring a User</B ></DT ><DD ><P >You suspect that one particular user on the network has been abusing her privileges and possibly attempting to hack the system. Write a script to automatically monitor and log her activities when she's signed on. The log file will save entries for the previous week, and delete those entries more than seven days old.</P ><P >You may use <A HREF="system.html#LASTREF" >last</A >, <A HREF="system.html#LASTLOGREF" >lastlog</A >, and <A HREF="system.html#LASTCOMMREF" >lastcomm</A > to aid your surveillance of the suspected fiend.</P ></DD ><DT ><B CLASS="COMMAND" >Checking for Broken Links</B ></DT ><DD ><P >Using <A HREF="communications.html#LYNXREF" >lynx</A > with the <TT CLASS="OPTION" >-traversal</TT > option, write a script that checks a Web site for broken links.</P ></DD ></DL ></DIV ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="EXDIFFICULT1" ></A >DIFFICULT</B ></P ><DL ><DT ><B CLASS="COMMAND" >Testing Passwords</B ></DT ><DD ><P >Write a script to check and validate passwords. The object is to flag <SPAN CLASS="QUOTE" >"weak"</SPAN > or easily guessed password candidates.</P ><P >A trial password will be input to the script as a command-line parameter. To be considered acceptable, a password must meet the following minimum qualifications: <UL ><LI ><P >Minimum length of 8 characters</P ></LI ><LI ><P >Must contain at least one numeric character</P ></LI ><LI ><P >Must contain at least one of the following non-alphabetic characters: <SPAN CLASS="TOKEN" >@</SPAN >, <SPAN CLASS="TOKEN" >#</SPAN >, <SPAN CLASS="TOKEN" >$</SPAN >, <SPAN CLASS="TOKEN" >%</SPAN >, <SPAN CLASS="TOKEN" >&</SPAN >, <SPAN CLASS="TOKEN" >*</SPAN >, <SPAN CLASS="TOKEN" >+</SPAN >, <SPAN CLASS="TOKEN" >-</SPAN >, <SPAN CLASS="TOKEN" >=</SPAN ></P ></LI ></UL ></P ><P >Optional: <UL ><LI ><P >Do a dictionary check on every sequence of at least four consecutive alphabetic characters in the password under test. This will eliminate passwords containing embedded <SPAN CLASS="QUOTE" >"words"</SPAN > found in a standard dictionary.</P ></LI ><LI ><P >Enable the script to check all the passwords on your system. These do not reside in <A HREF="files.html#DATAFILESREF1" ><TT CLASS="FILENAME" >/etc/passwd</TT ></A >.</P ></LI ></UL ></P ><P >This exercise tests mastery of <A HREF="regexp.html#REGEXREF" >Regular Expressions</A >.</P ></DD ><DT ><B CLASS="COMMAND" >Cross Reference</B ></DT ><DD ><P >Write a script that generates a <I CLASS="FIRSTTERM" >cross-reference</I > (<I CLASS="FIRSTTERM" >concordance</I >) on a target file. The output will be a listing of all word occurrences in the target file, along with the line numbers in which each word occurs. Traditionally, <I CLASS="FIRSTTERM" >linked list</I > constructs would be used in such applications. Therefore, you should investigate <A HREF="arrays.html#ARRAYREF" >arrays</A > in the course of this exercise. <A HREF="textproc.html#WF" >Example 16-12</A > is probably <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >not</I ></SPAN > a good place to start.</P ></DD ><DT ><A NAME="NEWTONSQRT" ></A ><B CLASS="COMMAND" >Square Root</B ></DT ><DD ><P >Write a script to calculate square roots of numbers using <I CLASS="FIRSTTERM" >Newton's Method</I >.</P ><P >The algorithm for this, expressed as a snippet of Bash <A HREF="assortedtips.html#PSEUDOCODEREF" >pseudo-code</A > is:</P ><P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # (Isaac) Newton's Method for speedy extraction 2 #+ of square roots. 3 4 guess = $argument 5 # $argument is the number to find the square root of. 6 # $guess is each successive calculated "guess" -- or trial solution -- 7 #+ of the square root. 8 # Our first "guess" at a square root is the argument itself. 9 10 oldguess = 0 11 # $oldguess is the previous $guess. 12 13 tolerance = .000001 14 # To how close a tolerance we wish to calculate. 15 16 loopcnt = 0 17 # Let's keep track of how many times through the loop. 18 # Some arguments will require more loop iterations than others. 19 20 21 while [ ABS( $guess $oldguess ) -gt $tolerance ] 22 # ^^^^^^^^^^^^^^^^^^^^^^^ Fix up syntax, of course. 23 24 # "ABS" is a (floating point) function to find the absolute value 25 #+ of the difference between the two terms. 26 # So, as long as difference between current and previous 27 #+ trial solution (guess) exceeds the tolerance, keep looping. 28 29 do 30 oldguess = $guess # Update $oldguess to previous $guess. 31 32 # ======================================================= 33 guess = ( $oldguess + ( $argument / $oldguess ) ) / 2.0 34 # = 1/2 ( ($oldguess **2 + $argument) / $oldguess ) 35 # equivalent to: 36 # = 1/2 ( $oldguess + $argument / $oldguess ) 37 # that is, "averaging out" the trial solution and 38 #+ the proportion of argument deviation 39 #+ (in effect, splitting the error in half). 40 # This converges on an accurate solution 41 #+ with surprisingly few loop iterations . . . 42 #+ for arguments > $tolerance, of course. 43 # ======================================================= 44 45 (( loopcnt++ )) # Update loop counter. 46 done</PRE ></TD ></TR ></TABLE ></P ><P >It's a simple enough recipe, and <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >seems</I ></SPAN > at first glance easy enough to convert into a working Bash script. The problem, though, is that Bash has <A HREF="operations.html#NOFLOATINGPOINT" >no native support for floating point numbers</A >. So, the script writer needs to use <A HREF="mathc.html#BCREF" >bc</A > or possibly <A HREF="awk.html#AWKREF" >awk</A > to convert the numbers and do the calculations. It could get rather messy . . .</P ></DD ><DT ><B CLASS="COMMAND" >Logging File Accesses</B ></DT ><DD ><P >Log all accesses to the files in <TT CLASS="FILENAME" >/etc</TT > during the course of a single day. This information should include the filename, user name, and access time. If any alterations to the files take place, that will be flagged. Write this data as tabular (tab-separated) formatted records in a logfile.</P ></DD ><DT ><B CLASS="COMMAND" >Monitoring Processes</B ></DT ><DD ><P >Write a script to continually monitor all running processes and to keep track of how many child processes each parent spawns. If a process spawns more than five children, then the script sends an e-mail to the system administrator (or <I CLASS="FIRSTTERM" >root</I >) with all relevant information, including the time, PID of the parent, PIDs of the children, etc. The script appends a report to a log file every ten minutes. </P ></DD ><DT ><B CLASS="COMMAND" >Strip Comments</B ></DT ><DD ><P >Strip all comments from a shell script whose name is specified on the command-line. Note that the initial <A HREF="sha-bang.html#SHABANGREF" >#! line</A > must not be stripped out.</P ></DD ><DT ><B CLASS="COMMAND" >Strip HTML Tags</B ></DT ><DD ><P >Strip all the HTML tags from a specified HTML file, then reformat it into lines between 60 and 75 characters in length. Reset paragraph and block spacing, as appropriate, and convert HTML tables to their approximate text equivalent.</P ></DD ><DT ><B CLASS="COMMAND" >XML Conversion</B ></DT ><DD ><P >Convert an XML file to both HTML and text format.</P ><P >Optional: A script that converts Docbook/SGML to XML.</P ></DD ><DT ><A NAME="CSPAMMERS" ></A ><B CLASS="COMMAND" >Chasing Spammers</B ></DT ><DD ><P > Write a script that analyzes a spam e-mail by doing DNS lookups on the IP addresses in the headers to identify the relay hosts as well as the originating ISP. The script will forward the unaltered spam message to the responsible ISPs. Of course, it will be necessary to filter out <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >your own ISP's IP address</I ></SPAN >, so you don't end up complaining about yourself.</P ><P >As necessary, use the appropriate <A HREF="communications.html#COMMUNINFO1" >network analysis commands</A >.</P ><P >For some ideas, see <A HREF="communications.html#ISSPAMMER" >Example 16-41</A > and <A HREF="contributed-scripts.html#ISSPAMMER2" >Example A-28</A >.</P ><P >Optional: Write a script that searches through a list of e-mail messages and deletes the spam according to specified filters.</P ></DD ><DT ><B CLASS="COMMAND" >Creating man pages</B ></DT ><DD ><P >Write a script that automates the process of creating <A HREF="external.html#MANREF" >man pages</A >.</P ><P >Given a text file which contains information to be formatted into a <I CLASS="FIRSTTERM" >man page</I >, the script will read the file, then invoke the appropriate <A HREF="textproc.html#GROFFREF" >groff</A > commands to output the corresponding <I CLASS="FIRSTTERM" >man page</I > to <TT CLASS="FILENAME" >stdout</TT >. The text file contains blocks of information under the standard <I CLASS="FIRSTTERM" >man page</I > headings, i.e., NAME, SYNOPSIS, DESCRIPTION, etc.</P ><P ><A HREF="contributed-scripts.html#MANED" >Example A-39</A > is an instructive first step.</P ></DD ><DT ><B CLASS="COMMAND" >Hex Dump</B ></DT ><DD ><P >Do a hex(adecimal) dump on a binary file specified as an argument to the script. The output should be in neat tabular <A HREF="special-chars.html#FIELDREF" >fields</A >, with the first field showing the address, each of the next 8 fields a 4-byte hex number, and the final field the ASCII equivalent of the previous 8 fields.</P ><P >The obvious followup to this is to extend the hex dump script into a disassembler. Using a lookup table, or some other clever gimmick, convert the hex values into 80x86 op codes.</P ></DD ><DT ><B CLASS="COMMAND" >Emulating a Shift Register</B ></DT ><DD ><P >Using <A HREF="arrays.html#STACKEX" >Example 27-15</A > as an inspiration, write a script that emulates a 64-bit shift register as an <A HREF="arrays.html#ARRAYREF" >array</A >. Implement functions to <I CLASS="FIRSTTERM" >load</I > the register, <I CLASS="FIRSTTERM" >shift left</I >, <I CLASS="FIRSTTERM" >shift right</I >, and <I CLASS="FIRSTTERM" >rotate</I > it. Finally, write a function that interprets the register contents as eight 8-bit ASCII characters.</P ></DD ><DT ><B CLASS="COMMAND" >Calculating Determinants</B ></DT ><DD ><P >Write a script that calculates determinants <A NAME="AEN25254" HREF="#FTN.AEN25254" >[1]</A > by <A HREF="localvar.html#RECURSIONREF0" >recursively</A > expanding the <I CLASS="FIRSTTERM" >minors</I >. Use a 4 x 4 determinant as a test case.</P ></DD ><DT ><B CLASS="COMMAND" >Hidden Words</B ></DT ><DD ><P >Write a <SPAN CLASS="QUOTE" >"word-find"</SPAN > puzzle generator, a script that hides 10 input words in a 10 x 10 array of random letters. The words may be hidden across, down, or diagonally.</P ><P >Optional: Write a script that <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >solves</I ></SPAN > word-find puzzles. To keep this from becoming too difficult, the solution script will find only horizontal and vertical words. (Hint: Treat each row and column as a string, and search for substrings.)</P ></DD ><DT ><B CLASS="COMMAND" >Anagramming</B ></DT ><DD ><P > Anagram 4-letter input. For example, the anagrams of <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >word</I ></SPAN > are: <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >do or rod row word</I ></SPAN >. You may use <TT CLASS="FILENAME" >/usr/share/dict/linux.words</TT > as the reference list.</P ></DD ><DT ><B CLASS="COMMAND" >Word Ladders</B ></DT ><DD ><P >A <SPAN CLASS="QUOTE" >"word ladder"</SPAN > is a sequence of words, with each successive word in the sequence differing from the previous one by a single letter.</P ><P >For example, to <SPAN CLASS="QUOTE" >"ladder"</SPAN > from <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >mark</I ></SPAN > to <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >vase</I ></SPAN >:</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 mark --> park --> part --> past --> vast --> vase 2 ^ ^ ^ ^ ^</PRE ></TD ></TR ></TABLE > </P ><P >Write a script that solves word ladder puzzles. Given a starting and an ending word, the script will list all intermediate steps in the <SPAN CLASS="QUOTE" >"ladder."</SPAN > Note that <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >all</I ></SPAN > words in the sequence must be legitimate dictionary words.</P ></DD ><DT ><B CLASS="COMMAND" >Fog Index</B ></DT ><DD ><P >The <SPAN CLASS="QUOTE" >"fog index"</SPAN > of a passage of text estimates its reading difficulty, as a number corresponding roughly to a school grade level. For example, a passage with a fog index of 12 should be comprehensible to anyone with 12 years of schooling.</P ><P >The Gunning version of the fog index uses the following algorithm.</P ><OL TYPE="1" ><LI ><P >Choose a section of the text at least 100 words in length.</P ></LI ><LI ><P >Count the number of sentences (a portion of a sentence truncated by the boundary of the text section counts as one).</P ></LI ><LI ><P >Find the average number of words per sentence.</P ><P >AVE_WDS_SEN = TOTAL_WORDS / SENTENCES</P ></LI ><LI ><P >Count the number of <SPAN CLASS="QUOTE" >"difficult"</SPAN > words in the segment -- those containing at least 3 syllables. Divide this quantity by total words to get the proportion of difficult words.</P ><P >PRO_DIFF_WORDS = LONG_WORDS / TOTAL_WORDS</P ></LI ><LI ><P >The Gunning fog index is the sum of the above two quantities, multiplied by 0.4, then rounded to the nearest integer.</P ><P >G_FOG_INDEX = int ( 0.4 * ( AVE_WDS_SEN + PRO_DIFF_WORDS ) )</P ></LI ></OL ><P >Step 4 is by far the most difficult portion of the exercise. There exist various algorithms for estimating the syllable count of a word. A rule-of-thumb formula might consider the number of letters in a word and the vowel-consonant mix.</P ><P >A strict interpretation of the Gunning fog index does not count compound words and proper nouns as <SPAN CLASS="QUOTE" >"difficult"</SPAN > words, but this would enormously complicate the script.</P ></DD ><DT ><B CLASS="COMMAND" >Calculating PI using Buffon's Needle</B ></DT ><DD ><P >The Eighteenth Century French mathematician de Buffon came up with a novel experiment. Repeatedly drop a needle of length <TT CLASS="REPLACEABLE" ><I >n</I ></TT > onto a wooden floor composed of long and narrow parallel boards. The cracks separating the equal-width floorboards are a fixed distance <TT CLASS="REPLACEABLE" ><I >d</I ></TT > apart. Keep track of the total drops and the number of times the needle intersects a crack on the floor. The ratio of these two quantities turns out to be a fractional multiple of PI.</P ><P >In the spirit of <A HREF="mathc.html#CANNON" >Example 16-50</A >, write a script that runs a Monte Carlo simulation of <I CLASS="FIRSTTERM" >Buffon's Needle</I >. To simplify matters, set the needle length equal to the distance between the cracks, <TT CLASS="PARAMETER" ><I >n = d</I ></TT >.</P ><P >Hint: there are actually two critical variables: the distance from the center of the needle to the nearest crack, and the inclination angle of the needle to that crack. You may use <A HREF="mathc.html#BCREF" >bc</A > to handle the calculations.</P ></DD ><DT ><B CLASS="COMMAND" >Playfair Cipher</B ></DT ><DD ><P >Implement the Playfair (Wheatstone) Cipher in a script.</P ><P >The Playfair Cipher encrypts text by substitution of <I CLASS="FIRSTTERM" >digrams</I > (2-letter groupings). It is traditional to use a 5 x 5 letter scrambled-alphabet <I CLASS="FIRSTTERM" >key square</I > for the encryption and decryption.</P ><P > <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 C O D E S 2 A B F G H 3 I K L M N 4 P Q R T U 5 V W X Y Z 6 7 Each letter of the alphabet appears once, except "I" also represents 8 "J". The arbitrarily chosen key word, "CODES" comes first, then all 9 the rest of the alphabet, in order from left to right, skipping letters 10 already used. 11 12 To encrypt, separate the plaintext message into digrams (2-letter 13 groups). If a group has two identical letters, delete the second, and 14 form a new group. If there is a single letter left over at the end, 15 insert a "null" character, typically an "X." 16 17 THIS IS A TOP SECRET MESSAGE 18 19 TH IS IS AT OP SE CR ET ME SA GE 20 21 22 23 For each digram, there are three possibilities. 24 ----------------------------------------------- 25 26 1) Both letters will be on the same row of the key square: 27 For each letter, substitute the one immediately to the right, in that 28 row. If necessary, wrap around left to the beginning of the row. 29 30 or 31 32 2) Both letters will be in the same column of the key square: 33 For each letter, substitute the one immediately below it, in that 34 row. If necessary, wrap around to the top of the column. 35 36 or 37 38 3) Both letters will form the corners of a rectangle within the key square: 39 For each letter, substitute the one on the other corner the rectangle 40 which lies on the same row. 41 42 43 The "TH" digram falls under case #3. 44 G H 45 M N 46 T U (Rectangle with "T" and "H" at corners) 47 48 T --> U 49 H --> G 50 51 52 The "SE" digram falls under case #1. 53 C O D E S (Row containing "S" and "E") 54 55 S --> C (wraps around left to beginning of row) 56 E --> S 57 58 ========================================================================= 59 60 To decrypt encrypted text, reverse the above procedure under cases #1 61 and #2 (move in opposite direction for substitution). Under case #3, 62 just take the remaining two corners of the rectangle. 63 64 65 Helen Fouche Gaines' classic work, ELEMENTARY CRYPTANALYSIS (1939), gives a 66 fairly detailed description of the Playfair Cipher and its solution methods.</PRE ></TD ></TR ></TABLE > </P ><P >This script will have three main sections</P ><OL TYPE="I" ><LI ><P >Generating the <I CLASS="FIRSTTERM" >key square</I >, based on a user-input keyword.</P ></LI ><LI ><P >Encrypting a <I CLASS="FIRSTTERM" >plaintext</I > message.</P ></LI ><LI ><P >Decrypting encrypted text.</P ></LI ></OL ><P >The script will make extensive use of <A HREF="arrays.html#ARRAYREF" >arrays</A > and <A HREF="functions.html#FUNCTIONREF" >functions</A >. You may use <A HREF="contributed-scripts.html#GRONSFELD" >Example A-56</A > as an inspiration.</P ></DD ></DL ></DIV ><P >--</P ><P >Please do not send the author your solutions to these exercises. There are more appropriate ways to impress him with your cleverness, such as submitting bugfixes and suggestions for improving the book.</P ></DIV ><H3 CLASS="FOOTNOTES" >Notes</H3 ><TABLE BORDER="0" CLASS="FOOTNOTES" WIDTH="100%" ><TR ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" ><A NAME="FTN.AEN25254" HREF="writingscripts.html#AEN25254" >[1]</A ></TD ><TD ALIGN="LEFT" VALIGN="TOP" WIDTH="95%" ><P >For all you clever types who failed intermediate algebra, a <I CLASS="FIRSTTERM" >determinant</I > is a numerical value associated with a multidimensional <I CLASS="FIRSTTERM" >matrix</I > (<A HREF="arrays.html#ARRAYREF" >array</A > of numbers). <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 For the simple case of a 2 x 2 determinant: 2 3 |a b| 4 |b a| 5 6 The solution is a*a - b*b, where "a" and "b" represent numbers.</PRE ></TD ></TR ></TABLE > </P ></TD ></TR ></TABLE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="exercises.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="revisionhistory.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Exercises</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="exercises.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Revision History</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added HTML/xrefindex.html.
more than 10,000 changes
Added HTML/zeros.html.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML ><HEAD ><TITLE >Of Zeros and Nulls</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+ "><LINK REL="HOME" TITLE="Advanced Bash-Scripting Guide" HREF="index.html"><LINK REL="UP" TITLE="Advanced Topics" HREF="part5.html"><LINK REL="PREVIOUS" TITLE="Network Programming" HREF="networkprogramming.html"><LINK REL="NEXT" TITLE="Debugging" HREF="debugging.html"><META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"><LINK REL="stylesheet" HREF="common/kde-common.css" TYPE="text/css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META HTTP-EQUIV="Content-Language" CONTENT="en"><LINK REL="stylesheet" HREF="common/kde-localised.css" TYPE="text/css" TITLE="KDE-English"><LINK REL="stylesheet" HREF="common/kde-default.css" TYPE="text/css" TITLE="KDE-Default"></HEAD ><BODY CLASS="CHAPTER" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#AA0000" VLINK="#AA0055" ALINK="#AA0000" STYLE="font-family: sans-serif;" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="networkprogramming.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="debugging.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="CHAPTER" ><H1 ><A NAME="ZEROS" ></A >Chapter 31. Of Zeros and Nulls</H1 ><TABLE BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0" CLASS="EPIGRAPH" ><TR ><TD WIDTH="45%" > </TD ><TD WIDTH="45%" ALIGN="LEFT" VALIGN="TOP" ><I ><P ><I >Faultily faultless, icily regular, splendidly null</I ></P ><P ><I >Dead perfection; no more.</I ></P ><P ><I >--Alfred Lord Tennyson</I ></P ></I ></TD ></TR ></TABLE ><P ><A NAME="ZEROSREF" ></A ></P ><DIV CLASS="VARIABLELIST" ><P ><B ><A NAME="ZERONULL1" ></A ><TT CLASS="FILENAME" >/dev/zero</TT > ... <TT CLASS="FILENAME" >/dev/null</TT ></B ></P ><DL ><DT ><A NAME="DEVNULLREF" ></A >Uses of <TT CLASS="FILENAME" >/dev/null</TT ></DT ><DD ><P >Think of <TT CLASS="FILENAME" >/dev/null</TT > as a <I CLASS="FIRSTTERM" >black hole</I >. It is essentially the equivalent of a write-only file. Everything written to it disappears. Attempts to read or output from it result in nothing. All the same, <TT CLASS="FILENAME" >/dev/null</TT > can be quite useful from both the command-line and in scripts.</P ><P >Suppressing <TT CLASS="FILENAME" >stdout</TT >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat $filename >/dev/null 2 # Contents of the file will not list to stdout.</PRE ></TD ></TR ></TABLE > </P ><P >Suppressing <TT CLASS="FILENAME" >stderr</TT > (from <A HREF="moreadv.html#EX57" >Example 16-3</A >). <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 rm $badname 2>/dev/null 2 # So error messages [stderr] deep-sixed.</PRE ></TD ></TR ></TABLE > </P ><P >Suppressing output from <SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >both</I ></SPAN > <TT CLASS="FILENAME" >stdout</TT > and <TT CLASS="FILENAME" >stderr</TT >. <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat $filename 2>/dev/null >/dev/null 2 # If "$filename" does not exist, there will be no error message output. 3 # If "$filename" does exist, the contents of the file will not list to stdout. 4 # Therefore, no output at all will result from the above line of code. 5 # 6 # This can be useful in situations where the return code from a command 7 #+ needs to be tested, but no output is desired. 8 # 9 # cat $filename &>/dev/null 10 # also works, as Baris Cicek points out.</PRE ></TD ></TR ></TABLE > </P ><P >Deleting contents of a file, but preserving the file itself, with all attendant permissions (from <A HREF="sha-bang.html#EX1" >Example 2-1</A > and <A HREF="sha-bang.html#EX2" >Example 2-3</A >): <TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 cat /dev/null > /var/log/messages 2 # : > /var/log/messages has same effect, but does not spawn a new process. 3 4 cat /dev/null > /var/log/wtmp</PRE ></TD ></TR ></TABLE > </P ><P >Automatically emptying the contents of a logfile (especially good for dealing with those nasty <SPAN CLASS="QUOTE" >"cookies"</SPAN > sent by commercial Web sites):</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="COOKIES" ></A ><P ><B >Example 31-1. Hiding the cookie jar</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 # Obsolete Netscape browser. 2 # Same principle applies to newer browsers. 3 4 if [ -f ~/.netscape/cookies ] # Remove, if exists. 5 then 6 rm -f ~/.netscape/cookies 7 fi 8 9 ln -s /dev/null ~/.netscape/cookies 10 # All cookies now get sent to a black hole, rather than saved to disk.</PRE ></TD ></TR ></TABLE ><HR></DIV ></DD ><DT ><A NAME="ZEROSREF1" ></A >Uses of <TT CLASS="FILENAME" >/dev/zero</TT ></DT ><DD ><P >Like <TT CLASS="FILENAME" >/dev/null</TT >, <TT CLASS="FILENAME" >/dev/zero</TT > is a pseudo-device file, but it actually produces a stream of nulls (<SPAN CLASS="emphasis" ><I CLASS="EMPHASIS" >binary</I ></SPAN > zeros, not the <A HREF="special-chars.html#ASCIIDEF" >ASCII</A > kind). Output written to <TT CLASS="FILENAME" >/dev/zero</TT > disappears, and it is fairly difficult to actually read the nulls emitted there, though it can be done with <A HREF="extmisc.html#ODREF" >od</A > or a hex editor. <A NAME="SWAPFILEREF" ></A >The chief use of <TT CLASS="FILENAME" >/dev/zero</TT > is creating an initialized dummy file of predetermined length intended as a temporary swap file.</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="EX73" ></A ><P ><B >Example 31-2. Setting up a swapfile using <TT CLASS="FILENAME" >/dev/zero</TT ></B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # Creating a swap file. 3 4 # A swap file provides a temporary storage cache 5 #+ which helps speed up certain filesystem operations. 6 7 ROOT_UID=0 # Root has $UID 0. 8 E_WRONG_USER=85 # Not root? 9 10 FILE=/swap 11 BLOCKSIZE=1024 12 MINBLOCKS=40 13 SUCCESS=0 14 15 16 # This script must be run as root. 17 if [ "$UID" -ne "$ROOT_UID" ] 18 then 19 echo; echo "You must be root to run this script."; echo 20 exit $E_WRONG_USER 21 fi 22 23 24 blocks=${1:-$MINBLOCKS} # Set to default of 40 blocks, 25 #+ if nothing specified on command-line. 26 # This is the equivalent of the command block below. 27 # -------------------------------------------------- 28 # if [ -n "$1" ] 29 # then 30 # blocks=$1 31 # else 32 # blocks=$MINBLOCKS 33 # fi 34 # -------------------------------------------------- 35 36 37 if [ "$blocks" -lt $MINBLOCKS ] 38 then 39 blocks=$MINBLOCKS # Must be at least 40 blocks long. 40 fi 41 42 43 ###################################################################### 44 echo "Creating swap file of size $blocks blocks (KB)." 45 dd if=/dev/zero of=$FILE bs=$BLOCKSIZE count=$blocks # Zero out file. 46 mkswap $FILE $blocks # Designate it a swap file. 47 swapon $FILE # Activate swap file. 48 retcode=$? # Everything worked? 49 # Note that if one or more of these commands fails, 50 #+ then it could cause nasty problems. 51 ###################################################################### 52 53 # Exercise: 54 # Rewrite the above block of code so that if it does not execute 55 #+ successfully, then: 56 # 1) an error message is echoed to stderr, 57 # 2) all temporary files are cleaned up, and 58 # 3) the script exits in an orderly fashion with an 59 #+ appropriate error code. 60 61 echo "Swap file created and activated." 62 63 exit $retcode</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >Another application of <TT CLASS="FILENAME" >/dev/zero</TT > is to <SPAN CLASS="QUOTE" >"zero out"</SPAN > a file of a designated size for a special purpose, such as mounting a filesystem on a <A HREF="devproc.html#LOOPBACKREF" >loopback device</A > (see <A HREF="system.html#CREATEFS" >Example 17-8</A >) or <SPAN CLASS="QUOTE" >"securely"</SPAN > deleting a file (see <A HREF="extmisc.html#BLOTOUT" >Example 16-61</A >).</P ><DIV CLASS="EXAMPLE" ><HR><A NAME="RAMDISK" ></A ><P ><B >Example 31-3. Creating a ramdisk</B ></P ><TABLE BORDER="0" BGCOLOR="#E0E0E0" WIDTH="90%" ><TR ><TD ><PRE CLASS="PROGRAMLISTING" > 1 #!/bin/bash 2 # ramdisk.sh 3 4 # A "ramdisk" is a segment of system RAM memory 5 #+ which acts as if it were a filesystem. 6 # Its advantage is very fast access (read/write time). 7 # Disadvantages: volatility, loss of data on reboot or powerdown, 8 #+ less RAM available to system. 9 # 10 # Of what use is a ramdisk? 11 # Keeping a large dataset, such as a table or dictionary on ramdisk, 12 #+ speeds up data lookup, since memory access is much faster than disk access. 13 14 15 E_NON_ROOT_USER=70 # Must run as root. 16 ROOTUSER_NAME=root 17 18 MOUNTPT=/mnt/ramdisk # Create with mkdir /mnt/ramdisk. 19 SIZE=2000 # 2K blocks (change as appropriate) 20 BLOCKSIZE=1024 # 1K (1024 byte) block size 21 DEVICE=/dev/ram0 # First ram device 22 23 username=`id -nu` 24 if [ "$username" != "$ROOTUSER_NAME" ] 25 then 26 echo "Must be root to run \"`basename $0`\"." 27 exit $E_NON_ROOT_USER 28 fi 29 30 if [ ! -d "$MOUNTPT" ] # Test whether mount point already there, 31 then #+ so no error if this script is run 32 mkdir $MOUNTPT #+ multiple times. 33 fi 34 35 ############################################################################## 36 dd if=/dev/zero of=$DEVICE count=$SIZE bs=$BLOCKSIZE # Zero out RAM device. 37 # Why is this necessary? 38 mke2fs $DEVICE # Create an ext2 filesystem on it. 39 mount $DEVICE $MOUNTPT # Mount it. 40 chmod 777 $MOUNTPT # Enables ordinary user to access ramdisk. 41 # However, must be root to unmount it. 42 ############################################################################## 43 # Need to test whether above commands succeed. Could cause problems otherwise. 44 # Exercise: modify this script to make it safer. 45 46 echo "\"$MOUNTPT\" now available for use." 47 # The ramdisk is now accessible for storing files, even by an ordinary user. 48 49 # Caution, the ramdisk is volatile, and its contents will disappear 50 #+ on reboot or power loss. 51 # Copy anything you want saved to a regular directory. 52 53 # After reboot, run this script to again set up ramdisk. 54 # Remounting /mnt/ramdisk without the other steps will not work. 55 56 # Suitably modified, this script can by invoked in /etc/rc.d/rc.local, 57 #+ to set up ramdisk automatically at bootup. 58 # That may be appropriate on, for example, a database server. 59 60 exit 0</PRE ></TD ></TR ></TABLE ><HR></DIV ><P >In addition to all the above, <TT CLASS="FILENAME" >/dev/zero</TT > is needed by ELF (<I CLASS="FIRSTTERM" >Executable and Linking Format</I >) UNIX/Linux binaries.</P ></DD ></DL ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="networkprogramming.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="debugging.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Network Programming</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="part5.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Debugging</TD ></TR ></TABLE ></DIV ></BODY ></HTML > |
Added Hash.lib.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | # Hash: # Hash function library # Author: Mariusz Gniazdowski <mariusz.gn-at-gmail.com> # Date: 2005-04-07 # Functions making emulating hashes in Bash a little less painful. # Limitations: # * Only global variables are supported. # * Each hash instance generates one global variable per value. # * Variable names collisions are possible #+ if you define variable like __hash__hashname_key # * Keys must use chars that can be part of a Bash variable name #+ (no dashes, periods, etc.). # * The hash is created as a variable: # ... hashname_keyname # So if somone will create hashes like: # myhash_ + mykey = myhash__mykey # myhash + _mykey = myhash__mykey # Then there will be a collision. # (This should not pose a major problem.) Hash_config_varname_prefix=__hash__ # Emulates: hash[key]=value # # Params: # 1 - hash # 2 - key # 3 - value function hash_set { eval "${Hash_config_varname_prefix}${1}_${2}=\"${3}\"" } # Emulates: value=hash[key] # # Params: # 1 - hash # 2 - key # 3 - value (name of global variable to set) function hash_get_into { eval "$3=\"\$${Hash_config_varname_prefix}${1}_${2}\"" } # Emulates: echo hash[key] # # Params: # 1 - hash # 2 - key # 3 - echo params (like -n, for example) function hash_echo { eval "echo $3 \"\$${Hash_config_varname_prefix}${1}_${2}\"" } # Emulates: hash1[key1]=hash2[key2] # # Params: # 1 - hash1 # 2 - key1 # 3 - hash2 # 4 - key2 function hash_copy { eval "${Hash_config_varname_prefix}${1}_${2}\ =\"\$${Hash_config_varname_prefix}${3}_${4}\"" } # Emulates: hash[keyN-1]=hash[key2]=...hash[key1] # # Copies first key to rest of keys. # # Params: # 1 - hash1 # 2 - key1 # 3 - key2 # . . . # N - keyN function hash_dup { local hashName="$1" keyName="$2" shift 2 until [ ${#} -le 0 ]; do eval "${Hash_config_varname_prefix}${hashName}_${1}\ =\"\$${Hash_config_varname_prefix}${hashName}_${keyName}\"" shift; done; } # Emulates: unset hash[key] # # Params: # 1 - hash # 2 - key function hash_unset { eval "unset ${Hash_config_varname_prefix}${1}_${2}" } # Emulates something similar to: ref=&hash[key] # # The reference is name of the variable in which value is held. # # Params: # 1 - hash # 2 - key # 3 - ref - Name of global variable to set. function hash_get_ref_into { eval "$3=\"${Hash_config_varname_prefix}${1}_${2}\"" } # Emulates something similar to: echo &hash[key] # # That reference is name of variable in which value is held. # # Params: # 1 - hash # 2 - key # 3 - echo params (like -n for example) function hash_echo_ref { eval "echo $3 \"${Hash_config_varname_prefix}${1}_${2}\"" } # Emulates something similar to: $$hash[key](param1, param2, ...) # # Params: # 1 - hash # 2 - key # 3,4, ... - Function parameters function hash_call { local hash key hash=$1 key=$2 shift 2 eval "eval \"\$${Hash_config_varname_prefix}${hash}_${key} \\\"\\\$@\\\"\"" } # Emulates something similar to: isset(hash[key]) or hash[key]==NULL # # Params: # 1 - hash # 2 - key # Returns: # 0 - there is such key # 1 - there is no such key function hash_is_set { eval "if [[ \"\${${Hash_config_varname_prefix}${1}_${2}-a}\" = \"a\" && \"\${${Hash_config_varname_prefix}${1}_${2}-b}\" = \"b\" ]] then return 1; else return 0; fi" } # Emulates something similar to: # foreach($hash as $key => $value) { fun($key,$value); } # # It is possible to write different variations of this function. # Here we use a function call to make it as "generic" as possible. # # Params: # 1 - hash # 2 - function name function hash_foreach { local keyname oldIFS="$IFS" IFS=' ' for i in $(eval "echo \${!${Hash_config_varname_prefix}${1}_*}"); do keyname=$(eval "echo \${i##${Hash_config_varname_prefix}${1}_}") eval "$2 $keyname \"\$$i\"" done IFS="$oldIFS" } # NOTE: In lines 103 and 116, ampersand changed. # But, it doesn't matter, because these are comment lines anyhow. |
Added INDEX00.sgml.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 | <para>This index / glossary / quick-reference lists many of the important topics covered in the text. Terms are arranged in <emphasis>approximate</emphasis> ASCII sorting order, <emphasis>modified as necessary</emphasis> for enhanced clarity.</para> <para>Note that <emphasis>commands</emphasis> are indexed in <link linkend="part4A">Part 4</link>.</para> <para>* * *</para> <!-- Characters and symbols --> <para><command>^ </command> (caret) <itemizedlist> <listitem> <para> <link linkend="beglineref">Beginning-of-line</link>, in a <link linkend="regexref">Regular Expression</link> </para> </listitem> <listitem> <para><command>^</command></para> <para><command>^^</command></para> <para><link linkend="casemodparamsub">Uppercase conversion</link> in <firstterm>parameter substitution</firstterm></para> </listitem> </itemizedlist> </para> <para><command>~ </command> <firstterm>Tilde</firstterm> <itemizedlist> <listitem><para> <command>~ </command> <link linkend="tilderef">home directory</link>, corresponds to <link linkend="homedirref"><varname>$HOME</varname></link> </para></listitem> <!-- ********************** --> <listitem><para> <command>~/ </command> <link linkend="tilderef"> <firstterm>Current user's</firstterm> home directory</link> </para></listitem> <listitem><para> <command>~+ </command> <link linkend="workingdirref"><emphasis>Current</emphasis> working directory</link> </para></listitem> <listitem><para> <command>~- </command> <link linkend="prevworkingdir"><emphasis>Previous</emphasis> working directory</link> </para></listitem> </itemizedlist> </para> <!-- ********************** --> <para><command>= </command> <firstterm>Equals</firstterm> sign <itemizedlist> <listitem><para> <command>= </command> <link linkend="eqref">Variable assignment</link> operator </para></listitem> <listitem><para> <command>= </command> <link linkend="scomparison1">String comparison</link> operator </para> <para> <command>== </command> <link linkend="scomparison2">String comparison</link> operator </para></listitem> <listitem> <para> <command>=~ </command> <firstterm>Regular Expression</firstterm> <link linkend="regexmatchref">match</link> operator </para> <para><link linkend="findsplit0"><firstterm>Example script</firstterm></link></para> </listitem> </itemizedlist> </para> <!-- ********************** --> <para><command>< </command> Left angle bracket <itemizedlist> <listitem><para>Is-less-than</para> <para><link linkend="ltref">String comparison</link></para> <para> <link linkend="intlt">Integer comparison</link> within <link linkend="dblparens">double parentheses</link> </para></listitem> <listitem><para>Redirection</para> <para> <command>< </command> <link linkend="ioredirectionref2"><filename>stdin</filename></link> </para> <para> <command><< </command> <link linkend="heredocrrref"><firstterm>Here document</firstterm></link> </para> <para> <command><<< </command> <link linkend="herestringref"><firstterm>Here string</firstterm></link> </para> <para> <command><> </command> <link linkend="redirrw">Opening a file</link> for <emphasis>both</emphasis> reading and writing </para></listitem> </itemizedlist> </para> <!-- ********************** --> <para><command>> </command> Right angle bracket <itemizedlist> <listitem><para>Is-greater-than</para> <para><link linkend="gtref">String comparison</link></para> <para><link linkend="intgt">Integer comparison</link>, within <firstterm>double parentheses</firstterm> </para></listitem> <!-- *** --> <listitem><para>Redirection</para> <para><command>> </command> <link linkend="ioredirectionref">Redirect <filename>stdout</filename></link> to a file </para> <para> <command>>> </command> <link linkend="ioredirectionref">Redirect <filename>stdout</filename></link> to a file, but <firstterm>append</firstterm> </para> <para><command>i>&j </command> <link linkend="ioredirectionref1">Redirect <firstterm>file descriptor</firstterm> <filename>i</filename></link> to <firstterm>file descriptor</firstterm> <filename>j</filename></para> <para> <command>>&j </command> <link linkend="ioredirectionref1">Redirect <filename>stdout</filename></link> to <firstterm>file descriptor</firstterm> <filename>j</filename></para> <para> <command>>&2 </command> <link linkend="redirouterror2">Redirect <filename>stdout</filename></link> of a command to <filename>stderr</filename></para> <para> <command>2>&1 </command> <link linkend="ioredirectionref1">Redirect <filename>stderr</filename></link> to <filename>stdout</filename></para> <para> <command>&> </command> <link linkend="redirouterror">Redirect <emphasis>both</emphasis> <filename>stdout</filename> and <filename>stderr</filename></link> of a command to a file</para> <para><command>:> <filename>file</filename></command> <link linkend="ioredirectionref">Truncate file</link> to zero length</para> </listitem> </itemizedlist> </para> <!-- ********************** --> <para><command>| </command> <link linkend="piperef">Pipe</link>, a device for passing the output of a command to another command or to the shell</para> <para><command>|| </command> <link linkend="orref">Logical OR test operator</link></para> <!-- ********************** --> <para><command>- </command> (dash) <itemizedlist> <listitem><para> <link linkend="defparam1">Prefix to <firstterm>default parameter</firstterm></link>, in <firstterm>parameter substitution</firstterm></para></listitem> <listitem><para> <link linkend="dashref">Prefix to <firstterm>option flag</firstterm></link></para></listitem> <listitem><para> <link linkend="dashref2">Indicating <firstterm>redirection</firstterm></link> from <filename>stdin</filename> or <filename>stdout</filename> </para></listitem> <listitem> <para><command>-- </command> (double-dash)</para> <para><link linkend="doubledashref">Prefix to <firstterm>long</firstterm> command options</link></para> <para> <link linkend="plusplusref"><firstterm>C-style</firstterm> variable decrement</link> within <link linkend="dblparensref">double parentheses</link> </para></listitem> </itemizedlist> </para> <!-- ********************** --> <para><command>; </command> (semicolon) <itemizedlist> <listitem><para><link linkend="semicolonref">As command separator</link></para></listitem> <listitem><para><command>\; </command> <link linkend="findref0"><firstterm>Escaped</firstterm> semicolon</link>, terminates a <link linkend="findref">find</link> command</para></listitem> <listitem><para><command>;; </command> <link linkend="doublesemicolon">Double-semicolon</link>, terminator in a <link linkend="caseesac1">case</link> option</para> <para>Required when ...</para> <para><link linkend="needsemicolon"><firstterm>do</firstterm> keyword is on the first line of <firstterm>loop</firstterm></link></para> <para><link linkend="omitsemicolon"> terminating <firstterm>curly-bracketed</firstterm> code block</link></para> </listitem> <listitem><para><command>;;&</command> <command>;&</command> <link linkend="ncterm">Terminators</link> in a <firstterm>case</firstterm> option (<link linkend="bash4ref">version 4+</link> of Bash).</para></listitem> </itemizedlist></para> <para><command>:</command> Colon <itemizedlist> <listitem><para> <command>:> <filename>filename</filename></command> <link linkend="ioredirectionref">Truncate file</link> to zero length</para></listitem> <listitem><para><link linkend="nullref"><firstterm>null</firstterm> command</link>, equivalent to the <link linkend="trueref">true</link> Bash builtin</para></listitem> <listitem><para>Used in an <link linkend="anonheredoc0">anonymous here document</link></para></listitem> <listitem><para>Used in an <link linkend="coloninfunction">otherwise empty function</link></para></listitem> <listitem><para>Used as a <link linkend="fstrangeref">function name</link></para></listitem> </itemizedlist></para> <para><command>! </command> <link linkend="notref">Negation operator</link>, inverts <link linkend="negcond">exit status</link> of a test or command <itemizedlist> <listitem><para><command>!= </command> <link linkend="notequal">not-equal-to</link> String comparison operator</para></listitem> </itemizedlist></para> <!-- ********************** --> <para><command>? </command> (question mark) <itemizedlist> <listitem><para> <link linkend="quexregex">Match zero or one characters</link>, in an <link linkend="extregex"> Extended Regular Expression</link></para></listitem> <listitem><para><link linkend="quexwc">Single-character <firstterm>wild card</firstterm></link>, in <link linkend="globbingref">globbing</link></para></listitem> <listitem><para>In a <link linkend="cstrinary"><firstterm>C</firstterm>-style Trinary operator</link></para></listitem> </itemizedlist></para> <!-- ********************** --> <para><command>// </command> <link linkend="doubleslashref">Double forward slash</link>, behavior of <link linkend="cdref">cd</link> command toward</para> <!-- ********************** --> <para><command>. </command> (dot / period) <itemizedlist> <listitem><para> <command>. </command> <link linkend="dotref">Load a file</link> (into a script), equivalent to <link linkend="sourceref">source</link> command </para></listitem> <listitem><para> <command>. </command> <link linkend="regexdot">Match single character</link>, in a <link linkend="regexref">Regular Expression</link> </para></listitem> <listitem><para> <command>. </command> <link linkend="dotdirectory">Current working directory</link> </para> <para> <command>./ </command> <link linkend="currentwdref">Current working directory</link> </para></listitem> <listitem><para> <command>.. </command> <link linkend="dotdirectory"><firstterm>Parent</firstterm> directory</link> </para></listitem> </itemizedlist> </para> <!-- ********************** --> <para><command>' ... '</command> (single quotes) <link linkend="snglquo"><firstterm>strong</firstterm> quoting</link></para> <para><command>" ... " </command> (double quotes) <link linkend="dblquo"><firstterm>weak</firstterm> quoting</link> <itemizedlist> <listitem><para><link linkend="quotingbsl"><firstterm>Double-quoting</firstterm> the <firstterm>backslash</firstterm> (<command>\</command>) character</link></para></listitem> </itemizedlist> </para> <para><command>,</command> <itemizedlist> <listitem><para> <link linkend="commaop">Comma operator</link> </para></listitem> <listitem> <para><command>,</command></para> <para><command>,,</command></para> <para><link linkend="casemodparamsub">Lowercase conversion</link> in <firstterm>parameter substitution</firstterm></para> </listitem> </itemizedlist> </para> <!-- ********************** --> <para><command>() </command> Parentheses <itemizedlist> <listitem><para><command>( ... ) </command> <link linkend="parensref">Command group</link>; starts a <link linkend="subshellsref">subshell</link></para></listitem> <listitem><para><command>( ... ) </command> <link linkend="parengrps">Enclose group</link> of <firstterm>Extended Regular Expressions</firstterm></para></listitem> <listitem> <para><command>>( ... )</command></para> <para><command><( ... ) </command> <link linkend="processsubref">Process substitution</link></para> </listitem> <listitem><para><command> ... ) </command> <link linkend="caseparen">Terminates test-condition</link> in <firstterm>case</firstterm> construct</para></listitem> <listitem><para><command>(( ... )) </command> <link linkend="dblparensref">Double parentheses</link>, in arithmetic expansion</para></listitem> </itemizedlist></para> <!-- ********************** --> <para><command>[ </command> <link linkend="leftbracket">Left bracket</link>, <firstterm>test</firstterm> construct</para> <para><command>[ ]</command>Brackets <itemizedlist> <listitem><para><link linkend="brackarray"><firstterm>Array</firstterm> element</link></para></listitem> <listitem><para><link linkend="bracketsref">Enclose character set to match</link> in a <firstterm>Regular Expression</firstterm></para></listitem> <listitem><para><link linkend="bracktest"><firstterm>Test</firstterm> construct</link></para> </listitem> </itemizedlist></para> <para><command>[[ ... ]]</command> <link linkend="dblbrackets">Double brackets</link>, extended <firstterm>test</firstterm> construct</para> <para><command>$ </command> <link linkend="dollarsignref"><firstterm>Anchor</firstterm></link>, in a <link linkend="regexref">Regular Expression</link></para> <para><command>$ </command> <link linkend="varsubn">Prefix to a variable name</link></para> <para><command>$( ... ) </command> <link linkend="commandsubref0">Command substitution</link>, setting a variable with output of a command, using parentheses notation</para> <para><command>` ... ` </command> <link linkend="backquotesref">Command substitution</link>, using <link linkend="backticksref">backquotes</link> notation</para> <para><command>$[ ... ]</command> <link linkend="bracketarith">Integer expansion</link> (deprecated)</para> <!-- ********************** --> <para><command>${ ... }</command> Variable manipulation / evaluation <itemizedlist> <listitem><para><command>${var}</command> <link linkend="pssub1">Value of a variable</link></para></listitem> <listitem><para><command>${#var}</command> <link linkend="psorex1">Length of a variable</link></para></listitem> <listitem> <para><command>${#@}</command></para> <para><command>${#*}</command> <link linkend="numposparam">Number of <firstterm>positional parameters</firstterm></link></para></listitem> <listitem> <para><command>${parameter?err_msg}</command> <link linkend="qerrmsg">Parameter-unset message</link></para></listitem> <listitem> <para><command>${parameter-default}</command></para> <para><command>${parameter:-default}</command></para> <para><command>${parameter=default}</command></para> <para><command>${parameter:=default}</command> <link linkend="defparam1">Set default parameter</link></para></listitem> <listitem> <para><command>${parameter+alt_value}</command></para> <para><command>${parameter:+alt_value}</command></para> <para><link linkend="paramaltv">Alternate value</link> of parameter, if set</para> </listitem> <listitem> <para><command>${!var}</command></para> <para><link linkend="ivr2">Indirect referencing of a variable</link>, new notation</para> </listitem> <listitem> <para><command>${!#}</command></para> <para><link linkend="lastargref">Final <firstterm>positional parameter</firstterm></link>. (This is an <firstterm>indirect reference</firstterm> to <link linkend="clacountref">$#</link>.)</para> </listitem> <listitem> <para><command>${!varprefix*}</command></para> <para><command>${!varprefix@}</command></para> <para><link linkend="varprefixm">Match <emphasis>names</emphasis></link> of all previously declared variables beginning with <varname>varprefix</varname></para> </listitem> <listitem> <para><command>${string:position}</command></para> <para><command>${string:position:length}</command> <link linkend="substrextr01">Substring extraction</link></para></listitem> <listitem> <para><command>${var#Pattern}</command></para> <para><command>${var##Pattern}</command> <link linkend="psorex2">Substring removal</link></para></listitem> <listitem> <para><command>${var%Pattern}</command></para> <para><command>${var%%Pattern}</command> <link linkend="pctpatref">Substring removal</link></para></listitem> <listitem> <para><command>${string/substring/replacement}</command></para> <para><command>${string//substring/replacement}</command></para> <para><command>${string/#substring/replacement}</command></para> <para><command>${string/%substring/replacement}</command> <link linkend="substrrepl00">Substring replacement</link></para></listitem> </itemizedlist></para> <!-- ********************** --> <para><command>$' ... '</command> <link linkend="strq">String expansion</link>, using <firstterm>escaped</firstterm> characters.</para> <para><command>\ </command> <link linkend="escp">Escape</link> the character following <itemizedlist> <listitem><para><command>\< ... \> </command> <link linkend="anglebrac">Angle brackets</link>, <firstterm>escaped</firstterm>, word boundary in a <link linkend="regexref">Regular Expression</link></para></listitem> <listitem><para><command>\{ N \}</command> <link linkend="escpcb"><quote>Curly</quote> brackets</link>, <firstterm>escaped</firstterm>, number of character sets to match in an <link linkend="extregex">Extended RE</link></para></listitem> <listitem><para><command>\; </command> <link linkend="findref0"><firstterm>Semicolon</firstterm></link>, <firstterm>escaped</firstterm>, terminates a <link linkend="findref">find</link> command</para></listitem> <listitem><para><command>\$$ </command> <link linkend="ivrref">Indirect reverencing of a variable</link>, old-style notation</para></listitem> <listitem><para><link linkend="escnewline">Escaping a <firstterm>newline</firstterm></link>, to write a multi-line command</para></listitem> </itemizedlist></para> <!-- ********************** --> <para><command>& </command> <itemizedlist> <listitem><para> <command>&> </command> <link linkend="redirouterror">Redirect <emphasis>both</emphasis> <filename>stdout</filename> and <filename>stderr</filename></link> of a command to a file</para></listitem> <listitem><para> <command>>&j </command> <link linkend="ioredirectionref1">Redirect <filename>stdout</filename></link> to <firstterm>file descriptor</firstterm> <firstterm>j</firstterm></para> <para> <command>>&2 </command> <link linkend="redirouterror2">Redirect <filename>stdout</filename></link> of a command to <filename>stderr</filename></para></listitem> <listitem><para> <command>i>&j </command> <link linkend="ioredirectionref1">Redirect <firstterm>file descriptor</firstterm></link> <firstterm>i</firstterm> to <firstterm>file descriptor</firstterm> <firstterm>j</firstterm></para> <para> <command>2>&1 </command> <link linkend="ioredirectionref1">Redirect <filename>stderr</filename></link> to <filename>stdout</filename></para></listitem> <listitem><para><link linkend="cfd">Closing <firstterm>file descriptors</firstterm></link></para> <para><command>n<&-</command> Close input file descriptor <firstterm>n</firstterm></para> <para><command>0<&-</command>, <command><&-</command> Close <filename>stdin</filename></para> <para><command>n>&-</command> Close output file descriptor <firstterm>n</firstterm></para> <para><command>1>&-</command>, <command>>&-</command> Close <filename>stdout</filename></para></listitem> <listitem><para> <command>&& </command> <link linkend="logicaland">Logical AND test operator</link></para></listitem> <listitem><para> <command>Command &</command> <link linkend="bgjob">Run job in <firstterm>background</firstterm></link></para></listitem> </itemizedlist></para> <!-- ********************** --> <para><command># </command> <link linkend="hashmarkref">Hashmark</link>, special symbol beginning a script <firstterm>comment</firstterm></para> <para><command>#!</command> <link linkend="shabangref">Sha-bang</link>, special string starting a <link linkend="whatsascript">shell script</link></para> <!-- ********************** --> <para><command>* </command> Asterisk <itemizedlist> <listitem><para> <link linkend="asteriskref"><firstterm>Wild card</firstterm></link>, in <link linkend="globbingref">globbing</link> </para></listitem> <listitem><para> <link linkend="asteriskref2">Any number of characters</link> in a <link linkend="regexref">Regular Expression</link> </para></listitem> <listitem><para> <command> ** </command> <link linkend="exponentiationref">Exponentiation</link>, arithmetic operator </para></listitem> <listitem><para> <command> ** </command> Extended <firstterm>globbing</firstterm> <link linkend="globstarref">file-match operator</link> </para></listitem> </itemizedlist> </para> <!-- ********************** --> <para><command>% </command> Percent sign <itemizedlist> <listitem><para> <link linkend="moduloref">Modulo</link>, division-remainder arithmetic operation </para></listitem> <listitem><para> <link linkend="pctpatref">Substring removal</link> (pattern matching) operator</para></listitem> </itemizedlist> </para> <!-- ********************** --> <para><command>+ </command> Plus sign <itemizedlist> <listitem><para><link linkend="plusref"><firstterm>Character match</firstterm></link>, in an <link linkend="extregex">extended Regular Expression</link></para></listitem> <listitem><para><link linkend="paramaltv">Prefix to <firstterm>alternate parameter</firstterm></link>, in <firstterm>parameter substitution</firstterm></para></listitem> <listitem><para><command> ++ </command> <link linkend="plusplusref"><firstterm>C-style</firstterm> variable increment</link>, within <link linkend="dblparensref">double parentheses</link></para></listitem> </itemizedlist></para> <para>* * *</para> <para><firstterm>Shell Variables</firstterm></para> <para><command>$_ </command> <link linkend="underscoreref">Last argument to previous command</link></para> <para><command>$- </command> <link linkend="flpref">Flags passed to script</link>, using <link linkend="setref">set</link></para> <para><command>$! </command> <link linkend="pidvarref"><firstterm>Process ID</firstterm> of last background job</link></para> <para><command>$? </command> <link linkend="exsref"><firstterm>Exit status</firstterm> of a command</link></para> <para><command>$@ </command> All the <firstterm>positional parameters</firstterm>, <link linkend="appref2">as <emphasis>separate</emphasis> words</link></para> <para><command> $* </command> All the <firstterm>positional parameters</firstterm>, <link linkend="appref">as a <emphasis>single</emphasis> word</link></para> <para><command>$$ </command> <link linkend="processidref">Process ID</link> of the script</para> <para><command>$# </command> <link linkend="clacountref">Number of arguments passed</link> to a <link linkend="functionref">function</link>, or to the script itself</para> <para><command>$0 </command> <link linkend="scrnameparam">Filename of the script</link></para> <para><command>$1 </command> <link linkend="posparamref1">First argument passed to script</link></para> <para><command>$9 </command> <link linkend="posparamref1">Ninth argument passed to script</link></para> <para><link linkend="specshvartab"><command>Table</command></link> of <firstterm>shell variables</firstterm></para> <!-- End Characters and symbols --> <para>* * * * * *</para> <para><command>-a </command> <link linkend="compoundand">Logical AND</link> compound comparison test</para> <para>Address database, <link linkend="ex30">script example</link></para> <para><firstterm>Advanced Bash Scripting Guide</firstterm>, <link linkend="where_tarball">where to download</link></para> <para><link linkend="aliasref">Alias</link> <itemizedlist> <listitem><para><link linkend="unaliasref">Removing an <firstterm>alias</firstterm></link>, using <firstterm>unalias</firstterm></para></listitem> </itemizedlist></para> <para><link linkend="agram2">Anagramming</link></para> <para><link linkend="lcons1"><firstterm>And</firstterm> list</link> <itemizedlist> <listitem><para> <link linkend="anddefault">To supply default command-line argument</link></para></listitem> </itemizedlist></para> <para><link linkend="logops1"><firstterm>And</firstterm> logical operator</link> <command>&&</command></para> <para><link linkend="anglebrac">Angle brackets</link>, <firstterm>escaped</firstterm>, <command>\< . . . \> </command> word boundary in a <link linkend="regexref">Regular Expression</link></para> <para><link linkend="anonheredoc0">Anonymous <firstterm>here document</firstterm></link>, using <command>:</command></para> <!-- ********************** --> <para><link linkend="faarchiving1">Archiving</link> <itemizedlist> <listitem><para><link linkend="rpmref">rpm</link></para></listitem> <listitem><para><link linkend="tarref">tar</link></para></listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="arithexpref">Arithmetic expansion</link> <itemizedlist> <listitem><para><link linkend="arxs"> <firstterm>exit status</firstterm> of</link></para></listitem> <listitem><para><link linkend="arithexpvar1"> variations of</link></para></listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="arops1">Arithmetic operators</link> <itemizedlist> <listitem><para><link linkend="arithopscomb"> combination operators</link>, <firstterm>C</firstterm>-style</para> <para><command> += </command> <command> -= </command> <command> *= </command> <command> /= </command> <command> %= </command> </para> <note><para><link linkend="pluseqstr">In certain contexts</link>, <command>+=</command> can also function as a <firstterm>string concatenation</firstterm> operator.</para></note> </listitem> </itemizedlist></para> <para><link linkend="arrayref">Arrays</link></para> <itemizedlist> <listitem><para><link linkend="assocarr">Associative arrays</link> </para> <para><link linkend="assocarrtst">more efficient</link> than conventional arrays</para> </listitem> <listitem><para><link linkend="arrayref">Bracket notation</link> </para></listitem> <listitem><para><link linkend="arrayappend0">Concatenating</link>, <firstterm>example script</firstterm></para></listitem> <listitem><para><link linkend="copyarray0">Copying</link> </para></listitem> <listitem><para><link linkend="arraydeclare">Declaring</link></para> <para><varname>declare -a array_name</varname></para></listitem> <listitem><para><link linkend="arrayindir">Embedded arrays</link></para></listitem> <listitem><para><link linkend="emptyarray0">Empty arrays, empty elements</link>, <firstterm>example script</firstterm></para></listitem> <listitem><para><link linkend="arrayindir">Indirect references</link> </para></listitem> <listitem> <para><link linkend="arrayinit0">Initialization</link></para> <para><varname>array=( element1 element2 ... elementN)</varname></para> <para><link linkend="arrayassign0"><firstterm>Example script</firstterm></link></para> <para>Using <link linkend="arrayinitcs">command substitution</link></para> </listitem> <listitem><para><link linkend="arrayinitcs">Loading a file</link> into an array</para></listitem> <listitem><para><link linkend="arraymultidim">Multidimensional</link>, simulating</para></listitem> <listitem><para><link linkend="arraynest">Nesting and embedding</link></para></listitem> <listitem><para><link linkend="arraynotation">Notation and usage</link></para></listitem> <listitem><para><link linkend="arraynumelements">Number of elements in</link></para> <para><varname>${#array_name[@]}</varname></para> <para><varname>${#array_name[*]}</varname></para></listitem> <listitem><para><link linkend="arraysyntax">Operations</link></para></listitem> <listitem><para><link linkend="passarray">Passing an <firstterm>array</firstterm></link> to a function</para></listitem> <listitem><para>As <link linkend="retarray"> <firstterm>return value</firstterm> from a function</link></para></listitem> <listitem><para>Special properties, <link linkend="arrayspecialprops">example script</link></para></listitem> <listitem><para>String operations, <link linkend="arraystringops">example script</link></para></listitem> <listitem><para><link linkend="arrayunset"><firstterm>unset</firstterm> deletes array elements</link></para></listitem> </itemizedlist> <para><link linkend="readarrow">Arrow keys</link>, detecting</para> <para>ASCII <itemizedlist> <listitem><para><link linkend="asciidef">Definition</link></para></listitem> <listitem><para><link linkend="asciitable"> Scripts for generating ASCII table</link></para></listitem> </itemizedlist> </para> <!-- ********************** --> <para><link linkend="awk">awk</link> field-oriented text processing language <itemizedlist> <listitem><para><link linkend="awkrandomref"> <varname>rand()</varname></link>, random function</para></listitem> <listitem><para><link linkend="awkstringmanip2">String manipulation</link></para></listitem> <listitem><para><link linkend="exportawk">Using <firstterm>export</firstterm></link> to pass a variable to an embedded <firstterm>awk</firstterm> script</para></listitem> </itemizedlist></para> <!-- ********************** --> <para>* * *</para> <para>Backlight, <link linkend="backlight">setting the brightness</link></para> <para><link linkend="backticksref">Backquotes</link>, used in <link linkend="backquotesref">command substitution</link></para> <para><link linkend="base0">Base conversion</link>, <firstterm>example script</firstterm></para> <!-- ********************** --> <para><link linkend="bashdef">Bash</link> <itemizedlist> <listitem><para><link linkend="bash3gotcha">Bad scripting practices</link></para></listitem> <listitem><para><link linkend="basicsrev0">Basics reviewed</link>, <firstterm>script example</firstterm></para></listitem> <listitem> <para><link linkend="clopts">Command-line options</link></para> <para><link linkend="optionstable"><command>Table</command></link></para> </listitem> <listitem><para> <link linkend="bashcompat">Features that classic <firstterm>Bourne</firstterm> shell lacks</link></para></listitem> <listitem> <para><link linkend="internalvariables">Internal variables</link></para> </listitem> <listitem><para><link linkend="bash2ref"> Version 2</link></para></listitem> <listitem><para><link linkend="bash3ref"> Version 3</link></para></listitem> <listitem> <para><link linkend="bash4ref">Version 4</link></para> <para><link linkend="bash41">Version 4.1</link></para> <para><link linkend="bash42">Version 4.2</link></para> </listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="sample-bashrc">.bashrc</link></para> <para><link linkend="bashsubshellref"><varname>$BASH_SUBSHELL</varname></link></para> <para><link linkend="basiccommands1">Basic commands</link>, external</para> <para><link linkend="dosbatch1">Batch files</link>, <firstterm>DOS</firstterm></para> <para><link linkend="batchprocref">Batch processing</link></para> <para><link linkend="bcref">bc</link>, calculator utility <itemizedlist> <listitem><para><link linkend="bcheredoc">In a <firstterm>here document</firstterm></link></para></listitem> <listitem><para><link linkend="bctemplate">Template</link> for calculating a script variable</para></listitem> </itemizedlist></para> <para><link linkend="biblio">Bibliography</link></para> <para><link linkend="bisonref">Bison</link> utility</para> <para><link linkend="bitwsops1">Bitwise operators</link> <itemizedlist> <listitem><para><link linkend="base64">Example script</link> </para></listitem> </itemizedlist> </para> <para><link linkend="blockdevref">Block devices</link> <itemizedlist> <listitem><para><link linkend="blockdevtest">testing for</link></para></listitem> </itemizedlist> </para> <para><link linkend="codeblockref">Blocks of code</link> <itemizedlist> <listitem> <para><link linkend="nododone">Iterating / looping</link></para> </listitem> <listitem> <para><link linkend="blockio">Redirection</link></para> <para><firstterm>Script example</firstterm>: <link linkend="blockio2">Redirecting output of a a code block</link></para></listitem> </itemizedlist></para> <para><link linkend="bfs">Bootable flash drives</link>, creating</para> <!-- ********************** --> <para><link linkend="braceexpref">Brace expansion</link> <itemizedlist> <listitem><para><link linkend="braceexpref33">Extended</link>, <replaceable>{a..z}</replaceable></para></listitem> <listitem><para><link linkend="braceexpref3">Parameterizing</link> </para></listitem> <listitem><para>With <link linkend="braceexpref4">increment and zero-padding</link> (new feature in Bash, <link linkend="bash4ref">version 4</link>)</para></listitem> </itemizedlist></para> <!-- ********************** --> <para>Brackets, <command>[ ]</command> <itemizedlist> <listitem><para><link linkend="brackarray"><firstterm>Array</firstterm> element</link></para></listitem> <listitem><para><link linkend="bracketsref">Enclose character set to match</link> in a <firstterm>Regular Expression</firstterm></para></listitem> <listitem><para><link linkend="bracktest"><firstterm>Test</firstterm> construct</link></para> </listitem> </itemizedlist></para> <para>Brackets, <firstterm>curly</firstterm>, <command>{}</command>, used in</para> <itemizedlist> <listitem><para><link linkend="codeblockref">Code block</link></para></listitem> <listitem><para><link linkend="curlybracketsref"> <firstterm>find</firstterm></link></para></listitem> <listitem><para><link linkend="escpcb"><firstterm>Extended Regular Expressions</firstterm></link></para></listitem> <listitem><para><link linkend="bracketnotation"><firstterm>Positional parameters</firstterm></link></para></listitem> <listitem><para><link linkend="xargscurlyref"><firstterm>xargs</firstterm></link></para></listitem> </itemizedlist> <!-- ********************** --> <para><link linkend="brkcont1">break</link> <firstterm>loop</firstterm> control command <itemizedlist> <listitem><para><link linkend="breakparam">Parameter</link> (optional)</para></listitem> </itemizedlist></para> <para><link linkend="builtinref">Builtins</link> in <firstterm>Bash</firstterm> <itemizedlist> <listitem><para><link linkend="bltinfrk">Do not fork a subprocess</link> </para></listitem> </itemizedlist></para> <para>* * *</para> <para><link linkend="caseesac1"><firstterm>case</firstterm> construct</link> <itemizedlist> <listitem><para><link linkend="casecl">Command-line parameters</link>, handling</para></listitem> <listitem><para><link linkend="csglob">Globbing</link>, filtering strings with</para></listitem> </itemizedlist></para> <para><link linkend="catref">cat</link>, con<firstterm>cat</firstterm>entate file(s) <itemizedlist> <listitem><para><link linkend="catabuse">Abuse of</link></para></listitem> <listitem><para><link linkend="catscriptref"><firstterm>cat</firstterm> scripts</link></para></listitem> <listitem><para><link linkend="catlesseff">Less efficient than redirecting <filename>stdin</filename></link></para></listitem> <listitem><para><link linkend="readpiperef">Piping the output of</link>, to a <link linkend="readref">read</link></para></listitem> <listitem><para><link linkend="catuses">Uses of</link></para></listitem> </itemizedlist></para> <para><link linkend="chardevref">Character devices</link> <itemizedlist> <listitem><para><link linkend="chardevtest">testing for</link></para></listitem> </itemizedlist> </para> <para><link linkend="checksumref">Checksum</link></para> <para><link linkend="childref">Child processes</link></para> <para><link linkend="nullref">Colon</link>, <command>: </command>, equivalent to the <link linkend="trueref">true</link> Bash builtin</para> <para><link linkend="colorizingref">Colorizing scripts</link> <itemizedlist> <listitem><para>Cycling through the background colors, <link linkend="showallc">example script</link></para></listitem> <listitem><para><link linkend="coloriztable"><command>Table</command></link> of color escape sequences</para></listitem> <listitem><para><link linkend="coloriztempl">Template</link>, colored text on colored background</para></listitem> </itemizedlist></para> <para><link linkend="commaop">Comma operator</link>, linking commands or operations</para> <para><link linkend="bash-options">Command-line options</link></para> <para><link linkend="cnfh">command_not_found_handle ()</link> <firstterm>builtin</firstterm> error-handling function (<link linkend="bash4ref">version 4+</link> of Bash)</para> <para><link linkend="commandsubref">Command substitution</link> <itemizedlist> <listitem> <para> <link linkend="csparens"><command>$( ... )</command></link>, preferred notation</para> </listitem> <listitem><para><link linkend="backquotesref"><firstterm>Backquotes</firstterm></link></para></listitem> <listitem><para><link linkend="cstoolset">Extending the <firstterm>Bash</firstterm> toolset</link></para></listitem> <listitem><para><link linkend="cssubsh">Invokes a <firstterm>subshell</firstterm></link></para></listitem> <listitem><para><link linkend="csnest">Nesting</link></para></listitem> <listitem><para><link linkend="cstrnl">Removes trailing newlines</link> </para></listitem> <listitem><para><link linkend="csvl">Setting variable from loop output</link> </para></listitem> <listitem><para><link linkend="csws">Word splitting</link></para></listitem> </itemizedlist></para> <para><link linkend="commenth">Comment headers</link>, special purpose</para> <para>Commenting out blocks of code <itemizedlist> <listitem><para>Using an <link linkend="cblock1"><firstterm>anonymous</firstterm> here document</link></para></listitem> <listitem><para>Using an <link linkend="comoutbl"> <firstterm>if-then</firstterm> construct</link></para></listitem> </itemizedlist></para> <para><link linkend="communications">Communications and hosts</link></para> <para><link linkend="ccomparison1">Compound comparison</link> operators</para> <!-- ************************************************************ --> <para><link linkend="facompression1">Compression utilities</link> <itemizedlist> <listitem><para><link linkend="bzipref">bzip2</link></para></listitem> <listitem><para><link linkend="compressref">compress</link></para></listitem> <listitem><para><link linkend="gzipref">gzip</link></para></listitem> <listitem><para><link linkend="zipref">zip</link></para></listitem> </itemizedlist></para> <!-- ************************************************************ --> <para><link linkend="brkcont1">continue</link> loop control command</para> <!-- ***************************************************************** --> <para><link linkend="controlcharref">Control characters</link> <itemizedlist> <listitem><para><link linkend="ctlcref">Control-C</link>, <firstterm>break</firstterm></para></listitem> <listitem><para><link linkend="ctldref">Control-D</link>, terminate / log out / erase</para></listitem> <listitem><para><link linkend="ctlgref">Control-G</link>, <userinput>BEL</userinput> (<firstterm>beep</firstterm>)</para></listitem> <listitem><para><link linkend="ctlhref">Control-H</link>, <firstterm>rubout</firstterm></para></listitem> <listitem><para><link linkend="ctljref">Control-J</link>, <firstterm>newline</firstterm></para></listitem> <listitem><para><link linkend="ctlmref">Control-M</link>, carriage return</para></listitem> </itemizedlist></para> <!-- ***************************************************************** --> <para><link linkend="coprocref">Coprocesses</link></para> <para><link linkend="cronref">cron</link>, scheduling <firstterm>daemon</firstterm></para> <para><link linkend="cstyle"><firstterm>C</firstterm>-style syntax </link>, for handling variables</para> <para><link linkend="cwsolver">Crossword puzzle solver</link></para> <para><link linkend="gronsfeld">Cryptography</link></para> <para>Curly brackets {} <itemizedlist> <listitem><para><link linkend="curlybracketsref">in <firstterm>find</firstterm> command</link></para></listitem> <listitem><para><link linkend="escpcb">in an <firstterm>Extended Regular Expression</firstterm></link></para></listitem> <listitem><para><link linkend="xargscurlyref">in <firstterm>xargs</firstterm></link></para></listitem> </itemizedlist></para> <para>* * *</para> <para><link linkend="daemonref">Daemons</link>, in UNIX-type OS</para> <para><link linkend="dateref">date</link></para> <para><link linkend="dcref">dc</link>, calculator utility</para> <para><link linkend="ddref">dd</link>, <firstterm>data duplicator</firstterm> command <itemizedlist> <listitem><para><link linkend="ddconversions">Conversions</link></para></listitem> <listitem><para><link linkend="ddcopy">Copying raw data</link> to/from devices</para></listitem> <listitem><para><link linkend="ddfdel">File deletion</link>, <firstterm>secure</firstterm></para></listitem> <listitem><para><link linkend="ddkeystrokes">Keystrokes</link>, capturing</para></listitem> <listitem><para><link linkend="ddoptions">Options</link></para></listitem> <listitem><para><link linkend="ddrandom">Random access</link> on a data stream</para></listitem> <listitem><para><emphasis>Raspberry Pi</emphasis>, <link linkend="rpsdcard01">script for preparing a bootable SD card</link> </para></listitem> <listitem><para><link linkend="ddswap">Swapfiles</link>, initializing</para></listitem> <listitem><para><link linkend="ddlink">Thread on <firstterm>www.linuxquestions.org</firstterm></link></para></listitem> </itemizedlist></para> <para><link linkend="debugging">Debugging scripts</link> <itemizedlist> <listitem><para><link linkend="debugtools">Tools</link></para></listitem> <listitem><para><link linkend="debugtrap"><firstterm>Trapping</firstterm> at exit</link></para></listitem> <listitem><para><link linkend="trapref1"><firstterm>Trapping</firstterm> signals</link></para></listitem> </itemizedlist></para> <para><link linkend="numconstants">Decimal number</link>, Bash interprets numbers as</para> <para><link linkend="declare1ref">declare</link> builtin</para> <itemizedlist> <listitem> <para><link linkend="declareopsref1">options</link></para> <para><link linkend="declarecasemod">case-modification</link> options (<link linkend="bash4ref">version 4+</link> of Bash) </para></listitem> </itemizedlist> <para><link linkend="defparam">Default parameters</link></para> <!-- ******************************************************************* --> <para><link linkend="devprocref"><filename class="directory">/dev</filename></link> directory <itemizedlist> <listitem><para><link linkend="devnullref"><filename>/dev/null</filename></link> pseudo-device file</para></listitem> <listitem><para><link linkend="urandomref"><filename>/dev/urandom</filename></link> pseudo-device file, generating pseudorandom numbers with</para></listitem> <listitem><para><link linkend="zerosref1"><filename>/dev/zero</filename></link>, pseudo-device file</para></listitem> </itemizedlist></para> <!-- ******************************************************************* --> <para><link linkend="devfileref">Device file</link></para> <para><link linkend="dialogref"><firstterm>dialog</firstterm></link>, utility for generating <firstterm>dialog</firstterm> boxes in a script</para> <para><link linkend="dirstackref"><varname>$DIRSTACK</varname></link> <firstterm>directory stack</firstterm></para> <para><link linkend="disabledcommref">Disabled commands</link>, in <firstterm>restricted shells</firstterm></para> <para><link linkend="doinref">do</link> keyword, begins execution of commands within a <link linkend="loopref00">loop</link></para> <para><link linkend="doinref">done</link> keyword, terminates a loop</para> <para><link linkend="dosbatch1"><firstterm>DOS</firstterm> batch files</link>, converting to shell scripts</para> <para><link linkend="dosunixequiv"><firstterm>DOS</firstterm> commands</link>, UNIX equivalents of (<command>table</command>)</para> <para><link linkend="dotfilesref"><firstterm>dot files</firstterm></link>, <quote>hidden</quote> setup and configuration files</para> <para><link linkend="dblbrackets">Double brackets</link> <command>[[ ... ]]</command> <link linkend="ifthen">test</link> construct</para> <itemizedlist> <listitem><para>and <link linkend="dblbraev">evaluation of <firstterm>octal/hex</firstterm> constants</link></para></listitem> </itemizedlist> <para><link linkend="dblparensref">Double parentheses</link> <command>(( ... )) </command> arithmetic expansion/evaluation construct</para> <para><link linkend="dblquo">Double quotes</link> <command>" ... "</command> <firstterm>weak</firstterm> quoting <itemizedlist> <listitem><para><link linkend="quotingbsl"><firstterm>Double-quoting</firstterm> the <firstterm>backslash</firstterm> (<command>\</command>) character</link></para></listitem> </itemizedlist> </para> <para><link linkend="doublespace">Double-spacing a text file</link>, using <link linkend="sedref">sed</link></para> <para>* * *</para> <para><command>-e </command> <link linkend="rtif">File exists</link> test</para> <para><link linkend="echoref">echo</link> <itemizedlist> <listitem><para><link linkend="echogrepref">Feeding commands down a <firstterm>pipe</firstterm></link></para></listitem> <listitem><para><link linkend="echocs">Setting a variable</link> using <link linkend="commandsubref">command substitution</link></para></listitem> <listitem><para><link linkend="binecho"><filename>/bin/echo</filename></link>, external <firstterm>echo</firstterm> command</para></listitem> </itemizedlist></para> <para><link linkend="elifref1">elif</link>, Contraction of <firstterm>else</firstterm> and <link linkend="ifthen">if</link></para> <para><link linkend="elseref">else</link></para> <para>Encrypting files, using <link linkend="opensslref">openssl</link></para> <para><link linkend="caseesac1">esac</link>, keyword terminating <firstterm>case</firstterm> construct</para> <para><link linkend="envref"><firstterm>Environmental</firstterm> variables</link></para> <para><link linkend="equalref"> -eq </link>, <firstterm>is-equal-to</firstterm> <link linkend="icomparison1">integer comparison</link> test</para> <para><link linkend="primes0">Eratosthenes, Sieve of</link>, algorithm for generating prime numbers</para> <para><link linkend="spm">Escaped characters</link>, special meanings of <itemizedlist> <listitem><para>Within <link linkend="strq">$' ... '</link> string expansion</para></listitem> <listitem><para><link linkend="unicoderef2">Used with <firstterm>Unicode</firstterm> characters</link></para></listitem> </itemizedlist> </para> <para><link linkend="fstabref"><filename>/etc/fstab</filename></link> (filesystem mount) file</para> <para><link linkend="datafilesref1"><filename>/etc/passwd</filename></link> (user account) file</para> <para><link linkend="euidref"><varname>$EUID</varname></link>, <firstterm>Effective user ID</firstterm></para> <para><link linkend="evalref">eval</link>, Combine and <firstterm>evaluate</firstterm> expression(s), with variable expansion <itemizedlist> <listitem><para><link linkend="evaleff">Effects of</link>, <firstterm>Example script</firstterm></para></listitem> <listitem><para><link linkend="evalforced">Forces <firstterm>reevaluation</firstterm></link> of arguments</para></listitem> <listitem><para>And <link linkend="evalindref">indirect references</link></para></listitem> <listitem><para><link linkend="evalrisk">Risk of using</link></para></listitem> <listitem><para><link linkend="samorse">Using <firstterm>eval</firstterm> to convert <firstterm>array</firstterm> elements into a command list</link></para></listitem> <listitem><para><link linkend="arrchoice0">Using <firstterm>eval</firstterm> to select among variables</link></para></listitem> </itemizedlist></para> <para><link linkend="dblbraev">Evaluation of <firstterm>octal/hex</firstterm> constants within [[ ... ]]</link></para> <para><link linkend="usingexecref">exec</link> command, using in <link linkend="ioredirref">redirection</link></para> <para><link linkend="exercises">Exercises</link></para> <!-- ********************** --> <para>Exit and Exit status <itemizedlist> <listitem><para><link linkend="exitcommandref">exit</link> command</para></listitem> <listitem> <para><link linkend="exitstatusref">Exit status</link> (<firstterm>exit code</firstterm>, <firstterm>return</firstterm> status of a command)</para> <para><link linkend="exitcodesref"><command>Table</command></link>, <firstterm>Exit codes</firstterm> with special meanings</para> <para> <link linkend="gotchaexitvalanamalies">Anomalous</link> </para> <para><link linkend="excoor">Out of range</link></para> <para><link linkend="pipeex"><firstterm>Pipe</firstterm></link> exit status</para> <para><link linkend="exitreturn1"> Specified by a <firstterm>function return</firstterm></link></para> <para><link linkend="exitsuccess"><firstterm>Successful</firstterm></link>, <command>0</command></para> <para><link linkend="sysexitsref"><filename>/usr/include/sysexits.h</filename></link>, system file listing C/C++ standard exit codes</para> </listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="exportref2">Export</link>, to make available variables to <link linkend="childref">child processes</link> <itemizedlist> <listitem><para><link linkend="exportawk">Passing a variable to an embedded <firstterm>awk</firstterm> script</link></para></listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="exprref">expr</link>, <firstterm>Expression</firstterm> evaluator <itemizedlist> <listitem><para><link linkend="expextrsub">Substring extraction</link></para></listitem> <listitem><para><link linkend="substringindex2">Substring <firstterm>index</firstterm> (numerical position in string)</link></para></listitem> <listitem><para><link linkend="exprmatch">Substring matching</link></para></listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="extregex">Extended <firstterm>Regular Expressions</firstterm></link> <itemizedlist> <listitem><para><command>? </command> (question mark) <link linkend="quexregex">Match zero / one characters</link> </para></listitem> <listitem><para><command>( ... ) </command> <link linkend="parengrps">Group of expressions</link></para></listitem> <listitem><para><command>\{ N \}</command> <link linkend="escpcb"><quote>Curly</quote> brackets</link>, <firstterm>escaped</firstterm>, number of character sets to match</para></listitem> <listitem><para><command>+ </command> <link linkend="plusref"><firstterm>Character match</firstterm></link></para></listitem> </itemizedlist></para> <para>* * *</para> <para><link linkend="factorref">factor</link>, decomposes an integer into its prime factors <itemizedlist> <listitem><para>Application: <link linkend="primes2">Generating prime numbers</link></para></listitem> </itemizedlist></para> <para><link linkend="falseref">false</link>, returns <firstterm>unsuccessful</firstterm> (1) <link linkend="exitstatusref">exit status</link></para> <para><link linkend="fieldref">Field</link>, a group of characters that comprises an item of data</para> <para><link linkend="filearchiv">Files / Archiving</link></para> <para><link linkend="fdref">File descriptors</link></para> <itemizedlist> <listitem><para><link linkend="cfd">Closing</link></para> <para><command>n<&-</command> Close input file descriptor <firstterm>n</firstterm></para> <para><command>0<&-</command>, <command><&-</command> Close <filename>stdin</filename></para> <para><command>n>&-</command> Close output file descriptor <firstterm>n</firstterm></para> <para><command>1>&-</command>, <command>>&-</command> Close <filename>stdout</filename></para> </listitem> <listitem><para><link linkend="fdref1">File handles in <firstterm>C</firstterm></link>, similarity to</para></listitem> </itemizedlist> <para><link linkend="opensslref">File encryption</link></para> <para><link linkend="findref">find</link> <itemizedlist> <listitem><para><command>{} </command> <link linkend="curlybracketsref">Curly brackets</link></para></listitem> <listitem><para><command>\; </command> <link linkend="findref0"><firstterm>Escaped</firstterm> semicolon</link></para></listitem> </itemizedlist></para> <para><link linkend="filterdef">Filter</link> <itemizedlist> <listitem><para><link linkend="filterdash">Using <token>-</token> with file-processing utility as a filter</link></para></listitem> <listitem><para><link linkend="filteroutp"> Feeding output of a filter back to <emphasis>same</emphasis> filter</link></para></listitem> </itemizedlist></para> <para><link linkend="nofloatingpoint">Floating point numbers</link>, Bash does not recognize</para> <para><link linkend="foldref">fold</link>, a filter to wrap lines of text</para> <para><link linkend="forkref">Forking</link> a <firstterm>child</firstterm> process</para> <para><link linkend="forloopref1"><firstterm>for</firstterm> loops</link></para> <para><link linkend="functionref">Functions</link></para> <itemizedlist> <listitem><para><link linkend="passedargs">Arguments passed</link> referred to by position</para></listitem> <listitem><para><link linkend="captureretval">Capturing the return value</link> of a function using <link linkend="echoref">echo</link></para></listitem> <listitem><para><link linkend="colonfname"><firstterm>Colon</firstterm></link> as function name</para></listitem> <listitem><para><link linkend="functdefmust">Definition must precede</link> first call to function</para></listitem> <listitem><para><link linkend="exitreturn1">Exit status</link></para></listitem> <listitem> <para><link linkend="localref1">Local variables</link></para> <para>and <link linkend="locvarrecur">recursion</link></para></listitem> <listitem><para><link linkend="passarray">Passing an <firstterm>array</firstterm></link> to a function</para></listitem> <listitem><para><link linkend="funcpointers">Passing pointers</link> to a function</para></listitem> <listitem><para><link linkend="passedargs">Positional parameters</link></para></listitem> <listitem><para><link linkend="recursionref0">Recursion</link></para></listitem> <listitem><para><link linkend="redstdinfunc1">Redirecting <filename>stdin</filename></link> of a function</para></listitem> <listitem> <para><link linkend="returnref">return</link></para> <para>Multiple <firstterm>return values</firstterm> from a function, <link linkend="stddev">example script</link></para> <para><link linkend="retarray"> Returning an <firstterm>array</firstterm></link> from a function</para> <para><link linkend="rvt"><firstterm>Return</firstterm> range limits</link>, workarounds</para> </listitem> <listitem><para><link linkend="fshiftref"><firstterm>Shift</firstterm> arguments passed</link> to a function</para></listitem> <listitem><para><link linkend="fstrangeref">Unusual function names</link></para></listitem> </itemizedlist> <para>* * *</para> <para>Games and amusements <itemizedlist> <listitem><para><link linkend="agram">Anagrams</link></para></listitem> <listitem><para><link linkend="agram2">Anagrams</link>, again</para></listitem> <listitem><para><link linkend="bingo">Bingo Number Generator</link></para></listitem> <listitem><para><link linkend="cwsolver">Crossword puzzle solver</link></para></listitem> <listitem><para><link linkend="cryptoquote">Crypto-Quotes</link></para></listitem> <listitem><para><link linkend="cards">Dealing a deck of cards</link></para></listitem> <listitem><para><link linkend="fifteen">Fifteen Puzzle</link></para></listitem> <listitem><para><link linkend="horserace">Horse race</link></para></listitem> <listitem><para><link linkend="ktour">Knight's Tour</link></para></listitem> <listitem><para><link linkend="lifeslow"><quote>Life</quote> game</link></para></listitem> <listitem><para><link linkend="msquare">Magic Squares</link></para></listitem> <listitem><para><link linkend="musicscr">Music-playing script</link></para></listitem> <listitem><para><link linkend="nim">Nim</link></para></listitem> <listitem><para><link linkend="brownian">Pachinko</link></para></listitem> <listitem><para><link linkend="qky">Perquackey</link></para></listitem> <listitem><para><link linkend="petals">Petals Around the Rose</link></para></listitem> <listitem><para><link linkend="bashpodder">Podcasting</link></para></listitem> <listitem><para><link linkend="poem">Poem</link></para></listitem> <listitem><para><link linkend="speech00">Speech generation</link></para></listitem> <listitem><para><link linkend="hanoi">Towers of Hanoi</link></para> <para><link linkend="hanoi2">Graphic version</link></para> <para><link linkend="hanoi2a">Alternate graphic version</link></para> </listitem> </itemizedlist></para> <para><link linkend="getopty">getopt</link>, <firstterm>external</firstterm> command for parsing script <firstterm>command-line</firstterm> arguments <itemizedlist> <listitem><para><link linkend="getoptsimple1">Emulated in a script</link></para></listitem> </itemizedlist></para> <para><link linkend="getoptsx">getopts</link>, Bash <firstterm>builtin</firstterm> for parsing script <firstterm>command-line</firstterm> arguments <itemizedlist> <listitem><para><link linkend="getoptsopt"><varname>$OPTIND</varname> / <varname>$OPTARG</varname></link></para></listitem> </itemizedlist></para> <para><link linkend="scoperef">Global</link> variable</para> <para><link linkend="globbingref2">Globbing</link>, filename expansion <itemizedlist> <listitem><para><link linkend="handlingfnames">Handling filenames correctly</link></para></listitem> <listitem><para><link linkend="asteriskref"><firstterm>Wild cards</firstterm></link></para></listitem> <listitem><para><link linkend="wdotfilewc">Will not match <filename>dot files</filename></link></para></listitem> </itemizedlist></para> <para><link linkend="goldenratio">Golden Ratio</link> (<firstterm>Phi</firstterm>)</para> <para><link linkend="ge0ref"> -ge </link>, <firstterm>greater-than or equal</firstterm> <link linkend="icomparison1">integer comparison</link> test</para> <para><link linkend="gt0ref"> -gt </link>, <firstterm>greater-than</firstterm> <link linkend="icomparison1">integer comparison</link> test</para> <para><link linkend="groffref"><firstterm>groff</firstterm></link>, text markup and formatting language</para> <para><link linkend="gronsfeld">Gronsfeld cipher</link></para> <para><link linkend="groupsref"><varname>$GROUPS</varname></link>, <firstterm>Groups</firstterm> user belongs to</para> <para><link linkend="gzipref">gzip</link>, compression utility</para> <para>* * *</para> <para><link linkend="hashref">Hashing</link>, creating lookup keys in a table <itemizedlist> <listitem><para><link linkend="hashex2_0"><firstterm>Example script</firstterm></link></para></listitem> </itemizedlist></para> <para><link linkend="headref">head</link>, <firstterm>echo</firstterm> to <filename>stdout</filename> lines at the beginning of a text file</para> <para><link linkend="helpref">help</link>, gives usage summary of a Bash <link linkend="builtinref">builtin</link></para> <!-- ********************** --> <para><link linkend="heredocref"><firstterm>Here</firstterm> documents</link> <itemizedlist> <listitem> <para><link linkend="anonheredoc0"><firstterm>Anonymous</firstterm> here documents</link>, using <command>:</command></para> <para><link linkend="cblock1">Commenting out</link> blocks of code</para> <para><link linkend="hselfdoc">Self-documenting</link> scripts</para> </listitem> <listitem><para><link linkend="bcheredoc"><firstterm>bc</firstterm> in a <firstterm>here document</firstterm></link></para></listitem> <listitem><para><link linkend="catscriptref"><firstterm>cat</firstterm> scripts</link></para></listitem> <listitem><para><link linkend="herecs">Command substitution</link></para></listitem> <listitem><para><link linkend="exscriptref"><firstterm>ex</firstterm> scripts</link></para></listitem> <listitem><para><link linkend="herefunc"><firstterm>Function</firstterm></link>, supplying input to</para></listitem> <listitem> <para><link linkend="herestringsref"><firstterm>Here</firstterm> strings</link></para> <para>Calculating the <link linkend="goldenratio">Golden Ratio</link></para> <para><link linkend="hspre">Prepending text</link></para> <para><link linkend="hsloop">As the <filename>stdin</filename> of a <firstterm>loop</firstterm></link></para> <para><link linkend="hsread">Using <firstterm>read</firstterm></link></para> </listitem> <listitem><para><link linkend="limitstringref"><firstterm>Limit</firstterm> string</link></para> <para><link linkend="exclls"><token>!</token> as a <firstterm>limit string</firstterm></link></para> <para><link linkend="indentedls">Closing <firstterm>limit string</firstterm></link> may not be indented</para> <para><link linkend="limitstrdash">Dash option</link> to limit string, <option><<-LimitString</option> </para></listitem> <listitem><para><link linkend="herelit">Literal text output</link>, for generating program code</para></listitem> <listitem> <para><link linkend="hereparamsub">Parameter substitution</link></para> <para><link linkend="hereesc">Disabling</link> <firstterm>parameter substitution</firstterm></para> </listitem> <listitem><para><link linkend="herepassp">Passing parameters</link></para></listitem> <listitem><para><link linkend="heretemp">Temporary files</link></para></listitem> <listitem><para><link linkend="vihere">Using <firstterm>vi</firstterm> non-interactively</link></para></listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="histcommands">History commands</link></para> <para><link linkend="homedirref"><varname>$HOME</varname></link>, <firstterm>user's home directory</firstterm></para> <para><link linkend="homework">Homework assignment solver</link></para> <para><link linkend="hostnameref"><varname>$HOSTNAME</varname></link>, system <firstterm>host name</firstterm></para> <para>* * *</para> <!-- ********************** --> <para><link linkend="rcsref"><varname>$Id</varname> parameter</link>, in <firstterm>rcs</firstterm> (Revision Control System)</para> <para><link linkend="ifthen">if [ condition ]; then ...</link> <firstterm>test</firstterm> construct <itemizedlist> <listitem> <para><link linkend="ifgrepref">if-grep</link>, <firstterm>if</firstterm> and <link linkend="grepref">grep</link> in combination</para> <para><link linkend="ifgrepfix">Fixup</link> for <firstterm>if-grep</firstterm> test</para> </listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="ifsref"><varname>$IFS</varname></link>, <firstterm>Internal field separator</firstterm> variable <itemizedlist> <listitem><para><link linkend="ifsws">Defaults to <firstterm>whitespace</firstterm></link></para></listitem> </itemizedlist></para> <para><link linkend="icomparison1">Integer comparison operators</link></para> <para><link linkend="doinref">in</link>, <firstterm>keyword</firstterm> preceding <varname>[list]</varname> in a <firstterm>for</firstterm> loop</para> <para><link linkend="inittabref">Initialization table</link>, <filename>/etc/inittab</filename></para> <para><link linkend="codeblockref">Inline group</link>, i.e., code block</para> <para><link linkend="iitest">Interactive script</link>, test for</para> <para><link linkend="ioredirref">I/O redirection</link></para> <!-- ********************** --> <para><link linkend="ivrref">Indirect referencing of variables</link> <itemizedlist> <listitem><para><link linkend="ivr2">New notation</link>, introduced in <link linkend="bash2ref">version 2</link> of Bash (<link linkend="varrefnew"> example script</link>)</para></listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="iptablesref">iptables</link>, packet filtering and firewall utility <itemizedlist> <listitem><para><link linkend="iptables01">Usage example</link></para></listitem> <listitem><para><link linkend="iptables02">Example script</link></para></listitem> </itemizedlist></para> <para><link linkend="iterationref">Iteration</link></para> <para>* * *</para> <para><link linkend="jobidtable0">Job IDs</link>, table</para> <para><link linkend="jotref">jot</link>, Emit a sequence of integers. Equivalent to <link linkend="seqref">seq</link>. <itemizedlist> <listitem><para><link linkend="jotrandom">Random sequence generation</link></para></listitem> </itemizedlist></para> <para><link linkend="jabh">Just another Bash hacker!</link></para> <para>* * *</para> <para><link linkend="keywordref">Keywords</link> <itemizedlist> <listitem><para><link linkend="missingkeyword">error</link>, if missing</para></listitem> </itemizedlist></para> <para><link linkend="killref">kill</link>, terminate a process by <link linkend="processiddef">process ID</link> <itemizedlist> <listitem><para><link linkend="zombieref">Options</link> (<option>-l</option>, <option>-9</option>)</para></listitem> </itemizedlist></para> <para><link linkend="killallref">killall</link>, terminate a process <emphasis>by name</emphasis></para> <para><link linkend="killall2ref"><firstterm>killall script</firstterm></link> in <filename class="directory">/etc/rc.d/init.d</filename></para> <para>* * *</para> <para><link linkend="lastpiperef">lastpipe</link> shell option</para> <para><link linkend="le0ref"> -le </link>, <firstterm>less-than or equal</firstterm> <link linkend="icomparison1">integer comparison</link> test</para> <para><link linkend="letref">let</link>, setting and carrying out arithmetic operations on variables <itemizedlist> <listitem><para><firstterm>C-style</firstterm> <link linkend="ex46">increment and decrement operators</link></para></listitem> </itemizedlist></para> <para><link linkend="limitstringref">Limit string</link>, in a <link linkend="heredocref">here document</link></para> <para><link linkend="linenoref"><varname>$LINENO</varname></link>, variable indicating the <firstterm>line number</firstterm> where it appears in a script</para> <para><link linkend="linkref">Link</link>, file (using <firstterm>ln</firstterm> command) <itemizedlist> <listitem><para><link linkend="linkminvok">Invoking script with multiple names</link>, using <firstterm>ln</firstterm></para></listitem> <listitem><para><link linkend="symlinkref"><firstterm>symbolic</firstterm> links</link>, <firstterm>ln -s </firstterm></para></listitem> </itemizedlist></para> <para><link linkend="listconsref">List constructs</link> <itemizedlist> <listitem><para><link linkend="lcons1"><firstterm>And</firstterm> list</link></para></listitem> <listitem><para><link linkend="orlistref"><firstterm>Or</firstterm> list</link></para></listitem> </itemizedlist></para> <para><link linkend="localref1">Local variables</link> <itemizedlist> <listitem><para>and <link linkend="locvarrecur">recursion</link></para></listitem> </itemizedlist></para> <para><link linkend="localization">Localization</link></para> <para><link linkend="logops1">Logical operators</link> (<varname>&&</varname>, <varname>||</varname>, etc.)</para> <para><link linkend="logoutfileref1">Logout file</link>, the <filename>~/.bash_logout</filename> file</para> <para><link linkend="isomountref0">Loopback device</link>, mounting a file on a <link linkend="blockdevref">block device</link></para> <para><link linkend="loops1">Loops</link> <itemizedlist> <listitem><para><link linkend="brkcont1">break</link> loop control command</para></listitem> <listitem><para><link linkend="brkcont1">continue</link> loop control command</para></listitem> <listitem> <para><firstterm>C</firstterm>-style loop within <link linkend="dblparensref">double parentheses</link></para> <para><link linkend="loopcstyle"><firstterm>for</firstterm> loop</link></para> <para><link linkend="wloopcstyle"><firstterm>while</firstterm> loop</link></para> </listitem> <listitem><para><link linkend="doinref">do</link> (keyword), begins execution of commands within a loop</para></listitem> <listitem><para><link linkend="doinref">done</link> (keyword), terminates a loop</para></listitem> <listitem> <para><link linkend="forloopref1"><firstterm>for</firstterm> loops</link></para> <para><replaceable>for</replaceable> <varname>arg</varname> <replaceable>in</replaceable> <varname>[list]</varname>; <replaceable>do</replaceable></para> <para><link linkend="loopcs"><firstterm>Command substitution</firstterm> to generate <varname>[list]</varname></link></para> <para><link linkend="liglob">Filename expansion in <varname>[list]</varname></link></para> <para><link linkend="multparaml">Multiple parameters in each <varname>[list]</varname> element</link></para> <para><link linkend="omitlist">Omitting <varname>[list]</varname></link>, defaults to <link linkend="posparamref">positional parameters</link></para> <para><link linkend="paramli">Parameterizing <varname>[list]</varname></link></para> <para><link linkend="loopredir">Redirection</link></para> </listitem> <listitem><para><link linkend="doinref">in</link>, (keyword) preceding [list] in a <firstterm>for</firstterm> loop</para></listitem> <listitem><para><link linkend="nestedloops">Nested loops</link></para></listitem> <listitem><para><link linkend="bgloop0">Running a loop <emphasis>in the background</emphasis></link>, <firstterm>script example</firstterm></para></listitem> <listitem> <para>Semicolon required, when <firstterm>do</firstterm> is on first line of loop</para> <para><link linkend="needsemicolon"><firstterm>for</firstterm> loop</link></para> <para><link linkend="whileneedsemi"><firstterm>while</firstterm> loop</link></para> </listitem> <listitem><para><link linkend="untilloopref">until</link> loop</para> <para><replaceable>until [ condition-is-true ]; do</replaceable> </para></listitem> <listitem><para><link linkend="whileloopref">while</link> loop</para> <para><replaceable>while [ condition ]; do</replaceable></para> <para><link linkend="whilefunc">Function call</link> inside test brackets</para> <para><link linkend="whmultcond">Multiple conditions</link></para> <para><link linkend="whilenobrackets">Omitting <firstterm>test brackets</firstterm></link></para> <para><link linkend="whredir">Redirection</link></para> <para><link linkend="whilereadref2"> <firstterm>while read</firstterm></link> construct</para> </listitem> <listitem><para><link linkend="chooseloop">Which type of loop to use</link></para></listitem> </itemizedlist></para> <para>Loopback devices <itemizedlist> <listitem><para><link linkend="loopbackref">In <filename class="directory">/dev</filename> directory</link></para></listitem> <listitem><para><link linkend="isomountref0">Mounting an ISO image</link></para></listitem> </itemizedlist></para> <para><link linkend="lt0ref"> -lt </link>, <firstterm>less-than</firstterm> <link linkend="icomparison1">integer comparison</link> test</para> <para>* * *</para> <para><link linkend="m4ref">m4</link>, macro processing language</para> <para><link linkend="machtyperef"><varname>$MACHTYPE</varname></link>, <firstterm>Machine type</firstterm></para> <para><link linkend="magnumref">Magic number</link>, marker at the head of a file indicating the file type</para> <para><link linkend="makefileref"><filename>Makefile</filename></link>, file containing the list of dependencies used by <link linkend="makeref">make</link> command</para> <para><link linkend="manref">man</link>, <firstterm>manual page</firstterm> (lookup) <itemizedlist> <listitem><para><link linkend="maned"><firstterm>Man page</firstterm> editor</link> (script)</para></listitem> </itemizedlist> </para> <para><link linkend="mapfileref">mapfile</link> builtin, loads an array with a text file</para> <para><link linkend="mathc">Math commands</link></para> <para><link linkend="metameaningref">Meta-meaning</link></para> <para><link linkend="samorse">Morse code training</link> script</para> <para><link linkend="moduloref">Modulo</link>, arithmetic <firstterm>remainder</firstterm> operator <itemizedlist> <listitem><para>Application: <link linkend="primes1">Generating prime numbers</link></para></listitem> </itemizedlist></para> <para><link linkend="monthlypmt0">Mortgage calculations</link>, <firstterm>example script</firstterm></para> <para>* * *</para> <para><command>-n </command> <link linkend="stringnotnull">String not <firstterm>null</firstterm></link> test</para> <para><link linkend="namedpiperef">Named pipe</link>, a temporary FIFO buffer <itemizedlist> <listitem><para><link linkend="zfifo"><firstterm>Example script</firstterm></link></para></listitem> </itemizedlist></para> <para><link linkend="ncref">nc</link>, <firstterm>netcat</firstterm>, a network toolkit for TCP and UDP ports</para> <para><link linkend="nequalref">-ne</link>, <firstterm>not-equal-to</firstterm> <link linkend="icomparison1">integer comparison</link> test</para> <para><link linkend="notref">Negation operator</link>, <command>!</command>, reverses the sense of a <link linkend="ifthen">test</link></para> <para><link linkend="netstatref">netstat</link>, Network statistics</para> <para><link linkend="networkprogramming">Network programming</link></para> <para><link linkend="nlref">nl</link>, a filter to number lines of text</para> <para><link linkend="noclobberref"><firstterm>Noclobber</firstterm></link>, <option>-C</option> option to Bash to prevent overwriting of files</para> <para><link linkend="logops1"><firstterm>NOT</firstterm> logical operator</link>, <command>!</command></para> <para><link linkend="nullvar"><firstterm>null</firstterm> variable assignment</link>, avoiding</para> <para>* * *</para> <para><command>-o </command> <link linkend="compoundor">Logical OR</link> compound comparison test</para> <para>Obfuscation <itemizedlist> <listitem><para><link linkend="colonfname"><firstterm>Colon</firstterm></link> as function name</para></listitem> <listitem><para><link linkend="homework">Homework assignment</link></para></listitem> <listitem><para><link linkend="jabh">Just another Bash hacker!</link></para> </listitem> </itemizedlist> </para> <para><link linkend="octalref">octal</link>, base-8 numbers</para> <para><link linkend="odref">od</link>, <firstterm>octal dump</firstterm></para> <para><link linkend="oldpwd"><varname>$OLDPWD</varname></link> Previous working directory</para> <para><link linkend="opensslref">openssl</link> encryption utility</para> <para>Operator <itemizedlist> <listitem><para><link linkend="operatordef">Definition of</link></para></listitem> <listitem><para><link linkend="opprecedence1">Precedence</link></para></listitem> </itemizedlist></para> <para><link linkend="optionsref">Options</link>, passed to shell or script on command line or by <link linkend="setref">set</link> command</para> <para><link linkend="orlistref"><firstterm>Or</firstterm> list</link></para> <para><link linkend="orref"><firstterm>Or</firstterm> logical operator</link>, <command>||</command></para> <para>* * *</para> <!-- ********************** --> <para><link linkend="paramsubref">Parameter substitution</link> <itemizedlist> <listitem> <para><firstterm>${parameter+alt_value}</firstterm></para> <para><firstterm>${parameter:+alt_value}</firstterm></para> <para><link linkend="paramaltv">Alternate value</link> of parameter, if set</para> </listitem> <listitem> <para><firstterm>${parameter-default}</firstterm></para> <para><firstterm>${parameter:-default}</firstterm></para> <para><firstterm>${parameter=default}</firstterm></para> <para><firstterm>${parameter:=default}</firstterm></para> <para><link linkend="defparam1">Default parameters</link></para></listitem> <listitem> <para><firstterm>${!varprefix*}</firstterm></para> <para><firstterm>${!varprefix@}</firstterm></para> <para><link linkend="varprefixm">Parameter <emphasis>name</emphasis> match</link></para> </listitem> <listitem> <para><firstterm>${parameter?err_msg}</firstterm></para> <para><link linkend="qerrmsg">Parameter-unset message</link></para> </listitem> <listitem> <para><firstterm>${parameter}</firstterm></para> <para><link linkend="pssub1">Value of <firstterm>parameter</firstterm></link></para> </listitem> <listitem><para><link linkend="casemodparamsub"> <firstterm>Case modification</firstterm></link> (<link linkend="bash4ref">version 4+</link> of Bash).</para></listitem> <listitem><para><link linkend="pw0"><firstterm>Script example</firstterm></link></para></listitem> <listitem><para><link linkend="parsubtab"><command>Table</command></link> of <firstterm>parameter substitution</firstterm></para></listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="parchildprobref">Parent / child process problem</link>, a <firstterm>child</firstterm> process cannot <link linkend="exportref">export</link> variables to a <link linkend="forkref">parent process</link></para> <!-- ********************** --> <para>Parentheses <itemizedlist> <listitem><para><link linkend="parensref">Command group</link></para></listitem> <listitem><para><link linkend="parengrps">Enclose group</link> of <firstterm>Extended Regular Expressions</firstterm></para></listitem> <listitem><para><link linkend="dblparensref">Double parentheses</link>, in arithmetic expansion</para></listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="pathref"><varname>$PATH</varname></link>, the <firstterm>path</firstterm> (location of system binaries) <itemizedlist> <listitem><para>Appending directories to <varname>$PATH</varname> <link linkend="pathappend">using the <varname>+=</varname> operator</link>.</para></listitem> </itemizedlist></para> <para><link linkend="pathnameref">Pathname</link>, a <filename>filename</filename> that incorporates the complete <firstterm>path</firstterm> of a given file. <itemizedlist> <listitem><para><link linkend="pathmanagement">Parsing <firstterm>pathnames</firstterm></link></para></listitem> </itemizedlist></para> <para><link linkend="perlref">Perl</link>, programming language <itemizedlist> <listitem><para><link linkend="bashandperl0">Combined</link> in the same file with a <firstterm>Bash</firstterm> script</para></listitem> <listitem><para><link linkend="perlemb">Embedded</link> in a <firstterm>Bash</firstterm> script</para></listitem> </itemizedlist></para> <para><link linkend="qky"><emphasis>Perquackey</emphasis>-type anagramming game</link> (<emphasis>Quackey</emphasis> script)</para> <para><link linkend="petals"><emphasis>Petals Around the Rose</emphasis></link></para> <para><link linkend="processiddef">PID</link>, <firstterm>Process ID</firstterm>, an identification number assigned to a running process.</para> <!-- ********************** --> <para><link linkend="piperef">Pipe</link>, <command>| </command>, a device for passing the output of a command to another command or to the shell <itemizedlist> <listitem><para><link linkend="catabuse">Avoiding unnecessary commands</link> in a <firstterm>pipe</firstterm></para></listitem> <listitem><para><link linkend="comminpipe"><firstterm>Comments</firstterm> embedded within</link></para></listitem> <listitem><para><link linkend="pipeex">Exit status</link> of a pipe</para></listitem> <listitem><para><link linkend="pipefailref">Pipefail</link>, <firstterm>set -o pipefail</firstterm> option to indicate <link linkend="exitstatusref">exit status</link> within a <firstterm>pipe</firstterm></para></listitem> <listitem><para><link linkend="pipestatusref"><varname>$PIPESTATUS</varname></link>, <firstterm>exit status</firstterm> of last executed pipe</para></listitem> <listitem><para><link linkend="ucref">Piping output of a command</link> to a script</para></listitem> <listitem><para><link linkend="catlesseff">Redirecting <filename>stdin</filename></link>, rather than using <link linkend="catref">cat</link> in a <firstterm>pipe</firstterm></para></listitem> </itemizedlist></para> <!-- ********************** --> <para><link linkend="gotchas">Pitfalls</link> <itemizedlist> <listitem><para><link linkend="dashnredr"><command>-</command> (dash) is <emphasis>not</emphasis> redirection operator</link></para></listitem> <listitem><para><link linkend="doubleslashref"><command>// </command> (double forward slash)</link>, behavior of <link linkend="cdref">cd</link> command toward</para></listitem> <listitem><para><link linkend="binsh"><token>#!/bin/sh</token></link> script header disables <link linkend="bashcompat">extended <firstterm>Bash</firstterm> features</link></para></listitem> <listitem><para><link linkend="catabuse">Abuse of <firstterm>cat</firstterm></link></para></listitem> <listitem><para><link linkend="cgiref"><firstterm>CGI</firstterm> programming</link>, using scripts for</para></listitem> <listitem><para>Closing <firstterm>limit string</firstterm> in a <firstterm>here document</firstterm>, <link linkend="indentedls">indenting</link></para></listitem> <listitem><para><link linkend="dosnewlines">DOS-type newlines (<token>\r\n</token>)</link> crash a script</para></listitem> <listitem><para><link linkend="quotingbsl"><firstterm>Double-quoting</firstterm> the <firstterm>backslash</firstterm> (<command>\</command>) character</link></para></listitem> <listitem><para><link linkend="evalrisk">eval</link>, risk of using</para></listitem> <listitem><para><link linkend="execperm">Execute permission lacking</link> for commands within a script</para></listitem> <listitem><para> <firstterm>Exit status</firstterm>, <link linkend="gotchaexitvalanamalies">anomalous</link> </para></listitem> <listitem><para> <firstterm>Exit status</firstterm> <link linkend="arxs1">of arithmetic expression <emphasis>not</emphasis> equivalent to an <firstterm>error code</firstterm></link> </para></listitem> <listitem><para><link linkend="parchildprobref"><firstterm>Export</firstterm> problem</link>, <firstterm>child</firstterm> process to <firstterm>parent</firstterm> process</para></listitem> <listitem><para><link linkend="lateverf">Extended <firstterm>Bash</firstterm> features</link> not available</para></listitem> <listitem><para><link linkend="failquote">Failing to <firstterm>quote</firstterm> variables</link> within <firstterm>test</firstterm> brackets</para></listitem> <listitem><para><link linkend="gnuref"><firstterm>GNU</firstterm> command set</link>, in cross-platform scripts</para></listitem> <listitem><para><firstterm>let</firstterm> misuse: <link linkend="letbad">attempting to set string variables</link> </para></listitem> <listitem><para><link linkend="rvtcaution2">Multiple echo statements</link> in a <link linkend="rvt">function whose output is captured</link></para></listitem> <listitem><para><link linkend="nullvar"><firstterm>null</firstterm> variable assignment</link></para></listitem> <listitem> <para><link linkend="numstrcompne">Numerical and string comparison operators</link> <emphasis>not</emphasis> equivalent</para> <para><link linkend="eqdif"><command>=</command> and <command>-eq</command></link> <emphasis>not</emphasis> interchangeable</para> </listitem> <listitem><para><link linkend="omitsemicolon">Omitting terminal <firstterm>semicolon</firstterm></link>, in a <firstterm>curly-bracketed</firstterm> <link linkend="codeblockref">code block</link></para></listitem> <listitem> <para>Piping</para> <para><link linkend="pipeloop"><firstterm>echo</firstterm> to a loop</link></para> <para><link linkend="badread0"><firstterm>echo</firstterm> to <firstterm>read</firstterm></link> (however, this problem <link linkend="goodread0">can be circumvented</link>)</para> <para><link linkend="ptailgrep"><firstterm>tail</firstterm> <option>-f</option> to <firstterm>grep</firstterm></link></para> </listitem> <listitem><para>Preserving <firstterm>whitespace</firstterm> within a variable, <link linkend="varsplitting">unintended consequences</link></para></listitem> <listitem><para><link linkend="suidscr"><firstterm>suid</firstterm> commands inside a script</link></para></listitem> <listitem><para><link linkend="undocf">Undocumented <firstterm>Bash</firstterm> features</link>, danger of</para></listitem> <listitem><para>Updates to <firstterm>Bash</firstterm> <link linkend="updatebreaks">breaking older scripts</link></para></listitem> <listitem><para><link linkend="uninitvar">Uninitialized variables</link></para></listitem> <listitem><para><link linkend="inappvn">Variable names</link>, inappropriate</para></listitem> <listitem><para><link linkend="varsubsh">Variables in a <firstterm>subshell</firstterm></link>, <firstterm>scope</firstterm> limited</para></listitem> <listitem><para><link linkend="badread0">Subshell in <firstterm>while-read</firstterm> loop</link></para></listitem> <listitem><para><link linkend="wsbad">Whitespace</link>, misuse of</para></listitem> </itemizedlist></para> <!-- ********************** --> <para>Pointers</para> <itemizedlist> <listitem><para><link linkend="fdref1">and file descriptors</link></para></listitem> <listitem><para><link linkend="funcpointers">and functions</link></para></listitem> <listitem><para><link linkend="irrref">and <firstterm>indirect references</firstterm></link></para></listitem> <listitem><para><link linkend="pointerref">and <firstterm>variables</firstterm></link></para></listitem> </itemizedlist> <!-- ********************** --> <para><link linkend="portabilityissues">Portability issues</link> in shell scripting <itemizedlist> <listitem><para><link linkend="setpum">Setting <firstterm>path</firstterm> and <firstterm>umask</firstterm></link></para></listitem> <listitem><para><link linkend="testsuite0">A <firstterm>test suite</firstterm> script</link> (Bash versus classic Bourne shell)</para></listitem> <listitem><para><link linkend="whatisref3">Using <firstterm>whatis</firstterm></link> </para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="posparamref1">Positional parameters</link> <itemizedlist> <listitem><para><link linkend="appref2"><varname>$@</varname></link>, as <firstterm>separate</firstterm> words</para></listitem> <listitem><para><link linkend="appref"><varname>$*</varname></link>, as a <firstterm>single</firstterm> word</para></listitem> <listitem><para><link linkend="passedargs">in functions</link></para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="posix2ref"><acronym>POSIX</acronym></link>, <firstterm>Portable Operating System Interface / UNIX</firstterm> <itemizedlist> <listitem><para><link linkend="posix3ref"><option>--posix</option> option</link></para></listitem> <listitem><para><link linkend="posix3ref">1003.2 standard</link></para></listitem> <listitem><para><link linkend="posixref">Character classes</link></para></listitem> </itemizedlist></para> <para><link linkend="ppidref"><varname>$PPID</varname></link>, <firstterm>process ID</firstterm> of parent process</para> <para><link linkend="opprecedence1">Precedence</link>, operator</para> <para><link linkend="prependref"><firstterm>Prepending</firstterm></link> lines at head of a file, <firstterm>script example</firstterm></para> <para>Prime numbers <itemizedlist> <listitem><para>Generating primes <link linkend="primes2">using the <firstterm>factor</firstterm> command</link></para></listitem> <listitem><para>Generating primes <link linkend="primes1">using the <firstterm>modulo</firstterm> operator</link></para></listitem> <listitem><para>Sieve of Eratosthenes, <link linkend="primes0">example script</link></para></listitem> </itemizedlist></para> <para><link linkend="printfref">printf</link>, <firstterm>formatted print</firstterm> command</para> <para><link linkend="procref2"><filename class="directory">/proc</filename></link> directory <itemizedlist> <listitem><para><link linkend="procrunning">Running processes</link>, files describing</para></listitem> <listitem><para><link linkend="procwarning">Writing to files in <filename class="directory">/proc</filename></link>, <emphasis>warning</emphasis></para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="processref">Process</link> <itemizedlist> <listitem><para><link linkend="childref2">Child process</link></para></listitem> <listitem><para><link linkend="parentref">Parent process</link></para></listitem> <listitem><para><link linkend="processiddef">Process ID</link> (PID)</para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="processsubref">Process substitution</link> <itemizedlist> <listitem><para><link linkend="pcc2dir">To compare contents of directories</link></para></listitem> <listitem><para><link linkend="psfdstdin">To supply <filename>stdin</filename> of a command</link></para></listitem> <listitem><para><link linkend="commandsparens1">Template</link></para></listitem> <listitem><para><link linkend="goodread0"><firstterm>while-read</firstterm> loop without a <firstterm>subshell</firstterm></link></para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="tabexpansion">Programmable completion</link> (tab expansion)</para> <para>Prompt <itemizedlist> <listitem><para><link linkend="ps1ref"><varname>$PS1</varname></link>, <firstterm>Main prompt</firstterm>, seen at command line</para></listitem> <listitem><para><link linkend="secpromptref"><varname>$PS2</varname></link>, Secondary prompt</para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="pseudocoderef">Pseudo-code</link>, as problem-solving method</para> <para><link linkend="pwdref"><varname>$PWD</varname></link>, Current working directory</para> <para>* * *</para> <para><link linkend="qky">Quackey</link>, a <emphasis>Perquackey</emphasis>-type anagramming game (script)</para> <para>Question mark, <command>? </command> <itemizedlist> <listitem><para><link linkend="quexregex">Character match</link> in an Extended <firstterm>Regular Expression</firstterm></para></listitem> <listitem><para><link linkend="quexwc">Single-character <firstterm>wild card</firstterm></link>, in <link linkend="globbingref">globbing</link></para></listitem> <listitem><para>In a <link linkend="cstrinary"><firstterm>C</firstterm>-style Trinary (ternary) operator</link></para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="quotingdef">Quoting</link> <itemizedlist> <listitem><para><link linkend="quotingref">Character string</link></para></listitem> <listitem><para><link linkend="quotingvar">Variables</link></para> <para><link linkend="failquote">within <firstterm>test</firstterm> brackets</link></para></listitem> <listitem><para><link linkend="wsquo"><firstterm>Whitespace</firstterm></link>, using <firstterm>quoting</firstterm> to preserve</para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para>* * *</para> <!-- *************************************************************** --> <para>Random numbers <itemizedlist> <listitem><para><link linkend="urandomref"><filename>/dev/urandom</filename></link> </para></listitem> <listitem><para><link linkend="awkrandomref"> <varname>rand()</varname></link>, random function in <link linkend="awkref">awk</link></para></listitem> <listitem><para><link linkend="randomvar01"><varname>$RANDOM</varname></link>, Bash function that returns a pseudorandom integer</para></listitem> <listitem><para><link linkend="daterandref">Random sequence generation</link>, using <link linkend="dateref">date</link> command</para></listitem> <listitem><para><link linkend="jotrandom">Random sequence generation</link>, using <link linkend="jotref">jot</link></para></listitem> <listitem><para><link linkend="randstring0">Random string</link>, generating</para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para>Raspberry Pi (single-board computer) <itemizedlist> <listitem><para><link linkend="rpsdcard01">Script for preparing a bootable SD card</link> </para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="rcsref">rcs</link></para> <!-- *************************************************************** --> <para><link linkend="readref">read</link>, set value of a variable from <link linkend="stdinoutdef"><filename>stdin</filename></link> <itemizedlist> <listitem><para><link linkend="readarrow">Detecting <firstterm>arrow</firstterm> keys</link></para></listitem> <listitem><para><link linkend="readoptions">Options</link></para></listitem> <listitem><para><link linkend="readpiperef">Piping output of <firstterm>cat</firstterm></link> to <firstterm>read</firstterm></para></listitem> <listitem><para><link linkend="hsread"><quote>Prepending</quote> text</link></para></listitem> <listitem><para><link linkend="badread0"> Problems piping <firstterm>echo</firstterm></link> to <firstterm>read</firstterm></para></listitem> <listitem><para><link linkend="readredir0">Redirection from a file</link> to <firstterm>read</firstterm></para></listitem> <listitem><para><link linkend="replyref"><varname>$REPLY</varname></link>, default <firstterm>read</firstterm> variable</para></listitem> <listitem><para><link linkend="readtimed">Timed input</link></para></listitem> <listitem><para><link linkend="whilereadref2"> <firstterm>while read</firstterm></link> construct</para></listitem> </itemizedlist></para> <para><link linkend="readlineref">readline</link> library</para> <para><link linkend="recursionref">Recursion</link> <itemizedlist> <listitem><para><link linkend="recursiondemo0">Demonstration of</link></para></listitem> <listitem><para><link linkend="factorialref">Factorial</link></para></listitem> <listitem><para><link linkend="fiboref">Fibonacci sequence</link></para></listitem> <listitem><para><link linkend="locvarrecur">Local variables</link></para></listitem> <listitem><para><link linkend="scriptrecursion">Script calling itself recursively</link></para></listitem> <listitem><para><link linkend="hanoiref">Towers of Hanoi</link></para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para>Redirection <itemizedlist> <listitem><para><link linkend="redirref">Code blocks</link></para></listitem> <listitem><para><link linkend="usingexecref">exec <<filename>filename</filename></link>,</para> <para>to reassign <link linkend="fdref">file descriptors</link></para></listitem> <listitem><para><link linkend="ioredirintro">Introductory-level explanation</link> of <firstterm>I/O redirection</firstterm></para></listitem> <listitem><para><link linkend="ioredirectionref2"> Open a file</link> for <emphasis>both</emphasis> reading and writing</para> <para><filename><>filename</filename> </para></listitem> <listitem><para><link linkend="readredir0"><firstterm>read</firstterm> input redirected</link> from a file</para></listitem> <listitem><para> <link linkend="ioredirectionref1"> <filename>stderr</filename> to <filename>stdout</filename></link></para> <para><filename>2>&1 </filename></para></listitem> <listitem><para><link linkend="coxex"><filename>stdin</filename> / <filename>stdout</filename></link>, using <command> - </command></para></listitem> <listitem><para><link linkend="redstdinfunc1"> <filename>stdin</filename>of a <firstterm>function</firstterm></link></para></listitem> <listitem><para><link linkend="ioredirectionref"> <filename>stdout</filename> to a file</link></para> <para><replaceable>></replaceable> ... <replaceable>>></replaceable> </para></listitem> <listitem><para> <link linkend="ioredirectionref1"> <filename>stdout</filename> to <firstterm>file descriptor</firstterm></link> <firstterm>j</firstterm></para> <para><filename>>&j </filename></para></listitem> <listitem><para> <link linkend="ioredirectionref1"> file descriptor<filename>i</filename> to <firstterm>file descriptor</firstterm></link> <firstterm>j</firstterm></para> <para><filename>i>&j </filename></para></listitem> <listitem><para> <link linkend="redirouterror2"><filename>stdout</filename> of a command</link> to <filename>stderr</filename></para> <para><filename>>&2</filename></para></listitem> <listitem><para> <link linkend="redirouterror"><filename>stdout</filename> <emphasis>and</emphasis> <filename>stderr</filename> of a command</link> to a file</para> <para><filename>&> </filename></para></listitem> <listitem><para> <link linkend="teeref">tee</link>, redirect to a file output of command(s) partway through a <link linkend="piperef">pipe</link></para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="refcards">Reference Cards</link> <itemizedlist> <listitem><para><link linkend="misctab">Miscellaneous constructs</link></para></listitem> <listitem><para><link linkend="parsubtab">Parameter substitution/expansion</link></para></listitem> <listitem><para><link linkend="specshvartab">Special shell variables</link></para></listitem> <listitem><para><link linkend="stringopstab">String operations</link></para></listitem> <listitem><para>Test operators</para> <para><link linkend="bincomptab">Binary comparison</link></para> <para><link linkend="filestab">Files</link></para> </listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="regexref"><firstterm>Regular Expressions</firstterm></link> <itemizedlist> <listitem><para><command>^ </command> (caret) <link linkend="beglineref">Beginning-of-line</link> </para></listitem> <listitem><para><command>$ </command> (dollar sign) <link linkend="dollarsignref"><firstterm>Anchor</firstterm></link> </para></listitem> <listitem><para><command>. </command> (dot) <link linkend="regexdot">Match single character</link></para></listitem> <listitem><para><command>* </command> (asterisk) <link linkend="asteriskref2">Any number of characters</link></para></listitem> <listitem><para><command>[ ]</command> (brackets) <link linkend="bracketsref">Enclose character set to match</link></para></listitem> <listitem><para><command>\ </command> (backslash) <link linkend="regexbs">Escape</link>, interpret following character literally</para></listitem> <listitem><para><command>\< ... \> </command> (angle brackets, <firstterm>escaped</firstterm>) <link linkend="anglebrac">Word boundary</link></para></listitem> <listitem> <para><link linkend="extregex">Extended</link> REs</para> <para><command>+ </command> <link linkend="plusref"><firstterm>Character match</firstterm></link></para> <para><command>\{ \} </command> <link linkend="escpcb">Escaped <quote>curly</quote> brackets</link></para> <para><command>[: :] </command> <link linkend="posixref">POSIX character classes</link></para> </listitem> </itemizedlist></para> <para><link linkend="replyref"><varname>$REPLY</varname></link>, Default value associated with <link linkend="readref">read</link> command</para> <para><link linkend="restrictedshref">Restricted shell</link>, shell (or script) with certain commands disabled</para> <para><link linkend="returnref">return</link>, command that terminates a <link linkend="functionref">function</link></para> <para><link linkend="runpartsref">run-parts</link> <itemizedlist> <listitem><para><link linkend="runpartsref2">Running scripts in sequence</link>, without user intervention</para></listitem> </itemizedlist></para> <para>* * *</para> <para><link linkend="scoperef">Scope</link> of a variable, definition</para> <para><link linkend="invocationoptionsref">Script options</link>, set at command line</para> <para><link linkend="libroutines">Scripting routines</link>, library of useful definitions and <link linkend="functionref">functions</link></para> <para><link linkend="secpromptref">Secondary prompt</link>, <command><varname>$PS2</varname></command></para> <para><link linkend="securityissues">Security issues</link> <itemizedlist> <listitem><para><link linkend="nmapref">nmap</link>, <firstterm>network mapper</firstterm> / port scanner</para></listitem> <listitem><para><link linkend="sudoref">sudo</link></para></listitem> <listitem><para><link linkend="suidscr"><firstterm>suid</firstterm> commands inside a script</link></para></listitem> <listitem><para><link linkend="infectedscripts1">Viruses, trojans, and worms</link> in scripts</para></listitem> <listitem><para><link linkend="securitytips1">Writing secure scripts</link></para></listitem> </itemizedlist></para> <para><link linkend="sedref">sed</link>, pattern-based programming language <itemizedlist> <listitem><para><link linkend="sedbasictable"><command>Table</command></link>, basic operators</para></listitem> <listitem><para><link linkend="sedoptable"><command>Table</command></link>, examples of operators</para></listitem> </itemizedlist></para> <para><link linkend="selectref">select</link>, construct for menu building <itemizedlist> <listitem><para><link linkend="inlistomit"><userinput>in <replaceable>list</replaceable></userinput> omitted</link> </para></listitem> </itemizedlist></para> <para><link linkend="semaphoreref">Semaphore</link></para> <para><link linkend="needsemicolon">Semicolon required</link>, when <link linkend="doinref">do</link> <firstterm>keyword</firstterm> is on first line of <link linkend="forloopref1">loop</link> <itemizedlist> <listitem><para><link linkend="omitsemicolon">When terminating <firstterm>curly-bracketed</firstterm> code block</link></para></listitem> </itemizedlist></para> <para><link linkend="seqref">seq</link>, Emit a sequence of integers. Equivalent to <link linkend="jotref">jot</link>.</para> <para><link linkend="setref">set</link>, Change value of internal script variables <itemizedlist> <listitem><para><link linkend="undvarerr">set -u</link>, Abort script with error message if attempting to use an <firstterm>undeclared</firstterm> variable.</para></listitem> </itemizedlist> </para> <para><link linkend="whatsascript">Shell script</link>, definition of</para> <para><link linkend="shwrapper">Shell wrapper</link>, script embedding a command or utility</para> <para><link linkend="shiftref">shift</link>, reassigning <firstterm>positional parameters</firstterm></para> <para><link linkend="shlvlref"><varname>$SHLVL</varname></link>, <firstterm>shell level</firstterm>, depth to which the shell (or script) is nested</para> <para><link linkend="shoptref">shopt</link>, change <firstterm>shell options</firstterm></para> <para><link linkend="signald">Signal</link>, a message sent to a process</para> <para>Simulations <itemizedlist> <listitem><para><link linkend="brownianref">Brownian motion</link></para></listitem> <listitem><para><link linkend="brownianref">Galton board</link></para></listitem> <listitem><para><link linkend="horseraceref">Horserace</link></para></listitem> <listitem><para><link linkend="liferef"><emphasis>Life</emphasis></link>, game of</para></listitem> <listitem><para><link linkend="cannonref">PI</link>, approximating by firing cannonballs</para></listitem> <listitem><para><link linkend="stackex0">Pushdown <firstterm>stack</firstterm></link></para></listitem> </itemizedlist></para> <para><link linkend="snglquo">Single quotes</link> (<command>' ... '</command>) <firstterm>strong</firstterm> <link linkend="quotingref">quoting</link></para> <para><link linkend="socketref">Socket</link>, a communication node associated with an I/O port</para> <para>Sorting <itemizedlist> <listitem><para><link linkend="bubblesort">Bubble sort</link></para></listitem> <listitem><para><link linkend="insertionsort0">Insertion sort</link></para></listitem> </itemizedlist></para> <para><link linkend="sourceref">source</link>, execute a script or, within a script, import a file <itemizedlist> <listitem><para><link linkend="sourceparams">Passing positional parameters</link></para></listitem> </itemizedlist></para> <para><firstterm>Spam</firstterm>, dealing with <itemizedlist> <listitem><para><link linkend="spamlookup_0"><firstterm>Example script</firstterm></link></para></listitem> <listitem><para><link linkend="isspammer_0"><firstterm>Example script</firstterm></link></para></listitem> <listitem><para><link linkend="isspammer2_0"><firstterm>Example script</firstterm></link></para></listitem> <listitem><para><link linkend="whx0"><firstterm>Example script</firstterm></link></para></listitem> </itemizedlist></para> <para><link linkend="scharlist1">Special characters</link></para> <para>Stack <itemizedlist> <listitem><para><link linkend="stackdefref">Definition</link></para></listitem> <listitem><para>Emulating a <firstterm>push-down stack</firstterm>, <link linkend="stackex0">example script</link></para></listitem> </itemizedlist></para> <para>Standard Deviation, <link linkend="stddev">example script</link></para> <para><link linkend="filesref1">Startup files</link>, Bash</para> <para><link linkend="stdinoutdef"><filename>stdin</filename> and <filename>stdout</filename></link></para> <para><link linkend="stopwatch">Stopwatch</link>, example script</para> <!-- *************************************************************** --> <para>Strings <itemizedlist> <listitem><para> <command>=~ </command> <link linkend="regexmatchref">String match operator</link> </para></listitem> <listitem><para><link linkend="scomparison1">Comparison</link></para></listitem> <listitem><para><link linkend="psorex1">Length</link></para> <para><replaceable>${#string}</replaceable></para></listitem> <listitem><para><link linkend="stringmanip">Manipulation</link></para></listitem> <listitem><para><link linkend="awkstringmanip2">Manipulation</link>, using <link linkend="awkref">awk</link></para></listitem> <listitem><para><link linkend="stringnotnull"><firstterm>Null</firstterm> string</link>, testing for</para></listitem> <listitem> <para><link linkend="protectliteral0">Protecting strings</link> from expansion and/or reinterpretation, <firstterm>script example</firstterm></para> <para><link linkend="unprotectliteral0"><firstterm>Unprotecting</firstterm> strings</link>, <firstterm>script example</firstterm></para> </listitem> <listitem> <para><firstterm>strchr()</firstterm>, <link linkend="substringindex2">equivalent of</link></para> </listitem> <listitem> <para><firstterm>strlen()</firstterm>, <link linkend="strlen">equivalent of</link></para> </listitem> <listitem> <para><link linkend="stringsref">strings</link> command, find printable strings in a binary or data file</para> </listitem> <listitem> <para>Substring extraction</para> <para><link linkend="substrextr01">${string:position}</link></para> <para><link linkend="substrextr02">${string:position:length}</link></para> <para><link linkend="expextrsub">Using <firstterm>expr</firstterm></link> </para></listitem> <listitem><para><link linkend="substringindex2">Substring <firstterm>index</firstterm></link> (numerical position in string)</para></listitem> <listitem><para><link linkend="exprparen">Substring <firstterm>matching</firstterm></link>, using <link linkend="exprref">expr</link></para></listitem> <listitem> <para><link linkend="psorex1">Substring <firstterm>removal</firstterm></link></para> <para><link linkend="psorexsh">${var#Pattern}</link></para> <para><link linkend="psorexlo">${var##Pattern}</link></para> <para><link linkend="pctrep1">${var%Pattern}</link></para> <para><link linkend="pctrep2">${var%%Pattern}</link></para> </listitem> <listitem> <para>Substring replacement</para> <para><link linkend="substrrepl00">${string/substring/replacement}</link></para> <para><link linkend="substrrepl01">${string//substring/replacement}</link></para> <para><link linkend="substrrepl02">${string/#substring/replacement}</link></para> <para><link linkend="substrrepl03">${string/%substring/replacement}</link> </para> <para><link linkend="daysbetween0"><firstterm>Script example</firstterm></link></para> </listitem> <listitem><para><link linkend="stringopstab"><command>Table</command></link> of <firstterm>string/substring</firstterm> manipulation and extraction operators</para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="snglquo"><firstterm>Strong</firstterm> quoting</link> <command>' ... '</command></para> <para><link linkend="scrstyle">Stylesheet</link> for writing scripts</para> <!-- *************************************************************** --> <para><link linkend="subshellsref">Subshell</link> <itemizedlist> <listitem><para><link linkend="subshellparens1">Command list within parentheses</link></para></listitem> <listitem><para><link linkend="subshnlevref">Variables</link>, <varname>$BASH_SUBSHELL</varname> and <varname>$SHLVL</varname></para></listitem> <listitem> <para>Variables in a <firstterm>subshell</firstterm></para> <para><link linkend="varsubsh"><firstterm>scope</firstterm> limited</link>, but ...</para> <para> ... <link linkend="subshtmp">can be accessed outside the subshell?</link> </para> </listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="suref">su</link> <firstterm>Substitute user</firstterm>, log on as a different user or as <firstterm>root</firstterm></para> <para><link linkend="suidref">suid</link> (<firstterm>set user id</firstterm>) file flag <itemizedlist> <listitem><para><link linkend="suidscr"><firstterm>suid</firstterm> commands inside a script</link>, not advisable</para></listitem> </itemizedlist></para> <para><link linkend="symlinkref">Symbolic links</link></para> <para><link linkend="swapfileref">Swapfiles</link></para> <para>* * *</para> <para><link linkend="tabexpansion">Tab completion</link></para> <para>Table lookup, <link linkend="resistor">script example</link></para> <para><link linkend="tailref">tail</link>, <firstterm>echo</firstterm> to <filename>stdout</filename> lines at the (tail) end of a text file</para> <para><link linkend="tarref">tar</link>, archiving utility</para> <para><link linkend="teeref">tee</link>, redirect to a file output of command(s) partway through a <link linkend="piperef">pipe</link></para> <para><link linkend="terminalssys1">Terminals</link> <itemizedlist> <listitem><para><link linkend="setserialref">setserial</link></para></listitem> <listitem><para><link linkend="settermref">setterm</link></para></listitem> <listitem><para><link linkend="sttyref">stty</link></para></listitem> <listitem><para><link linkend="tputref">tput</link></para></listitem> <listitem><para><link linkend="wallref">wall</link></para></listitem> </itemizedlist></para> <para><firstterm>test</firstterm> command <itemizedlist> <listitem><para><link linkend="ttestref">Bash <firstterm>builtin</firstterm></link></para></listitem> <listitem><para><link linkend="usrbintest">external command</link>, <filename>/usr/bin/test</filename> (equivalent to <filename>/usr/bin/[</filename>)</para></listitem> </itemizedlist></para> <para><link linkend="testconstructs1">Test constructs</link></para> <!-- *************************************************************** --> <para>Test operators <itemizedlist> <listitem><para><command>-a </command> <link linkend="compoundand">Logical AND</link> compound comparison</para></listitem> <listitem><para><command>-e </command> <link linkend="rtif">File exists</link></para></listitem> <listitem><para><command>-eq </command> <link linkend="equalref">is-equal-to</link> (integer comparison)</para></listitem> <listitem><para><command>-f </command> <link linkend="regularfile">File is a <firstterm>regular</firstterm> file</link></para></listitem> <listitem><para><command>-ge </command> <link linkend="ge0ref">greater-than or equal</link> (integer comparison)</para></listitem> <listitem><para><command>-gt </command> <link linkend="gt0ref">greater-than</link> (integer comparison)</para></listitem> <listitem><para><command>-le </command> <link linkend="le0ref">less-than or equal</link> (integer comparison)</para></listitem> <listitem><para><command>-lt </command> <link linkend="lt0ref">less-than</link> (integer comparison)</para></listitem> <listitem><para><command>-n </command> <link linkend="stringnotnull">not-zero-length</link> (string comparison)</para></listitem> <listitem><para><command>-ne </command> <link linkend="nequalref">not-equal-to</link> (integer comparison)</para></listitem> <listitem><para><command>-o </command> <link linkend="compoundor">Logical OR</link> compound comparison</para></listitem> <listitem><para><command>-u </command> <link linkend="suidref"><firstterm>suid</firstterm> flag set</link>, file test</para></listitem> <listitem><para><command>-z </command> <link linkend="stringnull">is-zero-length</link> (string comparison)</para></listitem> <listitem><para><command>= </command> <link linkend="scomparison1">is-equal-to</link> (string comparison)</para> <para><command>== </command> <link linkend="scomparison2">is-equal-to</link> (string comparison)</para></listitem> <listitem><para> <command>< </command> <link linkend="ltref">less-than</link> (string comparison)</para></listitem> <listitem><para><command>< </command> <link linkend="intlt">less-than</link>, (integer comparison, within <link linkend="dblparens">double parentheses</link>) </para></listitem> <listitem><para><command><= </command> <link linkend="lteq">less-than-or-equal</link>, (integer comparison, within <firstterm>double parentheses</firstterm>) </para></listitem> <listitem><para><command>> </command> <link linkend="gtref">greater-than</link> (string comparison)</para></listitem> <listitem><para><command>> </command> <link linkend="intgt">greater-than</link>, (integer comparison, within <firstterm>double parentheses</firstterm>)</para></listitem> <listitem><para><command>>= </command> <link linkend="gteq">greater-than-or-equal</link>, (integer comparison, within <firstterm>double parentheses</firstterm>) </para></listitem> <listitem><para><command>|| </command> <link linkend="orref">Logical OR </link></para></listitem> <listitem><para><command>&& </command> <link linkend="logicaland">Logical AND</link></para></listitem> <listitem><para><command>! </command> <link linkend="notref">Negation operator</link>, inverts <link linkend="exitstatusref">exit status</link> of a test</para> <para><command>!= </command> <link linkend="notequal">not-equal-to</link> (string comparison)</para></listitem> <listitem> <para><command>Tables</command> of <firstterm>test</firstterm> operators</para> <para><link linkend="bincomptab">Binary comparison</link></para> <para><link linkend="filestab">File</link></para> </listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="textproc">Text and text file processing</link></para> <para><link linkend="timedate">Time / Date</link></para> <!-- *************************************************************** --> <para>Timed input <itemizedlist> <listitem><para><link linkend="readtimed">Using <firstterm>read -t</firstterm></link></para></listitem> <listitem><para><link linkend="sttyto">Using <firstterm>stty</firstterm></link></para></listitem> <listitem><para><link linkend="timingloop">Using timing loop</link></para></listitem> <listitem><para><link linkend="tmoutref">Using <varname>$TMOUT</varname></link></para></listitem> </itemizedlist></para> <!-- *************************************************************** --> <para><link linkend="assortedtips">Tips and hints</link> for Bash scripts <itemizedlist> <listitem><para>Array, <link linkend="retarray">as <firstterm>return value</firstterm> from a function</link></para> <para><firstterm>Associative</firstterm> array <link linkend="assocarrtst">more efficient</link> than a numerically-indexed array</para></listitem> <listitem><para><link linkend="captureretval">Capturing the return value</link> of a function, using <firstterm>echo</firstterm></para></listitem> <listitem><para><link linkend="cgiscript"><firstterm>CGI</firstterm> programming</link>, using scripts for</para></listitem> <listitem> <para>Comment blocks</para> <para>Using <link linkend="cblock1"><firstterm>anonymous here documents</firstterm></link></para> <para>Using <link linkend="comoutbl"> <firstterm>if-then</firstterm> constructs</link></para> </listitem> <listitem><para><link linkend="commenth">Comment headers</link>, special purpose</para></listitem> <listitem><para><link linkend="cstyle"><firstterm>C</firstterm>-style syntax </link>, for manipulating variables</para></listitem> <listitem><para><link linkend="doublespace">Double-spacing a text file</link></para></listitem> <listitem><para>Filenames prefixed with a dash, <link linkend="dashrem">removing</link></para></listitem> <listitem><para><link linkend="filteroutp">Filter</link>, feeding output back to <emphasis>same</emphasis> filter</para></listitem> <listitem><para>Function<link linkend="rvt"> <firstterm>return</firstterm> value workarounds</link></para></listitem> <listitem><para><link linkend="ifgrepfix"><firstterm>if-grep</firstterm> test fixup</link></para></listitem> <listitem><para><link linkend="libroutines">Library</link> of useful definitions and <firstterm>functions</firstterm></para></listitem> <listitem><para><link linkend="nullvar"><firstterm>null</firstterm> variable assignment</link>, avoiding</para></listitem> <listitem><para><link linkend="passarray">Passing an <firstterm>array</firstterm></link> to a function</para></listitem> <listitem><para><varname>$PATH</varname>, appending to, <link linkend="pathappend">using the <varname>+=</varname> operator</link>.</para></listitem> <listitem><para><link linkend="prependref"><firstterm>Prepending</firstterm></link> lines at head of a file</para></listitem> <listitem><para><link linkend="progressbar">Progress bar</link> template</para></listitem> <listitem><para><link linkend="pseudocoderef">Pseudo-code</link></para></listitem> <listitem><para><link linkend="rcsref">rcs</link></para></listitem> <listitem><para><link linkend="devnullredirect">Redirecting a <firstterm>test</firstterm> to <filename>/dev/null</filename</link> to suppress output</para></listitem> <listitem><para><link linkend="runpartsref2">Running scripts in sequence</link> without user intervention, using <link linkend="runpartsref">run-parts</link></para></listitem> <listitem><para>Script<link linkend="scriptasemb"> as embedded command</link></para></listitem> <listitem> <para>Script <firstterm>portability</firstterm></para> <para><link linkend="setpum">Setting <firstterm>path</firstterm> and <firstterm>umask</firstterm></link></para> <para><link linkend="whatisref3">Using <firstterm>whatis</firstterm></link> </para> </listitem> <listitem><para><link linkend="setvaremb">Setting script variable</link> to a block of embedded <firstterm>sed</firstterm> or <firstterm>awk</firstterm> code</para></listitem> <listitem><para>Speeding up script execution by <link linkend="lcall">disabling <firstterm>unicode</firstterm></link> </para></listitem> <listitem><para>Subshell variable, <link linkend="subshtmp">accessing outside the subshell</link> </para></listitem> <listitem><para><link linkend="intparam">Testing a variable</link> to see if it contains only digits</para></listitem> <listitem><para><link linkend="devnullredirect">Testing whether a command exists</link>, using <link linkend="typeref">type</link></para></listitem> <listitem><para><link linkend="trackingscr">Tracking script usage</link></para></listitem> <listitem><para><link linkend="goodread0"><firstterm>while-read</firstterm> loop without a <firstterm>subshell</firstterm></link></para></listitem> <listitem><para><link linkend="widgetref">Widgets</link>, invoking from a script</para></listitem> </itemizedlist></para> <para><link linkend="tmoutref"><varname>$TMOUT</varname></link>, Timeout interval</para> <para><link linkend="tokenref">Token</link>, a symbol that may expand to a <link linkend="keywordref">keyword</link> or command</para> <para><link linkend="tputref">tput</link>, terminal-control command</para> <para><link linkend="trref">tr</link>, character translation filter <itemizedlist> <listitem><para><link linkend="trd2u">DOS to Unix text file conversion</link></para></listitem> <listitem><para><link linkend="troptions">Options</link></para></listitem> <listitem><para><link linkend="soundex0">Soundex</link>, <firstterm>example script</firstterm></para></listitem> <listitem><para><link linkend="trvariants">Variants</link></para></listitem> </itemizedlist></para> <para><link linkend="trapref1"><firstterm>Trap</firstterm></link>, specifying an action upon receipt of a <link linkend="signald">signal</link></para> <para><firstterm>Trinary (ternary)</firstterm> operator, <firstterm>C</firstterm>-style, <userinput>var>10?88:99</userinput> <itemizedlist> <listitem><para><link linkend="cstrinary">in <firstterm>double-parentheses</firstterm> construct</link></para></listitem> <listitem><para><link linkend="ex46">in <firstterm>let</firstterm> construct</link></para></listitem> </itemizedlist></para> <para><link linkend="trueref">true</link>, returns <firstterm>successful</firstterm> (0) <link linkend="exitstatusref">exit status</link></para> <para><link linkend="declare1ref">typeset</link> builtin <itemizedlist> <listitem><para><link linkend="declareopsref1">options</link></para></listitem> </itemizedlist></para> <para>* * *</para> <para><link linkend="uidref"><varname>$UID</varname></link>, User ID number</para> <para><link linkend="unaliasref">unalias</link>, to remove an <link linkend="aliasref">alias</link></para> <para><link linkend="unameref">uname</link>, output system information</para> <para><link linkend="unicoderef">Unicode</link>, encoding standard for representing letters and symbols <itemizedlist> <listitem><para><link linkend="lcall">Disabling <firstterm>unicode</firstterm></link> to optimize script</para></listitem> </itemizedlist></para> <para><link linkend="uninitvar">Uninitialized variables</link> </para> <para><link linkend="uniqref">uniq</link>, filter to remove duplicate lines from a sorted file</para> <para><link linkend="unsetref">unset</link>, delete a shell variable</para> <para><link linkend="untilloopref">until</link> loop</para> <para><firstterm>until [ condition-is-true ]; do</firstterm></para> <para>* * *</para> <para><firstterm>Variables</firstterm> <itemizedlist> <listitem><para><link linkend="arrayopsvars">Array operations on </link></para></listitem> <listitem> <para><link linkend="asnop1">Assignment</link></para> <para><link linkend="ex15_0"><firstterm>Script example</firstterm></link></para> <para><link linkend="ex16_0"><firstterm>Script example</firstterm></link></para> <para><link linkend="varunsetting"><firstterm>Script example</firstterm></link></para> </listitem> <listitem><para><link linkend="internalvariables"><firstterm>Bash</firstterm> internal variables</link></para></listitem> <listitem><para><link linkend="setvaremb">Block of <firstterm>sed</firstterm> or <firstterm>awk</firstterm> code</link>, setting a variable to</para></listitem> <listitem><para> <firstterm>C-style</firstterm> <link linkend="plusplusref"> increment/decrement/trinary operations</link></para></listitem> <listitem><para> <link linkend="setref">Change value of internal script variables</link> using <firstterm>set</firstterm></para></listitem> <listitem><para><link linkend="declare1ref">declare</link>, to modify the properties of variables</para></listitem> <listitem><para><link linkend="unsetref">Deleting a shell variable</link> using <firstterm>unset</firstterm></para></listitem> <listitem><para><link linkend="envref">Environmental</link></para></listitem> <listitem><para><link linkend="exprepl1">Expansion / Substring replacement</link> operators</para></listitem> <listitem> <para><link linkend="ivrref">Indirect referencing</link></para> <para><replaceable>eval variable1=\$$variable2</replaceable></para> <para><link linkend="ivr2">Newer notation</link></para> <para><replaceable>${!variable}</replaceable></para> </listitem> <listitem><para><link linkend="intvarref">Integer</link></para></listitem> <listitem><para><link linkend="bvuntyped">Integer / string</link> (variables are untyped)</para></listitem> <listitem><para><link linkend="psorex1">Length</link></para> <para><replaceable>${#var}</replaceable></para></listitem> <listitem><para><link linkend="lvalueref">Lvalue</link></para></listitem> <listitem><para><link linkend="pssub1">Manipulating and expanding</link></para></listitem> <listitem><para><link linkend="varnameval"><firstterm>Name</firstterm> and <firstterm>value</firstterm> of a variable</link>, distinguishing between</para></listitem> <listitem><para><link linkend="stringnotnull"><firstterm>Null</firstterm> string</link>, testing for</para></listitem> <listitem><para><link linkend="nullvar"><firstterm>Null</firstterm> variable assignment</link>, avoiding</para></listitem> <listitem> <para><link linkend="quotingvar">Quoting</link></para> <para><link linkend="failquote">within <firstterm>test</firstterm> brackets</link></para> <para><link linkend="wsquo">to preserve <firstterm>whitespace</firstterm></link></para> </listitem> <listitem><para><link linkend="lvalueref">rvalue</link></para></listitem> <listitem><para><link linkend="varunsetting">Setting to <firstterm>null</firstterm> value</link></para></listitem> <listitem><para><link linkend="parvis">In <firstterm>subshell</firstterm></link> not visible to parent shell</para></listitem> <listitem><para>Testing a variable <link linkend="intparam"> if it contains only digits</link></para></listitem> <listitem><para><link linkend="typingref">Typing</link>, restricting the properties of a variable</para></listitem> <listitem><para><link linkend="undvarerr">Undeclared</link>, error message</para></listitem> <listitem><para><link linkend="uninitvar1">Uninitialized</link> </para></listitem> <listitem><para><link linkend="varsplitting">Unquoted variable</link>, <firstterm>splitting</firstterm></para></listitem> <listitem><para><link linkend="unsetref">Unsetting</link></para></listitem> <listitem><para><link linkend="bvuntyped">Untyped</link></para></listitem> </itemizedlist></para> <para>* * *</para> <para><link linkend="waitref">wait</link>, suspend script execution <itemizedlist> <listitem><para><link linkend="waithang">To remedy script hang</link></para></listitem> </itemizedlist></para> <para><link linkend="dblquo"><firstterm>Weak</firstterm> quoting</link> <command>" ... "</command></para> <para><link linkend="whileloopref">while</link> loop</para> <para><firstterm>while [ condition ]; do</firstterm> <itemizedlist> <listitem><para><link linkend="whloopc">C-style syntax</link> </para></listitem> <listitem><para><link linkend="whilefunc">Calling a <firstterm>function</firstterm> within <firstterm>test</firstterm> brackets</link></para></listitem> <listitem><para><link linkend="whmultcond">Multiple conditions</link></para></listitem> <listitem><para><link linkend="whilenobrackets">Omitting <firstterm>test</firstterm> brackets</link></para></listitem> <listitem> <para><link linkend="whilereadref2"> <firstterm>while read</firstterm></link> construct </para> <para><link linkend="goodread0">Avoiding a <firstterm>subshell</firstterm></link></para> </listitem> </itemizedlist></para> <para><link linkend="whitespaceref">Whitespace</link>, spaces, tabs, and newline characters <itemizedlist> <listitem><para><link linkend="ifsws"><varname>$IFS</varname> defaults to</link></para></listitem> <listitem><para><link linkend="wsbad">Inappropriate use of</link></para></listitem> <listitem><para><link linkend="indentedls">Preceding closing <firstterm>limit string</firstterm></link> in a <firstterm>here document</firstterm>, error</para></listitem> <listitem><para><link linkend="wsbcomm">Preceding script comments</link></para></listitem> <listitem><para><link linkend="wsquo"><firstterm>Quoting</firstterm></link>, to preserve <firstterm>whitespace</firstterm> within strings or variables</para></listitem> <listitem><para><link linkend="wsposix">[:space:]</link>, <firstterm>POSIX</firstterm> character class</para></listitem> </itemizedlist></para> <para><link linkend="whoref">who</link>, information about logged on users <itemizedlist> <listitem><para><link linkend="wref">w</link></para></listitem> <listitem><para><link linkend="whoamiref">whoami</link></para></listitem> <listitem><para><link linkend="lognameref">logname</link></para></listitem> </itemizedlist></para> <para><link linkend="widgetref">Widgets</link></para> <para><link linkend="wildcarddef">Wild card</link> characters <itemizedlist> <listitem><para><link linkend="asteriskref">Asterisk *</link></para></listitem> <listitem><para>In <link linkend="liglob"> <replaceable>[list]</replaceable> constructs</link> </para></listitem> <listitem><para><link linkend="wildcardqu">Question mark ?</link></para></listitem> <listitem><para><link linkend="wdotfilewc">Will not match <filename>dot files</filename></link></para></listitem> </itemizedlist></para> <para>Word splitting <itemizedlist> <listitem><para><link linkend="wsplitref">Definition</link></para></listitem> <listitem><para><link linkend="csws">Resulting from <firstterm>command substitution</firstterm></link></para></listitem> </itemizedlist></para> <para><link linkend="shwrapper">Wrapper</link>, shell</para> <para>* * *</para> <para><link linkend="xargsref">xargs</link>, Filter for grouping arguments <itemizedlist> <listitem><para><link linkend="xargscurlyref"> Curly brackets</link></para></listitem> <listitem><para><link linkend="xargslimargs"> Limiting arguments passed</link></para></listitem> <listitem><para><link linkend="xargslimargs">Options</link></para></listitem> <listitem><para>Processes arguments <link linkend="xargsoneatatime">one at a time</link></para></listitem> <listitem><para><link linkend="xargsws"> Whitespace</link>, handling</para></listitem> </itemizedlist></para> <para>* * *</para> <para><link linkend="yesref">yes</link> <itemizedlist> <listitem><para><link linkend="yesemu">Emulation</link></para></listitem> </itemizedlist></para> <para>* * *</para> <para><command>-z </command> <link linkend="stringnull">String is <firstterm>null</firstterm></link></para> <para><link linkend="zombieref"><firstterm>Zombie</firstterm></link>, a process that has terminated, but not yet been <link linkend="killref">killed</link> by its <link linkend="parentref">parent</link></para> |
Added README.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | SOME SCRIPTS WILL NOT RUN AS IS Note that the source code for certain of the example shell scripts have the "<" and ">" in place of angle brackets (< and >), or & in place of the ampersand (&). This is necessary for the Docbook SGML conversion. If you plan to run these scripts from the enclosed source files, then it will, of course, be necessary to restore the angle brackets or ampersand. < becomes < > becomes > << becomes << <<< becomes <<< >> becomes >> & becomes & In some of the below cases, only the comments are affected, and these scripts require no fixups to execute as expected. The following sed scriptlet will accomplish the fixup: sed -e 's/</</g' -e 's/>/>/g' SCRIPT.sh > FIXED_SCRIPT.sh A followup double-check is advisable, of course. ======================================================================= Scripts needing to be altered: ----------------------------- Du.sh (line 19) encryptedpw.sh (lines 27 and 35) ex57.sh (comment in line 8) ex70.sh (line 3) ex71.sh (line 7) ex71a.sh (line 8) ex71b.sh (line 22) logevents.sh (lines 31, 39-42, 47-8, 54, 56, 58, 61, 63, 67) m4.sh (line 8: "\&" --> \&) pw.sh (comment in line 4) read-r.sh (lines 5, 6, 20, 27) rnd.sh (comments in lines 38, 55, 64) rot13.sh (comment, line 6) rot13a.sh (comment, line 5) here-function.sh (line 16) avoid-subshell.sh (lines 24, 25, and 33) usb.sh (line 28) prepend.sh (lines 18 and 28) array-assign.bash ( comments on lines 18-19) cdll (lines 51-53, 59, 63-69, 82-83, 85, 463, 521, 567-568, 570, 580-586, 637, 656-658) directory-info.sh (lines 36, 166, 273 and 353) is-spammer.sh (comments on lines 4, 35, and 51) bashrc (comment on line 4) commentblock.sh (lines 4 and 23) self-document.sh (line 14) self-document2.sh (line 8) dev-tcp.sh (line 14) archiveweblogs.sh (comment in line 4) multiple-processes.sh (line 143) catscripts.sh (lines 12 and 21) is_spammer.bash (comments on various lines) iscan.sh (comment in line 10) Hash.lib, (comments in lines lines 103 and 116: & --> &) (comment in line 3: < --> <, > --> >) hash-example.sh (comment in line 3: < --> <, > --> >) quote-fetch.sh (comment in line 26: & --> &) ftpget.sh (comment in line 28) whx.sh (comment in line 259) pad.sh, (comments in line 6, lines 26, 27, 28, 29, 30, 33, 34). nightly-backup.sh (comment in line 4) tohtml.sh: lines 22-33 lines 35-36 lines 38-41 line 74 line 83 lines 100-101 In-line code block at beginning of "I/O Redirection" chapter, line 41. In-line code block at "mkfifo" entro in "Miscellaneous Commands" section of "External Filters, Programs and Commands" chapter. insertion-sort.sh: line 8 (comment) line 44 line 45 line 57 (two instances) tree2.sh: line 38 (comment) line 88 petals.sh line 56 realname.sh line 26 qky.sh line 7 line 63 line 87 line 113 (The unaltered, executable script can be downloaded. See: http://bash.deta.in/qky.README.html) maned.sh line 6 (comment) progress-bar.sh line 26 line 30 nim.sh line 27 paragraph-spac3.sh line 6 sw.sh line 5 (comment) here-commsub.sh line 5 UseGetOpt.sh: line 4 (comment) UseGetOpt-2.sh: line 11 (comment) bash64.sh: line 4 (comment) speech.sh: line 14 |
Added TABEXP.sgml.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <title>An Introduction to Programmable Completion</title> <para>The <firstterm>programmable completion</firstterm> feature in Bash permits typing a partial command, then pressing the <keycap>[Tab]</keycap> key to auto-complete the command sequence. <footnote><para>This works only from the <firstterm>command line</firstterm>, of course, and not within a script.</para></footnote> If multiple completions are possible, then <keycap>[Tab]</keycap> lists them all. Let's see how it works.</para> <para> <screen> <prompt>bash$ </prompt><userinput>xtra[Tab]</userinput> <computeroutput>xtraceroute xtrapin xtrapproto xtraceroute.real xtrapinfo xtrapreset xtrapchar xtrapout xtrapstats</computeroutput> <prompt>bash$ </prompt><userinput>xtrac[Tab]</userinput> <computeroutput>xtraceroute xtraceroute.real</computeroutput> <prompt>bash$ </prompt><userinput>xtraceroute.r[Tab]</userinput> <computeroutput>xtraceroute.real</computeroutput> </screen> </para> <para>Tab completion also works for variables and path names.</para> <para> <screen> <prompt>bash$ </prompt><userinput>echo $BASH[Tab]</userinput> <computeroutput>$BASH $BASH_COMPLETION $BASH_SUBSHELL $BASH_ARGC $BASH_COMPLETION_DIR $BASH_VERSINFO $BASH_ARGV $BASH_LINENO $BASH_VERSION $BASH_COMMAND $BASH_SOURCE</computeroutput> <prompt>bash$ </prompt><userinput>echo /usr/local/[Tab]</userinput> <computeroutput>bin/ etc/ include/ libexec/ sbin/ src/ doc/ games/ lib/ man/ share/</computeroutput> </screen> </para> <para><anchor id="completeref"></para> <para>The Bash <command>complete</command> and <command>compgen</command> <link linkend="builtinref">builtins</link> make it possible for <firstterm>tab completion</firstterm> to recognize partial <firstterm>parameters</firstterm> and <firstterm>options</firstterm> to commands. In a very simple case, we can use <command>complete</command> from the command-line to specify a short list of acceptable parameters.</para> <screen> <prompt>bash$ </prompt><userinput>touch sample_command</userinput> <prompt>bash$ </prompt><userinput>touch file1.txt file2.txt file2.doc file30.txt file4.zzz</userinput> <prompt>bash$ </prompt><userinput>chmod +x sample_command</userinput> <prompt>bash$ </prompt><userinput>complete -f -X '!*.txt' sample_command</userinput> <prompt>bash$ </prompt><userinput>./sample[Tab][Tab]</userinput> <computeroutput>sample_command</computeroutput> <computeroutput>file1.txt file2.txt file30.txt</computeroutput> </screen> <para>The <option>-f</option> option to <firstterm>complete</firstterm> specifies filenames, and <option>-X</option> the filter pattern.</para> <para><anchor id="compgenref"></para> <para>For anything more complex, we could write a script that specifies a list of acceptable command-line parameters. The <command>compgen</command> builtin expands a list of <firstterm>arguments</firstterm> to <firstterm>generate</firstterm> completion matches. </para> <para>Let us take a <link linkend="usegetopt2">modified version</link> of the <emphasis>UseGetOpt.sh</emphasis> script as an example command. This script accepts a number of command-line parameters, preceded by either a single or double dash. And here is the corresponding <firstterm>completion script</firstterm>, by convention given a filename corresponding to its associated command.</para> <example id="usegetoptex"> <title>Completion script for <firstterm>UseGetOpt.sh</firstterm></title> <programlisting>&usegetoptex;</programlisting> </example> <para>Now, let's try it.</para> <screen> <prompt>bash$ </prompt><userinput>source UseGetOpt-2</userinput> <prompt>bash$ </prompt><userinput>./UseGetOpt-2.sh -[Tab]</userinput> <computeroutput>-- --aoption --debug --file --help --log --test -a -d -f -h -l -t</computeroutput> <prompt>bash$ </prompt><userinput>./UseGetOpt-2.sh --[Tab]</userinput> <computeroutput>-- --aoption --debug --file --help --log --test</computeroutput> </screen> <para> We begin by <link linkend="sourceref">sourcing</link> the <quote>completion script.</quote> This sets the command-line parameters. <footnote><para>Normally the default parameter completion files reside in either the <filename class="directory">/etc/profile.d</filename> directory or in <filename class="directory">/etc/bash_completion</filename>. These autoload on system startup. So, after writing a useful completion script, you might wish to move it (as <firstterm>root</firstterm>, of course) to one of these directories.</para></footnote> </para> <para>In the first instance, hitting <keycap>[Tab]</keycap> after a single dash, the output is all the possible parameters preceded by <emphasis>one or more</emphasis> dashes. Hitting <keycap>[Tab]</keycap> after <emphasis>two</emphasis> dashes gives the possible parameters preceded by <emphasis>two or more</emphasis> dashes.</para> <para>Now, just what is the point of having to jump through flaming hoops to enable command-line tab completion? <emphasis>It saves keystrokes.</emphasis> <footnote><para>It has been extensively documented that programmers are willing to put in long hours of effort in order to save ten minutes of <quote>unnecessary</quote> labor. This is known as <firstterm>optimization</firstterm>.</para></footnote> </para> <para>--</para> <para><emphasis>Resources:</emphasis></para> <para>Bash <ulink url="http://freshmeat.net/projects/bashcompletion"> programmable completion</ulink> project</para> <para>Mitch Frazier's <ulink url="http://www.linuxjournal.com"><citetitle pubwork="journal">Linux Journal</citetitle></ulink> article, <ulink url="http://www.linuxjournal.com/content/more-using-bash-complete-command"><emphasis>More on Using the Bash Complete Command</emphasis></ulink></para> <para>Steve's excellent two-part article, <quote>An Introduction to Bash Completion</quote>: <ulink url="http://www.debian-administration.org/article/An_introduction_to_bash_completion_part_1">Part 1</ulink> and <ulink url="http://www.debian-administration.org/article/An_introduction_to_bash_completion_part_2">Part 2</ulink></para> |
Added UseGetOpt-2.
> > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | # file: UseGetOpt-2 # UseGetOpt-2.sh parameter-completion _UseGetOpt-2 () # By convention, the function name { #+ starts with an underscore. local cur # Pointer to current completion word. # By convention, it's named "cur" but this isn't strictly necessary. COMPREPLY=() # Array variable storing the possible completions. cur=${COMP_WORDS[COMP_CWORD]} case "$cur" in -*) COMPREPLY=( $( compgen -W '-a -d -f -l -t -h --aoption --debug \ --file --log --test --help --' -- $cur ) );; # Generate the completion matches and load them into $COMPREPLY array. # xx) May add more cases here. # yy) # zz) esac return 0 } complete -F _UseGetOpt-2 -o filenames ./UseGetOpt-2.sh # ^^ ^^^^^^^^^^^^ Invokes the function _UseGetOpt-2. |
Added UseGetOpt-2.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 | #!/bin/bash # UseGetOpt-2.sh # Modified version of the script for illustrating tab-expansion #+ of command-line options. # See the "Introduction to Tab Expansion" appendix. # Possible options: -a -d -f -l -t -h #+ --aoption, --debug --file --log --test -- help -- # Author of original script: Peggy Russell <prusselltechgroup@gmail.com> # UseGetOpt () { declare inputOptions declare -r E_OPTERR=85 declare -r ScriptName=${0##*/} declare -r ShortOpts="adf:hlt" declare -r LongOpts="aoption,debug,file:,help,log,test" DoSomething () { echo "The function name is '${FUNCNAME}'" } inputOptions=$(getopt -o "${ShortOpts}" --long \ "${LongOpts}" --name "${ScriptName}" -- "${@}") if [[ ($? -ne 0) || ($# -eq 0) ]]; then echo "Usage: ${ScriptName} [-dhlt] {OPTION...}" exit $E_OPTERR fi eval set -- "${inputOptions}" while true; do case "${1}" in --aoption | -a) # Argument found. echo "Option [$1]" ;; --debug | -d) # Enable informational messages. echo "Option [$1] Debugging enabled" ;; --file | -f) # Check for optional argument. case "$2" in #+ Double colon is optional argument. "") # Not there. echo "Option [$1] Use default" shift ;; *) # Got it echo "Option [$1] Using input [$2]" shift ;; esac DoSomething ;; --log | -l) # Enable Logging. echo "Option [$1] Logging enabled" ;; --test | -t) # Enable testing. echo "Option [$1] Testing enabled" ;; --help | -h) echo "Option [$1] Display help" break ;; --) # Done! $# is argument number for "--", $@ is "--" echo "Option [$1] Dash Dash" break ;; *) echo "Major internal error!" exit 8 ;; esac echo "Number of arguments: [$#]" shift done shift # } exit |
Added UseGetOpt.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 | #!/bin/bash # UseGetOpt.sh # Author: Peggy Russell <prusselltechgroup@gmail.com> UseGetOpt () { declare inputOptions declare -r E_OPTERR=85 declare -r ScriptName=${0##*/} declare -r ShortOpts="adf:hlt" declare -r LongOpts="aoption,debug,file:,help,log,test" DoSomething () { echo "The function name is '${FUNCNAME}'" # Recall that $FUNCNAME is an internal variable #+ holding the name of the function it is in. } inputOptions=$(getopt -o "${ShortOpts}" --long \ "${LongOpts}" --name "${ScriptName}" -- "${@}") if [[ ($? -ne 0) || ($# -eq 0) ]]; then echo "Usage: ${ScriptName} [-dhlt] {OPTION...}" exit $E_OPTERR fi eval set -- "${inputOptions}" # Only for educational purposes. Can be removed. #----------------------------------------------- echo "++ Test: Number of arguments: [$#]" echo '++ Test: Looping through "$@"' for a in "$@"; do echo " ++ [$a]" done #----------------------------------------------- while true; do case "${1}" in --aoption | -a) # Argument found. echo "Option [$1]" ;; --debug | -d) # Enable informational messages. echo "Option [$1] Debugging enabled" ;; --file | -f) # Check for optional argument. case "$2" in #+ Double colon is optional argument. "") # Not there. echo "Option [$1] Use default" shift ;; *) # Got it echo "Option [$1] Using input [$2]" shift ;; esac DoSomething ;; --log | -l) # Enable Logging. echo "Option [$1] Logging enabled" ;; --test | -t) # Enable testing. echo "Option [$1] Testing enabled" ;; --help | -h) echo "Option [$1] Display help" break ;; --) # Done! $# is argument number for "--", $@ is "--" echo "Option [$1] Dash Dash" break ;; *) echo "Major internal error!" exit 8 ;; esac echo "Number of arguments: [$#]" shift done shift # Only for educational purposes. Can be removed. #---------------------------------------------------------------------- echo "++ Test: Number of arguments after \"--\" is [$#] They are: [$@]" echo '++ Test: Looping through "$@"' for a in "$@"; do echo " ++ [$a]" done #---------------------------------------------------------------------- } ################################### M A I N ######################## # If you remove "function UseGetOpt () {" and corresponding "}", #+ you can uncomment the "exit 0" line below, and invoke this script #+ with the various options from the command-line. #------------------------------------------------------------------- # exit 0 echo "Test 1" UseGetOpt -f myfile one "two three" four echo;echo "Test 2" UseGetOpt -h echo;echo "Test 3 - Short Options" UseGetOpt -adltf myfile anotherfile echo;echo "Test 4 - Long Options" UseGetOpt --aoption --debug --log --test --file myfile anotherfile exit |
Added VIEWDATA.BAT.
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | REM VIEWDATA REM INSPIRED BY AN EXAMPLE IN "DOS POWERTOOLS" REM BY PAUL SOMERSON @ECHO OFF IF !%1==! GOTO VIEWDATA REM IF NO COMMAND-LINE ARG... FIND "%1" C:\BOZO\BOOKLIST.TXT GOTO EXIT0 REM PRINT LINE WITH STRING MATCH, THEN EXIT. :VIEWDATA TYPE C:\BOZO\BOOKLIST.TXT | MORE REM SHOW ENTIRE FILE, 1 PAGE AT A TIME. :EXIT0 |
Added abs-book.sgml.
more than 10,000 changes
Added add-drive.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 | #!/bin/bash # Adding a second hard drive to system. # Software configuration. Assumes hardware already mounted. # From an article by the author of the ABS Guide. # In issue #38 of _Linux Gazette_, http://www.linuxgazette.com. ROOT_UID=0 # This script must be run as root. E_NOTROOT=67 # Non-root exit error. if [ "$UID" -ne "$ROOT_UID" ] then echo "Must be root to run this script." exit $E_NOTROOT fi # Use with extreme caution! # If something goes wrong, you may wipe out your current filesystem. NEWDISK=/dev/hdb # Assumes /dev/hdb vacant. Check! MOUNTPOINT=/mnt/newdisk # Or choose another mount point. fdisk $NEWDISK mke2fs -cv $NEWDISK1 # Check for bad blocks (verbose output). # Note: ^ /dev/hdb1, *not* /dev/hdb! mkdir $MOUNTPOINT chmod 777 $MOUNTPOINT # Makes new drive accessible to all users. # Now, test ... # mount -t ext2 /dev/hdb1 /mnt/newdisk # Try creating a directory. # If it works, umount it, and proceed. # Final step: # Add the following line to /etc/fstab. # /dev/hdb1 /mnt/newdisk ext2 defaults 1 1 exit |
Added agram.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 | #!/bin/bash # agram.sh: Playing games with anagrams. # Find anagrams of... LETTERSET=etaoinshrdlu FILTER='.......' # How many letters minimum? # 1234567 anagram "$LETTERSET" | # Find all anagrams of the letterset... grep "$FILTER" | # With at least 7 letters, grep '^is' | # starting with 'is' grep -v 's$' | # no plurals grep -v 'ed$' # no past tense verbs # Possible to add many combinations of conditions and filters. # Uses "anagram" utility #+ that is part of the author's "yawl" word list package. # http://ibiblio.org/pub/Linux/libs/yawl-0.3.2.tar.gz # http://bash.deta.in/yawl-0.3.2.tar.gz exit 0 # End of code. bash$ sh agram.sh islander isolate isolead isotheral # Exercises: # --------- # Modify this script to take the LETTERSET as a command-line parameter. # Parameterize the filters in lines 11 - 13 (as with $FILTER), #+ so that they can be specified by passing arguments to a function. # For a slightly different approach to anagramming, #+ see the agram2.sh script. |
Added agram2.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 | #!/bin/bash # agram2.sh # Example of nested command substitution. # Uses "anagram" utility #+ that is part of the author's "yawl" word list package. # http://ibiblio.org/pub/Linux/libs/yawl-0.3.2.tar.gz # http://bash.deta.in/yawl-0.3.2.tar.gz E_NOARGS=86 E_BADARG=87 MINLEN=7 if [ -z "$1" ] then echo "Usage $0 LETTERSET" exit $E_NOARGS # Script needs a command-line argument. elif [ ${#1} -lt $MINLEN ] then echo "Argument must have at least $MINLEN letters." exit $E_BADARG fi FILTER='.......' # Must have at least 7 letters. # 1234567 Anagrams=( $(echo $(anagram $1 | grep $FILTER) ) ) # $( $( nested command sub. ) ) # ( array assignment ) echo echo "${#Anagrams[*]} 7+ letter anagrams found" echo echo ${Anagrams[0]} # First anagram. echo ${Anagrams[1]} # Second anagram. # Etc. # echo "${Anagrams[*]}" # To list all the anagrams in a single line . . . # Look ahead to the Arrays chapter for enlightenment on #+ what's going on here. # See also the agram.sh script for an exercise in anagram finding. exit $? |
Added alias.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 | #!/bin/bash # alias.sh shopt -s expand_aliases # Must set this option, else script will not expand aliases. # First, some fun. alias Jesse_James='echo "\"Alias Jesse James\" was a 1959 comedy starring Bob Hope."' Jesse_James echo; echo; echo; alias ll="ls -l" # May use either single (') or double (") quotes to define an alias. echo "Trying aliased \"ll\":" ll /usr/X11R6/bin/mk* #* Alias works. echo directory=/usr/X11R6/bin/ prefix=mk* # See if wild card causes problems. echo "Variables \"directory\" + \"prefix\" = $directory$prefix" echo alias lll="ls -l $directory$prefix" echo "Trying aliased \"lll\":" lll # Long listing of all files in /usr/X11R6/bin stating with mk. # An alias can handle concatenated variables -- including wild card -- o.k. TRUE=1 echo if [ TRUE ] then alias rr="ls -l" echo "Trying aliased \"rr\" within if/then statement:" rr /usr/X11R6/bin/mk* #* Error message results! # Aliases not expanded within compound statements. echo "However, previously expanded alias still recognized:" ll /usr/X11R6/bin/mk* fi echo count=0 while [ $count -lt 3 ] do alias rrr="ls -l" echo "Trying aliased \"rrr\" within \"while\" loop:" rrr /usr/X11R6/bin/mk* #* Alias will not expand here either. # alias.sh: line 57: rrr: command not found let count+=1 done echo; echo alias xyz='cat $0' # Script lists itself. # Note strong quotes. xyz # This seems to work, #+ although the Bash documentation suggests that it shouldn't. # # However, as Steve Jacobson points out, #+ the "$0" parameter expands immediately upon declaration of the alias. exit 0 |
Added allprofs.sh.
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/bash # allprofs.sh: Print all user profiles. # This script written by Heiner Steven, and modified by the document author. FILE=.bashrc # File containing user profile, #+ was ".profile" in original script. for home in `awk -F: '{print $6}' /etc/passwd` do [ -d "$home" ] || continue # If no home directory, go to next. [ -r "$home" ] || continue # If not readable, go to next. (cd $home; [ -e $FILE ] && less $FILE) done # When script terminates, there is no need to 'cd' back to original directory, #+ because 'cd $home' takes place in a subshell. exit 0 |
Added alt-bc.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 | #!/bin/bash # Invoking 'bc' using command substitution # in combination with a 'here document'. var1=`bc << EOF 18.33 * 19.78 EOF ` echo $var1 # 362.56 # $( ... ) notation also works. v1=23.53 v2=17.881 v3=83.501 v4=171.63 var2=$(bc << EOF scale = 4 a = ( $v1 + $v2 ) b = ( $v3 * $v4 ) a * b + 15.35 EOF ) echo $var2 # 593487.8452 var3=$(bc -l << EOF scale = 9 s ( 1.7 ) EOF ) # Returns the sine of 1.7 radians. # The "-l" option calls the 'bc' math library. echo $var3 # .991664810 # Now, try it in a function... hypotenuse () # Calculate hypotenuse of a right triangle. { # c = sqrt( a^2 + b^2 ) hyp=$(bc -l << EOF scale = 9 sqrt ( $1 * $1 + $2 * $2 ) EOF ) # Can't directly return floating point values from a Bash function. # But, can echo-and-capture: echo "$hyp" } hyp=$(hypotenuse 3.68 7.31) echo "hypotenuse = $hyp" # 8.184039344 exit 0 |
Added am-i-root.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 | #!/bin/bash # am-i-root.sh: Am I root or not? ROOT_UID=0 # Root has $UID 0. if [ "$UID" -eq "$ROOT_UID" ] # Will the real "root" please stand up? then echo "You are root." else echo "You are just an ordinary user (but mom loves you just the same)." fi exit 0 # ============================================================= # # Code below will not execute, because the script already exited. # An alternate method of getting to the root of matters: ROOTUSER_NAME=root username=`id -nu` # Or... username=`whoami` if [ "$username" = "$ROOTUSER_NAME" ] then echo "Rooty, toot, toot. You are root." else echo "You are just a regular fella." fi |
Added and-list2.sh.
> > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/bash ARGS=1 # Number of arguments expected. E_BADARGS=85 # Exit value if incorrect number of args passed. test $# -ne $ARGS && \ # ^^^^^^^^^^^^ condition #1 echo "Usage: `basename $0` $ARGS argument(s)" && exit $E_BADARGS # ^^ # If condition #1 tests true (wrong number of args passed to script), #+ then the rest of the line executes, and script terminates. # Line below executes only if the above test fails. echo "Correct number of arguments passed to this script." exit 0 # To check exit value, do a "echo $?" after script termination. |
Added and-or.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 | #!/bin/bash a=24 b=47 if [ "$a" -eq 24 ] && [ "$b" -eq 47 ] then echo "Test #1 succeeds." else echo "Test #1 fails." fi # ERROR: if [ "$a" -eq 24 && "$b" -eq 47 ] #+ attempts to execute ' [ "$a" -eq 24 ' #+ and fails to finding matching ']'. # # Note: if [[ $a -eq 24 && $b -eq 24 ]] works. # The double-bracket if-test is more flexible #+ than the single-bracket version. # (The "&&" has a different meaning in line 17 than in line 6.) # Thanks, Stephane Chazelas, for pointing this out. if [ "$a" -eq 98 ] || [ "$b" -eq 47 ] then echo "Test #2 succeeds." else echo "Test #2 fails." fi # The -a and -o options provide #+ an alternative compound condition test. # Thanks to Patrick Callahan for pointing this out. if [ "$a" -eq 24 -a "$b" -eq 47 ] then echo "Test #3 succeeds." else echo "Test #3 fails." fi if [ "$a" -eq 98 -o "$b" -eq 47 ] then echo "Test #4 succeeds." else echo "Test #4 fails." fi a=rhino b=crocodile if [ "$a" = rhino ] && [ "$b" = crocodile ] then echo "Test #5 succeeds." else echo "Test #5 fails." fi exit 0 |
Added archiveweblogs.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 | #!/bin/bash # archiveweblogs.sh v1.0 # Troy Engel <tengel@fluid.com> # Slightly modified by document author. # Used with permission. # # This script will preserve the normally rotated and #+ thrown away weblogs from a default RedHat/Apache installation. # It will save the files with a date/time stamp in the filename, #+ bzipped, to a given directory. # # Run this from crontab nightly at an off hour, #+ as bzip2 can suck up some serious CPU on huge logs: # 0 2 * * * /opt/sbin/archiveweblogs.sh PROBLEM=66 # Set this to your backup dir. BKP_DIR=/opt/backups/weblogs # Default Apache/RedHat stuff LOG_DAYS="4 3 2 1" LOG_DIR=/var/log/httpd LOG_FILES="access_log error_log" # Default RedHat program locations LS=/bin/ls MV=/bin/mv ID=/usr/bin/id CUT=/bin/cut COL=/usr/bin/column BZ2=/usr/bin/bzip2 # Are we root? USER=`$ID -u` if [ "X$USER" != "X0" ]; then echo "PANIC: Only root can run this script!" exit $PROBLEM fi # Backup dir exists/writable? if [ ! -x $BKP_DIR ]; then echo "PANIC: $BKP_DIR doesn't exist or isn't writable!" exit $PROBLEM fi # Move, rename and bzip2 the logs for logday in $LOG_DAYS; do for logfile in $LOG_FILES; do MYFILE="$LOG_DIR/$logfile.$logday" if [ -w $MYFILE ]; then DTS=`$LS -lgo --time-style=+%Y%m%d $MYFILE | $COL -t | $CUT -d ' ' -f7` $MV $MYFILE $BKP_DIR/$logfile.$DTS $BZ2 $BKP_DIR/$logfile.$DTS else # Only spew an error if the file exits (ergo non-writable). if [ -f $MYFILE ]; then echo "ERROR: $MYFILE not writable. Skipping." fi fi done done exit 0 |
Added arglist.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 | #!/bin/bash # arglist.sh # Invoke this script with several arguments, such as "one two three" ... E_BADARGS=85 if [ ! -n "$1" ] then echo "Usage: `basename $0` argument1 argument2 etc." exit $E_BADARGS fi echo index=1 # Initialize count. echo "Listing args with \"\$*\":" for arg in "$*" # Doesn't work properly if "$*" isn't quoted. do echo "Arg #$index = $arg" let "index+=1" done # $* sees all arguments as single word. echo "Entire arg list seen as single word." echo index=1 # Reset count. # What happens if you forget to do this? echo "Listing args with \"\$@\":" for arg in "$@" do echo "Arg #$index = $arg" let "index+=1" done # $@ sees arguments as separate words. echo "Arg list seen as separate words." echo index=1 # Reset count. echo "Listing args with \$* (unquoted):" for arg in $* do echo "Arg #$index = $arg" let "index+=1" done # Unquoted $* sees arguments as separate words. echo "Arg list seen as separate words." exit 0 |
Added arith-ops.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 | #!/bin/bash # Counting to 11 in 10 different ways. n=1; echo -n "$n " let "n = $n + 1" # let "n = n + 1" also works. echo -n "$n " : $((n = $n + 1)) # ":" necessary because otherwise Bash attempts #+ to interpret "$((n = $n + 1))" as a command. echo -n "$n " (( n = n + 1 )) # A simpler alternative to the method above. # Thanks, David Lombard, for pointing this out. echo -n "$n " n=$(($n + 1)) echo -n "$n " : $[ n = $n + 1 ] # ":" necessary because otherwise Bash attempts #+ to interpret "$[ n = $n + 1 ]" as a command. # Works even if "n" was initialized as a string. echo -n "$n " n=$[ $n + 1 ] # Works even if "n" was initialized as a string. #* Avoid this type of construct, since it is obsolete and nonportable. # Thanks, Stephane Chazelas. echo -n "$n " # Now for C-style increment operators. # Thanks, Frank Wang, for pointing this out. let "n++" # let "++n" also works. echo -n "$n " (( n++ )) # (( ++n )) also works. echo -n "$n " : $(( n++ )) # : $(( ++n )) also works. echo -n "$n " : $[ n++ ] # : $[ ++n ] also works echo -n "$n " echo exit 0 |
Added arith-tests.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 | #!/bin/bash # arith-tests.sh # Arithmetic tests. # The (( ... )) construct evaluates and tests numerical expressions. # Exit status opposite from [ ... ] construct! (( 0 )) echo "Exit status of \"(( 0 ))\" is $?." # 1 (( 1 )) echo "Exit status of \"(( 1 ))\" is $?." # 0 (( 5 > 4 )) # true echo "Exit status of \"(( 5 > 4 ))\" is $?." # 0 (( 5 > 9 )) # false echo "Exit status of \"(( 5 > 9 ))\" is $?." # 1 (( 5 == 5 )) # true echo "Exit status of \"(( 5 == 5 ))\" is $?." # 0 # (( 5 = 5 )) gives an error message. (( 5 - 5 )) # 0 echo "Exit status of \"(( 5 - 5 ))\" is $?." # 1 (( 5 / 4 )) # Division o.k. echo "Exit status of \"(( 5 / 4 ))\" is $?." # 0 (( 1 / 2 )) # Division result < 1. echo "Exit status of \"(( 1 / 2 ))\" is $?." # Rounded off to 0. # 1 (( 1 / 0 )) 2>/dev/null # Illegal division by 0. # ^^^^^^^^^^^ echo "Exit status of \"(( 1 / 0 ))\" is $?." # 1 # What effect does the "2>/dev/null" have? # What would happen if it were removed? # Try removing it, then rerunning the script. # ======================================= # # (( ... )) also useful in an if-then test. var1=5 var2=4 if (( var1 > var2 )) then #^ ^ Note: Not $var1, $var2. Why? echo "$var1 is greater than $var2" fi # 5 is greater than 4 exit 0 |
Added arr-choice.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 | #!/bin/bash # arr-choice.sh # Passing arguments to a function to select #+ one particular variable out of a group. arr0=( 10 11 12 13 14 15 ) arr1=( 20 21 22 23 24 25 ) arr2=( 30 31 32 33 34 35 ) # 0 1 2 3 4 5 Element number (zero-indexed) choose_array () { eval array_member=\${arr${array_number}[element_number]} # ^ ^^^^^^^^^^^^ # Using eval to construct the name of a variable, #+ in this particular case, an array name. echo "Element $element_number of array $array_number is $array_member" } # Function can be rewritten to take parameters. array_number=0 # First array. element_number=3 choose_array # 13 array_number=2 # Third array. element_number=4 choose_array # 34 array_number=3 # Null array (arr3 not allocated). element_number=4 choose_array # (null) # Thank you, Antonio Macchi, for pointing this out. |
Added array-append.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #! /bin/bash # array-append.bash # Copyright (c) Michael S. Zick, 2003, All rights reserved. # License: Unrestricted reuse in any form, for any purpose. # Version: $ID$ # # Slightly modified in formatting by M.C. # Array operations are Bash-specific. # Legacy UNIX /bin/sh lacks equivalents. # Pipe the output of this script to 'more' #+ so it doesn't scroll off the terminal. # Or, redirect output to a file. declare -a array1=( zero1 one1 two1 ) # Subscript packed. declare -a array2=( [0]=zero2 [2]=two2 [3]=three2 ) # Subscript sparse -- [1] is not defined. echo echo '- Confirm that the array is really subscript sparse. -' echo "Number of elements: 4" # Hard-coded for illustration. for (( i = 0 ; i < 4 ; i++ )) do echo "Element [$i]: ${array2[$i]}" done # See also the more general code example in basics-reviewed.bash. declare -a dest # Combine (append) two arrays into a third array. echo echo 'Conditions: Unquoted, default IFS, All-Elements-Of operator' echo '- Undefined elements not present, subscripts not maintained. -' # # The undefined elements do not exist; they are not being dropped. dest=( ${array1[@]} ${array2[@]} ) # dest=${array1[@]}${array2[@]} # Strange results, possibly a bug. # Now, list the result. echo echo '- - Testing Array Append - -' cnt=${#dest[@]} echo "Number of elements: $cnt" for (( i = 0 ; i < cnt ; i++ )) do echo "Element [$i]: ${dest[$i]}" done # Assign an array to a single array element (twice). dest[0]=${array1[@]} dest[1]=${array2[@]} # List the result. echo echo '- - Testing modified array - -' cnt=${#dest[@]} echo "Number of elements: $cnt" for (( i = 0 ; i < cnt ; i++ )) do echo "Element [$i]: ${dest[$i]}" done # Examine the modified second element. echo echo '- - Reassign and list second element - -' declare -a subArray=${dest[1]} cnt=${#subArray[@]} echo "Number of elements: $cnt" for (( i = 0 ; i < cnt ; i++ )) do echo "Element [$i]: ${subArray[$i]}" done # The assignment of an entire array to a single element #+ of another array using the '=${ ... }' array assignment #+ has converted the array being assigned into a string, #+ with the elements separated by a space (the first character of IFS). # If the original elements didn't contain whitespace . . . # If the original array isn't subscript sparse . . . # Then we could get the original array structure back again. # Restore from the modified second element. echo echo '- - Listing restored element - -' declare -a subArray=( ${dest[1]} ) cnt=${#subArray[@]} echo "Number of elements: $cnt" for (( i = 0 ; i < cnt ; i++ )) do echo "Element [$i]: ${subArray[$i]}" done echo '- - Do not depend on this behavior. - -' echo '- - This behavior is subject to change - -' echo '- - in versions of Bash newer than version 2.05b - -' # MSZ: Sorry about any earlier confusion folks. exit 0 |
Added array-assign.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #! /bin/bash # array-assign.bash # Array operations are Bash-specific, #+ hence the ".bash" in the script name. # Copyright (c) Michael S. Zick, 2003, All rights reserved. # License: Unrestricted reuse in any form, for any purpose. # Version: $ID$ # # Clarification and additional comments by William Park. # Based on an example provided by Stephane Chazelas #+ which appeared in an earlier version of the #+ Advanced Bash Scripting Guide. # Output format of the 'times' command: # User CPU <space> System CPU # User CPU of dead children <space> System CPU of dead children # Bash has two versions of assigning all elements of an array #+ to a new array variable. # Both drop 'null reference' elements #+ in Bash versions 2.04 and later. # An additional array assignment that maintains the relationship of #+ [subscript]=value for arrays may be added to newer versions. # Constructs a large array using an internal command, #+ but anything creating an array of several thousand elements #+ will do just fine. declare -a bigOne=( /dev/* ) # All the files in /dev . . . echo echo 'Conditions: Unquoted, default IFS, All-Elements-Of' echo "Number of elements in array is ${#bigOne[@]}" # set -vx echo echo '- - testing: =( ${array[@]} ) - -' times declare -a bigTwo=( ${bigOne[@]} ) # Note parens: ^ ^ times echo echo '- - testing: =${array[@]} - -' times declare -a bigThree=${bigOne[@]} # No parentheses this time. times # Comparing the numbers shows that the second form, pointed out #+ by Stephane Chazelas, is faster. # # As William Park explains: #+ The bigTwo array assigned element by element (because of parentheses), #+ whereas bigThree assigned as a single string. # So, in essence, you have: # bigTwo=( [0]="..." [1]="..." [2]="..." ... ) # bigThree=( [0]="... ... ..." ) # # Verify this by: echo ${bigTwo[0]} # echo ${bigThree[0]} # I will continue to use the first form in my example descriptions #+ because I think it is a better illustration of what is happening. # The reusable portions of my examples will actual contain #+ the second form where appropriate because of the speedup. # MSZ: Sorry about that earlier oversight folks. # Note: # ---- # The "declare -a" statements in lines 32 and 44 #+ are not strictly necessary, since it is implicit #+ in the Array=( ... ) assignment form. # However, eliminating these declarations slows down #+ the execution of the following sections of the script. # Try it, and see. exit 0 |
Added array-function.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 | #!/bin/bash # array-function.sh: Passing an array to a function and ... # "returning" an array from a function Pass_Array () { local passed_array # Local variable! passed_array=( `echo "$1"` ) echo "${passed_array[@]}" # List all the elements of the new array #+ declared and set within the function. } original_array=( element1 element2 element3 element4 element5 ) echo echo "original_array = ${original_array[@]}" # List all elements of original array. # This is the trick that permits passing an array to a function. # ********************************** argument=`echo ${original_array[@]}` # ********************************** # Pack a variable #+ with all the space-separated elements of the original array. # # Attempting to just pass the array itself will not work. # This is the trick that allows grabbing an array as a "return value". # ***************************************** returned_array=( `Pass_Array "$argument"` ) # ***************************************** # Assign 'echoed' output of function to array variable. echo "returned_array = ${returned_array[@]}" echo "=============================================================" # Now, try it again, #+ attempting to access (list) the array from outside the function. Pass_Array "$argument" # The function itself lists the array, but ... #+ accessing the array from outside the function is forbidden. echo "Passed array (within function) = ${passed_array[@]}" # NULL VALUE since the array is a variable local to the function. echo ############################################ # And here is an even more explicit example: ret_array () { for element in {11..20} do echo "$element " # Echo individual elements done #+ of what will be assembled into an array. } arr=( $(ret_array) ) # Assemble into array. echo "Capturing array \"arr\" from function ret_array () ..." echo "Third element of array \"arr\" is ${arr[2]}." # 13 (zero-indexed) echo -n "Entire array is: " echo ${arr[@]} # 11 12 13 14 15 16 17 18 19 20 echo exit 0 # Nathan Coulter points out that passing arrays with elements containing #+ whitespace breaks this example. |
Added array-ops.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 | #!/bin/bash # array-ops.sh: More fun with arrays. array=( zero one two three four five ) # Element 0 1 2 3 4 5 echo ${array[0]} # zero echo ${array:0} # zero # Parameter expansion of first element, #+ starting at position # 0 (1st character). echo ${array:1} # ero # Parameter expansion of first element, #+ starting at position # 1 (2nd character). echo "--------------" echo ${#array[0]} # 4 # Length of first element of array. echo ${#array} # 4 # Length of first element of array. # (Alternate notation) echo ${#array[1]} # 3 # Length of second element of array. # Arrays in Bash have zero-based indexing. echo ${#array[*]} # 6 # Number of elements in array. echo ${#array[@]} # 6 # Number of elements in array. echo "--------------" array2=( [0]="first element" [1]="second element" [3]="fourth element" ) # ^ ^ ^ ^ ^ ^ ^ ^ ^ # Quoting permits embedding whitespace within individual array elements. echo ${array2[0]} # first element echo ${array2[1]} # second element echo ${array2[2]} # # Skipped in initialization, and therefore null. echo ${array2[3]} # fourth element echo ${#array2[0]} # 13 (length of first element) echo ${#array2[*]} # 3 (number of elements in array) exit |
Added array-strops.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 | #!/bin/bash # array-strops.sh: String operations on arrays. # Script by Michael Zick. # Used in ABS Guide with permission. # Fixups: 05 May 08, 04 Aug 08. # In general, any string operation using the ${name ... } notation #+ can be applied to all string elements in an array, #+ with the ${name[@] ... } or ${name[*] ...} notation. arrayZ=( one two three four five five ) echo # Trailing Substring Extraction echo ${arrayZ[@]:0} # one two three four five five # ^ All elements. echo ${arrayZ[@]:1} # two three four five five # ^ All elements following element[0]. echo ${arrayZ[@]:1:2} # two three # ^ Only the two elements after element[0]. echo "---------" # Substring Removal # Removes shortest match from front of string(s). echo ${arrayZ[@]#f*r} # one two three five five # ^ # Applied to all elements of the array. # Matches "four" and removes it. # Longest match from front of string(s) echo ${arrayZ[@]##t*e} # one two four five five # ^^ # Applied to all elements of the array. # Matches "three" and removes it. # Shortest match from back of string(s) echo ${arrayZ[@]%h*e} # one two t four five five # ^ # Applied to all elements of the array. # Matches "hree" and removes it. # Longest match from back of string(s) echo ${arrayZ[@]%%t*e} # one two four five five # ^^ # Applied to all elements of the array. # Matches "three" and removes it. echo "----------------------" # Substring Replacement # Replace first occurrence of substring with replacement. echo ${arrayZ[@]/fiv/XYZ} # one two three four XYZe XYZe # ^ # Applied to all elements of the array. # Replace all occurrences of substring. echo ${arrayZ[@]//iv/YY} # one two three four fYYe fYYe # Applied to all elements of the array. # Delete all occurrences of substring. # Not specifing a replacement defaults to 'delete' ... echo ${arrayZ[@]//fi/} # one two three four ve ve # ^^ # Applied to all elements of the array. # Replace front-end occurrences of substring. echo ${arrayZ[@]/#fi/XY} # one two three four XYve XYve # ^ # Applied to all elements of the array. # Replace back-end occurrences of substring. echo ${arrayZ[@]/%ve/ZZ} # one two three four fiZZ fiZZ # ^ # Applied to all elements of the array. echo ${arrayZ[@]/%o/XX} # one twXX three four five five # ^ # Why? echo "-----------------------------" replacement() { echo -n "!!!" } echo ${arrayZ[@]/%e/$(replacement)} # ^ ^^^^^^^^^^^^^^ # on!!! two thre!!! four fiv!!! fiv!!! # The stdout of replacement() is the replacement string. # Q.E.D: The replacement action is, in effect, an 'assignment.' echo "------------------------------------" # Accessing the "for-each": echo ${arrayZ[@]//*/$(replacement optional_arguments)} # ^^ ^^^^^^^^^^^^^ # !!! !!! !!! !!! !!! !!! # Now, if Bash would only pass the matched string #+ to the function being called . . . echo exit 0 # Before reaching for a Big Hammer -- Perl, Python, or all the rest -- # recall: # $( ... ) is command substitution. # A function runs as a sub-process. # A function writes its output (if echo-ed) to stdout. # Assignment, in conjunction with "echo" and command substitution, #+ can read a function's stdout. # The name[@] notation specifies (the equivalent of) a "for-each" #+ operation. # Bash is more powerful than you think! |
Added arrow-detect.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 | #!/bin/bash # arrow-detect.sh: Detects the arrow keys, and a few more. # Thank you, Sandro Magi, for showing me how. # -------------------------------------------- # Character codes generated by the keypresses. arrowup='\[A' arrowdown='\[B' arrowrt='\[C' arrowleft='\[D' insert='\[2' delete='\[3' # -------------------------------------------- SUCCESS=0 OTHER=65 echo -n "Press a key... " # May need to also press ENTER if a key not listed above pressed. read -n3 key # Read 3 characters. echo -n "$key" | grep "$arrowup" #Check if character code detected. if [ "$?" -eq $SUCCESS ] then echo "Up-arrow key pressed." exit $SUCCESS fi echo -n "$key" | grep "$arrowdown" if [ "$?" -eq $SUCCESS ] then echo "Down-arrow key pressed." exit $SUCCESS fi echo -n "$key" | grep "$arrowrt" if [ "$?" -eq $SUCCESS ] then echo "Right-arrow key pressed." exit $SUCCESS fi echo -n "$key" | grep "$arrowleft" if [ "$?" -eq $SUCCESS ] then echo "Left-arrow key pressed." exit $SUCCESS fi echo -n "$key" | grep "$insert" if [ "$?" -eq $SUCCESS ] then echo "\"Insert\" key pressed." exit $SUCCESS fi echo -n "$key" | grep "$delete" if [ "$?" -eq $SUCCESS ] then echo "\"Delete\" key pressed." exit $SUCCESS fi echo " Some other key pressed." exit $OTHER # ========================================= # # Mark Alexander came up with a simplified #+ version of the above script (Thank you!). # It eliminates the need for grep. #!/bin/bash uparrow=$'\x1b[A' downarrow=$'\x1b[B' leftarrow=$'\x1b[D' rightarrow=$'\x1b[C' read -s -n3 -p "Hit an arrow key: " x case "$x" in $uparrow) echo "You pressed up-arrow" ;; $downarrow) echo "You pressed down-arrow" ;; $leftarrow) echo "You pressed left-arrow" ;; $rightarrow) echo "You pressed right-arrow" ;; esac exit $? # ========================================= # # Antonio Macchi has a simpler alternative. #!/bin/bash while true do read -sn1 a test "$a" == `echo -en "\e"` || continue read -sn1 a test "$a" == "[" || continue read -sn1 a case "$a" in A) echo "up";; B) echo "down";; C) echo "right";; D) echo "left";; esac done # ========================================= # # Exercise: # -------- # 1) Add detection of the "Home," "End," "PgUp," and "PgDn" keys. |
Added ascii.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 | #!/bin/bash # ascii.sh # ver. 0.2, reldate 26 Aug 2008 # Patched by ABS Guide author. # Original script by Sebastian Arming. # Used with permission (thanks!). exec >ASCII.txt # Save stdout to file, #+ as in the example scripts #+ reassign-stdout.sh and upperconv.sh. MAXNUM=256 COLUMNS=5 OCT=8 OCTSQU=64 LITTLESPACE=-3 BIGSPACE=-5 i=1 # Decimal counter o=1 # Octal counter while [ "$i" -lt "$MAXNUM" ]; do # We don't have to count past 400 octal. paddi=" $i" echo -n "${paddi: $BIGSPACE} " # Column spacing. paddo="00$o" # echo -ne "\\${paddo: $LITTLESPACE}" # Original. echo -ne "\\0${paddo: $LITTLESPACE}" # Fixup. # ^ echo -n " " if (( i % $COLUMNS == 0)); then # New line. echo fi ((i++, o++)) # The octal notation for 8 is 10, and 64 decimal is 100 octal. (( i % $OCT == 0)) && ((o+=2)) (( i % $OCTSQU == 0)) && ((o+=20)) done exit $? # Compare this script with the "pr-asc.sh" example. # This one handles "unprintable" characters. # Exercise: # Rewrite this script to use decimal numbers, rather than octal. |
Added ascii2.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 | #!/bin/bash # Script author: Joseph Steinhauser # Lightly edited by ABS Guide author, but not commented. # Used in ABS Guide with permission. #------------------------------------------------------------------------- #-- File: ascii.sh Print ASCII chart, base 10/8/16 (JETS-2012) #------------------------------------------------------------------------- #-- Usage: ascii [oct|dec|hex|help|8|10|16] #-- #-- This script prints out a summary of ASCII char codes from Zero to 127. #-- Numeric values may be printed in Base10, Octal, or Hex. #-- #-- Format Based on: /usr/share/lib/pub/ascii with base-10 as default. #-- For more detail, man ascii . . . #------------------------------------------------------------------------- [ -n "$BASH_VERSION" ] && shopt -s extglob case "$1" in oct|[Oo]?([Cc][Tt])|8) Obase=Octal; Numy=3o;; hex|[Hh]?([Ee][Xx])|16|[Xx]) Obase=Hex; Numy=2X;; help|?(-)[h?]) sed -n '2,/^[ ]*$/p' $0;exit;; code|[Cc][Oo][Dd][Ee])sed -n '/case/,$p' $0;exit;; *) Obase=Decimal esac # CODE is actually shorter than the chart! printf "\t\t## $Obase ASCII Chart ##\n\n"; FM1="|%0${Numy:-3d}"; LD=-1 AB="nul soh stx etx eot enq ack bel bs tab nl vt np cr so si dle" AD="dc1 dc2 dc3 dc4 nak syn etb can em sub esc fs gs rs us sp" for TOK in $AB $AD; do ABR[$((LD+=1))]=$TOK; done; ABR[127]=del IDX=0 while [ $IDX -le 127 ] && CHR="${ABR[$IDX]}" do ((${#CHR}))&& FM2='%-3s'|| FM2=`printf '\\\\%o ' $IDX` printf "$FM1 $FM2" "$IDX" $CHR; (( (IDX+=1)%8))||echo '|' done exit $? |
Added ascii3.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 | #!/bin/bash # ASCII table script, using awk. # Author: Joseph Steinhauser # Used in ABS Guide with permission. #------------------------------------------------------------------------- #-- File: ascii Print ASCII chart, base 10/8/16 (JETS-2010) #------------------------------------------------------------------------- #-- Usage: ascii [oct|dec|hex|help|8|10|16] #-- #-- This script prints a summary of ASCII char codes from Zero to 127. #-- Numeric values may be printed in Base10, Octal, or Hex (Base16). #-- #-- Format Based on: /usr/share/lib/pub/ascii with base-10 as default. #-- For more detail, man ascii #------------------------------------------------------------------------- [ -n "$BASH_VERSION" ] && shopt -s extglob case "$1" in oct|[Oo]?([Cc][Tt])|8) Obase=Octal; Numy=3o;; hex|[Hh]?([Ee][Xx])|16|[Xx]) Obase=Hex; Numy=2X;; help|?(-)[h?]) sed -n '2,/^[ ]*$/p' $0;exit;; code|[Cc][Oo][Dd][Ee])sed -n '/case/,$p' $0;exit;; *) Obase=Decimal esac export Obase # CODE is actually shorter than the chart! awk 'BEGIN{print "\n\t\t## "ENVIRON["Obase"]" ASCII Chart ##\n" ab="soh,stx,etx,eot,enq,ack,bel,bs,tab,nl,vt,np,cr,so,si,dle," ad="dc1,dc2,dc3,dc4,nak,syn,etb,can,em,sub,esc,fs,gs,rs,us,sp" split(ab ad,abr,",");abr[0]="nul";abr[127]="del"; fm1="|%0'"${Numy:- 4d}"' %-3s" for(idx=0;idx<128;idx++){fmt=fm1 (++colz%8?"":"|\n") printf(fmt,idx,(idx in abr)?abr[idx]:sprintf("%c",idx))} }' exit $? |
Added assert.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 | #!/bin/bash # assert.sh ####################################################################### assert () # If condition false, { #+ exit from script #+ with appropriate error message. E_PARAM_ERR=98 E_ASSERT_FAILED=99 if [ -z "$2" ] # Not enough parameters passed then #+ to assert() function. return $E_PARAM_ERR # No damage done. fi lineno=$2 if [ ! $1 ] then echo "Assertion failed: \"$1\"" echo "File \"$0\", line $lineno" # Give name of file and line number. exit $E_ASSERT_FAILED # else # return # and continue executing the script. fi } # Insert a similar assert() function into a script you need to debug. ####################################################################### a=5 b=4 condition="$a -lt $b" # Error message and exit from script. # Try setting "condition" to something else #+ and see what happens. assert "$condition" $LINENO # The remainder of the script executes only if the "assert" does not fail. # Some commands. # Some more commands . . . echo "This statement echoes only if the \"assert\" does not fail." # . . . # More commands . . . exit $? |
Added assoc-arr-test.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 | #!/bin/bash # assoc-arr-test.sh # Benchmark test script to compare execution times of # numeric-indexed array vs. associative array. # Thank you, Erik Brandsberg. count=100000 # May take a while for some of the tests below. declare simple # Can change to 20000, if desired. declare -a array1 declare -A array2 declare -a array3 declare -A array4 echo "===Assignment tests===" echo echo "Assigning a simple variable:" # References $i twice to equalize lookup times. time for (( i=0; i< $count; i++)); do simple=$i$i done echo "---" echo "Assigning a numeric index array entry:" time for (( i=0; i< $count; i++)); do array1[$i]=$i done echo "---" echo "Overwriting a numeric index array entry:" time for (( i=0; i< $count; i++)); do array1[$i]=$i done echo "---" echo "Linear reading of numeric index array:" time for (( i=0; i< $count; i++)); do simple=array1[$i] done echo "---" echo "Assigning an associative array entry:" time for (( i=0; i< $count; i++)); do array2[$i]=$i done echo "---" echo "Overwriting an associative array entry:" time for (( i=0; i< $count; i++)); do array2[$i]=$i done echo "---" echo "Linear reading an associative array entry:" time for (( i=0; i< $count; i++)); do simple=array2[$i] done echo "---" echo "Assigning a random number to a simple variable:" time for (( i=0; i< $count; i++)); do simple=$RANDOM done echo "---" echo "Assign a sparse numeric index array entry randomly into 64k cells:" time for (( i=0; i< $count; i++)); do array3[$RANDOM]=$i done echo "---" echo "Reading sparse numeric index array entry:" time for value in "${array3[@]}"i; do simple=$value done echo "---" echo "Assigning a sparse associative array entry randomly into 64k cells:" time for (( i=0; i< $count; i++)); do array4[$RANDOM]=$i done echo "---" echo "Reading sparse associative index array entry:" time for value in "${array4[@]}"; do simple=$value done exit $? |
Added avoid-subshell.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 | #!/bin/bash # avoid-subshell.sh # Suggested by Matthew Walker. Lines=0 echo cat myfile.txt | while read line; do { echo $line (( Lines++ )); # Incremented values of this variable #+ inaccessible outside loop. # Subshell problem. } done echo "Number of lines read = $Lines" # 0 # Wrong! echo "------------------------" exec 3<> myfile.txt while read line <&3 do { echo "$line" (( Lines++ )); # Incremented values of this variable #+ accessible outside loop. # No subshell, no problem. } done exec 3>&- echo "Number of lines read = $Lines" # 8 echo exit 0 # Lines below not seen by script. $ cat myfile.txt Line 1. Line 2. Line 3. Line 4. Line 5. Line 6. Line 7. Line 8. |
Added background-loop.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 | #!/bin/bash # background-loop.sh for i in 1 2 3 4 5 6 7 8 9 10 # First loop. do echo -n "$i " done & # Run this loop in background. # Will sometimes execute after second loop. echo # This 'echo' sometimes will not display. for i in 11 12 13 14 15 16 17 18 19 20 # Second loop. do echo -n "$i " done echo # This 'echo' sometimes will not display. # ====================================================== # The expected output from the script: # 1 2 3 4 5 6 7 8 9 10 # 11 12 13 14 15 16 17 18 19 20 # Sometimes, though, you get: # 11 12 13 14 15 16 17 18 19 20 # 1 2 3 4 5 6 7 8 9 10 bozo $ # (The second 'echo' doesn't execute. Why?) # Occasionally also: # 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 # (The first 'echo' doesn't execute. Why?) # Very rarely something like: # 11 12 13 1 2 3 4 5 6 7 8 9 10 14 15 16 17 18 19 20 # The foreground loop preempts the background one. exit 0 # Nasimuddin Ansari suggests adding sleep 1 #+ after the echo -n "$i" in lines 6 and 14, #+ for some real fun. |
Added backlight.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 | #!/bin/bash # backlight.sh # reldate 02dec2011 # A bug in Fedora Core 16/17 messes up the keyboard backlight controls. # This script is a quick-n-dirty workaround, essentially a shell wrapper #+ for xrandr. It gives more control than on-screen sliders and widgets. OUTPUT=$(xrandr | grep LV | awk '{print $1}') # Get display name! INCR=.05 # For finer-grained control, set INCR to .03 or .02. old_brightness=$(xrandr --verbose | grep rightness | awk '{ print $2 }') if [ -z "$1" ] then bright=1 # If no command-line arg, set brightness to 1.0 (default). else if [ "$1" = "+" ] then bright=$(echo "scale=2; $old_brightness + $INCR" | bc) # +.05 else if [ "$1" = "-" ] then bright=$(echo "scale=2; $old_brightness - $INCR" | bc) # -.05 else if [ "$1" = "#" ] # Echoes current brightness; does not change it. then bright=$old_brightness else if [[ "$1" = "h" || "$1" = "H" ]] then echo echo "Usage:" echo "$0 [No args] Sets/resets brightness to default (1.0)." echo "$0 + Increments brightness by 0.5." echo "$0 - Decrements brightness by 0.5." echo "$0 # Echoes current brightness without changing it." echo "$0 N (number) Sets brightness to N (useful range .7 - 1.2)." echo "$0 h [H] Echoes this help message." echo "$0 any-other Gives xrandr usage message." bright=$old_brightness else bright="$1" fi fi fi fi fi xrandr --output "$OUTPUT" --brightness "$bright" # See xrandr manpage. # As root! E_CHANGE0=$? echo "Current brightness = $bright" exit $E_CHANGE0 # =========== Or, alternately . . . ==================== # #!/bin/bash # backlight2.sh # reldate 20jun2012 # A bug in Fedora Core 16/17 messes up the keyboard backlight controls. # This is a quick-n-dirty workaround, an alternate to backlight.sh. target_dir=\ /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/backlight/acpi_video0 # Hardware directory. actual_brightness=$(cat $target_dir/actual_brightness) max_brightness=$(cat $target_dir/max_brightness) Brightness=$target_dir/brightness let "req_brightness = actual_brightness" # Requested brightness. if [ "$1" = "-" ] then # Decrement brightness 1 notch. let "req_brightness = $actual_brightness - 1" else if [ "$1" = "+" ] then # Increment brightness 1 notch. let "req_brightness = $actual_brightness + 1" fi fi if [ $req_brightness -gt $max_brightness ] then req_brightness=$max_brightness fi # Do not exceed max. hardware design brightness. echo echo "Old brightness = $actual_brightness" echo "Max brightness = $max_brightness" echo "Requested brightness = $req_brightness" echo # ===================================== echo $req_brightness > $Brightness # Must be root for this to take effect. E_CHANGE1=$? # Successful? # ===================================== if [ "$?" -eq 0 ] then echo "Changed brightness!" else echo "Failed to change brightness!" fi act_brightness=$(cat $Brightness) echo "Actual brightness = $act_brightness" scale0=2 sf=100 # Scale factor. pct=$(echo "scale=$scale0; $act_brightness / $max_brightness * $sf" | bc) echo "Percentage brightness = $pct%" exit $E_CHANGE1 |
Added bad-op.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 | #!/bin/bash # bad-op.sh: Trying to use a string comparison on integers. echo number=1 # The following while-loop has two errors: #+ one blatant, and the other subtle. while [ "$number" < 5 ] # Wrong! Should be: while [ "$number" -lt 5 ] do echo -n "$number " let "number += 1" done # Attempt to run this bombs with the error message: #+ bad-op.sh: line 10: 5: No such file or directory # Within single brackets, "<" must be escaped, #+ and even then, it's still wrong for comparing integers. echo "---------------------" while [ "$number" \< 5 ] # 1 2 3 4 do # echo -n "$number " # It *seems* to work, but . . . let "number += 1" #+ it actually does an ASCII comparison, done #+ rather than a numerical one. echo; echo "---------------------" # This can cause problems. For example: lesser=5 greater=105 if [ "$greater" \< "$lesser" ] then echo "$greater is less than $lesser" fi # 105 is less than 5 # In fact, "105" actually is less than "5" #+ in a string comparison (ASCII sort order). echo exit 0 |
Added badread.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 | #!/bin/bash # badread.sh: # Attempting to use 'echo and 'read' #+ to assign variables non-interactively. # shopt -s lastpipe a=aaa b=bbb c=ccc echo "one two three" | read a b c # Try to reassign a, b, and c. echo echo "a = $a" # a = aaa echo "b = $b" # b = bbb echo "c = $c" # c = ccc # Reassignment failed. ### However . . . ## Uncommenting line 6: # shopt -s lastpipe ##+ fixes the problem! ### This is a new feature in Bash, version 4.2. # ------------------------------ # Try the following alternative. var=`echo "one two three"` set -- $var a=$1; b=$2; c=$3 echo "-------" echo "a = $a" # a = one echo "b = $b" # b = two echo "c = $c" # c = three # Reassignment succeeded. # ------------------------------ # Note also that an echo to a 'read' works within a subshell. # However, the value of the variable changes *only* within the subshell. a=aaa # Starting all over again. b=bbb c=ccc echo; echo echo "one two three" | ( read a b c; echo "Inside subshell: "; echo "a = $a"; echo "b = $b"; echo "c = $c" ) # a = one # b = two # c = three echo "-----------------" echo "Outside subshell: " echo "a = $a" # a = aaa echo "b = $b" # b = bbb echo "c = $c" # c = ccc echo exit 0 |
Added base.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 | #!/bin/bash ########################################################################### # Shellscript: base.sh - print number to different bases (Bourne Shell) # Author : Heiner Steven (heiner.steven@odn.de) # Date : 07-03-95 # Category : Desktop # $Id: base.sh,v 1.2 2000/02/06 19:55:35 heiner Exp $ # ==> Above line is RCS ID info. ########################################################################### # Description # # Changes # 21-03-95 stv fixed error occuring with 0xb as input (0.2) ########################################################################### # ==> Used in ABS Guide with the script author's permission. # ==> Comments added by ABS Guide author. NOARGS=85 PN=`basename "$0"` # Program name VER=`echo '$Revision: 1.2 $' | cut -d' ' -f2` # ==> VER=1.2 Usage () { echo "$PN - print number to different bases, $VER (stv '95) usage: $PN [number ...] If no number is given, the numbers are read from standard input. A number may be binary (base 2) starting with 0b (i.e. 0b1100) octal (base 8) starting with 0 (i.e. 014) hexadecimal (base 16) starting with 0x (i.e. 0xc) decimal otherwise (i.e. 12)" >&2 exit $NOARGS } # ==> Prints usage message. Msg () { for i # ==> in [list] missing. Why? do echo "$PN: $i" >&2 done } Fatal () { Msg "$@"; exit 66; } PrintBases () { # Determine base of the number for i # ==> in [list] missing... do # ==> so operates on command-line arg(s). case "$i" in 0b*) ibase=2;; # binary 0x*|[a-f]*|[A-F]*) ibase=16;; # hexadecimal 0*) ibase=8;; # octal [1-9]*) ibase=10;; # decimal *) Msg "illegal number $i - ignored" continue;; esac # Remove prefix, convert hex digits to uppercase (bc needs this). number=`echo "$i" | sed -e 's:^0[bBxX]::' | tr '[a-f]' '[A-F]'` # ==> Uses ":" as sed separator, rather than "/". # Convert number to decimal dec=`echo "ibase=$ibase; $number" | bc` # ==> 'bc' is calculator utility. case "$dec" in [0-9]*) ;; # number ok *) continue;; # error: ignore esac # Print all conversions in one line. # ==> 'here document' feeds command list to 'bc'. echo `bc <<! obase=16; "hex="; $dec obase=10; "dec="; $dec obase=8; "oct="; $dec obase=2; "bin="; $dec ! ` | sed -e 's: : :g' done } while [ $# -gt 0 ] # ==> Is a "while loop" really necessary here, # ==>+ since all the cases either break out of the loop # ==>+ or terminate the script. # ==> (Above comment by Paulo Marcel Coelho Aragao.) do case "$1" in --) shift; break;; -h) Usage;; # ==> Help message. -*) Usage;; *) break;; # First number esac # ==> Error checking for illegal input might be appropriate. shift done if [ $# -gt 0 ] then PrintBases "$@" else # Read from stdin. while read line do PrintBases $line done fi exit |
Added base64.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 | #!/bin/bash # base64.sh: Bash implementation of Base64 encoding and decoding. # # Copyright (c) 2011 vladz <vladz@devzero.fr> # Used in ABSG with permission (thanks!). # # Encode or decode original Base64 (and also Base64url) #+ from STDIN to STDOUT. # # Usage: # # Encode # $ ./base64.sh < binary-file > binary-file.base64 # Decode # $ ./base64.sh -d < binary-file.base64 > binary-file # # Reference: # # [1] RFC4648 - "The Base16, Base32, and Base64 Data Encodings" # http://tools.ietf.org/html/rfc4648#section-5 # The base64_charset[] array contains entire base64 charset, # and additionally the character "=" ... base64_charset=( {A..Z} {a..z} {0..9} + / = ) # Nice illustration of brace expansion. # Uncomment the ### line below to use base64url encoding instead of #+ original base64. ### base64_charset=( {A..Z} {a..z} {0..9} - _ = ) # Output text width when encoding #+ (64 characters, just like openssl output). text_width=64 function display_base64_char { # Convert a 6-bit number (between 0 and 63) into its corresponding values #+ in Base64, then display the result with the specified text width. printf "${base64_charset[$1]}"; (( width++ )) (( width % text_width == 0 )) && printf "\n" } function encode_base64 { # Encode three 8-bit hexadecimal codes into four 6-bit numbers. # We need two local int array variables: # c8[]: to store the codes of the 8-bit characters to encode # c6[]: to store the corresponding encoded values on 6-bit declare -a -i c8 c6 # Convert hexadecimal to decimal. c8=( $(printf "ibase=16; ${1:0:2}\n${1:2:2}\n${1:4:2}\n" | bc) ) # Let's play with bitwise operators #+ (3x8-bit into 4x6-bits conversion). (( c6[0] = c8[0] >> 2 )) (( c6[1] = ((c8[0] & 3) << 4) | (c8[1] >> 4) )) # The following operations depend on the c8 element number. case ${#c8[*]} in 3) (( c6[2] = ((c8[1] & 15) << 2) | (c8[2] >> 6) )) (( c6[3] = c8[2] & 63 )) ;; 2) (( c6[2] = (c8[1] & 15) << 2 )) (( c6[3] = 64 )) ;; 1) (( c6[2] = c6[3] = 64 )) ;; esac for char in ${c6[@]}; do display_base64_char ${char} done } function decode_base64 { # Decode four base64 characters into three hexadecimal ASCII characters. # c8[]: to store the codes of the 8-bit characters # c6[]: to store the corresponding Base64 values on 6-bit declare -a -i c8 c6 # Find decimal value corresponding to the current base64 character. for current_char in ${1:0:1} ${1:1:1} ${1:2:1} ${1:3:1}; do [ "${current_char}" = "=" ] && break position=0 while [ "${current_char}" != "${base64_charset[${position}]}" ]; do (( position++ )) done c6=( ${c6[*]} ${position} ) done # Let's play with bitwise operators #+ (4x8-bit into 3x6-bits conversion). (( c8[0] = (c6[0] << 2) | (c6[1] >> 4) )) # The next operations depends on the c6 elements number. case ${#c6[*]} in 3) (( c8[1] = ( (c6[1] & 15) << 4) | (c6[2] >> 2) )) (( c8[2] = (c6[2] & 3) << 6 )); unset c8[2] ;; 4) (( c8[1] = ( (c6[1] & 15) << 4) | (c6[2] >> 2) )) (( c8[2] = ( (c6[2] & 3) << 6) | c6[3] )) ;; esac for char in ${c8[*]}; do printf "\x$(printf "%x" ${char})" done } # main () if [ "$1" = "-d" ]; then # decode # Reformat STDIN in pseudo 4x6-bit groups. content=$(cat - | tr -d "\n" | sed -r "s/(.{4})/\1 /g") for chars in ${content}; do decode_base64 ${chars}; done else # Make a hexdump of stdin and reformat in 3-byte groups. content=$(cat - | xxd -ps -u | sed -r "s/(\w{6})/\1 /g" | tr -d "\n") for chars in ${content}; do encode_base64 ${chars}; done echo fi |
Added bash-profile.snippet.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | # From Andrzej Szelachowski's ~/.bash_profile: # Note that a variable may require special treatment #+ if it will be exported. DARKGRAY='\e[1;30m' LIGHTRED='\e[1;31m' GREEN='\e[32m' YELLOW='\e[1;33m' LIGHTBLUE='\e[1;34m' NC='\e[m' PCT="\`if [[ \$EUID -eq 0 ]]; then T='$LIGHTRED' ; else T='$LIGHTBLUE'; fi; echo \$T \`" # For "literal" command substitution to be assigned to a variable, #+ use escapes and double quotes: #+ PCT="\` ... \`" . . . # Otherwise, the value of PCT variable is assigned only once, #+ when the variable is exported/read from .bash_profile, #+ and it will not change afterwards even if the user ID changes. PS1="\n$GREEN[\w] \n$DARKGRAY($PCT\t$DARKGRAY)-($PCT\u$DARKGRAY)-($PCT\! $DARKGRAY)$YELLOW-> $NC" # Escape a variables whose value changes: # if [[ \$EUID -eq 0 ]], # Otherwise the value of the EUID variable will be assigned only once, #+ as above. # When a variable is assigned, it should be called escaped: #+ echo \$T, # Otherwise the value of the T variable is taken from the moment the PCT #+ variable is exported/read from .bash_profile. # So, in this example it would be null. # When a variable's value contains a semicolon it should be strong quoted: # T='$LIGHTRED', # Otherwise, the semicolon will be interpreted as a command separator. # Variables PCT and PS1 can be merged into a new PS1 variable: PS1="\`if [[ \$EUID -eq 0 ]]; then PCT='$LIGHTRED'; else PCT='$LIGHTBLUE'; fi; echo '\n$GREEN[\w] \n$DARKGRAY('\$PCT'\t$DARKGRAY)-\ ('\$PCT'\u$DARKGRAY)-('\$PCT'\!$DARKGRAY)$YELLOW-> $NC'\`" # The trick is to use strong quoting for parts of old PS1 variable. |
Added bashandperl.sh.
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/bash # bashandperl.sh echo "Greetings from the Bash part of the script, $0." # More Bash commands may follow here. exit # End of Bash part of the script. # ======================================================= #!/usr/bin/perl # This part of the script must be invoked with # perl -x bashandperl.sh print "Greetings from the Perl part of the script, $0.\n"; # Perl doesn't seem to like "echo" ... # More Perl commands may follow here. # End of Perl part of the script. |
Added bashpodder.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 | #!/bin/bash # bashpodder.sh: # By Linc 10/1/2004 # Find the latest script at #+ http://linc.homeunix.org:8080/scripts/bashpodder # Last revision 12/14/2004 - Many Contributors! # If you use this and have made improvements or have comments #+ drop me an email at linc dot fessenden at gmail dot com # I'd appreciate it! # ==> ABS Guide extra comments. # ==> Author of this script has kindly granted permission # ==>+ for inclusion in ABS Guide. # ==> ################################################################ # # ==> What is "podcasting"? # ==> It's broadcasting "radio shows" over the Internet. # ==> These shows can be played on iPods and other music file players. # ==> This script makes it possible. # ==> See documentation at the script author's site, above. # ==> ################################################################ # Make script crontab friendly: cd $(dirname $0) # ==> Change to directory where this script lives. # datadir is the directory you want podcasts saved to: datadir=$(date +%Y-%m-%d) # ==> Will create a date-labeled directory, named: YYYY-MM-DD # Check for and create datadir if necessary: if test ! -d $datadir then mkdir $datadir fi # Delete any temp file: rm -f temp.log # Read the bp.conf file and wget any url not already #+ in the podcast.log file: while read podcast do # ==> Main action follows. file=$(wget -q $podcast -O - | tr '\r' '\n' | tr \' \" | \ sed -n 's/.*url="\([^"]*\)".*/\1/p') for url in $file do echo $url >> temp.log if ! grep "$url" podcast.log > /dev/null then wget -q -P $datadir "$url" fi done done < bp.conf # Move dynamically created log file to permanent log file: cat podcast.log >> temp.log sort temp.log | uniq > podcast.log rm temp.log # Create an m3u playlist: ls $datadir | grep -v m3u > $datadir/podcast.m3u exit 0 ################################################# For a different scripting approach to Podcasting, see Phil Salkie's article, "Internet Radio to Podcast with Shell Tools" in the September, 2005 issue of LINUX JOURNAL, http://www.linuxjournal.com/article/8171 ################################################# |
Added bashrc.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 | # =============================================================== # # # PERSONAL $HOME/.bashrc FILE for bash-3.0 (or later) # By Emmanuel Rouat [no-email] # # Last modified: Tue Nov 20 22:04:47 CET 2012 # This file is normally read by interactive shells only. #+ Here is the place to define your aliases, functions and #+ other interactive features like your prompt. # # The majority of the code here assumes you are on a GNU #+ system (most likely a Linux box) and is often based on code #+ found on Usenet or Internet. # # See for instance: # http://tldp.org/LDP/abs/html/index.html # http://www.caliban.org/bash # http://www.shelldorado.com/scripts/categories.html # http://www.dotfiles.org # # The choice of colors was done for a shell with a dark background #+ (white on black), and this is usually also suited for pure text-mode #+ consoles (no X server available). If you use a white background, #+ you'll have to do some other choices for readability. # # This bashrc file is a bit overcrowded. # Remember, it is just just an example. # Tailor it to your needs. # # =============================================================== # # --> Comments added by HOWTO author. # If not running interactively, don't do anything [ -z "$PS1" ] && return #------------------------------------------------------------- # Source global definitions (if any) #------------------------------------------------------------- if [ -f /etc/bashrc ]; then . /etc/bashrc # --> Read /etc/bashrc, if present. fi #-------------------------------------------------------------- # Automatic setting of $DISPLAY (if not set already). # This works for me - your mileage may vary. . . . # The problem is that different types of terminals give #+ different answers to 'who am i' (rxvt in particular can be #+ troublesome) - however this code seems to work in a majority #+ of cases. #-------------------------------------------------------------- function get_xserver () { case $TERM in xterm ) XSERVER=$(who am i | awk '{print $NF}' | tr -d ')''(' ) # Ane-Pieter Wieringa suggests the following alternative: # I_AM=$(who am i) # SERVER=${I_AM#*(} # SERVER=${SERVER%*)} XSERVER=${XSERVER%%:*} ;; aterm | rxvt) # Find some code that works here. ... ;; esac } if [ -z ${DISPLAY:=""} ]; then get_xserver if [[ -z ${XSERVER} || ${XSERVER} == $(hostname) || ${XSERVER} == "unix" ]]; then DISPLAY=":0.0" # Display on local host. else DISPLAY=${XSERVER}:0.0 # Display on remote host. fi fi export DISPLAY #------------------------------------------------------------- # Some settings #------------------------------------------------------------- #set -o nounset # These two options are useful for debugging. #set -o xtrace alias debug="set -o nounset; set -o xtrace" ulimit -S -c 0 # Don't want coredumps. set -o notify set -o noclobber set -o ignoreeof # Enable options: shopt -s cdspell shopt -s cdable_vars shopt -s checkhash shopt -s checkwinsize shopt -s sourcepath shopt -s no_empty_cmd_completion shopt -s cmdhist shopt -s histappend histreedit histverify shopt -s extglob # Necessary for programmable completion. # Disable options: shopt -u mailwarn unset MAILCHECK # Don't want my shell to warn me of incoming mail. #------------------------------------------------------------- # Greeting, motd etc. ... #------------------------------------------------------------- # Color definitions (taken from Color Bash Prompt HowTo). # Some colors might look different of some terminals. # For example, I see 'Bold Red' as 'orange' on my screen, # hence the 'Green' 'BRed' 'Red' sequence I often use in my prompt. # Normal Colors Black='\e[0;30m' # Black Red='\e[0;31m' # Red Green='\e[0;32m' # Green Yellow='\e[0;33m' # Yellow Blue='\e[0;34m' # Blue Purple='\e[0;35m' # Purple Cyan='\e[0;36m' # Cyan White='\e[0;37m' # White # Bold BBlack='\e[1;30m' # Black BRed='\e[1;31m' # Red BGreen='\e[1;32m' # Green BYellow='\e[1;33m' # Yellow BBlue='\e[1;34m' # Blue BPurple='\e[1;35m' # Purple BCyan='\e[1;36m' # Cyan BWhite='\e[1;37m' # White # Background On_Black='\e[40m' # Black On_Red='\e[41m' # Red On_Green='\e[42m' # Green On_Yellow='\e[43m' # Yellow On_Blue='\e[44m' # Blue On_Purple='\e[45m' # Purple On_Cyan='\e[46m' # Cyan On_White='\e[47m' # White NC="\e[m" # Color Reset ALERT=${BWhite}${On_Red} # Bold White on red background echo -e "${BCyan}This is BASH ${BRed}${BASH_VERSION%.*}${BCyan}\ - DISPLAY on ${BRed}$DISPLAY${NC}\n" date if [ -x /usr/games/fortune ]; then /usr/games/fortune -s # Makes our day a bit more fun.... :-) fi function _exit() # Function to run upon exit of shell. { echo -e "${BRed}Hasta la vista, baby${NC}" } trap _exit EXIT #------------------------------------------------------------- # Shell Prompt - for many examples, see: # http://www.debian-administration.org/articles/205 # http://www.askapache.com/linux/bash-power-prompt.html # http://tldp.org/HOWTO/Bash-Prompt-HOWTO # https://github.com/nojhan/liquidprompt #------------------------------------------------------------- # Current Format: [TIME USER@HOST PWD] > # TIME: # Green == machine load is low # Orange == machine load is medium # Red == machine load is high # ALERT == machine load is very high # USER: # Cyan == normal user # Orange == SU to user # Red == root # HOST: # Cyan == local session # Green == secured remote connection (via ssh) # Red == unsecured remote connection # PWD: # Green == more than 10% free disk space # Orange == less than 10% free disk space # ALERT == less than 5% free disk space # Red == current user does not have write privileges # Cyan == current filesystem is size zero (like /proc) # >: # White == no background or suspended jobs in this shell # Cyan == at least one background job in this shell # Orange == at least one suspended job in this shell # # Command is added to the history file each time you hit enter, # so it's available to all shells (using 'history -a'). # Test connection type: if [ -n "${SSH_CONNECTION}" ]; then CNX=${Green} # Connected on remote machine, via ssh (good). elif [[ "${DISPLAY%%:0*}" != "" ]]; then CNX=${ALERT} # Connected on remote machine, not via ssh (bad). else CNX=${BCyan} # Connected on local machine. fi # Test user type: if [[ ${USER} == "root" ]]; then SU=${Red} # User is root. elif [[ ${USER} != $(logname) ]]; then SU=${BRed} # User is not login user. else SU=${BCyan} # User is normal (well ... most of us are). fi NCPU=$(grep -c 'processor' /proc/cpuinfo) # Number of CPUs SLOAD=$(( 100*${NCPU} )) # Small load MLOAD=$(( 200*${NCPU} )) # Medium load XLOAD=$(( 400*${NCPU} )) # Xlarge load # Returns system load as percentage, i.e., '40' rather than '0.40)'. function load() { local SYSLOAD=$(cut -d " " -f1 /proc/loadavg | tr -d '.') # System load of the current host. echo $((10#$SYSLOAD)) # Convert to decimal. } # Returns a color indicating system load. function load_color() { local SYSLOAD=$(load) if [ ${SYSLOAD} -gt ${XLOAD} ]; then echo -en ${ALERT} elif [ ${SYSLOAD} -gt ${MLOAD} ]; then echo -en ${Red} elif [ ${SYSLOAD} -gt ${SLOAD} ]; then echo -en ${BRed} else echo -en ${Green} fi } # Returns a color according to free disk space in $PWD. function disk_color() { if [ ! -w "${PWD}" ] ; then echo -en ${Red} # No 'write' privilege in the current directory. elif [ -s "${PWD}" ] ; then local used=$(command df -P "$PWD" | awk 'END {print $5} {sub(/%/,"")}') if [ ${used} -gt 95 ]; then echo -en ${ALERT} # Disk almost full (>95%). elif [ ${used} -gt 90 ]; then echo -en ${BRed} # Free disk space almost gone. else echo -en ${Green} # Free disk space is ok. fi else echo -en ${Cyan} # Current directory is size '0' (like /proc, /sys etc). fi } # Returns a color according to running/suspended jobs. function job_color() { if [ $(jobs -s | wc -l) -gt "0" ]; then echo -en ${BRed} elif [ $(jobs -r | wc -l) -gt "0" ] ; then echo -en ${BCyan} fi } # Adds some text in the terminal frame (if applicable). # Now we construct the prompt. PROMPT_COMMAND="history -a" case ${TERM} in *term | rxvt | linux) PS1="\[\$(load_color)\][\A\[${NC}\] " # Time of day (with load info): PS1="\[\$(load_color)\][\A\[${NC}\] " # User@Host (with connection type info): PS1=${PS1}"\[${SU}\]\u\[${NC}\]@\[${CNX}\]\h\[${NC}\] " # PWD (with 'disk space' info): PS1=${PS1}"\[\$(disk_color)\]\W]\[${NC}\] " # Prompt (with 'job' info): PS1=${PS1}"\[\$(job_color)\]>\[${NC}\] " # Set title of current xterm: PS1=${PS1}"\[\e]0;[\u@\h] \w\a\]" ;; *) PS1="(\A \u@\h \W) > " # --> PS1="(\A \u@\h \w) > " # --> Shows full pathname of current dir. ;; esac export TIMEFORMAT=$'\nreal %3R\tuser %3U\tsys %3S\tpcpu %P\n' export HISTIGNORE="&:bg:fg:ll:h" export HISTTIMEFORMAT="$(echo -e ${BCyan})[%d/%m %H:%M:%S]$(echo -e ${NC}) " export HISTCONTROL=ignoredups export HOSTFILE=$HOME/.hosts # Put a list of remote hosts in ~/.hosts #============================================================ # # ALIASES AND FUNCTIONS # # Arguably, some functions defined here are quite big. # If you want to make this file smaller, these functions can #+ be converted into scripts and removed from here. # #============================================================ #------------------- # Personnal Aliases #------------------- alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' # -> Prevents accidentally clobbering files. alias mkdir='mkdir -p' alias h='history' alias j='jobs -l' alias which='type -a' alias ..='cd ..' # Pretty-print of some PATH variables: alias path='echo -e ${PATH//:/\\n}' alias libpath='echo -e ${LD_LIBRARY_PATH//:/\\n}' alias du='du -kh' # Makes a more readable output. alias df='df -kTh' #------------------------------------------------------------- # The 'ls' family (this assumes you use a recent GNU ls). #------------------------------------------------------------- # Add colors for filetype and human-readable sizes by default on 'ls': alias ls='ls -h --color' alias lx='ls -lXB' # Sort by extension. alias lk='ls -lSr' # Sort by size, biggest last. alias lt='ls -ltr' # Sort by date, most recent last. alias lc='ls -ltcr' # Sort by/show change time,most recent last. alias lu='ls -ltur' # Sort by/show access time,most recent last. # The ubiquitous 'll': directories first, with alphanumeric sorting: alias ll="ls -lv --group-directories-first" alias lm='ll |more' # Pipe through 'more' alias lr='ll -R' # Recursive ls. alias la='ll -A' # Show hidden files. alias tree='tree -Csuh' # Nice alternative to 'recursive ls' ... #------------------------------------------------------------- # Tailoring 'less' #------------------------------------------------------------- alias more='less' export PAGER=less export LESSCHARSET='latin1' export LESSOPEN='|/usr/bin/lesspipe.sh %s 2>&-' # Use this if lesspipe.sh exists. export LESS='-i -N -w -z-4 -g -e -M -X -F -R -P%t?f%f \ :stdin .?pb%pb\%:?lbLine %lb:?bbByte %bb:-...' # LESS man page colors (makes Man pages more readable). export LESS_TERMCAP_mb=$'\E[01;31m' export LESS_TERMCAP_md=$'\E[01;31m' export LESS_TERMCAP_me=$'\E[0m' export LESS_TERMCAP_se=$'\E[0m' export LESS_TERMCAP_so=$'\E[01;44;33m' export LESS_TERMCAP_ue=$'\E[0m' export LESS_TERMCAP_us=$'\E[01;32m' #------------------------------------------------------------- # Spelling typos - highly personnal and keyboard-dependent :-) #------------------------------------------------------------- alias xs='cd' alias vf='cd' alias moer='more' alias moew='more' alias kk='ll' #------------------------------------------------------------- # A few fun ones #------------------------------------------------------------- # Adds some text in the terminal frame (if applicable). function xtitle() { case "$TERM" in *term* | rxvt) echo -en "\e]0;$*\a" ;; *) ;; esac } # Aliases that use xtitle alias top='xtitle Processes on $HOST && top' alias make='xtitle Making $(basename $PWD) ; make' # .. and functions function man() { for i ; do xtitle The $(basename $1|tr -d .[:digit:]) manual command man -a "$i" done } #------------------------------------------------------------- # Make the following commands run in background automatically: #------------------------------------------------------------- function te() # wrapper around xemacs/gnuserv { if [ "$(gnuclient -batch -eval t 2>&-)" == "t" ]; then gnuclient -q "$@"; else ( xemacs "$@" &); fi } function soffice() { command soffice "$@" & } function firefox() { command firefox "$@" & } function xpdf() { command xpdf "$@" & } #------------------------------------------------------------- # File & strings related functions: #------------------------------------------------------------- # Find a file with a pattern in name: function ff() { find . -type f -iname '*'"$*"'*' -ls ; } # Find a file with pattern $1 in name and Execute $2 on it: function fe() { find . -type f -iname '*'"${1:-}"'*' \ -exec ${2:-file} {} \; ; } # Find a pattern in a set of files and highlight them: #+ (needs a recent version of egrep). function fstr() { OPTIND=1 local mycase="" local usage="fstr: find string in files. Usage: fstr [-i] \"pattern\" [\"filename pattern\"] " while getopts :it opt do case "$opt" in i) mycase="-i " ;; *) echo "$usage"; return ;; esac done shift $(( $OPTIND - 1 )) if [ "$#" -lt 1 ]; then echo "$usage" return; fi find . -type f -name "${2:-*}" -print0 | \ xargs -0 egrep --color=always -sn ${case} "$1" 2>&- | more } function swap() { # Swap 2 filenames around, if they exist (from Uzi's bashrc). local TMPFILE=tmp.$$ [ $# -ne 2 ] && echo "swap: 2 arguments needed" && return 1 [ ! -e $1 ] && echo "swap: $1 does not exist" && return 1 [ ! -e $2 ] && echo "swap: $2 does not exist" && return 1 mv "$1" $TMPFILE mv "$2" "$1" mv $TMPFILE "$2" } function extract() # Handy Extract Program { if [ -f $1 ] ; then case $1 in *.tar.bz2) tar xvjf $1 ;; *.tar.gz) tar xvzf $1 ;; *.bz2) bunzip2 $1 ;; *.rar) unrar x $1 ;; *.gz) gunzip $1 ;; *.tar) tar xvf $1 ;; *.tbz2) tar xvjf $1 ;; *.tgz) tar xvzf $1 ;; *.zip) unzip $1 ;; *.Z) uncompress $1 ;; *.7z) 7z x $1 ;; *) echo "'$1' cannot be extracted via >extract<" ;; esac else echo "'$1' is not a valid file!" fi } # Creates an archive (*.tar.gz) from given directory. function maketar() { tar cvzf "${1%%/}.tar.gz" "${1%%/}/"; } # Create a ZIP archive of a file or folder. function makezip() { zip -r "${1%%/}.zip" "$1" ; } # Make your directories and files access rights sane. function sanitize() { chmod -R u=rwX,g=rX,o= "$@" ;} #------------------------------------------------------------- # Process/system related functions: #------------------------------------------------------------- function my_ps() { ps $@ -u $USER -o pid,%cpu,%mem,bsdtime,command ; } function pp() { my_ps f | awk '!/awk/ && $0~var' var=${1:-".*"} ; } function killps() # kill by process name { local pid pname sig="-TERM" # default signal if [ "$#" -lt 1 ] || [ "$#" -gt 2 ]; then echo "Usage: killps [-SIGNAL] pattern" return; fi if [ $# = 2 ]; then sig=$1 ; fi for pid in $(my_ps| awk '!/awk/ && $0~pat { print $1 }' pat=${!#} ) do pname=$(my_ps | awk '$1~var { print $5 }' var=$pid ) if ask "Kill process $pid <$pname> with signal $sig?" then kill $sig $pid fi done } function mydf() # Pretty-print of 'df' output. { # Inspired by 'dfc' utility. for fs ; do if [ ! -d $fs ] then echo -e $fs" :No such file or directory" ; continue fi local info=( $(command df -P $fs | awk 'END{ print $2,$3,$5 }') ) local free=( $(command df -Pkh $fs | awk 'END{ print $4 }') ) local nbstars=$(( 20 * ${info[1]} / ${info[0]} )) local out="[" for ((j=0;j<20;j++)); do if [ ${j} -lt ${nbstars} ]; then out=$out"*" else out=$out"-" fi done out=${info[2]}" "$out"] ("$free" free on "$fs")" echo -e $out done } function my_ip() # Get IP adress on ethernet. { MY_IP=$(/sbin/ifconfig eth0 | awk '/inet/ { print $2 } ' | sed -e s/addr://) echo ${MY_IP:-"Not connected"} } function ii() # Get current host related info. { echo -e "\nYou are logged on ${BRed}$HOST" echo -e "\n${BRed}Additionnal information:$NC " ; uname -a echo -e "\n${BRed}Users logged on:$NC " ; w -hs | cut -d " " -f1 | sort | uniq echo -e "\n${BRed}Current date :$NC " ; date echo -e "\n${BRed}Machine stats :$NC " ; uptime echo -e "\n${BRed}Memory stats :$NC " ; free echo -e "\n${BRed}Diskspace :$NC " ; mydf / $HOME echo -e "\n${BRed}Local IP Address :$NC" ; my_ip echo -e "\n${BRed}Open connections :$NC "; netstat -pan --inet; echo } #------------------------------------------------------------- # Misc utilities: #------------------------------------------------------------- function repeat() # Repeat n times command. { local i max max=$1; shift; for ((i=1; i <= max ; i++)); do # --> C-like syntax eval "$@"; done } function ask() # See 'killps' for example of use. { echo -n "$@" '[y/n] ' ; read ans case "$ans" in y*|Y*) return 0 ;; *) return 1 ;; esac } function corename() # Get name of app that created a corefile. { for file ; do echo -n $file : ; gdb --core=$file --batch | head -1 done } #========================================================================= # # PROGRAMMABLE COMPLETION SECTION # Most are taken from the bash 2.05 documentation and from Ian McDonald's # 'Bash completion' package (http://www.caliban.org/bash/#completion) # You will in fact need bash more recent then 3.0 for some features. # # Note that most linux distributions now provide many completions # 'out of the box' - however, you might need to make your own one day, # so I kept those here as examples. #========================================================================= if [ "${BASH_VERSION%.*}" \< "3.0" ]; then echo "You will need to upgrade to version 3.0 for full \ programmable completion features" return fi shopt -s extglob # Necessary. complete -A hostname rsh rcp telnet rlogin ftp ping disk complete -A export printenv complete -A variable export local readonly unset complete -A enabled builtin complete -A alias alias unalias complete -A function function complete -A user su mail finger complete -A helptopic help # Currently same as builtins. complete -A shopt shopt complete -A stopped -P '%' bg complete -A job -P '%' fg jobs disown complete -A directory mkdir rmdir complete -A directory -o default cd # Compression complete -f -o default -X '*.+(zip|ZIP)' zip complete -f -o default -X '!*.+(zip|ZIP)' unzip complete -f -o default -X '*.+(z|Z)' compress complete -f -o default -X '!*.+(z|Z)' uncompress complete -f -o default -X '*.+(gz|GZ)' gzip complete -f -o default -X '!*.+(gz|GZ)' gunzip complete -f -o default -X '*.+(bz2|BZ2)' bzip2 complete -f -o default -X '!*.+(bz2|BZ2)' bunzip2 complete -f -o default -X '!*.+(zip|ZIP|z|Z|gz|GZ|bz2|BZ2)' extract # Documents - Postscript,pdf,dvi..... complete -f -o default -X '!*.+(ps|PS)' gs ghostview ps2pdf ps2ascii complete -f -o default -X \ '!*.+(dvi|DVI)' dvips dvipdf xdvi dviselect dvitype complete -f -o default -X '!*.+(pdf|PDF)' acroread pdf2ps complete -f -o default -X '!*.@(@(?(e)ps|?(E)PS|pdf|PDF)?\ (.gz|.GZ|.bz2|.BZ2|.Z))' gv ggv complete -f -o default -X '!*.texi*' makeinfo texi2dvi texi2html texi2pdf complete -f -o default -X '!*.tex' tex latex slitex complete -f -o default -X '!*.lyx' lyx complete -f -o default -X '!*.+(htm*|HTM*)' lynx html2ps complete -f -o default -X \ '!*.+(doc|DOC|xls|XLS|ppt|PPT|sx?|SX?|csv|CSV|od?|OD?|ott|OTT)' soffice # Multimedia complete -f -o default -X \ '!*.+(gif|GIF|jp*g|JP*G|bmp|BMP|xpm|XPM|png|PNG)' xv gimp ee gqview complete -f -o default -X '!*.+(mp3|MP3)' mpg123 mpg321 complete -f -o default -X '!*.+(ogg|OGG)' ogg123 complete -f -o default -X \ '!*.@(mp[23]|MP[23]|ogg|OGG|wav|WAV|pls|\ m3u|xm|mod|s[3t]m|it|mtm|ult|flac)' xmms complete -f -o default -X '!*.@(mp?(e)g|MP?(E)G|wma|avi|AVI|\ asf|vob|VOB|bin|dat|vcd|ps|pes|fli|viv|rm|ram|yuv|mov|MOV|qt|\ QT|wmv|mp3|MP3|ogg|OGG|ogm|OGM|mp4|MP4|wav|WAV|asx|ASX)' xine complete -f -o default -X '!*.pl' perl perl5 # This is a 'universal' completion function - it works when commands have #+ a so-called 'long options' mode , ie: 'ls --all' instead of 'ls -a' # Needs the '-o' option of grep #+ (try the commented-out version if not available). # First, remove '=' from completion word separators #+ (this will allow completions like 'ls --color=auto' to work correctly). COMP_WORDBREAKS=${COMP_WORDBREAKS/=/} _get_longopts() { #$1 --help | sed -e '/--/!d' -e 's/.*--\([^[:space:].,]*\).*/--\1/'| \ #grep ^"$2" |sort -u ; $1 --help | grep -o -e "--[^[:space:].,]*" | grep -e "$2" |sort -u } _longopts() { local cur cur=${COMP_WORDS[COMP_CWORD]} case "${cur:-*}" in -*) ;; *) return ;; esac case "$1" in \~*) eval cmd="$1" ;; *) cmd="$1" ;; esac COMPREPLY=( $(_get_longopts ${1} ${cur} ) ) } complete -o default -F _longopts configure bash complete -o default -F _longopts wget id info a2ps ls recode _tar() { local cur ext regex tar untar COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} # If we want an option, return the possible long options. case "$cur" in -*) COMPREPLY=( $(_get_longopts $1 $cur ) ); return 0;; esac if [ $COMP_CWORD -eq 1 ]; then COMPREPLY=( $( compgen -W 'c t x u r d A' -- $cur ) ) return 0 fi case "${COMP_WORDS[1]}" in ?(-)c*f) COMPREPLY=( $( compgen -f $cur ) ) return 0 ;; +([^Izjy])f) ext='tar' regex=$ext ;; *z*f) ext='tar.gz' regex='t\(ar\.\)\(gz\|Z\)' ;; *[Ijy]*f) ext='t?(ar.)bz?(2)' regex='t\(ar\.\)bz2\?' ;; *) COMPREPLY=( $( compgen -f $cur ) ) return 0 ;; esac if [[ "$COMP_LINE" == tar*.$ext' '* ]]; then # Complete on files in tar file. # # Get name of tar file from command line. tar=$( echo "$COMP_LINE" | \ sed -e 's|^.* \([^ ]*'$regex'\) .*$|\1|' ) # Devise how to untar and list it. untar=t${COMP_WORDS[1]//[^Izjyf]/} COMPREPLY=( $( compgen -W "$( echo $( tar $untar $tar \ 2>/dev/null ) )" -- "$cur" ) ) return 0 else # File completion on relevant files. COMPREPLY=( $( compgen -G $cur\*.$ext ) ) fi return 0 } complete -F _tar -o default tar _make() { local mdef makef makef_dir="." makef_inc gcmd cur prev i; COMPREPLY=(); cur=${COMP_WORDS[COMP_CWORD]}; prev=${COMP_WORDS[COMP_CWORD-1]}; case "$prev" in -*f) COMPREPLY=($(compgen -f $cur )); return 0 ;; esac; case "$cur" in -*) COMPREPLY=($(_get_longopts $1 $cur )); return 0 ;; esac; # ... make reads # GNUmakefile, # then makefile # then Makefile ... if [ -f ${makef_dir}/GNUmakefile ]; then makef=${makef_dir}/GNUmakefile elif [ -f ${makef_dir}/makefile ]; then makef=${makef_dir}/makefile elif [ -f ${makef_dir}/Makefile ]; then makef=${makef_dir}/Makefile else makef=${makef_dir}/*.mk # Local convention. fi # Before we scan for targets, see if a Makefile name was #+ specified with -f. for (( i=0; i < ${#COMP_WORDS[@]}; i++ )); do if [[ ${COMP_WORDS[i]} == -f ]]; then # eval for tilde expansion eval makef=${COMP_WORDS[i+1]} break fi done [ ! -f $makef ] && return 0 # Deal with included Makefiles. makef_inc=$( grep -E '^-?include' $makef | sed -e "s,^.* ,"$makef_dir"/," ) for file in $makef_inc; do [ -f $file ] && makef="$makef $file" done # If we have a partial word to complete, restrict completions #+ to matches of that word. if [ -n "$cur" ]; then gcmd='grep "^$cur"' ; else gcmd=cat ; fi COMPREPLY=( $( awk -F':' '/^[a-zA-Z0-9][^$#\/\t=]*:([^=]|$)/ \ {split($1,A,/ /);for(i in A)print A[i]}' \ $makef 2>/dev/null | eval $gcmd )) } complete -F _make -X '+($*|*.[cho])' make gmake pmake _killall() { local cur prev COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} # Get a list of processes #+ (the first sed evaluation #+ takes care of swapped out processes, the second #+ takes care of getting the basename of the process). COMPREPLY=( $( ps -u $USER -o comm | \ sed -e '1,1d' -e 's#[]\[]##g' -e 's#^.*/##'| \ awk '{if ($0 ~ /^'$cur'/) print $0}' )) return 0 } complete -F _killall killall killps # Local Variables: # mode:shell-script # sh-shell:bash # End: |
Added basics-reviewed.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 | #!/bin/bash # basics-reviewed.bash # File extension == *.bash == specific to Bash # Copyright (c) Michael S. Zick, 2003; All rights reserved. # License: Use in any form, for any purpose. # Revision: $ID$ # # Edited for layout by M.C. # (author of the "Advanced Bash Scripting Guide") # Fixes and updates (04/08) by Cliff Bamford. # This script tested under Bash versions 2.04, 2.05a and 2.05b. # It may not work with earlier versions. # This demonstration script generates one --intentional-- #+ "command not found" error message. See line 436. # The current Bash maintainer, Chet Ramey, has fixed the items noted #+ for later versions of Bash. ###-------------------------------------------### ### Pipe the output of this script to 'more' ### ###+ else it will scroll off the page. ### ### ### ### You may also redirect its output ### ###+ to a file for examination. ### ###-------------------------------------------### # Most of the following points are described at length in #+ the text of the foregoing "Advanced Bash Scripting Guide." # This demonstration script is mostly just a reorganized presentation. # -- msz # Variables are not typed unless otherwise specified. # Variables are named. Names must contain a non-digit. # File descriptor names (as in, for example: 2>&1) #+ contain ONLY digits. # Parameters and Bash array elements are numbered. # (Parameters are very similar to Bash arrays.) # A variable name may be undefined (null reference). unset VarNull # A variable name may be defined but empty (null contents). VarEmpty='' # Two, adjacent, single quotes. # A variable name may be defined and non-empty. VarSomething='Literal' # A variable may contain: # * A whole number as a signed 32-bit (or larger) integer # * A string # A variable may also be an array. # A string may contain embedded blanks and may be treated #+ as if it where a function name with optional arguments. # The names of variables and the names of functions #+ are in different namespaces. # A variable may be defined as a Bash array either explicitly or #+ implicitly by the syntax of the assignment statement. # Explicit: declare -a ArrayVar # The echo command is a builtin. echo $VarSomething # The printf command is a builtin. # Translate %s as: String-Format printf %s $VarSomething # No linebreak specified, none output. echo # Default, only linebreak output. # The Bash parser word breaks on whitespace. # Whitespace, or the lack of it is significant. # (This holds true in general; there are, of course, exceptions.) # Translate the DOLLAR_SIGN character as: Content-Of. # Extended-Syntax way of writing Content-Of: echo ${VarSomething} # The ${ ... } Extended-Syntax allows more than just the variable #+ name to be specified. # In general, $VarSomething can always be written as: ${VarSomething}. # Call this script with arguments to see the following in action. # Outside of double-quotes, the special characters @ and * #+ specify identical behavior. # May be pronounced as: All-Elements-Of. # Without specification of a name, they refer to the #+ pre-defined parameter Bash-Array. # Glob-Pattern references echo $* # All parameters to script or function echo ${*} # Same # Bash disables filename expansion for Glob-Patterns. # Only character matching is active. # All-Elements-Of references echo $@ # Same as above echo ${@} # Same as above # Within double-quotes, the behavior of Glob-Pattern references #+ depends on the setting of IFS (Input Field Separator). # Within double-quotes, All-Elements-Of references behave the same. # Specifying only the name of a variable holding a string refers #+ to all elements (characters) of a string. # To specify an element (character) of a string, #+ the Extended-Syntax reference notation (see below) MAY be used. # Specifying only the name of a Bash array references #+ the subscript zero element, #+ NOT the FIRST DEFINED nor the FIRST WITH CONTENTS element. # Additional qualification is needed to reference other elements, #+ which means that the reference MUST be written in Extended-Syntax. # The general form is: ${name[subscript]}. # The string forms may also be used: ${name:subscript} #+ for Bash-Arrays when referencing the subscript zero element. # Bash-Arrays are implemented internally as linked lists, #+ not as a fixed area of storage as in some programming languages. # Characteristics of Bash arrays (Bash-Arrays): # -------------------------------------------- # If not otherwise specified, Bash-Array subscripts begin with #+ subscript number zero. Literally: [0] # This is called zero-based indexing. ### # If not otherwise specified, Bash-Arrays are subscript packed #+ (sequential subscripts without subscript gaps). ### # Negative subscripts are not allowed. ### # Elements of a Bash-Array need not all be of the same type. ### # Elements of a Bash-Array may be undefined (null reference). # That is, a Bash-Array may be "subscript sparse." ### # Elements of a Bash-Array may be defined and empty (null contents). ### # Elements of a Bash-Array may contain: # * A whole number as a signed 32-bit (or larger) integer # * A string # * A string formated so that it appears to be a function name # + with optional arguments ### # Defined elements of a Bash-Array may be undefined (unset). # That is, a subscript packed Bash-Array may be changed # + into a subscript sparse Bash-Array. ### # Elements may be added to a Bash-Array by defining an element #+ not previously defined. ### # For these reasons, I have been calling them "Bash-Arrays". # I'll return to the generic term "array" from now on. # -- msz echo "=========================================================" # Lines 202 - 334 supplied by Cliff Bamford. (Thanks!) # Demo --- Interaction with Arrays, quoting, IFS, echo, * and @ --- #+ all affect how things work ArrayVar[0]='zero' # 0 normal ArrayVar[1]=one # 1 unquoted literal ArrayVar[2]='two' # 2 normal ArrayVar[3]='three' # 3 normal ArrayVar[4]='I am four' # 4 normal with spaces ArrayVar[5]='five' # 5 normal unset ArrayVar[6] # 6 undefined ArrayValue[7]='seven' # 7 normal ArrayValue[8]='' # 8 defined but empty ArrayValue[9]='nine' # 9 normal echo '--- Here is the array we are using for this test' echo echo "ArrayVar[0]='zero' # 0 normal" echo "ArrayVar[1]=one # 1 unquoted literal" echo "ArrayVar[2]='two' # 2 normal" echo "ArrayVar[3]='three' # 3 normal" echo "ArrayVar[4]='I am four' # 4 normal with spaces" echo "ArrayVar[5]='five' # 5 normal" echo "unset ArrayVar[6] # 6 undefined" echo "ArrayValue[7]='seven' # 7 normal" echo "ArrayValue[8]='' # 8 defined but empty" echo "ArrayValue[9]='nine' # 9 normal" echo echo echo '---Case0: No double-quotes, Default IFS of space,tab,newline ---' IFS=$'\x20'$'\x09'$'\x0A' # In exactly this order. echo 'Here is: printf %q {${ArrayVar[*]}' printf %q ${ArrayVar[*]} echo echo 'Here is: printf %q {${ArrayVar[@]}' printf %q ${ArrayVar[@]} echo echo 'Here is: echo ${ArrayVar[*]}' echo ${ArrayVar[@]} echo 'Here is: echo {${ArrayVar[@]}' echo ${ArrayVar[@]} echo echo '---Case1: Within double-quotes - Default IFS of space-tab- newline ---' IFS=$'\x20'$'\x09'$'\x0A' # These three bytes, echo 'Here is: printf %q "{${ArrayVar[*]}"' printf %q "${ArrayVar[*]}" echo echo 'Here is: printf %q "{${ArrayVar[@]}"' printf %q "${ArrayVar[@]}" echo echo 'Here is: echo "${ArrayVar[*]}"' echo "${ArrayVar[@]}" echo 'Here is: echo "{${ArrayVar[@]}"' echo "${ArrayVar[@]}" echo echo '---Case2: Within double-quotes - IFS is q' IFS='q' echo 'Here is: printf %q "{${ArrayVar[*]}"' printf %q "${ArrayVar[*]}" echo echo 'Here is: printf %q "{${ArrayVar[@]}"' printf %q "${ArrayVar[@]}" echo echo 'Here is: echo "${ArrayVar[*]}"' echo "${ArrayVar[@]}" echo 'Here is: echo "{${ArrayVar[@]}"' echo "${ArrayVar[@]}" echo echo '---Case3: Within double-quotes - IFS is ^' IFS='^' echo 'Here is: printf %q "{${ArrayVar[*]}"' printf %q "${ArrayVar[*]}" echo echo 'Here is: printf %q "{${ArrayVar[@]}"' printf %q "${ArrayVar[@]}" echo echo 'Here is: echo "${ArrayVar[*]}"' echo "${ArrayVar[@]}" echo 'Here is: echo "{${ArrayVar[@]}"' echo "${ArrayVar[@]}" echo echo '---Case4: Within double-quotes - IFS is ^ followed by space,tab,newline' IFS=$'^'$'\x20'$'\x09'$'\x0A' # ^ + space tab newline echo 'Here is: printf %q "{${ArrayVar[*]}"' printf %q "${ArrayVar[*]}" echo echo 'Here is: printf %q "{${ArrayVar[@]}"' printf %q "${ArrayVar[@]}" echo echo 'Here is: echo "${ArrayVar[*]}"' echo "${ArrayVar[@]}" echo 'Here is: echo "{${ArrayVar[@]}"' echo "${ArrayVar[@]}" echo echo '---Case6: Within double-quotes - IFS set and empty ' IFS='' echo 'Here is: printf %q "{${ArrayVar[*]}"' printf %q "${ArrayVar[*]}" echo echo 'Here is: printf %q "{${ArrayVar[@]}"' printf %q "${ArrayVar[@]}" echo echo 'Here is: echo "${ArrayVar[*]}"' echo "${ArrayVar[@]}" echo 'Here is: echo "{${ArrayVar[@]}"' echo "${ArrayVar[@]}" echo echo '---Case7: Within double-quotes - IFS is unset' unset IFS echo 'Here is: printf %q "{${ArrayVar[*]}"' printf %q "${ArrayVar[*]}" echo echo 'Here is: printf %q "{${ArrayVar[@]}"' printf %q "${ArrayVar[@]}" echo echo 'Here is: echo "${ArrayVar[*]}"' echo "${ArrayVar[@]}" echo 'Here is: echo "{${ArrayVar[@]}"' echo "${ArrayVar[@]}" echo echo '---End of Cases---' echo "========================================================="; echo # Put IFS back to the default. # Default is exactly these three bytes. IFS=$'\x20'$'\x09'$'\x0A' # In exactly this order. # Interpretation of the above outputs: # A Glob-Pattern is I/O; the setting of IFS matters. ### # An All-Elements-Of does not consider IFS settings. ### # Note the different output using the echo command and the #+ quoted format operator of the printf command. # Recall: # Parameters are similar to arrays and have the similar behaviors. ### # The above examples demonstrate the possible variations. # To retain the shape of a sparse array, additional script #+ programming is required. ### # The source code of Bash has a routine to output the #+ [subscript]=value array assignment format. # As of version 2.05b, that routine is not used, #+ but that might change in future releases. # The length of a string, measured in non-null elements (characters): echo echo '- - Non-quoted references - -' echo 'Non-Null character count: '${#VarSomething}' characters.' # test='Lit'$'\x00''eral' # $'\x00' is a null character. # echo ${#test} # See that? # The length of an array, measured in defined elements, #+ including null content elements. echo echo 'Defined content count: '${#ArrayVar[@]}' elements.' # That is NOT the maximum subscript (4). # That is NOT the range of the subscripts (1 . . 4 inclusive). # It IS the length of the linked list. ### # Both the maximum subscript and the range of the subscripts may #+ be found with additional script programming. # The length of a string, measured in non-null elements (characters): echo echo '- - Quoted, Glob-Pattern references - -' echo 'Non-Null character count: '"${#VarSomething}"' characters.' # The length of an array, measured in defined elements, #+ including null-content elements. echo echo 'Defined element count: '"${#ArrayVar[*]}"' elements.' # Interpretation: Substitution does not effect the ${# ... } operation. # Suggestion: # Always use the All-Elements-Of character #+ if that is what is intended (independence from IFS). # Define a simple function. # I include an underscore in the name #+ to make it distinctive in the examples below. ### # Bash separates variable names and function names #+ in different namespaces. # The Mark-One eyeball isn't that advanced. ### _simple() { echo -n 'SimpleFunc'$@ # Newlines are swallowed in } #+ result returned in any case. # The ( ... ) notation invokes a command or function. # The $( ... ) notation is pronounced: Result-Of. # Invoke the function _simple echo echo '- - Output of function _simple - -' _simple # Try passing arguments. echo # or (_simple) # Try passing arguments. echo echo '- Is there a variable of that name? -' echo $_simple not defined # No variable by that name. # Invoke the result of function _simple (Error msg intended) ### $(_simple) # Gives an error message: # line 436: SimpleFunc: command not found # --------------------------------------- echo ### # The first word of the result of function _simple #+ is neither a valid Bash command nor the name of a defined function. ### # This demonstrates that the output of _simple is subject to evaluation. ### # Interpretation: # A function can be used to generate in-line Bash commands. # A simple function where the first word of result IS a bash command: ### _print() { echo -n 'printf %q '$@ } echo '- - Outputs of function _print - -' _print parm1 parm2 # An Output NOT A Command. echo $(_print parm1 parm2) # Executes: printf %q parm1 parm2 # See above IFS examples for the #+ various possibilities. echo $(_print $VarSomething) # The predictable result. echo # Function variables # ------------------ echo echo '- - Function variables - -' # A variable may represent a signed integer, a string or an array. # A string may be used like a function name with optional arguments. # set -vx # Enable if desired declare -f funcVar #+ in namespace of functions funcVar=_print # Contains name of function. $funcVar parm1 # Same as _print at this point. echo funcVar=$(_print ) # Contains result of function. $funcVar # No input, No output. $funcVar $VarSomething # The predictable result. echo funcVar=$(_print $VarSomething) # $VarSomething replaced HERE. $funcVar # The expansion is part of the echo #+ variable contents. funcVar="$(_print $VarSomething)" # $VarSomething replaced HERE. $funcVar # The expansion is part of the echo #+ variable contents. # The difference between the unquoted and the double-quoted versions #+ above can be seen in the "protect_literal.sh" example. # The first case above is processed as two, unquoted, Bash-Words. # The second case above is processed as one, quoted, Bash-Word. # Delayed replacement # ------------------- echo echo '- - Delayed replacement - -' funcVar="$(_print '$VarSomething')" # No replacement, single Bash-Word. eval $funcVar # $VarSomething replaced HERE. echo VarSomething='NewThing' eval $funcVar # $VarSomething replaced HERE. echo # Restore the original setting trashed above. VarSomething=Literal # There are a pair of functions demonstrated in the #+ "protect_literal.sh" and "unprotect_literal.sh" examples. # These are general purpose functions for delayed replacement literals #+ containing variables. # REVIEW: # ------ # A string can be considered a Classic-Array of elements (characters). # A string operation applies to all elements (characters) of the string #+ (in concept, anyway). ### # The notation: ${array_name[@]} represents all elements of the #+ Bash-Array: array_name. ### # The Extended-Syntax string operations can be applied to all #+ elements of an array. ### # This may be thought of as a For-Each operation on a vector of strings. ### # Parameters are similar to an array. # The initialization of a parameter array for a script #+ and a parameter array for a function only differ #+ in the initialization of ${0}, which never changes its setting. ### # Subscript zero of the script's parameter array contains #+ the name of the script. ### # Subscript zero of a function's parameter array DOES NOT contain #+ the name of the function. # The name of the current function is accessed by the $FUNCNAME variable. ### # A quick, review list follows (quick, not short). echo echo '- - Test (but not change) - -' echo '- null reference -' echo -n ${VarNull-'NotSet'}' ' # NotSet echo ${VarNull} # NewLine only echo -n ${VarNull:-'NotSet'}' ' # NotSet echo ${VarNull} # Newline only echo '- null contents -' echo -n ${VarEmpty-'Empty'}' ' # Only the space echo ${VarEmpty} # Newline only echo -n ${VarEmpty:-'Empty'}' ' # Empty echo ${VarEmpty} # Newline only echo '- contents -' echo ${VarSomething-'Content'} # Literal echo ${VarSomething:-'Content'} # Literal echo '- Sparse Array -' echo ${ArrayVar[@]-'not set'} # ASCII-Art time # State Y==yes, N==no # - :- # Unset Y Y ${# ... } == 0 # Empty N Y ${# ... } == 0 # Contents N N ${# ... } > 0 # Either the first and/or the second part of the tests #+ may be a command or a function invocation string. echo echo '- - Test 1 for undefined - -' declare -i t _decT() { t=$t-1 } # Null reference, set: t == -1 t=${#VarNull} # Results in zero. ${VarNull- _decT } # Function executes, t now -1. echo $t # Null contents, set: t == 0 t=${#VarEmpty} # Results in zero. ${VarEmpty- _decT } # _decT function NOT executed. echo $t # Contents, set: t == number of non-null characters VarSomething='_simple' # Set to valid function name. t=${#VarSomething} # non-zero length ${VarSomething- _decT } # Function _simple executed. echo $t # Note the Append-To action. # Exercise: clean up that example. unset t unset _decT VarSomething=Literal echo echo '- - Test and Change - -' echo '- Assignment if null reference -' echo -n ${VarNull='NotSet'}' ' # NotSet NotSet echo ${VarNull} unset VarNull echo '- Assignment if null reference -' echo -n ${VarNull:='NotSet'}' ' # NotSet NotSet echo ${VarNull} unset VarNull echo '- No assignment if null contents -' echo -n ${VarEmpty='Empty'}' ' # Space only echo ${VarEmpty} VarEmpty='' echo '- Assignment if null contents -' echo -n ${VarEmpty:='Empty'}' ' # Empty Empty echo ${VarEmpty} VarEmpty='' echo '- No change if already has contents -' echo ${VarSomething='Content'} # Literal echo ${VarSomething:='Content'} # Literal # "Subscript sparse" Bash-Arrays ### # Bash-Arrays are subscript packed, beginning with #+ subscript zero unless otherwise specified. ### # The initialization of ArrayVar was one way #+ to "otherwise specify". Here is the other way: ### echo declare -a ArraySparse ArraySparse=( [1]=one [2]='' [4]='four' ) # [0]=null reference, [2]=null content, [3]=null reference echo '- - Array-Sparse List - -' # Within double-quotes, default IFS, Glob-Pattern IFS=$'\x20'$'\x09'$'\x0A' printf %q "${ArraySparse[*]}" echo # Note that the output does not distinguish between "null content" #+ and "null reference". # Both print as escaped whitespace. ### # Note also that the output does NOT contain escaped whitespace #+ for the "null reference(s)" prior to the first defined element. ### # This behavior of 2.04, 2.05a and 2.05b has been reported #+ and may change in a future version of Bash. # To output a sparse array and maintain the [subscript]=value #+ relationship without change requires a bit of programming. # One possible code fragment: ### # local l=${#ArraySparse[@]} # Count of defined elements # local f=0 # Count of found subscripts # local i=0 # Subscript to test ( # Anonymous in-line function for (( l=${#ArraySparse[@]}, f = 0, i = 0 ; f < l ; i++ )) do # 'if defined then...' ${ArraySparse[$i]+ eval echo '\ ['$i']='${ArraySparse[$i]} ; (( f++ )) } done ) # The reader coming upon the above code fragment cold #+ might want to review "command lists" and "multiple commands on a line" #+ in the text of the foregoing "Advanced Bash Scripting Guide." ### # Note: # The "read -a array_name" version of the "read" command #+ begins filling array_name at subscript zero. # ArraySparse does not define a value at subscript zero. ### # The user needing to read/write a sparse array to either #+ external storage or a communications socket must invent #+ a read/write code pair suitable for their purpose. ### # Exercise: clean it up. unset ArraySparse echo echo '- - Conditional alternate (But not change)- -' echo '- No alternate if null reference -' echo -n ${VarNull+'NotSet'}' ' echo ${VarNull} unset VarNull echo '- No alternate if null reference -' echo -n ${VarNull:+'NotSet'}' ' echo ${VarNull} unset VarNull echo '- Alternate if null contents -' echo -n ${VarEmpty+'Empty'}' ' # Empty echo ${VarEmpty} VarEmpty='' echo '- No alternate if null contents -' echo -n ${VarEmpty:+'Empty'}' ' # Space only echo ${VarEmpty} VarEmpty='' echo '- Alternate if already has contents -' # Alternate literal echo -n ${VarSomething+'Content'}' ' # Content Literal echo ${VarSomething} # Invoke function echo -n ${VarSomething:+ $(_simple) }' ' # SimpleFunc Literal echo ${VarSomething} echo echo '- - Sparse Array - -' echo ${ArrayVar[@]+'Empty'} # An array of 'Empty'(ies) echo echo '- - Test 2 for undefined - -' declare -i t _incT() { t=$t+1 } # Note: # This is the same test used in the sparse array #+ listing code fragment. # Null reference, set: t == -1 t=${#VarNull}-1 # Results in minus-one. ${VarNull+ _incT } # Does not execute. echo $t' Null reference' # Null contents, set: t == 0 t=${#VarEmpty}-1 # Results in minus-one. ${VarEmpty+ _incT } # Executes. echo $t' Null content' # Contents, set: t == (number of non-null characters) t=${#VarSomething}-1 # non-null length minus-one ${VarSomething+ _incT } # Executes. echo $t' Contents' # Exercise: clean up that example. unset t unset _incT # ${name?err_msg} ${name:?err_msg} # These follow the same rules but always exit afterwards #+ if an action is specified following the question mark. # The action following the question mark may be a literal #+ or a function result. ### # ${name?} ${name:?} are test-only, the return can be tested. # Element operations # ------------------ echo echo '- - Trailing sub-element selection - -' # Strings, Arrays and Positional parameters # Call this script with multiple arguments #+ to see the parameter selections. echo '- All -' echo ${VarSomething:0} # all non-null characters echo ${ArrayVar[@]:0} # all elements with content echo ${@:0} # all parameters with content; # ignoring parameter[0] echo echo '- All after -' echo ${VarSomething:1} # all non-null after character[0] echo ${ArrayVar[@]:1} # all after element[0] with content echo ${@:2} # all after param[1] with content echo echo '- Range after -' echo ${VarSomething:4:3} # ral # Three characters after # character[3] echo '- Sparse array gotch -' echo ${ArrayVar[@]:1:2} # four - The only element with content. # Two elements after (if that many exist). # the FIRST WITH CONTENTS #+ (the FIRST WITH CONTENTS is being #+ considered as if it #+ were subscript zero). # Executed as if Bash considers ONLY array elements with CONTENT # printf %q "${ArrayVar[@]:0:3}" # Try this one # In versions 2.04, 2.05a and 2.05b, #+ Bash does not handle sparse arrays as expected using this notation. # # The current Bash maintainer, Chet Ramey, has corrected this. echo '- Non-sparse array -' echo ${@:2:2} # Two parameters following parameter[1] # New victims for string vector examples: stringZ=abcABC123ABCabc arrayZ=( abcabc ABCABC 123123 ABCABC abcabc ) sparseZ=( [1]='abcabc' [3]='ABCABC' [4]='' [5]='123123' ) echo echo ' - - Victim string - -'$stringZ'- - ' echo ' - - Victim array - -'${arrayZ[@]}'- - ' echo ' - - Sparse array - -'${sparseZ[@]}'- - ' echo ' - [0]==null ref, [2]==null ref, [4]==null content - ' echo ' - [1]=abcabc [3]=ABCABC [5]=123123 - ' echo ' - non-null-reference count: '${#sparseZ[@]}' elements' echo echo '- - Prefix sub-element removal - -' echo '- - Glob-Pattern match must include the first character. - -' echo '- - Glob-Pattern may be a literal or a function result. - -' echo # Function returning a simple, Literal, Glob-Pattern _abc() { echo -n 'abc' } echo '- Shortest prefix -' echo ${stringZ#123} # Unchanged (not a prefix). echo ${stringZ#$(_abc)} # ABC123ABCabc echo ${arrayZ[@]#abc} # Applied to each element. # echo ${sparseZ[@]#abc} # Version-2.05b core dumps. # Has since been fixed by Chet Ramey. # The -it would be nice- First-Subscript-Of # echo ${#sparseZ[@]#*} # This is NOT valid Bash. echo echo '- Longest prefix -' echo ${stringZ##1*3} # Unchanged (not a prefix) echo ${stringZ##a*C} # abc echo ${arrayZ[@]##a*c} # ABCABC 123123 ABCABC # echo ${sparseZ[@]##a*c} # Version-2.05b core dumps. # Has since been fixed by Chet Ramey. echo echo '- - Suffix sub-element removal - -' echo '- - Glob-Pattern match must include the last character. - -' echo '- - Glob-Pattern may be a literal or a function result. - -' echo echo '- Shortest suffix -' echo ${stringZ%1*3} # Unchanged (not a suffix). echo ${stringZ%$(_abc)} # abcABC123ABC echo ${arrayZ[@]%abc} # Applied to each element. # echo ${sparseZ[@]%abc} # Version-2.05b core dumps. # Has since been fixed by Chet Ramey. # The -it would be nice- Last-Subscript-Of # echo ${#sparseZ[@]%*} # This is NOT valid Bash. echo echo '- Longest suffix -' echo ${stringZ%%1*3} # Unchanged (not a suffix) echo ${stringZ%%b*c} # a echo ${arrayZ[@]%%b*c} # a ABCABC 123123 ABCABC a # echo ${sparseZ[@]%%b*c} # Version-2.05b core dumps. # Has since been fixed by Chet Ramey. echo echo '- - Sub-element replacement - -' echo '- - Sub-element at any location in string. - -' echo '- - First specification is a Glob-Pattern - -' echo '- - Glob-Pattern may be a literal or Glob-Pattern function result. - -' echo '- - Second specification may be a literal or function result. - -' echo '- - Second specification may be unspecified. Pronounce that' echo ' as: Replace-With-Nothing (Delete) - -' echo # Function returning a simple, Literal, Glob-Pattern _123() { echo -n '123' } echo '- Replace first occurrence -' echo ${stringZ/$(_123)/999} # Changed (123 is a component). echo ${stringZ/ABC/xyz} # xyzABC123ABCabc echo ${arrayZ[@]/ABC/xyz} # Applied to each element. echo ${sparseZ[@]/ABC/xyz} # Works as expected. echo echo '- Delete first occurrence -' echo ${stringZ/$(_123)/} echo ${stringZ/ABC/} echo ${arrayZ[@]/ABC/} echo ${sparseZ[@]/ABC/} # The replacement need not be a literal, #+ since the result of a function invocation is allowed. # This is general to all forms of replacement. echo echo '- Replace first occurrence with Result-Of -' echo ${stringZ/$(_123)/$(_simple)} # Works as expected. echo ${arrayZ[@]/ca/$(_simple)} # Applied to each element. echo ${sparseZ[@]/ca/$(_simple)} # Works as expected. echo echo '- Replace all occurrences -' echo ${stringZ//[b2]/X} # X-out b's and 2's echo ${stringZ//abc/xyz} # xyzABC123ABCxyz echo ${arrayZ[@]//abc/xyz} # Applied to each element. echo ${sparseZ[@]//abc/xyz} # Works as expected. echo echo '- Delete all occurrences -' echo ${stringZ//[b2]/} echo ${stringZ//abc/} echo ${arrayZ[@]//abc/} echo ${sparseZ[@]//abc/} echo echo '- - Prefix sub-element replacement - -' echo '- - Match must include the first character. - -' echo echo '- Replace prefix occurrences -' echo ${stringZ/#[b2]/X} # Unchanged (neither is a prefix). echo ${stringZ/#$(_abc)/XYZ} # XYZABC123ABCabc echo ${arrayZ[@]/#abc/XYZ} # Applied to each element. echo ${sparseZ[@]/#abc/XYZ} # Works as expected. echo echo '- Delete prefix occurrences -' echo ${stringZ/#[b2]/} echo ${stringZ/#$(_abc)/} echo ${arrayZ[@]/#abc/} echo ${sparseZ[@]/#abc/} echo echo '- - Suffix sub-element replacement - -' echo '- - Match must include the last character. - -' echo echo '- Replace suffix occurrences -' echo ${stringZ/%[b2]/X} # Unchanged (neither is a suffix). echo ${stringZ/%$(_abc)/XYZ} # abcABC123ABCXYZ echo ${arrayZ[@]/%abc/XYZ} # Applied to each element. echo ${sparseZ[@]/%abc/XYZ} # Works as expected. echo echo '- Delete suffix occurrences -' echo ${stringZ/%[b2]/} echo ${stringZ/%$(_abc)/} echo ${arrayZ[@]/%abc/} echo ${sparseZ[@]/%abc/} echo echo '- - Special cases of null Glob-Pattern - -' echo echo '- Prefix all -' # null substring pattern means 'prefix' echo ${stringZ/#/NEW} # NEWabcABC123ABCabc echo ${arrayZ[@]/#/NEW} # Applied to each element. echo ${sparseZ[@]/#/NEW} # Applied to null-content also. # That seems reasonable. echo echo '- Suffix all -' # null substring pattern means 'suffix' echo ${stringZ/%/NEW} # abcABC123ABCabcNEW echo ${arrayZ[@]/%/NEW} # Applied to each element. echo ${sparseZ[@]/%/NEW} # Applied to null-content also. # That seems reasonable. echo echo '- - Special case For-Each Glob-Pattern - -' echo '- - - - This is a nice-to-have dream - - - -' echo _GenFunc() { echo -n ${0} # Illustration only. # Actually, that would be an arbitrary computation. } # All occurrences, matching the AnyThing pattern. # Currently //*/ does not match null-content nor null-reference. # /#/ and /%/ does match null-content but not null-reference. echo ${sparseZ[@]//*/$(_GenFunc)} # A possible syntax would be to make #+ the parameter notation used within this construct mean: # ${1} - The full element # ${2} - The prefix, if any, to the matched sub-element # ${3} - The matched sub-element # ${4} - The suffix, if any, to the matched sub-element # # echo ${sparseZ[@]//*/$(_GenFunc ${3})} # Same as ${1} here. # Perhaps it will be implemented in a future version of Bash. exit 0 |
Added behead.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 | #! /bin/sh # Strips off the header from a mail/News message i.e. till the first #+ empty line. # Author: Mark Moraes, University of Toronto # ==> These comments added by author of this document. if [ $# -eq 0 ]; then # ==> If no command-line args present, then works on file redirected to stdin. sed -e '1,/^$/d' -e '/^[ ]*$/d' # --> Delete empty lines and all lines until # --> first one beginning with white space. else # ==> If command-line args present, then work on files named. for i do sed -e '1,/^$/d' -e '/^[ ]*$/d' $i # --> Ditto, as above. done fi exit # ==> Exercise: Add error checking and other options. # ==> # ==> Note that the small sed script repeats, except for the arg passed. # ==> Does it make sense to embed it in a function? Why or why not? /* * Copyright University of Toronto 1988, 1989. * Written by Mark Moraes * * Permission is granted to anyone to use this software for any purpose on * any computer system, and to alter it and redistribute it freely, subject * to the following restrictions: * * 1. The author and the University of Toronto are not responsible * for the consequences of use of this software, no matter how awful, * even if they arise from flaws in it. * * 2. The origin of this software must not be misrepresented, either by * explicit claim or by omission. Since few users ever read sources, * credits must appear in the documentation. * * 3. Altered versions must be plainly marked as such, and must not be * misrepresented as being the original software. Since few users * ever read sources, credits must appear in the documentation. * * 4. This notice may not be removed or altered. */ |
Added bin-grep.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 | #!/bin/bash # bin-grep.sh: Locates matching strings in a binary file. # A "grep" replacement for binary files. # Similar effect to "grep -a" E_BADARGS=65 E_NOFILE=66 if [ $# -ne 2 ] then echo "Usage: `basename $0` search_string filename" exit $E_BADARGS fi if [ ! -f "$2" ] then echo "File \"$2\" does not exist." exit $E_NOFILE fi IFS=$'\012' # Per suggestion of Anton Filippov. # was: IFS="\n" for word in $( strings "$2" | grep "$1" ) # The "strings" command lists strings in binary files. # Output then piped to "grep", which tests for desired string. do echo $word done # As S.C. points out, lines 23 - 30 could be replaced with the simpler # strings "$2" | grep "$1" | tr -s "$IFS" '[\n*]' # Try something like "./bin-grep.sh mem /bin/ls" #+ to exercise this script. exit 0 |
Added bingo.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 | #!/bin/bash # bingo.sh # Bingo number generator # Reldate 20Aug12, License: Public Domain ####################################################################### # This script generates bingo numbers. # Hitting a key generates a new number. # Hitting 'q' terminates the script. # In a given run of the script, there will be no duplicate numbers. # When the script terminates, it prints a log of the numbers generated. ####################################################################### MIN=1 # Lowest allowable bingo number. MAX=75 # Highest allowable bingo number. COLS=15 # Numbers in each column (B I N G O). SINGLE_DIGIT_MAX=9 declare -a Numbers Prefix=(B I N G O) initialize_Numbers () { # Zero them out to start. # They'll be incremented if chosen. local index=0 until [ "$index" -gt $MAX ] do Numbers[index]=0 ((index++)) done Numbers[0]=1 # Flag zero, so it won't be selected. } generate_number () { local number while [ 1 ] do let "number = $(expr $RANDOM % $MAX)" if [ ${Numbers[number]} -eq 0 ] # Number not yet called. then let "Numbers[number]+=1" # Flag it in the array. break # And terminate loop. fi # Else if already called, loop and generate another number. done # Exercise: Rewrite this more elegantly as an until-loop. return $number } print_numbers_called () { # Print out the called number log in neat columns. # echo ${Numbers[@]} local pre2=0 # Prefix a zero, so columns will align #+ on single-digit numbers. echo "Number Stats" for (( index=1; index<=MAX; index++)) do count=${Numbers[index]} let "t = $index - 1" # Normalize, since array begins with index 0. let "column = $(expr $t / $COLS)" pre=${Prefix[column]} # echo -n "${Prefix[column]} " if [ $(expr $t % $COLS) -eq 0 ] then echo # Newline at end of row. fi if [ "$index" -gt $SINGLE_DIGIT_MAX ] # Check for single-digit number. then echo -n "$pre$index#$count " else # Prefix a zero. echo -n "$pre$pre2$index#$count " fi done } # main () { RANDOM=$$ # Seed random number generator. initialize_Numbers # Zero out the number tracking array. clear echo "Bingo Number Caller"; echo while [[ "$key" != "q" ]] # Main loop. do read -s -n1 -p "Hit a key for the next number [q to exit] " key # Usually 'q' exits, but not always. # Can always hit Ctl-C if q fails. echo generate_number; new_number=$? let "column = $(expr $new_number / $COLS)" echo -n "${Prefix[column]} " # B-I-N-G-O echo $new_number done echo; echo # Game over ... print_numbers_called echo; echo "[#0 = not called . . . #1 = called]" echo exit 0 # } # Certainly, this script could stand some improvement. #See also the author's Instructable: #www.instructables.com/id/Binguino-An-Arduino-based-Bingo-Number-Generato/ |
Added blank-rename.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 | #! /bin/bash # blank-rename.sh # # Substitutes underscores for blanks in all the filenames in a directory. ONE=1 # For getting singular/plural right (see below). number=0 # Keeps track of how many files actually renamed. FOUND=0 # Successful return value. for filename in * #Traverse all files in directory. do echo "$filename" | grep -q " " # Check whether filename if [ $? -eq $FOUND ] #+ contains space(s). then fname=$filename # Yes, this filename needs work. n=`echo $fname | sed -e "s/ /_/g"` # Substitute underscore for blank. mv "$fname" "$n" # Do the actual renaming. let "number += 1" fi done if [ "$number" -eq "$ONE" ] # For correct grammar. then echo "$number file renamed." else echo "$number files renamed." fi exit 0 |
Added blot-out.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 | #!/bin/bash # blot-out.sh: Erase "all" traces of a file. # This script overwrites a target file alternately #+ with random bytes, then zeros before finally deleting it. # After that, even examining the raw disk sectors by conventional methods #+ will not reveal the original file data. PASSES=7 # Number of file-shredding passes. # Increasing this slows script execution, #+ especially on large target files. BLOCKSIZE=1 # I/O with /dev/urandom requires unit block size, #+ otherwise you get weird results. E_BADARGS=70 # Various error exit codes. E_NOT_FOUND=71 E_CHANGED_MIND=72 if [ -z "$1" ] # No filename specified. then echo "Usage: `basename $0` filename" exit $E_BADARGS fi file=$1 if [ ! -e "$file" ] then echo "File \"$file\" not found." exit $E_NOT_FOUND fi echo; echo -n "Are you absolutely sure you want to blot out \"$file\" (y/n)? " read answer case "$answer" in [nN]) echo "Changed your mind, huh?" exit $E_CHANGED_MIND ;; *) echo "Blotting out file \"$file\".";; esac flength=$(ls -l "$file" | awk '{print $5}') # Field 5 is file length. pass_count=1 chmod u+w "$file" # Allow overwriting/deleting the file. echo while [ "$pass_count" -le "$PASSES" ] do echo "Pass #$pass_count" sync # Flush buffers. dd if=/dev/urandom of=$file bs=$BLOCKSIZE count=$flength # Fill with random bytes. sync # Flush buffers again. dd if=/dev/zero of=$file bs=$BLOCKSIZE count=$flength # Fill with zeros. sync # Flush buffers yet again. let "pass_count += 1" echo done rm -f $file # Finally, delete scrambled and shredded file. sync # Flush buffers a final time. echo "File \"$file\" blotted out and deleted."; echo exit 0 # This is a fairly secure, if inefficient and slow method #+ of thoroughly "shredding" a file. # The "shred" command, part of the GNU "fileutils" package, #+ does the same thing, although more efficiently. # The file cannot not be "undeleted" or retrieved by normal methods. # However . . . #+ this simple method would *not* likely withstand #+ sophisticated forensic analysis. # This script may not play well with a journaled file system. # Exercise (difficult): Fix it so it does. # Tom Vier's "wipe" file-deletion package does a much more thorough job #+ of file shredding than this simple script. # http://www.ibiblio.org/pub/Linux/utils/file/wipe-2.0.0.tar.bz2 # For an in-depth analysis on the topic of file deletion and security, #+ see Peter Gutmann's paper, #+ "Secure Deletion of Data From Magnetic and Solid-State Memory". # http://www.cs.auckland.ac.nz/~pgut001/pubs/secure_del.html |
Added break-levels.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 | #!/bin/bash # break-levels.sh: Breaking out of loops. # "break N" breaks out of N level loops. for outerloop in 1 2 3 4 5 do echo -n "Group $outerloop: " # -------------------------------------------------------- for innerloop in 1 2 3 4 5 do echo -n "$innerloop " if [ "$innerloop" -eq 3 ] then break # Try break 2 to see what happens. # ("Breaks" out of both inner and outer loops.) fi done # -------------------------------------------------------- echo done echo exit 0 |
Added broken-link.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 | #!/bin/bash # broken-link.sh # Written by Lee bigelow <ligelowbee@yahoo.com> # Used in ABS Guide with permission. # A pure shell script to find dead symlinks and output them quoted #+ so they can be fed to xargs and dealt with :) #+ eg. sh broken-link.sh /somedir /someotherdir|xargs rm # # This, however, is a better method: # # find "somedir" -type l -print0|\ # xargs -r0 file|\ # grep "broken symbolic"| # sed -e 's/^\|: *broken symbolic.*$/"/g' # #+ but that wouldn't be pure Bash, now would it. # Caution: beware the /proc file system and any circular links! ################################################################ # If no args are passed to the script set directories-to-search #+ to current directory. Otherwise set the directories-to-search #+ to the args passed. ###################### [ $# -eq 0 ] && directorys=`pwd` || directorys=$@ # Setup the function linkchk to check the directory it is passed #+ for files that are links and don't exist, then print them quoted. # If one of the elements in the directory is a subdirectory then #+ send that subdirectory to the linkcheck function. ########## linkchk () { for element in $1/*; do [ -h "$element" -a ! -e "$element" ] && echo \"$element\" [ -d "$element" ] && linkchk $element # Of course, '-h' tests for symbolic link, '-d' for directory. done } # Send each arg that was passed to the script to the linkchk() function #+ if it is a valid directoy. If not, then print the error message #+ and usage info. ################## for directory in $directorys; do if [ -d $directory ] then linkchk $directory else echo "$directory is not a directory" echo "Usage: $0 dir1 dir2 ..." fi done exit $? |
Added brownian.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 | #!/bin/bash # brownian.sh # Author: Mendel Cooper # Reldate: 10/26/07 # License: GPL3 # ---------------------------------------------------------------- # This script models Brownian motion: #+ the random wanderings of tiny particles in a fluid, #+ as they are buffeted by random currents and collisions. #+ This is colloquially known as the "Drunkard's Walk." # It can also be considered as a stripped-down simulation of a #+ Galton Board, a slanted board with a pattern of pegs, #+ down which rolls a succession of marbles, one at a time. #+ At the bottom is a row of slots or catch basins in which #+ the marbles come to rest at the end of their journey. # Think of it as a kind of bare-bones Pachinko game. # As you see by running the script, #+ most of the marbles cluster around the center slot. #+ This is consistent with the expected binomial distribution. # As a Galton Board simulation, the script #+ disregards such parameters as #+ board tilt-angle, rolling friction of the marbles, #+ angles of impact, and elasticity of the pegs. # To what extent does this affect the accuracy of the simulation? # ---------------------------------------------------------------- PASSES=500 # Number of particle interactions / marbles. ROWS=10 # Number of "collisions" (or horiz. peg rows). RANGE=3 # 0 - 2 output range from $RANDOM. POS=0 # Left/right position. RANDOM=$$ # Seeds the random number generator from PID #+ of script. declare -a Slots # Array holding cumulative results of passes. NUMSLOTS=21 # Number of slots at bottom of board. Initialize_Slots () { # Zero out all elements of the array. for i in $( seq $NUMSLOTS ) do Slots[$i]=0 done echo # Blank line at beginning of run. } Show_Slots () { echo; echo echo -n " " for i in $( seq $NUMSLOTS ) # Pretty-print array elements. do printf "%3d" ${Slots[$i]} # Allot three spaces per result. done echo # Row of slots: echo " |__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|" echo " ||" echo # Note that if the count within any particular slot exceeds 99, #+ it messes up the display. # Running only(!) 500 passes usually avoids this. } Move () { # Move one unit right / left, or stay put. Move=$RANDOM # How random is $RANDOM? Well, let's see ... let "Move %= RANGE" # Normalize into range of 0 - 2. case "$Move" in 0 ) ;; # Do nothing, i.e., stay in place. 1 ) ((POS--));; # Left. 2 ) ((POS++));; # Right. * ) echo -n "Error ";; # Anomaly! (Should never occur.) esac } Play () { # Single pass (inner loop). i=0 while [ "$i" -lt "$ROWS" ] # One event per row. do Move ((i++)); done SHIFT=11 # Why 11, and not 10? let "POS += $SHIFT" # Shift "zero position" to center. (( Slots[$POS]++ )) # DEBUG: echo $POS # echo -n "$POS " } Run () { # Outer loop. p=0 while [ "$p" -lt "$PASSES" ] do Play (( p++ )) POS=0 # Reset to zero. Why? done } # -------------- # main () Initialize_Slots Run Show_Slots # -------------- exit $? # Exercises: # --------- # 1) Show the results in a vertical bar graph, or as an alternative, #+ a scattergram. # 2) Alter the script to use /dev/urandom instead of $RANDOM. # Will this make the results more random? # 3) Provide some sort of "animation" or graphic output # for each marble played. |
Added bubble.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 | #!/bin/bash # bubble.sh: Bubble sort, of sorts. # Recall the algorithm for a bubble sort. In this particular version... # With each successive pass through the array to be sorted, #+ compare two adjacent elements, and swap them if out of order. # At the end of the first pass, the "heaviest" element has sunk to bottom. # At the end of the second pass, the next "heaviest" one has sunk next to bottom. # And so forth. # This means that each successive pass needs to traverse less of the array. # You will therefore notice a speeding up in the printing of the later passes. exchange() { # Swaps two members of the array. local temp=${Countries[$1]} # Temporary storage #+ for element getting swapped out. Countries[$1]=${Countries[$2]} Countries[$2]=$temp return } declare -a Countries # Declare array, #+ optional here since it's initialized below. # Is it permissable to split an array variable over multiple lines #+ using an escape (\)? # Yes. Countries=(Netherlands Ukraine Zaire Turkey Russia Yemen Syria \ Brazil Argentina Nicaragua Japan Mexico Venezuela Greece England \ Israel Peru Canada Oman Denmark Wales France Kenya \ Xanadu Qatar Liechtenstein Hungary) # "Xanadu" is the mythical place where, according to Coleridge, #+ Kubla Khan did a pleasure dome decree. clear # Clear the screen to start with. echo "0: ${Countries[*]}" # List entire array at pass 0. number_of_elements=${#Countries[@]} let "comparisons = $number_of_elements - 1" count=1 # Pass number. while [ "$comparisons" -gt 0 ] # Beginning of outer loop do index=0 # Reset index to start of array after each pass. while [ "$index" -lt "$comparisons" ] # Beginning of inner loop do if [ ${Countries[$index]} \> ${Countries[`expr $index + 1`]} ] # If out of order... # Recalling that \> is ASCII comparison operator #+ within single brackets. # if [[ ${Countries[$index]} > ${Countries[`expr $index + 1`]} ]] #+ also works. then exchange $index `expr $index + 1` # Swap. fi let "index += 1" # Or, index+=1 on Bash, ver. 3.1 or newer. done # End of inner loop # ---------------------------------------------------------------------- # Paulo Marcel Coelho Aragao suggests for-loops as a simpler altenative. # # for (( last = $number_of_elements - 1 ; last > 0 ; last-- )) ## Fix by C.Y. Hunt ^ (Thanks!) # do # for (( i = 0 ; i < last ; i++ )) # do # [[ "${Countries[$i]}" > "${Countries[$((i+1))]}" ]] \ # && exchange $i $((i+1)) # done # done # ---------------------------------------------------------------------- let "comparisons -= 1" # Since "heaviest" element bubbles to bottom, #+ we need do one less comparison each pass. echo echo "$count: ${Countries[@]}" # Print resultant array at end of each pass. echo let "count += 1" # Increment pass count. done # End of outer loop # All done. exit 0 |
Added c-vars.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 | #!/bin/bash # c-vars.sh # Manipulating a variable, C-style, using the (( ... )) construct. echo (( a = 23 )) # Setting a value, C-style, #+ with spaces on both sides of the "=". echo "a (initial value) = $a" # 23 (( a++ )) # Post-increment 'a', C-style. echo "a (after a++) = $a" # 24 (( a-- )) # Post-decrement 'a', C-style. echo "a (after a--) = $a" # 23 (( ++a )) # Pre-increment 'a', C-style. echo "a (after ++a) = $a" # 24 (( --a )) # Pre-decrement 'a', C-style. echo "a (after --a) = $a" # 23 echo ######################################################## # Note that, as in C, pre- and post-decrement operators #+ have different side-effects. n=1; let --n && echo "True" || echo "False" # False n=1; let n-- && echo "True" || echo "False" # True # Thanks, Jeroen Domburg. ######################################################## echo (( t = a<45?7:11 )) # C-style trinary operator. # ^ ^ ^ echo "If a < 45, then t = 7, else t = 11." # a = 23 echo "t = $t " # t = 7 echo # ----------------- # Easter Egg alert! # ----------------- # Chet Ramey seems to have snuck a bunch of undocumented C-style #+ constructs into Bash (actually adapted from ksh, pretty much). # In the Bash docs, Ramey calls (( ... )) shell arithmetic, #+ but it goes far beyond that. # Sorry, Chet, the secret is out. # See also "for" and "while" loops using the (( ... )) construct. # These work only with version 2.04 or later of Bash. exit |
Added cannon.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 | #!/bin/bash # cannon.sh: Approximating PI by firing cannonballs. # Author: Mendel Cooper # License: Public Domain # Version 2.2, reldate 13oct08. # This is a very simple instance of a "Monte Carlo" simulation: #+ a mathematical model of a real-life event, #+ using pseudorandom numbers to emulate random chance. # Consider a perfectly square plot of land, 10000 units on a side. # This land has a perfectly circular lake in its center, #+ with a diameter of 10000 units. # The plot is actually mostly water, except for land in the four corners. # (Think of it as a square with an inscribed circle.) # # We will fire iron cannonballs from an old-style cannon #+ at the square. # All the shots impact somewhere on the square, #+ either in the lake or on the dry corners. # Since the lake takes up most of the area, #+ most of the shots will SPLASH! into the water. # Just a few shots will THUD! into solid ground #+ in the four corners of the square. # # If we take enough random, unaimed shots at the square, #+ Then the ratio of SPLASHES to total shots will approximate #+ the value of PI/4. # # The simplified explanation is that the cannon is actually #+ shooting only at the upper right-hand quadrant of the square, #+ i.e., Quadrant I of the Cartesian coordinate plane. # # # Theoretically, the more shots taken, the better the fit. # However, a shell script, as opposed to a compiled language #+ with floating-point math built in, requires some compromises. # This decreases the accuracy of the simulation. DIMENSION=10000 # Length of each side of the plot. # Also sets ceiling for random integers generated. MAXSHOTS=1000 # Fire this many shots. # 10000 or more would be better, but would take too long. PMULTIPLIER=4.0 # Scaling factor. declare -r M_PI=3.141592654 # Actual 9-place value of PI, for comparison purposes. get_random () { SEED=$(head -n 1 /dev/urandom | od -N 1 | awk '{ print $2 }') RANDOM=$SEED # From "seeding-random.sh" #+ example script. let "rnum = $RANDOM % $DIMENSION" # Range less than 10000. echo $rnum } distance= # Declare global variable. hypotenuse () # Calculate hypotenuse of a right triangle. { # From "alt-bc.sh" example. distance=$(bc -l << EOF scale = 0 sqrt ( $1 * $1 + $2 * $2 ) EOF ) # Setting "scale" to zero rounds down result to integer value, #+ a necessary compromise in this script. # It decreases the accuracy of this simulation. } # ========================================================== # main() { # "Main" code block, mimicking a C-language main() function. # Initialize variables. shots=0 splashes=0 thuds=0 Pi=0 error=0 while [ "$shots" -lt "$MAXSHOTS" ] # Main loop. do xCoord=$(get_random) # Get random X and Y coords. yCoord=$(get_random) hypotenuse $xCoord $yCoord # Hypotenuse of #+ right-triangle = distance. ((shots++)) printf "#%4d " $shots printf "Xc = %4d " $xCoord printf "Yc = %4d " $yCoord printf "Distance = %5d " $distance # Distance from #+ center of lake #+ -- the "origin" -- #+ coordinate (0,0). if [ "$distance" -le "$DIMENSION" ] then echo -n "SPLASH! " ((splashes++)) else echo -n "THUD! " ((thuds++)) fi Pi=$(echo "scale=9; $PMULTIPLIER*$splashes/$shots" | bc) # Multiply ratio by 4.0. echo -n "PI ~ $Pi" echo done echo echo "After $shots shots, PI looks like approximately $Pi" # Tends to run a bit high, #+ possibly due to round-off error and imperfect randomness of $RANDOM. # But still usually within plus-or-minus 5% . . . #+ a pretty fair rough approximation. error=$(echo "scale=9; $Pi - $M_PI" | bc) pct_error=$(echo "scale=2; 100.0 * $error / $M_PI" | bc) echo -n "Deviation from mathematical value of PI = $error" echo " ($pct_error% error)" echo # End of "main" code block. # } # ========================================================== exit 0 # One might well wonder whether a shell script is appropriate for #+ an application as complex and computation-intensive as a simulation. # # There are at least two justifications. # 1) As a proof of concept: to show it can be done. # 2) To prototype and test the algorithms before rewriting #+ it in a compiled high-level language. |
Added cards.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 | #!/bin/bash # cards.sh # Deals four random hands from a deck of cards. UNPICKED=0 PICKED=1 DUPE_CARD=99 LOWER_LIMIT=0 UPPER_LIMIT=51 CARDS_IN_SUIT=13 CARDS=52 declare -a Deck declare -a Suits declare -a Cards # It would have been easier to implement and more intuitive #+ with a single, 3-dimensional array. # Perhaps a future version of Bash will support multidimensional arrays. initialize_Deck () { i=$LOWER_LIMIT until [ "$i" -gt $UPPER_LIMIT ] do Deck[i]=$UNPICKED # Set each card of "Deck" as unpicked. let "i += 1" done echo } initialize_Suits () { Suits[0]=C #Clubs Suits[1]=D #Diamonds Suits[2]=H #Hearts Suits[3]=S #Spades } initialize_Cards () { Cards=(2 3 4 5 6 7 8 9 10 J Q K A) # Alternate method of initializing an array. } pick_a_card () { card_number=$RANDOM let "card_number %= $CARDS" # Restrict range to 0 - 51, i.e., 52 cards. if [ "${Deck[card_number]}" -eq $UNPICKED ] then Deck[card_number]=$PICKED return $card_number else return $DUPE_CARD fi } parse_card () { number=$1 let "suit_number = number / CARDS_IN_SUIT" suit=${Suits[suit_number]} echo -n "$suit-" let "card_no = number % CARDS_IN_SUIT" Card=${Cards[card_no]} printf %-4s $Card # Print cards in neat columns. } seed_random () # Seed random number generator. { # What happens if you don't do this? seed=`eval date +%s` let "seed %= 32766" RANDOM=$seed } # Consider other methods of seeding the random number generator. deal_cards () { echo cards_picked=0 while [ "$cards_picked" -le $UPPER_LIMIT ] do pick_a_card t=$? if [ "$t" -ne $DUPE_CARD ] then parse_card $t u=$cards_picked+1 # Change back to 1-based indexing, temporarily. Why? let "u %= $CARDS_IN_SUIT" if [ "$u" -eq 0 ] # Nested if/then condition test. then echo echo fi # Each hand set apart with a blank line. let "cards_picked += 1" fi done echo return 0 } # Structured programming: # Entire program logic modularized in functions. #=============== seed_random initialize_Deck initialize_Suits initialize_Cards deal_cards #=============== exit # Exercise 1: # Add comments to thoroughly document this script. # Exercise 2: # Add a routine (function) to print out each hand sorted in suits. # You may add other bells and whistles if you like. # Exercise 3: # Simplify and streamline the logic of the script. |
Added case-cmd.sh.
> > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash # case-cmd.sh: Using command substitution to generate a "case" variable. case $( arch ) in # $( arch ) returns machine architecture. # Equivalent to 'uname -m' ... i386 ) echo "80386-based machine";; i486 ) echo "80486-based machine";; i586 ) echo "Pentium-based machine";; i686 ) echo "Pentium2+-based machine";; * ) echo "Other type of machine";; esac exit 0 |
Added case4.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 | #!/bin/bash4 test_char () { case "$1" in [[:print:]] ) echo "$1 is a printable character.";;& # | # The ;;& terminator continues to the next pattern test. | [[:alnum:]] ) echo "$1 is an alpha/numeric character.";;& # v [[:alpha:]] ) echo "$1 is an alphabetic character.";;& # v [[:lower:]] ) echo "$1 is a lowercase alphabetic character.";;& [[:digit:]] ) echo "$1 is an numeric character.";& # | # The ;& terminator executes the next statement ... # | %%%@@@@@ ) echo "********************************";; # v # ^^^^^^^^ ... even with a dummy pattern. esac } echo test_char 3 # 3 is a printable character. # 3 is an alpha/numeric character. # 3 is an numeric character. # ******************************** echo test_char m # m is a printable character. # m is an alpha/numeric character. # m is an alphabetic character. # m is a lowercase alphabetic character. echo test_char / # / is a printable character. echo # The ;;& terminator can save complex if/then conditions. # The ;& is somewhat less useful. |
Added cdll.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 | ########################################################################### # # cdll # by Phil Braham # # ############################################ # Latest version of this script available from # http://freshmeat.net/projects/cd/ # ############################################ # # .cd_new # # An enhancement of the Unix cd command # # There are unlimited stack entries and special entries. The stack # entries keep the last cd_maxhistory # directories that have been used. The special entries can be # assigned to commonly used directories. # # The special entries may be pre-assigned by setting the environment # variables CDSn or by using the -u or -U command. # # The following is a suggestion for the .profile file: # # . cdll # Set up the cd command # alias cd='cd_new' # Replace the cd command # cd -U # Upload pre-assigned entries for # #+ the stack and special entries # cd -D # Set non-default mode # alias @="cd_new @" # Allow @ to be used to get history # # For help type: # # cd -h or # cd -H # # ########################################################################### # # Version 1.2.1 # # Written by Phil Braham - Realtime Software Pty Ltd # (realtime@mpx.com.au) # Please send any suggestions or enhancements to the author (also at # phil@braham.net) # ############################################################################ cd_hm () { ${PRINTF} "%s" "cd [dir] [0-9] [@[s|h] [-g [<dir>]] [-d] \ [-D] [-r<n>] [dir|0-9] [-R<n>] [<dir>|0-9] [-s<n>] [-S<n>] [-u] [-U] [-f] [-F] [-h] [-H] [-v] <dir> Go to directory 0-n Go to previous directory (0 is previous, 1 is last but 1 etc) n is up to max history (default is 50) @ List history and special entries @h List history entries @s List special entries -g [<dir>] Go to literal name (bypass special names) This is to allow access to dirs called '0','1','-h' etc -d Change default action - verbose. (See note) -D Change default action - silent. (See note) -s<n> Go to the special entry <n>* -S<n> Go to the special entry <n> and replace it with the current dir* -r<n> [<dir>] Go to directory <dir> and then put it on special entry <n>* -R<n> [<dir>] Go to directory <dir> and put current dir on special entry <n>* -a<n> Alternative suggested directory. See note below. -f [<file>] File entries to <file>. -u [<file>] Update entries from <file>. If no filename supplied then default file (${CDPath}${2:-"$CDFile"}) is used -F and -U are silent versions -v Print version number -h Help -H Detailed help *The special entries (0 - 9) are held until log off, replaced by another entry or updated with the -u command Alternative suggested directories: If a directory is not found then CD will suggest any possibilities. These are directories starting with the same letters and if any are found they are listed prefixed with -a<n> where <n> is a number. It's possible to go to the directory by entering cd -a<n> on the command line. The directory for -r<n> or -R<n> may be a number. For example: $ cd -r3 4 Go to history entry 4 and put it on special entry 3 $ cd -R3 4 Put current dir on the special entry 3 and go to history entry 4 $ cd -s3 Go to special entry 3 Note that commands R,r,S and s may be used without a number and refer to 0: $ cd -s Go to special entry 0 $ cd -S Go to special entry 0 and make special entry 0 current dir $ cd -r 1 Go to history entry 1 and put it on special entry 0 $ cd -r Go to history entry 0 and put it on special entry 0 " if ${TEST} "$CD_MODE" = "PREV" then ${PRINTF} "$cd_mnset" else ${PRINTF} "$cd_mset" fi } cd_Hm () { cd_hm ${PRINTF} "%s" " The previous directories (0-$cd_maxhistory) are stored in the environment variables CD[0] - CD[$cd_maxhistory] Similarly the special directories S0 - $cd_maxspecial are in the environment variable CDS[0] - CDS[$cd_maxspecial] and may be accessed from the command line The default pathname for the -f and -u commands is $CDPath The default filename for the -f and -u commands is $CDFile Set the following environment variables: CDL_PROMPTLEN - Set to the length of prompt you require. Prompt string is set to the right characters of the current directory. If not set then prompt is left unchanged CDL_PROMPT_PRE - Set to the string to prefix the prompt. Default is: non-root: \"\\[\\e[01;34m\\]\" (sets colour to blue). root: \"\\[\\e[01;31m\\]\" (sets colour to red). CDL_PROMPT_POST - Set to the string to suffix the prompt. Default is: non-root: \"\\[\\e[00m\\]$\" (resets colour and displays $). root: \"\\[\\e[00m\\]#\" (resets colour and displays #). CDPath - Set the default path for the -f & -u options. Default is home directory CDFile - Set the default filename for the -f & -u options. Default is cdfile " cd_version } cd_version () { printf "Version: ${VERSION_MAJOR}.${VERSION_MINOR} Date: ${VERSION_DATE}\n" } # # Truncate right. # # params: # p1 - string # p2 - length to truncate to # # returns string in tcd # cd_right_trunc () { local tlen=${2} local plen=${#1} local str="${1}" local diff local filler="<--" if ${TEST} ${plen} -le ${tlen} then tcd="${str}" else let diff=${plen}-${tlen} elen=3 if ${TEST} ${diff} -le 2 then let elen=${diff} fi tlen=-${tlen} let tlen=${tlen}+${elen} tcd=${filler:0:elen}${str:tlen} fi } # # Three versions of do history: # cd_dohistory - packs history and specials side by side # cd_dohistoryH - Shows only hstory # cd_dohistoryS - Shows only specials # cd_dohistory () { cd_getrc ${PRINTF} "History:\n" local -i count=${cd_histcount} while ${TEST} ${count} -ge 0 do cd_right_trunc "${CD[count]}" ${cd_lchar} ${PRINTF} "%2d %-${cd_lchar}.${cd_lchar}s " ${count} "${tcd}" cd_right_trunc "${CDS[count]}" ${cd_rchar} ${PRINTF} "S%d %-${cd_rchar}.${cd_rchar}s\n" ${count} "${tcd}" count=${count}-1 done } cd_dohistoryH () { cd_getrc ${PRINTF} "History:\n" local -i count=${cd_maxhistory} while ${TEST} ${count} -ge 0 do ${PRINTF} "${count} %-${cd_flchar}.${cd_flchar}s\n" ${CD[$count]} count=${count}-1 done } cd_dohistoryS () { cd_getrc ${PRINTF} "Specials:\n" local -i count=${cd_maxspecial} while ${TEST} ${count} -ge 0 do ${PRINTF} "S${count} %-${cd_flchar}.${cd_flchar}s\n" ${CDS[$count]} count=${count}-1 done } cd_getrc () { cd_flchar=$(stty -a | awk -F \; '/rows/ { print $2 $3 }' | awk -F \ '{ print $4 }') if ${TEST} ${cd_flchar} -ne 0 then cd_lchar=${cd_flchar}/2-5 cd_rchar=${cd_flchar}/2-5 cd_flchar=${cd_flchar}-5 else cd_flchar=${FLCHAR:=75} # cd_flchar is used for for the @s & @h history cd_lchar=${LCHAR:=35} cd_rchar=${RCHAR:=35} fi } cd_doselection () { local -i nm=0 cd_doflag="TRUE" if ${TEST} "${CD_MODE}" = "PREV" then if ${TEST} -z "$cd_npwd" then cd_npwd=0 fi fi tm=$(echo "${cd_npwd}" | cut -b 1) if ${TEST} "${tm}" = "-" then pm=$(echo "${cd_npwd}" | cut -b 2) nm=$(echo "${cd_npwd}" | cut -d $pm -f2) case "${pm}" in a) cd_npwd=${cd_sugg[$nm]} ;; s) cd_npwd="${CDS[$nm]}" ;; S) cd_npwd="${CDS[$nm]}" ; CDS[$nm]=`pwd` ;; r) cd_npwd="$2" ; cd_specDir=$nm ; cd_doselection "$1" "$2";; R) cd_npwd="$2" ; CDS[$nm]=`pwd` ; cd_doselection "$1" "$2";; esac fi if ${TEST} "${cd_npwd}" != "." -a "${cd_npwd}" \ != ".." -a "${cd_npwd}" -le ${cd_maxhistory} >>/dev/null 2>&1 then cd_npwd=${CD[$cd_npwd]} else case "$cd_npwd" in @) cd_dohistory ; cd_doflag="FALSE" ;; @h) cd_dohistoryH ; cd_doflag="FALSE" ;; @s) cd_dohistoryS ; cd_doflag="FALSE" ;; -h) cd_hm ; cd_doflag="FALSE" ;; -H) cd_Hm ; cd_doflag="FALSE" ;; -f) cd_fsave "SHOW" $2 ; cd_doflag="FALSE" ;; -u) cd_upload "SHOW" $2 ; cd_doflag="FALSE" ;; -F) cd_fsave "NOSHOW" $2 ; cd_doflag="FALSE" ;; -U) cd_upload "NOSHOW" $2 ; cd_doflag="FALSE" ;; -g) cd_npwd="$2" ;; -d) cd_chdefm 1; cd_doflag="FALSE" ;; -D) cd_chdefm 0; cd_doflag="FALSE" ;; -r) cd_npwd="$2" ; cd_specDir=0 ; cd_doselection "$1" "$2";; -R) cd_npwd="$2" ; CDS[0]=`pwd` ; cd_doselection "$1" "$2";; -s) cd_npwd="${CDS[0]}" ;; -S) cd_npwd="${CDS[0]}" ; CDS[0]=`pwd` ;; -v) cd_version ; cd_doflag="FALSE";; esac fi } cd_chdefm () { if ${TEST} "${CD_MODE}" = "PREV" then CD_MODE="" if ${TEST} $1 -eq 1 then ${PRINTF} "${cd_mset}" fi else CD_MODE="PREV" if ${TEST} $1 -eq 1 then ${PRINTF} "${cd_mnset}" fi fi } cd_fsave () { local sfile=${CDPath}${2:-"$CDFile"} if ${TEST} "$1" = "SHOW" then ${PRINTF} "Saved to %s\n" $sfile fi ${RM} -f ${sfile} local -i count=0 while ${TEST} ${count} -le ${cd_maxhistory} do echo "CD[$count]=\"${CD[$count]}\"" >> ${sfile} count=${count}+1 done count=0 while ${TEST} ${count} -le ${cd_maxspecial} do echo "CDS[$count]=\"${CDS[$count]}\"" >> ${sfile} count=${count}+1 done } cd_upload () { local sfile=${CDPath}${2:-"$CDFile"} if ${TEST} "${1}" = "SHOW" then ${PRINTF} "Loading from %s\n" ${sfile} fi . ${sfile} } cd_new () { local -i count local -i choose=0 cd_npwd="${1}" cd_specDir=-1 cd_doselection "${1}" "${2}" if ${TEST} ${cd_doflag} = "TRUE" then if ${TEST} "${CD[0]}" != "`pwd`" then count=$cd_maxhistory while ${TEST} $count -gt 0 do CD[$count]=${CD[$count-1]} count=${count}-1 done CD[0]=`pwd` fi command cd "${cd_npwd}" 2>/dev/null if ${TEST} $? -eq 1 then ${PRINTF} "Unknown dir: %s\n" "${cd_npwd}" local -i ftflag=0 for i in "${cd_npwd}"* do if ${TEST} -d "${i}" then if ${TEST} ${ftflag} -eq 0 then ${PRINTF} "Suggest:\n" ftflag=1 fi ${PRINTF} "\t-a${choose} %s\n" "$i" cd_sugg[$choose]="${i}" choose=${choose}+1 fi done fi fi if ${TEST} ${cd_specDir} -ne -1 then CDS[${cd_specDir}]=`pwd` fi if ${TEST} ! -z "${CDL_PROMPTLEN}" then cd_right_trunc "${PWD}" ${CDL_PROMPTLEN} cd_rp=${CDL_PROMPT_PRE}${tcd}${CDL_PROMPT_POST} export PS1="$(echo -ne ${cd_rp})" fi } ######################################################################### # # # Initialisation here # # # ######################################################################### # VERSION_MAJOR="1" VERSION_MINOR="2.1" VERSION_DATE="24-MAY-2003" # alias cd=cd_new # # Set up commands RM=/bin/rm TEST=test PRINTF=printf # Use builtin printf ######################################################################### # # # Change this to modify the default pre- and post prompt strings. # # These only come into effect if CDL_PROMPTLEN is set. # # # ######################################################################### if ${TEST} ${EUID} -eq 0 then # CDL_PROMPT_PRE=${CDL_PROMPT_PRE:="$HOSTNAME@"} CDL_PROMPT_PRE=${CDL_PROMPT_PRE:="\\[\\e[01;31m\\]"} # Root is in red CDL_PROMPT_POST=${CDL_PROMPT_POST:="\\[\\e[00m\\]#"} else CDL_PROMPT_PRE=${CDL_PROMPT_PRE:="\\[\\e[01;34m\\]"} # Users in blue CDL_PROMPT_POST=${CDL_PROMPT_POST:="\\[\\e[00m\\]$"} fi ######################################################################### # # cd_maxhistory defines the max number of history entries allowed. typeset -i cd_maxhistory=50 ######################################################################### # # cd_maxspecial defines the number of special entries. typeset -i cd_maxspecial=9 # # ######################################################################### # # cd_histcount defines the number of entries displayed in #+ the history command. typeset -i cd_histcount=9 # ######################################################################### export CDPath=${HOME}/ # Change these to use a different # #+ default path and filename # export CDFile=${CDFILE:=cdfile} # for the -u and -f commands # # ######################################################################### # typeset -i cd_lchar cd_rchar cd_flchar # This is the number of chars to allow for the # cd_flchar=${FLCHAR:=75} #+ cd_flchar is used for for the @s & @h history# typeset -ax CD CDS # cd_mset="\n\tDefault mode is now set - entering cd with no parameters \ has the default action\n\tUse cd -d or -D for cd to go to \ previous directory with no parameters\n" cd_mnset="\n\tNon-default mode is now set - entering cd with no \ parameters is the same as entering cd 0\n\tUse cd -d or \ -D to change default cd action\n" # ==================================================================== # : <<DOCUMENTATION Written by Phil Braham. Realtime Software Pty Ltd. Released under GNU license. Free to use. Please pass any modifications or comments to the author Phil Braham: realtime@mpx.com.au ======================================================================= cdll is a replacement for cd and incorporates similar functionality to the bash pushd and popd commands but is independent of them. This version of cdll has been tested on Linux using Bash. It will work on most Linux versions but will probably not work on other shells without modification. Introduction ============ cdll allows easy moving about between directories. When changing to a new directory the current one is automatically put onto a stack. By default 50 entries are kept, but this is configurable. Special directories can be kept for easy access - by default up to 10, but this is configurable. The most recent stack entries and the special entries can be easily viewed. The directory stack and special entries can be saved to, and loaded from, a file. This allows them to be set up on login, saved before logging out or changed when moving project to project. In addition, cdll provides a flexible command prompt facility that allows, for example, a directory name in colour that is truncated from the left if it gets too long. Setting up cdll =============== Copy cdll to either your local home directory or a central directory such as /usr/bin (this will require root access). Copy the file cdfile to your home directory. It will require read and write access. This a default file that contains a directory stack and special entries. To replace the cd command you must add commands to your login script. The login script is one or more of: /etc/profile ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc /etc/bash.bashrc.local To setup your login, ~/.bashrc is recommended, for global (and root) setup add the commands to /etc/bash.bashrc.local To set up on login, add the command: . <dir>/cdll For example if cdll is in your local home directory: . ~/cdll If in /usr/bin then: . /usr/bin/cdll If you want to use this instead of the buitin cd command then add: alias cd='cd_new' We would also recommend the following commands: alias @='cd_new @' cd -U cd -D If you want to use cdll's prompt facilty then add the following: CDL_PROMPTLEN=nn Where nn is a number described below. Initially 99 would be suitable number. Thus the script looks something like this: ###################################################################### # CD Setup ###################################################################### CDL_PROMPTLEN=21 # Allow a prompt length of up to 21 characters . /usr/bin/cdll # Initialise cdll alias cd='cd_new' # Replace the built in cd command alias @='cd_new @' # Allow @ at the prompt to display history cd -U # Upload directories cd -D # Set default action to non-posix ###################################################################### The full meaning of these commands will become clear later. There are a couple of caveats. If another program changes the directory without calling cdll, then the directory won't be put on the stack and also if the prompt facility is used then this will not be updated. Two programs that can do this are pushd and popd. To update the prompt and stack simply enter: cd . Note that if the previous entry on the stack is the current directory then the stack is not updated. Usage ===== cd [dir] [0-9] [@[s|h] [-g <dir>] [-d] [-D] [-r<n>] [dir|0-9] [-R<n>] [<dir>|0-9] [-s<n>] [-S<n>] [-u] [-U] [-f] [-F] [-h] [-H] [-v] <dir> Go to directory 0-n Goto previous directory (0 is previous, 1 is last but 1, etc.) n is up to max history (default is 50) @ List history and special entries (Usually available as $ @) @h List history entries @s List special entries -g [<dir>] Go to literal name (bypass special names) This is to allow access to dirs called '0','1','-h' etc -d Change default action - verbose. (See note) -D Change default action - silent. (See note) -s<n> Go to the special entry <n> -S<n> Go to the special entry <n> and replace it with the current dir -r<n> [<dir>] Go to directory <dir> and then put it on special entry <n> -R<n> [<dir>] Go to directory <dir> and put current dir on special entry <n> -a<n> Alternative suggested directory. See note below. -f [<file>] File entries to <file>. -u [<file>] Update entries from <file>. If no filename supplied then default file (~/cdfile) is used -F and -U are silent versions -v Print version number -h Help -H Detailed help Examples ======== These examples assume non-default mode is set (that is, cd with no parameters will go to the most recent stack directory), that aliases have been set up for cd and @ as described above and that cd's prompt facility is active and the prompt length is 21 characters. /home/phil$ @ # List the entries with the @ History: # Output of the @ command ..... # Skipped these entries for brevity 1 /home/phil/ummdev S1 /home/phil/perl # Most recent two history entries 0 /home/phil/perl/eg S0 /home/phil/umm/ummdev # and two special entries are shown /home/phil$ cd /home/phil/utils/Cdll # Now change directories /home/phil/utils/Cdll$ @ # Prompt reflects the directory. History: # New history ..... 1 /home/phil/perl/eg S1 /home/phil/perl # History entry 0 has moved to 1 0 /home/phil S0 /home/phil/umm/ummdev # and the most recent has entered To go to a history entry: /home/phil/utils/Cdll$ cd 1 # Go to history entry 1. /home/phil/perl/eg$ # Current directory is now what was 1 To go to a special entry: /home/phil/perl/eg$ cd -s1 # Go to special entry 1 /home/phil/umm/ummdev$ # Current directory is S1 To go to a directory called, for example, 1: /home/phil$ cd -g 1 # -g ignores the special meaning of 1 /home/phil/1$ To put current directory on the special list as S1: cd -r1 . # OR cd -R1 . # These have the same effect if the directory is #+ . (the current directory) To go to a directory and add it as a special The directory for -r<n> or -R<n> may be a number. For example: $ cd -r3 4 Go to history entry 4 and put it on special entry 3 $ cd -R3 4 Put current dir on the special entry 3 and go to history entry 4 $ cd -s3 Go to special entry 3 Note that commands R,r,S and s may be used without a number and refer to 0: $ cd -s Go to special entry 0 $ cd -S Go to special entry 0 and make special entry 0 current dir $ cd -r 1 Go to history entry 1 and put it on special entry 0 $ cd -r Go to history entry 0 and put it on special entry 0 Alternative suggested directories: If a directory is not found, then CD will suggest any possibilities. These are directories starting with the same letters and if any are found they are listed prefixed with -a<n> where <n> is a number. It's possible to go to the directory by entering cd -a<n> on the command line. Use cd -d or -D to change default cd action. cd -H will show current action. The history entries (0-n) are stored in the environment variables CD[0] - CD[n] Similarly the special directories S0 - 9 are in the environment variable CDS[0] - CDS[9] and may be accessed from the command line, for example: ls -l ${CDS[3]} cat ${CD[8]}/file.txt The default pathname for the -f and -u commands is ~ The default filename for the -f and -u commands is cdfile Configuration ============= The following environment variables can be set: CDL_PROMPTLEN - Set to the length of prompt you require. Prompt string is set to the right characters of the current directory. If not set, then prompt is left unchanged. Note that this is the number of characters that the directory is shortened to, not the total characters in the prompt. CDL_PROMPT_PRE - Set to the string to prefix the prompt. Default is: non-root: "\\[\\e[01;34m\\]" (sets colour to blue). root: "\\[\\e[01;31m\\]" (sets colour to red). CDL_PROMPT_POST - Set to the string to suffix the prompt. Default is: non-root: "\\[\\e[00m\\]$" (resets colour and displays $). root: "\\[\\e[00m\\]#" (resets colour and displays #). Note: CDL_PROMPT_PRE & _POST only t CDPath - Set the default path for the -f & -u options. Default is home directory CDFile - Set the default filename for the -f & -u options. Default is cdfile There are three variables defined in the file cdll which control the number of entries stored or displayed. They are in the section labeled 'Initialisation here' towards the end of the file. cd_maxhistory - The number of history entries stored. Default is 50. cd_maxspecial - The number of special entries allowed. Default is 9. cd_histcount - The number of history and special entries displayed. Default is 9. Note that cd_maxspecial should be >= cd_histcount to avoid displaying special entries that can't be set. Version: 1.2.1 Date: 24-MAY-2003 DOCUMENTATION |
Added col-totaler.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 | #!/bin/bash # Adds up a specified column (of numbers) in the target file. # Floating-point (decimal) numbers okay, because awk can handle them. ARGS=2 E_WRONGARGS=85 if [ $# -ne "$ARGS" ] # Check for proper number of command-line args. then echo "Usage: `basename $0` filename column-number" exit $E_WRONGARGS fi filename=$1 column_number=$2 # Passing shell variables to the awk part of the script is a bit tricky. # One method is to strong-quote the Bash-script variable #+ within the awk script. # $'$BASH_SCRIPT_VAR' # ^ ^ # This is done in the embedded awk script below. # See the awk documentation for more details. # A multi-line awk script is here invoked by # awk ' # ... # ... # ... # ' # Begin awk script. # ----------------------------- awk ' { total += $'"${column_number}"' } END { print total } ' "$filename" # ----------------------------- # End awk script. # It may not be safe to pass shell variables to an embedded awk script, #+ so Stephane Chazelas proposes the following alternative: # --------------------------------------- # awk -v column_number="$column_number" ' # { total += $column_number # } # END { # print total # }' "$filename" # --------------------------------------- exit 0 |
Added col-totaler2.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 | #!/bin/bash # Another version of the "column totaler" script #+ that adds up a specified column (of numbers) in the target file. # This one uses indirect references. ARGS=2 E_WRONGARGS=85 if [ $# -ne "$ARGS" ] # Check for proper number of command-line args. then echo "Usage: `basename $0` filename column-number" exit $E_WRONGARGS fi filename=$1 # Name of file to operate on. column_number=$2 # Which column to total up. #===== Same as original script, up to this point =====# # A multi-line awk script is invoked by # awk " # ... # ... # ... # " # Begin awk script. # ------------------------------------------------- awk " { total += \$${column_number} # Indirect reference } END { print total } " "$filename" # Note that awk doesn't need an eval preceding \$$. # ------------------------------------------------- # End awk script. # Indirect variable reference avoids the hassles #+ of referencing a shell variable within the embedded awk script. # Thanks, Stephane Chazelas. exit $? |
Added col-totaler3.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 | #!/bin/bash # Yet another version of the "column totaler" script (col-totaler.sh) #+ that adds up a specified column (of numbers) in the target file. # This uses the environment to pass a script variable to 'awk' . . . #+ and places the awk script in a variable. ARGS=2 E_WRONGARGS=85 if [ $# -ne "$ARGS" ] # Check for proper number of command-line args. then echo "Usage: `basename $0` filename column-number" exit $E_WRONGARGS fi filename=$1 column_number=$2 #===== Same as original script, up to this point =====# export column_number # Export column number to environment, so it's available for retrieval. # ----------------------------------------------- awkscript='{ total += $ENVIRON["column_number"] } END { print total }' # Yes, a variable can hold an awk script. # ----------------------------------------------- # Now, run the awk script. awk "$awkscript" "$filename" # Thanks, Stephane Chazelas. exit 0 |
Added collatz.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 | #!/bin/bash # collatz.sh # The notorious "hailstone" or Collatz series. # ------------------------------------------- # 1) Get the integer "seed" from the command-line. # 2) NUMBER <-- seed # 3) Print NUMBER. # 4) If NUMBER is even, divide by 2, or # 5)+ if odd, multiply by 3 and add 1. # 6) NUMBER <-- result # 7) Loop back to step 3 (for specified number of iterations). # # The theory is that every such sequence, #+ no matter how large the initial value, #+ eventually settles down to repeating "4,2,1..." cycles, #+ even after fluctuating through a wide range of values. # # This is an instance of an "iterate," #+ an operation that feeds its output back into its input. # Sometimes the result is a "chaotic" series. MAX_ITERATIONS=200 # For large seed numbers (>32000), try increasing MAX_ITERATIONS. h=${1:-$$} # Seed. # Use $PID as seed, #+ if not specified as command-line arg. echo echo "C($h) -*- $MAX_ITERATIONS Iterations" echo for ((i=1; i<=MAX_ITERATIONS; i++)) do # echo -n "$h " # ^^^ # tab # printf does it better ... COLWIDTH=%7d printf $COLWIDTH $h let "remainder = h % 2" if [ "$remainder" -eq 0 ] # Even? then let "h /= 2" # Divide by 2. else let "h = h*3 + 1" # Multiply by 3 and add 1. fi COLUMNS=10 # Output 10 values per line. let "line_break = i % $COLUMNS" if [ "$line_break" -eq 0 ] then echo fi done echo # For more information on this strange mathematical function, #+ see _Computers, Pattern, Chaos, and Beauty_, by Pickover, p. 185 ff., #+ as listed in the bibliography. exit 0 |
Added colm.sh.
> > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/bash # colms.sh # A minor modification of the example file in the "column" man page. (printf "PERMISSIONS LINKS OWNER GROUP SIZE MONTH DAY HH:MM PROG-NAME\n" \ ; ls -l | sed 1d) | column -t # ^^^^^^ ^^ # The "sed 1d" in the pipe deletes the first line of output, #+ which would be "total N", #+ where "N" is the total number of files found by "ls -l". # The -t option to "column" pretty-prints a table. exit 0 |
Added color-echo.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 | #!/bin/bash # color-echo.sh: Echoing text messages in color. # Modify this script for your own purposes. # It's easier than hand-coding color. black='\E[30;47m' red='\E[31;47m' green='\E[32;47m' yellow='\E[33;47m' blue='\E[34;47m' magenta='\E[35;47m' cyan='\E[36;47m' white='\E[37;47m' alias Reset="tput sgr0" # Reset text attributes to normal #+ without clearing screen. cecho () # Color-echo. # Argument $1 = message # Argument $2 = color { local default_msg="No message passed." # Doesn't really need to be a local variable. message=${1:-$default_msg} # Defaults to default message. color=${2:-$black} # Defaults to black, if not specified. echo -e "$color" echo "$message" Reset # Reset to normal. return } # Now, let's try it out. # ---------------------------------------------------- cecho "Feeling blue..." $blue cecho "Magenta looks more like purple." $magenta cecho "Green with envy." $green cecho "Seeing red?" $red cecho "Cyan, more familiarly known as aqua." $cyan cecho "No color passed (defaults to black)." # Missing $color argument. cecho "\"Empty\" color passed (defaults to black)." "" # Empty $color argument. cecho # Missing $message and $color arguments. cecho "" "" # Empty $message and $color arguments. # ---------------------------------------------------- echo exit 0 # Exercises: # --------- # 1) Add the "bold" attribute to the 'cecho ()' function. # 2) Add options for colored backgrounds. |
Added commentblock.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 | #!/bin/bash # commentblock.sh : <<COMMENTBLOCK echo "This line will not echo." This is a comment line missing the "#" prefix. This is another comment line missing the "#" prefix. &*@!!++= The above line will cause no error message, because the Bash interpreter will ignore it. COMMENTBLOCK echo "Exit value of above \"COMMENTBLOCK\" is $?." # 0 # No error shown. echo # The above technique also comes in useful for commenting out #+ a block of working code for debugging purposes. # This saves having to put a "#" at the beginning of each line, #+ then having to go back and delete each "#" later. # Note that the use of of colon, above, is optional. echo "Just before commented-out code block." # The lines of code between the double-dashed lines will not execute. # =================================================================== : <<DEBUGXXX for file in * do cat "$file" done DEBUGXXX # =================================================================== echo "Just after commented-out code block." exit 0 ###################################################################### # Note, however, that if a bracketed variable is contained within #+ the commented-out code block, #+ then this could cause problems. # for example: #/!/bin/bash : <<COMMENTBLOCK echo "This line will not echo." &*@!!++= ${foo_bar_bazz?} $(rm -rf /tmp/foobar/) $(touch my_build_directory/cups/Makefile) COMMENTBLOCK $ sh commented-bad.sh commented-bad.sh: line 3: foo_bar_bazz: parameter null or not set # The remedy for this is to strong-quote the 'COMMENTBLOCK' in line 49, above. : <<'COMMENTBLOCK' # Thank you, Kurt Pfeifle, for pointing this out. |
Added connect-stat.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 | #!/bin/bash # connect-stat.sh # Note that this script may need modification #+ to work with a wireless connection. PROCNAME=pppd # ppp daemon PROCFILENAME=status # Where to look. NOTCONNECTED=85 INTERVAL=2 # Update every 2 seconds. pidno=$( ps ax | grep -v "ps ax" | grep -v grep | grep $PROCNAME | awk '{ print $1 }' ) # Finding the process number of 'pppd', the 'ppp daemon'. # Have to filter out the process lines generated by the search itself. # # However, as Oleg Philon points out, #+ this could have been considerably simplified by using "pidof". # pidno=$( pidof $PROCNAME ) # # Moral of the story: #+ When a command sequence gets too complex, look for a shortcut. if [ -z "$pidno" ] # If no pid, then process is not running. then echo "Not connected." # exit $NOTCONNECTED else echo "Connected."; echo fi while [ true ] # Endless loop, script can be improved here. do if [ ! -e "/proc/$pidno/$PROCFILENAME" ] # While process running, then "status" file exists. then echo "Disconnected." # exit $NOTCONNECTED fi netstat -s | grep "packets received" # Get some connect statistics. netstat -s | grep "packets delivered" sleep $INTERVAL echo; echo done exit 0 # As it stands, this script must be terminated with a Control-C. # Exercises: # --------- # Improve the script so it exits on a "q" keystroke. # Make the script more user-friendly in other ways. # Fix the script to work with wireless/DSL connections. |
Added continue-n.example.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | # Albert Reiner gives an example of how to use "continue N": # --------------------------------------------------------- # Suppose I have a large number of jobs that need to be run, with #+ any data that is to be treated in files of a given name pattern #+ in a directory. There are several machines that access #+ this directory, and I want to distribute the work over these #+ different boxen. # Then I usually nohup something like the following on every box: while true do for n in .iso.* do [ "$n" = ".iso.opts" ] && continue beta=${n#.iso.} [ -r .Iso.$beta ] && continue [ -r .lock.$beta ] && sleep 10 && continue lockfile -r0 .lock.$beta || continue echo -n "$beta: " `date` run-isotherm $beta date ls -alF .Iso.$beta [ -r .Iso.$beta ] && rm -f .lock.$beta continue 2 done break done exit 0 # The details, in particular the sleep N, are particular to my #+ application, but the general pattern is: while true do for job in {pattern} do {job already done or running} && continue {mark job as running, do job, mark job as done} continue 2 done break # Or something like `sleep 600' to avoid termination. done # This way the script will stop only when there are no more jobs to do #+ (including jobs that were added during runtime). Through the use #+ of appropriate lockfiles it can be run on several machines #+ concurrently without duplication of calculations [which run a couple #+ of hours in my case, so I really want to avoid this]. Also, as search #+ always starts again from the beginning, one can encode priorities in #+ the file names. Of course, one could also do this without `continue 2', #+ but then one would have to actually check whether or not some job #+ was done (so that we should immediately look for the next job) or not #+ (in which case we terminate or sleep for a long time before checking #+ for a new job). |
Added continue-nlevel.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 | #!/bin/bash # The "continue N" command, continuing at the Nth level loop. for outer in I II III IV V # outer loop do echo; echo -n "Group $outer: " # -------------------------------------------------------------------- for inner in 1 2 3 4 5 6 7 8 9 10 # inner loop do if [[ "$inner" -eq 7 && "$outer" = "III" ]] then continue 2 # Continue at loop on 2nd level, that is "outer loop". # Replace above line with a simple "continue" # to see normal loop behavior. fi echo -n "$inner " # 7 8 9 10 will not echo on "Group III." done # -------------------------------------------------------------------- done echo; echo # Exercise: # Come up with a meaningful use for "continue N" in a script. exit 0 |
Added copy-cd.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 | #!/bin/bash # copy-cd.sh: copying a data CD CDROM=/dev/cdrom # CD ROM device OF=/home/bozo/projects/cdimage.iso # output file # /xxxx/xxxxxxxx/ Change to suit your system. BLOCKSIZE=2048 # SPEED=10 # If unspecified, uses max spd. # DEVICE=/dev/cdrom older version. DEVICE="1,0,0" echo; echo "Insert source CD, but do *not* mount it." echo "Press ENTER when ready. " read ready # Wait for input, $ready not used. echo; echo "Copying the source CD to $OF." echo "This may take a while. Please be patient." dd if=$CDROM of=$OF bs=$BLOCKSIZE # Raw device copy. echo; echo "Remove data CD." echo "Insert blank CDR." echo "Press ENTER when ready. " read ready # Wait for input, $ready not used. echo "Copying $OF to CDR." # cdrecord -v -isosize speed=$SPEED dev=$DEVICE $OF # Old version. wodim -v -isosize dev=$DEVICE $OF # Uses Joerg Schilling's "cdrecord" package (see its docs). # http://www.fokus.gmd.de/nthp/employees/schilling/cdrecord.html # Newer Linux distros may use "wodim" rather than "cdrecord" ... echo; echo "Done copying $OF to CDR on device $CDROM." echo "Do you want to erase the image file (y/n)? " # Probably a huge file. read answer case "$answer" in [yY]) rm -f $OF echo "$OF erased." ;; *) echo "$OF not erased.";; esac echo # Exercise: # Change the above "case" statement to also accept "yes" and "Yes" as input. exit 0 |
Added crypto-quote.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 | #!/bin/bash # crypto-quote.sh: Encrypt quotes # Will encrypt famous quotes in a simple monoalphabetic substitution. # The result is similar to the "Crypto Quote" puzzles #+ seen in the Op Ed pages of the Sunday paper. key=ETAOINSHRDLUBCFGJMQPVWZYXK # The "key" is nothing more than a scrambled alphabet. # Changing the "key" changes the encryption. # The 'cat "$@"' construction gets input either from stdin or from files. # If using stdin, terminate input with a Control-D. # Otherwise, specify filename as command-line parameter. cat "$@" | tr "a-z" "A-Z" | tr "A-Z" "$key" # | to uppercase | encrypt # Will work on lowercase, uppercase, or mixed-case quotes. # Passes non-alphabetic characters through unchanged. # Try this script with something like: # "Nothing so needs reforming as other people's habits." # --Mark Twain # # Output is: # "CFPHRCS QF CIIOQ MINFMBRCS EQ FPHIM GIFGUI'Q HETRPQ." # --BEML PZERC # To reverse the encryption: # cat "$@" | tr "$key" "A-Z" # This simple-minded cipher can be broken by an average 12-year old #+ using only pencil and paper. exit 0 # Exercise: # -------- # Modify the script so that it will either encrypt or decrypt, #+ depending on command-line argument(s). |
Added csubloop.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 | #!/bin/bash # csubloop.sh: Setting a variable to the output of a loop. variable1=`for i in 1 2 3 4 5 do echo -n "$i" # The 'echo' command is critical done` #+ to command substitution here. echo "variable1 = $variable1" # variable1 = 12345 i=0 variable2=`while [ "$i" -lt 10 ] do echo -n "$i" # Again, the necessary 'echo'. let "i += 1" # Increment. done` echo "variable2 = $variable2" # variable2 = 0123456789 # Demonstrates that it's possible to embed a loop #+ inside a variable declaration. exit 0 |
Added cvt.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 | #!/bin/bash # cvt.sh: # Converts all the MacPaint image files in a directory to "pbm" format. # Uses the "macptopbm" binary from the "netpbm" package, #+ which is maintained by Brian Henderson (bryanh@giraffe-data.com). # Netpbm is a standard part of most Linux distros. OPERATION=macptopbm SUFFIX=pbm # New filename suffix. if [ -n "$1" ] then directory=$1 # If directory name given as a script argument... else directory=$PWD # Otherwise use current working directory. fi # Assumes all files in the target directory are MacPaint image files, #+ with a ".mac" filename suffix. for file in $directory/* # Filename globbing. do filename=${file%.*c} # Strip ".mac" suffix off filename #+ ('.*c' matches everything #+ between '.' and 'c', inclusive). $OPERATION $file > "$filename.$SUFFIX" # Redirect conversion to new filename. rm -f $file # Delete original files after converting. echo "$filename.$SUFFIX" # Log what is happening to stdout. done exit 0 # Exercise: # -------- # As it stands, this script converts *all* the files in the current #+ working directory. # Modify it to work *only* on files with a ".mac" suffix. # *** And here's another way to do it. *** # #!/bin/bash # Batch convert into different graphic formats. # Assumes imagemagick installed (standard in most Linux distros). INFMT=png # Can be tif, jpg, gif, etc. OUTFMT=pdf # Can be tif, jpg, gif, pdf, etc. for pic in *"$INFMT" do p2=$(ls "$pic" | sed -e s/\.$INFMT//) # echo $p2 convert "$pic" $p2.$OUTFMT done exit $? |
Added cw-solver.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 | #!/bin/bash # cw-solver.sh # This is actually a wrapper around a one-liner (line 46). # Crossword puzzle and anagramming word game solver. # You know *some* of the letters in the word you're looking for, #+ so you need a list of all valid words #+ with the known letters in given positions. # For example: w...i....n # 1???5????10 # w in position 1, 3 unknowns, i in the 5th, 4 unknowns, n at the end. # (See comments at end of script.) E_NOPATT=71 DICT=/usr/share/dict/word.lst # ^^^^^^^^ Looks for word list here. # ASCII word list, one word per line. # If you happen to need an appropriate list, #+ download the author's "yawl" word list package. # http://ibiblio.org/pub/Linux/libs/yawl-0.3.2.tar.gz # or # http://bash.deta.in/yawl-0.3.2.tar.gz if [ -z "$1" ] # If no word pattern specified then #+ as a command-line argument . . . echo #+ . . . then . . . echo "Usage:" #+ Usage message. echo echo ""$0" \"pattern,\"" echo "where \"pattern\" is in the form" echo "xxx..x.x..." echo echo "The x's represent known letters," echo "and the periods are unknown letters (blanks)." echo "Letters and periods can be in any position." echo "For example, try: sh cw-solver.sh w...i....n" echo exit $E_NOPATT fi echo # =============================================== # This is where all the work gets done. grep ^"$1"$ "$DICT" # Yes, only one line! # | | # ^ is start-of-word regex anchor. # $ is end-of-word regex anchor. # From _Stupid Grep Tricks_, vol. 1, #+ a book the ABS Guide author may yet get around #+ to writing . . . one of these days . . . # =============================================== echo exit $? # Script terminates here. # If there are too many words generated, #+ redirect the output to a file. $ sh cw-solver.sh w...i....n wellington workingman workingmen |
Added data-file.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | # This is a data file loaded by a script. # Files of this type may contain variables, functions, etc. # It loads with a 'source' or '.' command from a shell script. # Let's initialize some variables. variable1=23 variable2=474 variable3=5 variable4=97 message1="Greetings from *** line $LINENO *** of the data file!" message2="Enough for now. Goodbye." print_message () { # Echoes any message passed to it. if [ -z "$1" ] then return 1 # Error, if argument missing. fi echo until [ -z "$1" ] do # Step through arguments passed to function. echo -n "$1" # Echo args one at a time, suppressing line feeds. echo -n " " # Insert spaces between words. shift # Next one. done echo return 0 } |
Added date-calc.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 | #!/bin/bash # date-calc.sh # Author: Nathan Coulter # Used in ABS Guide with permission (thanks!). MPHR=60 # Minutes per hour. HPD=24 # Hours per day. diff () { printf '%s' $(( $(date -u -d"$TARGET" +%s) - $(date -u -d"$CURRENT" +%s))) # %d = day of month. } CURRENT=$(date -u -d '2007-09-01 17:30:24' '+%F %T.%N %Z') TARGET=$(date -u -d'2007-12-25 12:30:00' '+%F %T.%N %Z') # %F = full date, %T = %H:%M:%S, %N = nanoseconds, %Z = time zone. printf '\nIn 2007, %s ' \ "$(date -d"$CURRENT + $(( $(diff) /$MPHR /$MPHR /$HPD / 2 )) days" '+%d %B')" # %B = name of month ^ halfway printf 'was halfway between %s ' "$(date -d"$CURRENT" '+%d %B')" printf 'and %s\n' "$(date -d"$TARGET" '+%d %B')" printf '\nOn %s at %s, there were\n' \ $(date -u -d"$CURRENT" +%F) $(date -u -d"$CURRENT" +%T) DAYS=$(( $(diff) / $MPHR / $MPHR / $HPD )) CURRENT=$(date -d"$CURRENT +$DAYS days" '+%F %T.%N %Z') HOURS=$(( $(diff) / $MPHR / $MPHR )) CURRENT=$(date -d"$CURRENT +$HOURS hours" '+%F %T.%N %Z') MINUTES=$(( $(diff) / $MPHR )) CURRENT=$(date -d"$CURRENT +$MINUTES minutes" '+%F %T.%N %Z') printf '%s days, %s hours, ' "$DAYS" "$HOURS" printf '%s minutes, and %s seconds ' "$MINUTES" "$(diff)" printf 'until Christmas Dinner!\n\n' # Exercise: # -------- # Rewrite the diff () function to accept passed parameters, #+ rather than using global variables. |
Added days-between.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 | #!/bin/bash # days-between.sh: Number of days between two dates. # Usage: ./days-between.sh [M]M/[D]D/YYYY [M]M/[D]D/YYYY # # Note: Script modified to account for changes in Bash, v. 2.05b +, #+ that closed the loophole permitting large negative #+ integer return values. ARGS=2 # Two command-line parameters expected. E_PARAM_ERR=85 # Param error. REFYR=1600 # Reference year. CENTURY=100 DIY=365 ADJ_DIY=367 # Adjusted for leap year + fraction. MIY=12 DIM=31 LEAPCYCLE=4 MAXRETVAL=255 # Largest permissible #+ positive return value from a function. diff= # Declare global variable for date difference. value= # Declare global variable for absolute value. day= # Declare globals for day, month, year. month= year= Param_Error () # Command-line parameters wrong. { echo "Usage: `basename $0` [M]M/[D]D/YYYY [M]M/[D]D/YYYY" echo " (date must be after 1/3/1600)" exit $E_PARAM_ERR } Parse_Date () # Parse date from command-line params. { month=${1%%/**} dm=${1%/**} # Day and month. day=${dm#*/} let "year = `basename $1`" # Not a filename, but works just the same. } check_date () # Checks for invalid date(s) passed. { [ "$day" -gt "$DIM" ] || [ "$month" -gt "$MIY" ] || [ "$year" -lt "$REFYR" ] && Param_Error # Exit script on bad value(s). # Uses or-list / and-list. # # Exercise: Implement more rigorous date checking. } strip_leading_zero () # Better to strip possible leading zero(s) { #+ from day and/or month return ${1#0} #+ since otherwise Bash will interpret them } #+ as octal values (POSIX.2, sect 2.9.2.1). day_index () # Gauss' Formula: { # Days from March 1, 1600 to date passed as param. # ^^^^^^^^^^^^^ day=$1 month=$2 year=$3 let "month = $month - 2" if [ "$month" -le 0 ] then let "month += 12" let "year -= 1" fi let "year -= $REFYR" let "indexyr = $year / $CENTURY" let "Days = $DIY*$year + $year/$LEAPCYCLE - $indexyr \ + $indexyr/$LEAPCYCLE + $ADJ_DIY*$month/$MIY + $day - $DIM" # For an in-depth explanation of this algorithm, see #+ http://weblogs.asp.net/pgreborio/archive/2005/01/06/347968.aspx echo $Days } calculate_difference () # Difference between two day indices. { let "diff = $1 - $2" # Global variable. } abs () # Absolute value { # Uses global "value" variable. if [ "$1" -lt 0 ] # If negative then #+ then let "value = 0 - $1" #+ change sign, else #+ else let "value = $1" #+ leave it alone. fi } if [ $# -ne "$ARGS" ] # Require two command-line params. then Param_Error fi Parse_Date $1 check_date $day $month $year # See if valid date. strip_leading_zero $day # Remove any leading zeroes day=$? #+ on day and/or month. strip_leading_zero $month month=$? let "date1 = `day_index $day $month $year`" Parse_Date $2 check_date $day $month $year strip_leading_zero $day day=$? strip_leading_zero $month month=$? date2=$(day_index $day $month $year) # Command substitution. calculate_difference $date1 $date2 abs $diff # Make sure it's positive. diff=$value echo $diff exit 0 # Exercise: # -------- # If given only one command-line parameter, have the script #+ use today's date as the second. # Compare this script with #+ the implementation of Gauss' Formula in a C program at #+ http://buschencrew.hypermart.net/software/datedif |
Added dd-keypress.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash # dd-keypress.sh: Capture keystrokes without needing to press ENTER. keypresses=4 # Number of keypresses to capture. old_tty_setting=$(stty -g) # Save old terminal settings. echo "Press $keypresses keys." stty -icanon -echo # Disable canonical mode. # Disable local echo. keys=$(dd bs=1 count=$keypresses 2> /dev/null) # 'dd' uses stdin, if "if" (input file) not specified. stty "$old_tty_setting" # Restore old terminal settings. echo "You pressed the \"$keys\" keys." # Thanks, Stephane Chazelas, for showing the way. exit 0 |
Added de-rpm.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash # de-rpm.sh: Unpack an 'rpm' archive : ${1?"Usage: `basename $0` target-file"} # Must specify 'rpm' archive name as an argument. TEMPFILE=$$.cpio # Tempfile with "unique" name. # $$ is process ID of script. rpm2cpio < $1 > $TEMPFILE # Converts rpm archive into #+ cpio archive. cpio --make-directories -F $TEMPFILE -i # Unpacks cpio archive. rm -f $TEMPFILE # Deletes cpio archive. exit 0 # Exercise: # Add check for whether 1) "target-file" exists and #+ 2) it is an rpm archive. # Hint: Parse output of 'file' command. |
Added dereference.sh.
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/bash # dereference.sh # Dereferencing parameter passed to a function. # Script by Bruce W. Clare. dereference () { y=\$"$1" # Name of variable (not value!). echo $y # $Junk x=`eval "expr \"$y\" "` echo $1=$x eval "$1=\"Some Different Text \"" # Assign new value. } Junk="Some Text" echo $Junk "before" # Some Text before dereference Junk echo $Junk "after" # Some Different Text after exit 0 |
Added dev-tcp.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 | #!/bin/bash # dev-tcp.sh: /dev/tcp redirection to check Internet connection. # Script by Troy Engel. # Used with permission. TCP_HOST=news-15.net # A known spam-friendly ISP. TCP_PORT=80 # Port 80 is http. # Try to connect. (Somewhat similar to a 'ping' . . .) echo "HEAD / HTTP/1.0" >/dev/tcp/${TCP_HOST}/${TCP_PORT} MYEXIT=$? : <<EXPLANATION If bash was compiled with --enable-net-redirections, it has the capability of using a special character device for both TCP and UDP redirections. These redirections are used identically as STDIN/STDOUT/STDERR. The device entries are 30,36 for /dev/tcp: mknod /dev/tcp c 30 36 >From the bash reference: /dev/tcp/host/port If host is a valid hostname or Internet address, and port is an integer port number or service name, Bash attempts to open a TCP connection to the corresponding socket. EXPLANATION if [ "X$MYEXIT" = "X0" ]; then echo "Connection successful. Exit code: $MYEXIT" else echo "Connection unsuccessful. Exit code: $MYEXIT" fi exit $MYEXIT |
Added dialog.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 | #!/bin/bash # dialog.sh: Using 'gdialog' widgets. # Must have 'gdialog' installed on your system to run this script. # Or, you can replace all instance of 'gdialog' below with 'kdialog' ... # Version 1.1 (corrected 04/05/05) # This script was inspired by the following article. # "Scripting for X Productivity," by Marco Fioretti, # LINUX JOURNAL, Issue 113, September 2003, pp. 86-9. # Thank you, all you good people at LJ. # Input error in dialog box. E_INPUT=85 # Dimensions of display, input widgets. HEIGHT=50 WIDTH=60 # Output file name (constructed out of script name). OUTFILE=$0.output # Display this script in a text widget. gdialog --title "Displaying: $0" --textbox $0 $HEIGHT $WIDTH # Now, we'll try saving input in a file. echo -n "VARIABLE=" > $OUTFILE gdialog --title "User Input" --inputbox "Enter variable, please:" \ $HEIGHT $WIDTH 2>> $OUTFILE if [ "$?" -eq 0 ] # It's good practice to check exit status. then echo "Executed \"dialog box\" without errors." else echo "Error(s) in \"dialog box\" execution." # Or, clicked on "Cancel", instead of "OK" button. rm $OUTFILE exit $E_INPUT fi # Now, we'll retrieve and display the saved variable. . $OUTFILE # 'Source' the saved file. echo "The variable input in the \"input box\" was: "$VARIABLE"" rm $OUTFILE # Clean up by removing the temp file. # Some applications may need to retain this file. exit $? # Exercise: Rewrite this script using the 'zenity' widget set. |
Added dict-lookup.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 | #!/bin/bash # dict-lookup.sh # This script looks up definitions in the 1913 Webster's Dictionary. # This Public Domain dictionary is available for download #+ from various sites, including #+ Project Gutenberg (http://www.gutenberg.org/etext/247). # # Convert it from DOS to UNIX format (with only LF at end of line) #+ before using it with this script. # Store the file in plain, uncompressed ASCII text. # Set DEFAULT_DICTFILE variable below to path/filename. E_BADARGS=85 MAXCONTEXTLINES=50 # Maximum number of lines to show. DEFAULT_DICTFILE="/usr/share/dict/webster1913-dict.txt" # Default dictionary file pathname. # Change this as necessary. # Note: # ---- # This particular edition of the 1913 Webster's #+ begins each entry with an uppercase letter #+ (lowercase for the remaining characters). # Only the *very first line* of an entry begins this way, #+ and that's why the search algorithm below works. if [[ -z $(echo "$1" | sed -n '/^[A-Z]/p') ]] # Must at least specify word to look up, and #+ it must start with an uppercase letter. then echo "Usage: `basename $0` Word-to-define [dictionary-file]" echo echo "Note: Word to look up must start with capital letter," echo "with the rest of the word in lowercase." echo "--------------------------------------------" echo "Examples: Abandon, Dictionary, Marking, etc." exit $E_BADARGS fi if [ -z "$2" ] # May specify different dictionary #+ as an argument to this script. then dictfile=$DEFAULT_DICTFILE else dictfile="$2" fi # --------------------------------------------------------- Definition=$(fgrep -A $MAXCONTEXTLINES "$1 \\" "$dictfile") # Definitions in form "Word \..." # # And, yes, "fgrep" is fast enough #+ to search even a very large text file. # Now, snip out just the definition block. echo "$Definition" | sed -n '1,/^[A-Z]/p' | # Print from first line of output #+ to the first line of the next entry. sed '$d' | sed '$d' # Delete last two lines of output #+ (blank line and first line of next entry). # --------------------------------------------------------- exit $? # Exercises: # --------- # 1) Modify the script to accept any type of alphabetic input # + (uppercase, lowercase, mixed case), and convert it # + to an acceptable format for processing. # # 2) Convert the script to a GUI application, # + using something like 'gdialog' or 'zenity' . . . # The script will then no longer take its argument(s) # + from the command-line. # # 3) Modify the script to parse one of the other available # + Public Domain Dictionaries, such as the U.S. Census Bureau Gazetteer. |
Added directory-info.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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 | #! /bin/bash # directory-info.sh # Parses and lists directory information. # NOTE: Change lines 273 and 353 per "README" file. # Michael Zick is the author of this script. # Used here with his permission. # Controls # If overridden by command arguments, they must be in the order: # Arg1: "Descriptor Directory" # Arg2: "Exclude Paths" # Arg3: "Exclude Directories" # # Environment Settings override Defaults. # Command arguments override Environment Settings. # Default location for content addressed file descriptors. MD5UCFS=${1:-${MD5UCFS:-'/tmpfs/ucfs'}} # Directory paths never to list or enter declare -a \ EXCLUDE_PATHS=${2:-${EXCLUDE_PATHS:-'(/proc /dev /devfs /tmpfs)'}} # Directories never to list or enter declare -a \ EXCLUDE_DIRS=${3:-${EXCLUDE_DIRS:-'(ucfs lost+found tmp wtmp)'}} # Files never to list or enter declare -a \ EXCLUDE_FILES=${3:-${EXCLUDE_FILES:-'(core "Name with Spaces")'}} # Here document used as a comment block. : <<LSfieldsDoc # # # # # List Filesystem Directory Information # # # # # # # ListDirectory "FileGlob" "Field-Array-Name" # or # ListDirectory -of "FileGlob" "Field-Array-Filename" # '-of' meaning 'output to filename' # # # # # String format description based on: ls (GNU fileutils) version 4.0.36 Produces a line (or more) formatted: inode permissions hard-links owner group ... 32736 -rw------- 1 mszick mszick size day month date hh:mm:ss year path 2756608 Sun Apr 20 08:53:06 2003 /home/mszick/core Unless it is formatted: inode permissions hard-links owner group ... 266705 crw-rw---- 1 root uucp major minor day month date hh:mm:ss year path 4, 68 Sun Apr 20 09:27:33 2003 /dev/ttyS4 NOTE: that pesky comma after the major number NOTE: the 'path' may be multiple fields: /home/mszick/core /proc/982/fd/0 -> /dev/null /proc/982/fd/1 -> /home/mszick/.xsession-errors /proc/982/fd/13 -> /tmp/tmpfZVVOCs (deleted) /proc/982/fd/7 -> /tmp/kde-mszick/ksycoca /proc/982/fd/8 -> socket:[11586] /proc/982/fd/9 -> pipe:[11588] If that isn't enough to keep your parser guessing, either or both of the path components may be relative: ../Built-Shared -> Built-Static ../linux-2.4.20.tar.bz2 -> ../../../SRCS/linux-2.4.20.tar.bz2 The first character of the 11 (10?) character permissions field: 's' Socket 'd' Directory 'b' Block device 'c' Character device 'l' Symbolic link NOTE: Hard links not marked - test for identical inode numbers on identical filesystems. All information about hard linked files are shared, except for the names and the name's location in the directory system. NOTE: A "Hard link" is known as a "File Alias" on some systems. '-' An undistingushed file Followed by three groups of letters for: User, Group, Others Character 1: '-' Not readable; 'r' Readable Character 2: '-' Not writable; 'w' Writable Character 3, User and Group: Combined execute and special '-' Not Executable, Not Special 'x' Executable, Not Special 's' Executable, Special 'S' Not Executable, Special Character 3, Others: Combined execute and sticky (tacky?) '-' Not Executable, Not Tacky 'x' Executable, Not Tacky 't' Executable, Tacky 'T' Not Executable, Tacky Followed by an access indicator Haven't tested this one, it may be the eleventh character or it may generate another field ' ' No alternate access '+' Alternate access LSfieldsDoc ListDirectory() { local -a T local -i of=0 # Default return in variable # OLD_IFS=$IFS # Using BASH default ' \t\n' case "$#" in 3) case "$1" in -of) of=1 ; shift ;; * ) return 1 ;; esac ;; 2) : ;; # Poor man's "continue" *) return 1 ;; esac # NOTE: the (ls) command is NOT quoted (") T=( $(ls --inode --ignore-backups --almost-all --directory \ --full-time --color=none --time=status --sort=none \ --format=long $1) ) case $of in # Assign T back to the array whose name was passed as $2 0) eval $2=\( \"\$\{T\[@\]\}\" \) ;; # Write T into filename passed as $2 1) echo "${T[@]}" > "$2" ;; esac return 0 } # # # # # Is that string a legal number? # # # # # # # IsNumber "Var" # # # # # There has to be a better way, sigh... IsNumber() { local -i int if [ $# -eq 0 ] then return 1 else (let int=$1) 2>/dev/null return $? # Exit status of the let thread fi } # # # # # Index Filesystem Directory Information # # # # # # # IndexList "Field-Array-Name" "Index-Array-Name" # or # IndexList -if Field-Array-Filename Index-Array-Name # IndexList -of Field-Array-Name Index-Array-Filename # IndexList -if -of Field-Array-Filename Index-Array-Filename # # # # # : <<IndexListDoc Walk an array of directory fields produced by ListDirectory Having suppressed the line breaks in an otherwise line oriented report, build an index to the array element which starts each line. Each line gets two index entries, the first element of each line (inode) and the element that holds the pathname of the file. The first index entry pair (Line-Number==0) are informational: Index-Array-Name[0] : Number of "Lines" indexed Index-Array-Name[1] : "Current Line" pointer into Index-Array-Name The following index pairs (if any) hold element indexes into the Field-Array-Name per: Index-Array-Name[Line-Number * 2] : The "inode" field element. NOTE: This distance may be either +11 or +12 elements. Index-Array-Name[(Line-Number * 2) + 1] : The "pathname" element. NOTE: This distance may be a variable number of elements. Next line index pair for Line-Number+1. IndexListDoc IndexList() { local -a LIST # Local of listname passed local -a -i INDEX=( 0 0 ) # Local of index to return local -i Lidx Lcnt local -i if=0 of=0 # Default to variable names case "$#" in # Simplistic option testing 0) return 1 ;; 1) return 1 ;; 2) : ;; # Poor man's continue 3) case "$1" in -if) if=1 ;; -of) of=1 ;; * ) return 1 ;; esac ; shift ;; 4) if=1 ; of=1 ; shift ; shift ;; *) return 1 esac # Make local copy of list case "$if" in 0) eval LIST=\( \"\$\{$1\[@\]\}\" \) ;; 1) LIST=( $(cat $1) ) ;; esac # Grok (grope?) the array Lcnt=${#LIST[@]} Lidx=0 until (( Lidx >= Lcnt )) do if IsNumber ${LIST[$Lidx]} then local -i inode name local ft inode=Lidx local m=${LIST[$Lidx+2]} # Hard Links field ft=${LIST[$Lidx+1]:0:1} # Fast-Stat case $ft in b) ((Lidx+=12)) ;; # Block device c) ((Lidx+=12)) ;; # Character device *) ((Lidx+=11)) ;; # Anything else esac name=Lidx case $ft in -) ((Lidx+=1)) ;; # The easy one b) ((Lidx+=1)) ;; # Block device c) ((Lidx+=1)) ;; # Character device d) ((Lidx+=1)) ;; # The other easy one l) ((Lidx+=3)) ;; # At LEAST two more fields # A little more elegance here would handle pipes, #+ sockets, deleted files - later. *) until IsNumber ${LIST[$Lidx]} || ((Lidx >= Lcnt)) do ((Lidx+=1)) done ;; # Not required esac INDEX[${#INDEX[*]}]=$inode INDEX[${#INDEX[*]}]=$name INDEX[0]=${INDEX[0]}+1 # One more "line" found # echo "Line: ${INDEX[0]} Type: $ft Links: $m Inode: \ # ${LIST[$inode]} Name: ${LIST[$name]}" else ((Lidx+=1)) fi done case "$of" in 0) eval $2=\( \"\$\{INDEX\[@\]\}\" \) ;; 1) echo "${INDEX[@]}" > "$2" ;; esac return 0 # What could go wrong? } # # # # # Content Identify File # # # # # # # DigestFile Input-Array-Name Digest-Array-Name # or # DigestFile -if Input-FileName Digest-Array-Name # # # # # # Here document used as a comment block. : <<DigestFilesDoc The key (no pun intended) to a Unified Content File System (UCFS) is to distinguish the files in the system based on their content. Distinguishing files by their name is just so 20th Century. The content is distinguished by computing a checksum of that content. This version uses the md5sum program to generate a 128 bit checksum representative of the file's contents. There is a chance that two files having different content might generate the same checksum using md5sum (or any checksum). Should that become a problem, then the use of md5sum can be replace by a cyrptographic signature. But until then... The md5sum program is documented as outputting three fields (and it does), but when read it appears as two fields (array elements). This is caused by the lack of whitespace between the second and third field. So this function gropes the md5sum output and returns: [0] 32 character checksum in hexidecimal (UCFS filename) [1] Single character: ' ' text file, '*' binary file [2] Filesystem (20th Century Style) name Note: That name may be the character '-' indicating STDIN read. DigestFilesDoc DigestFile() { local if=0 # Default, variable name local -a T1 T2 case "$#" in 3) case "$1" in -if) if=1 ; shift ;; * ) return 1 ;; esac ;; 2) : ;; # Poor man's "continue" *) return 1 ;; esac case $if in 0) eval T1=\( \"\$\{$1\[@\]\}\" \) T2=( $(echo ${T1[@]} | md5sum -) ) ;; 1) T2=( $(md5sum $1) ) ;; esac case ${#T2[@]} in 0) return 1 ;; 1) return 1 ;; 2) case ${T2[1]:0:1} in # SanScrit-2.0.5 \*) T2[${#T2[@]}]=${T2[1]:1} T2[1]=\* ;; *) T2[${#T2[@]}]=${T2[1]} T2[1]=" " ;; esac ;; 3) : ;; # Assume it worked *) return 1 ;; esac local -i len=${#T2[0]} if [ $len -ne 32 ] ; then return 1 ; fi eval $2=\( \"\$\{T2\[@\]\}\" \) } # # # # # Locate File # # # # # # # LocateFile [-l] FileName Location-Array-Name # or # LocateFile [-l] -of FileName Location-Array-FileName # # # # # # A file location is Filesystem-id and inode-number # Here document used as a comment block. : <<StatFieldsDoc Based on stat, version 2.2 stat -t and stat -lt fields [0] name [1] Total size File - number of bytes Symbolic link - string length of pathname [2] Number of (512 byte) blocks allocated [3] File type and Access rights (hex) [4] User ID of owner [5] Group ID of owner [6] Device number [7] Inode number [8] Number of hard links [9] Device type (if inode device) Major [10] Device type (if inode device) Minor [11] Time of last access May be disabled in 'mount' with noatime atime of files changed by exec, read, pipe, utime, mknod (mmap?) atime of directories changed by addition/deletion of files [12] Time of last modification mtime of files changed by write, truncate, utime, mknod mtime of directories changed by addtition/deletion of files [13] Time of last change ctime reflects time of changed inode information (owner, group permissions, link count -*-*- Per: Return code: 0 Size of array: 14 Contents of array Element 0: /home/mszick Element 1: 4096 Element 2: 8 Element 3: 41e8 Element 4: 500 Element 5: 500 Element 6: 303 Element 7: 32385 Element 8: 22 Element 9: 0 Element 10: 0 Element 11: 1051221030 Element 12: 1051214068 Element 13: 1051214068 For a link in the form of linkname -> realname stat -t linkname returns the linkname (link) information stat -lt linkname returns the realname information stat -tf and stat -ltf fields [0] name [1] ID-0? # Maybe someday, but Linux stat structure [2] ID-0? # does not have either LABEL nor UUID # fields, currently information must come # from file-system specific utilities These will be munged into: [1] UUID if possible [2] Volume Label if possible Note: 'mount -l' does return the label and could return the UUID [3] Maximum length of filenames [4] Filesystem type [5] Total blocks in the filesystem [6] Free blocks [7] Free blocks for non-root user(s) [8] Block size of the filesystem [9] Total inodes [10] Free inodes -*-*- Per: Return code: 0 Size of array: 11 Contents of array Element 0: /home/mszick Element 1: 0 Element 2: 0 Element 3: 255 Element 4: ef53 Element 5: 2581445 Element 6: 2277180 Element 7: 2146050 Element 8: 4096 Element 9: 1311552 Element 10: 1276425 StatFieldsDoc # LocateFile [-l] FileName Location-Array-Name # LocateFile [-l] -of FileName Location-Array-FileName LocateFile() { local -a LOC LOC1 LOC2 local lk="" of=0 case "$#" in 0) return 1 ;; 1) return 1 ;; 2) : ;; *) while (( "$#" > 2 )) do case "$1" in -l) lk=-1 ;; -of) of=1 ;; *) return 1 ;; esac shift done ;; esac # More Sanscrit-2.0.5 # LOC1=( $(stat -t $lk $1) ) # LOC2=( $(stat -tf $lk $1) ) # Uncomment above two lines if system has "stat" command installed. LOC=( ${LOC1[@]:0:1} ${LOC1[@]:3:11} ${LOC2[@]:1:2} ${LOC2[@]:4:1} ) case "$of" in 0) eval $2=\( \"\$\{LOC\[@\]\}\" \) ;; 1) echo "${LOC[@]}" > "$2" ;; esac return 0 # Which yields (if you are lucky, and have "stat" installed) # -*-*- Location Discriptor -*-*- # Return code: 0 # Size of array: 15 # Contents of array # Element 0: /home/mszick 20th Century name # Element 1: 41e8 Type and Permissions # Element 2: 500 User # Element 3: 500 Group # Element 4: 303 Device # Element 5: 32385 inode # Element 6: 22 Link count # Element 7: 0 Device Major # Element 8: 0 Device Minor # Element 9: 1051224608 Last Access # Element 10: 1051214068 Last Modify # Element 11: 1051214068 Last Status # Element 12: 0 UUID (to be) # Element 13: 0 Volume Label (to be) # Element 14: ef53 Filesystem type } # And then there was some test code ListArray() # ListArray Name { local -a Ta eval Ta=\( \"\$\{$1\[@\]\}\" \) echo echo "-*-*- List of Array -*-*-" echo "Size of array $1: ${#Ta[*]}" echo "Contents of array $1:" for (( i=0 ; i<${#Ta[*]} ; i++ )) do echo -e "\tElement $i: ${Ta[$i]}" done return 0 } declare -a CUR_DIR # For small arrays ListDirectory "${PWD}" CUR_DIR ListArray CUR_DIR declare -a DIR_DIG DigestFile CUR_DIR DIR_DIG echo "The new \"name\" (checksum) for ${CUR_DIR[9]} is ${DIR_DIG[0]}" declare -a DIR_ENT # BIG_DIR # For really big arrays - use a temporary file in ramdisk # BIG-DIR # ListDirectory -of "${CUR_DIR[11]}/*" "/tmpfs/junk2" ListDirectory "${CUR_DIR[11]}/*" DIR_ENT declare -a DIR_IDX # BIG-DIR # IndexList -if "/tmpfs/junk2" DIR_IDX IndexList DIR_ENT DIR_IDX declare -a IDX_DIG # BIG-DIR # DIR_ENT=( $(cat /tmpfs/junk2) ) # BIG-DIR # DigestFile -if /tmpfs/junk2 IDX_DIG DigestFile DIR_ENT IDX_DIG # Small (should) be able to parallize IndexList & DigestFile # Large (should) be able to parallize IndexList & DigestFile & the assignment echo "The \"name\" (checksum) for the contents of ${PWD} is ${IDX_DIG[0]}" declare -a FILE_LOC LocateFile ${PWD} FILE_LOC ListArray FILE_LOC exit 0 |
Added echo-params.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 | #!/bin/bash # echo-params.sh # Call this script with a few command-line parameters. # For example: # sh echo-params.sh first second third fourth fifth params=$# # Number of command-line parameters. param=1 # Start at first command-line param. while [ "$param" -le "$params" ] do echo -n "Command-line parameter " echo -n \$$param # Gives only the *name* of variable. # ^^^ # $1, $2, $3, etc. # Why? # \$ escapes the first "$" #+ so it echoes literally, #+ and $param dereferences "$param" . . . #+ . . . as expected. echo -n " = " eval echo \$$param # Gives the *value* of variable. # ^^^^ ^^^ # The "eval" forces the *evaluation* #+ of \$$ #+ as an indirect variable reference. (( param ++ )) # On to the next. done exit $? # ================================================= $ sh echo-params.sh first second third fourth fifth Command-line parameter $1 = first Command-line parameter $2 = second Command-line parameter $3 = third Command-line parameter $4 = fourth Command-line parameter $5 = fifth |
Added embedded-arrays.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 | #!/bin/bash # embedded-arrays.sh # Embedded arrays and indirect references. # This script by Dennis Leeuw. # Used with permission. # Modified by document author. ARRAY1=( VAR1_1=value11 VAR1_2=value12 VAR1_3=value13 ) ARRAY2=( VARIABLE="test" STRING="VAR1=value1 VAR2=value2 VAR3=value3" ARRAY21=${ARRAY1[*]} ) # Embed ARRAY1 within this second array. function print () { OLD_IFS="$IFS" IFS=$'\n' # To print each array element #+ on a separate line. TEST1="ARRAY2[*]" local ${!TEST1} # See what happens if you delete this line. # Indirect reference. # This makes the components of $TEST1 #+ accessible to this function. # Let's see what we've got so far. echo echo "\$TEST1 = $TEST1" # Just the name of the variable. echo; echo echo "{\$TEST1} = ${!TEST1}" # Contents of the variable. # That's what an indirect #+ reference does. echo echo "-------------------------------------------"; echo echo # Print variable echo "Variable VARIABLE: $VARIABLE" # Print a string element IFS="$OLD_IFS" TEST2="STRING[*]" local ${!TEST2} # Indirect reference (as above). echo "String element VAR2: $VAR2 from STRING" # Print an array element TEST2="ARRAY21[*]" local ${!TEST2} # Indirect reference (as above). echo "Array element VAR1_1: $VAR1_1 from ARRAY21" } print echo exit 0 # As the author of the script notes, #+ "you can easily expand it to create named-hashes in bash." # (Difficult) exercise for the reader: implement this. |
Added empty-array.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 | #!/bin/bash # empty-array.sh # Thanks to Stephane Chazelas for the original example, #+ and to Michael Zick and Omair Eshkenazi, for extending it. # And to Nathan Coulter for clarifications and corrections. # An empty array is not the same as an array with empty elements. array0=( first second third ) array1=( '' ) # "array1" consists of one empty element. array2=( ) # No elements . . . "array2" is empty. array3=( ) # What about this array? echo ListArray() { echo echo "Elements in array0: ${array0[@]}" echo "Elements in array1: ${array1[@]}" echo "Elements in array2: ${array2[@]}" echo "Elements in array3: ${array3[@]}" echo echo "Length of first element in array0 = ${#array0}" echo "Length of first element in array1 = ${#array1}" echo "Length of first element in array2 = ${#array2}" echo "Length of first element in array3 = ${#array3}" echo echo "Number of elements in array0 = ${#array0[*]}" # 3 echo "Number of elements in array1 = ${#array1[*]}" # 1 (Surprise!) echo "Number of elements in array2 = ${#array2[*]}" # 0 echo "Number of elements in array3 = ${#array3[*]}" # 0 } # =================================================================== ListArray # Try extending those arrays. # Adding an element to an array. array0=( "${array0[@]}" "new1" ) array1=( "${array1[@]}" "new1" ) array2=( "${array2[@]}" "new1" ) array3=( "${array3[@]}" "new1" ) ListArray # or array0[${#array0[*]}]="new2" array1[${#array1[*]}]="new2" array2[${#array2[*]}]="new2" array3[${#array3[*]}]="new2" ListArray # When extended as above, arrays are 'stacks' ... # Above is the 'push' ... # The stack 'height' is: height=${#array2[@]} echo echo "Stack height for array2 = $height" # The 'pop' is: unset array2[${#array2[@]}-1] # Arrays are zero-based, height=${#array2[@]} #+ which means first element has index 0. echo echo "POP" echo "New stack height for array2 = $height" ListArray # List only 2nd and 3rd elements of array0. from=1 # Zero-based numbering. to=2 array3=( ${array0[@]:1:2} ) echo echo "Elements in array3: ${array3[@]}" # Works like a string (array of characters). # Try some other "string" forms. # Replacement: array4=( ${array0[@]/second/2nd} ) echo echo "Elements in array4: ${array4[@]}" # Replace all matching wildcarded string. array5=( ${array0[@]//new?/old} ) echo echo "Elements in array5: ${array5[@]}" # Just when you are getting the feel for this . . . array6=( ${array0[@]#*new} ) echo # This one might surprise you. echo "Elements in array6: ${array6[@]}" array7=( ${array0[@]#new1} ) echo # After array6 this should not be a surprise. echo "Elements in array7: ${array7[@]}" # Which looks a lot like . . . array8=( ${array0[@]/new1/} ) echo echo "Elements in array8: ${array8[@]}" # So what can one say about this? # The string operations are performed on #+ each of the elements in var[@] in succession. # Therefore : Bash supports string vector operations. # If the result is a zero length string, #+ that element disappears in the resulting assignment. # However, if the expansion is in quotes, the null elements remain. # Michael Zick: Question, are those strings hard or soft quotes? # Nathan Coulter: There is no such thing as "soft quotes." #! What's really happening is that #!+ the pattern matching happens after #!+ all the other expansions of [word] #!+ in cases like ${parameter#word}. zap='new*' array9=( ${array0[@]/$zap/} ) echo echo "Number of elements in array9: ${#array9[@]}" array9=( "${array0[@]/$zap/}" ) echo "Elements in array9: ${array9[@]}" # This time the null elements remain. echo "Number of elements in array9: ${#array9[@]}" # Just when you thought you were still in Kansas . . . array10=( ${array0[@]#$zap} ) echo echo "Elements in array10: ${array10[@]}" # But, the asterisk in zap won't be interpreted if quoted. array10=( ${array0[@]#"$zap"} ) echo echo "Elements in array10: ${array10[@]}" # Well, maybe we _are_ still in Kansas . . . # (Revisions to above code block by Nathan Coulter.) # Compare array7 with array10. # Compare array8 with array9. # Reiterating: No such thing as soft quotes! # Nathan Coulter explains: # Pattern matching of 'word' in ${parameter#word} is done after #+ parameter expansion and *before* quote removal. # In the normal case, pattern matching is done *after* quote removal. exit |
Added encryptedpw.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 | #!/bin/bash # Example "ex72.sh" modified to use encrypted password. # Note that this is still rather insecure, #+ since the decrypted password is sent in the clear. # Use something like "ssh" if this is a concern. E_BADARGS=85 if [ -z "$1" ] then echo "Usage: `basename $0` filename" exit $E_BADARGS fi Username=bozo # Change to suit. pword=/home/bozo/secret/password_encrypted.file # File containing encrypted password. Filename=`basename $1` # Strips pathname out of file name. Server="XXX" Directory="YYY" # Change above to actual server name & directory. Password=`cruft <$pword` # Decrypt password. # Uses the author's own "cruft" file encryption package, #+ based on the classic "onetime pad" algorithm, #+ and obtainable from: #+ Primary-site: ftp://ibiblio.org/pub/Linux/utils/file #+ cruft-0.2.tar.gz [16k] ftp -n $Server <<End-Of-Session user $Username $Password binary bell cd $Directory put $Filename bye End-Of-Session # -n option to "ftp" disables auto-logon. # Note that "bell" rings 'bell' after each file transfer. exit 0 |
Added erase.sh.
> > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/bash # erase.sh: Using "stty" to set an erase character when reading input. echo -n "What is your name? " read name # Try to backspace #+ to erase characters of input. # Problems? echo "Your name is $name." stty erase '#' # Set "hashmark" (#) as erase character. echo -n "What is your name? " read name # Use # to erase last character typed. echo "Your name is $name." exit 0 # Even after the script exits, the new key value remains set. # Exercise: How would you reset the erase character to the default value? |
Added escaped.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 | #!/bin/bash # escaped.sh: escaped characters ############################################################# ### First, let's show some basic escaped-character usage. ### ############################################################# # Escaping a newline. # ------------------ echo "" echo "This will print as two lines." # This will print # as two lines. echo "This will print \ as one line." # This will print as one line. echo; echo echo "=============" echo "\v\v\v\v" # Prints \v\v\v\v literally. # Use the -e option with 'echo' to print escaped characters. echo "=============" echo "VERTICAL TABS" echo -e "\v\v\v\v" # Prints 4 vertical tabs. echo "==============" echo "QUOTATION MARK" echo -e "\042" # Prints " (quote, octal ASCII character 42). echo "==============" # The $'\X' construct makes the -e option unnecessary. echo; echo "NEWLINE and (maybe) BEEP" echo $'\n' # Newline. echo $'\a' # Alert (beep). # May only flash, not beep, depending on terminal. # We have seen $'\nnn" string expansion, and now . . . # =================================================================== # # Version 2 of Bash introduced the $'\nnn' string expansion construct. # =================================================================== # echo "Introducing the \$\' ... \' string-expansion construct . . . " echo ". . . featuring more quotation marks." echo $'\t \042 \t' # Quote (") framed by tabs. # Note that '\nnn' is an octal value. # It also works with hexadecimal values, in an $'\xhhh' construct. echo $'\t \x22 \t' # Quote (") framed by tabs. # Thank you, Greg Keraunen, for pointing this out. # Earlier Bash versions allowed '\x022'. echo # Assigning ASCII characters to a variable. # ---------------------------------------- quote=$'\042' # " assigned to a variable. echo "$quote Quoted string $quote and this lies outside the quotes." echo # Concatenating ASCII chars in a variable. triple_underline=$'\137\137\137' # 137 is octal ASCII code for '_'. echo "$triple_underline UNDERLINE $triple_underline" echo ABC=$'\101\102\103\010' # 101, 102, 103 are octal A, B, C. echo $ABC echo escape=$'\033' # 033 is octal for escape. echo "\"escape\" echoes as $escape" # no visible output. echo exit 0 |
Added ex1.sh.
> > > > > > > | 1 2 3 4 5 6 7 | # Cleanup # Run as root, of course. cd /var/log cat /dev/null > messages cat /dev/null > wtmp echo "Log files cleaned up." |
Added ex10.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 | #!/bin/bash # Tip: # If you're unsure how a certain condition might evaluate, #+ test it in an if-test. echo echo "Testing \"0\"" if [ 0 ] # zero then echo "0 is true." else # Or else ... echo "0 is false." fi # 0 is true. echo echo "Testing \"1\"" if [ 1 ] # one then echo "1 is true." else echo "1 is false." fi # 1 is true. echo echo "Testing \"-1\"" if [ -1 ] # minus one then echo "-1 is true." else echo "-1 is false." fi # -1 is true. echo echo "Testing \"NULL\"" if [ ] # NULL (empty condition) then echo "NULL is true." else echo "NULL is false." fi # NULL is false. echo echo "Testing \"xyz\"" if [ xyz ] # string then echo "Random string is true." else echo "Random string is false." fi # Random string is true. echo echo "Testing \"\$xyz\"" if [ $xyz ] # Tests if $xyz is null, but... # it's only an uninitialized variable. then echo "Uninitialized variable is true." else echo "Uninitialized variable is false." fi # Uninitialized variable is false. echo echo "Testing \"-n \$xyz\"" if [ -n "$xyz" ] # More pedantically correct. then echo "Uninitialized variable is true." else echo "Uninitialized variable is false." fi # Uninitialized variable is false. echo xyz= # Initialized, but set to null value. echo "Testing \"-n \$xyz\"" if [ -n "$xyz" ] then echo "Null variable is true." else echo "Null variable is false." fi # Null variable is false. echo # When is "false" true? echo "Testing \"false\"" if [ "false" ] # It seems that "false" is just a string ... then echo "\"false\" is true." #+ and it tests true. else echo "\"false\" is false." fi # "false" is true. echo echo "Testing \"\$false\"" # Again, uninitialized variable. if [ "$false" ] then echo "\"\$false\" is true." else echo "\"\$false\" is false." fi # "$false" is false. # Now, we get the expected result. # What would happen if we tested the uninitialized variable "$true"? echo exit 0 |
Added ex11.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 | #!/bin/bash echo if test -z "$1" then echo "No command-line arguments." else echo "First command-line argument is $1." fi echo if /usr/bin/test -z "$1" # Equivalent to "test" builtin. # ^^^^^^^^^^^^^ # Specifying full pathname. then echo "No command-line arguments." else echo "First command-line argument is $1." fi echo if [ -z "$1" ] # Functionally identical to above code blocks. # if [ -z "$1" should work, but... #+ Bash responds to a missing close-bracket with an error message. then echo "No command-line arguments." else echo "First command-line argument is $1." fi echo if /usr/bin/[ -z "$1" ] # Again, functionally identical to above. # if /usr/bin/[ -z "$1" # Works, but gives an error message. # # Note: # This has been fixed in Bash, version 3.x. then echo "No command-line arguments." else echo "First command-line argument is $1." fi echo exit 0 |
Added ex12.sh.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash filename=sys.log cat /dev/null > $filename; echo "Creating / cleaning out file." # Creates the file if it does not already exist, #+ and truncates it to zero length if it does. # : > filename and > filename also work. tail /var/log/messages > $filename # /var/log/messages must have world read permission for this to work. echo "$filename contains tail end of system log." exit 0 |
Added ex13.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 | #!/bin/bash a=4 b=5 # Here "a" and "b" can be treated either as integers or strings. # There is some blurring between the arithmetic and string comparisons, #+ since Bash variables are not strongly typed. # Bash permits integer operations and comparisons on variables #+ whose value consists of all-integer characters. # Caution advised, however. echo if [ "$a" -ne "$b" ] then echo "$a is not equal to $b" echo "(arithmetic comparison)" fi echo if [ "$a" != "$b" ] then echo "$a is not equal to $b." echo "(string comparison)" # "4" != "5" # ASCII 52 != ASCII 53 fi # In this particular instance, both "-ne" and "!=" work. echo exit 0 |
Added ex14.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 | #!/bin/bash # zmore # View gzipped files with 'more' filter. E_NOARGS=85 E_NOTFOUND=86 E_NOTGZIP=87 if [ $# -eq 0 ] # same effect as: if [ -z "$1" ] # $1 can exist, but be empty: zmore "" arg2 arg3 then echo "Usage: `basename $0` filename" >&2 # Error message to stderr. exit $E_NOARGS # Returns 85 as exit status of script (error code). fi filename=$1 if [ ! -f "$filename" ] # Quoting $filename allows for possible spaces. then echo "File $filename not found!" >&2 # Error message to stderr. exit $E_NOTFOUND fi if [ ${filename##*.} != "gz" ] # Using bracket in variable substitution. then echo "File $1 is not a gzipped file!" exit $E_NOTGZIP fi zcat $1 | more # Uses the 'more' filter. # May substitute 'less' if desired. exit $? # Script returns exit status of pipe. # Actually "exit $?" is unnecessary, as the script will, in any case, #+ return the exit status of the last command executed. |
Added ex15.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 | #!/bin/bash # Naked variables echo # When is a variable "naked", i.e., lacking the '$' in front? # When it is being assigned, rather than referenced. # Assignment a=879 echo "The value of \"a\" is $a." # Assignment using 'let' let a=16+5 echo "The value of \"a\" is now $a." echo # In a 'for' loop (really, a type of disguised assignment): echo -n "Values of \"a\" in the loop are: " for a in 7 8 9 11 do echo -n "$a " done echo echo # In a 'read' statement (also a type of assignment): echo -n "Enter \"a\" " read a echo "The value of \"a\" is now $a." echo exit 0 |
Added ex16.sh.
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash a=23 # Simple case echo $a b=$a echo $b # Now, getting a little bit fancier (command substitution). a=`echo Hello!` # Assigns result of 'echo' command to 'a' ... echo $a # Note that including an exclamation mark (!) within a #+ command substitution construct will not work from the command-line, #+ since this triggers the Bash "history mechanism." # Inside a script, however, the history functions are disabled by default. a=`ls -l` # Assigns result of 'ls -l' command to 'a' echo $a # Unquoted, however, it removes tabs and newlines. echo echo "$a" # The quoted variable preserves whitespace. # (See the chapter on "Quoting.") exit 0 |
Added ex17.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 | #!/bin/bash # Call this script with at least 10 parameters, for example # ./scriptname 1 2 3 4 5 6 7 8 9 10 MINPARAMS=10 echo echo "The name of this script is \"$0\"." # Adds ./ for current directory echo "The name of this script is \"`basename $0`\"." # Strips out path name info (see 'basename') echo if [ -n "$1" ] # Tested variable is quoted. then echo "Parameter #1 is $1" # Need quotes to escape # fi if [ -n "$2" ] then echo "Parameter #2 is $2" fi if [ -n "$3" ] then echo "Parameter #3 is $3" fi # ... if [ -n "${10}" ] # Parameters > $9 must be enclosed in {brackets}. then echo "Parameter #10 is ${10}" fi echo "-----------------------------------" echo "All the command-line parameters are: "$*"" if [ $# -lt "$MINPARAMS" ] then echo echo "This script needs at least $MINPARAMS command-line arguments!" fi echo exit 0 |
Added ex18.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 | #!/bin/bash # ex18.sh # Does a 'whois domain-name' lookup on any of 3 alternate servers: # ripe.net, cw.net, radb.net # Place this script -- renamed 'wh' -- in /usr/local/bin # Requires symbolic links: # ln -s /usr/local/bin/wh /usr/local/bin/wh-ripe # ln -s /usr/local/bin/wh /usr/local/bin/wh-apnic # ln -s /usr/local/bin/wh /usr/local/bin/wh-tucows E_NOARGS=75 if [ -z "$1" ] then echo "Usage: `basename $0` [domain-name]" exit $E_NOARGS fi # Check script name and call proper server. case `basename $0` in # Or: case ${0##*/} in "wh" ) whois $1@whois.tucows.com;; "wh-ripe" ) whois $1@whois.ripe.net;; "wh-apnic" ) whois $1@whois.apnic.net;; "wh-cw" ) whois $1@whois.cw.net;; * ) echo "Usage: `basename $0` [domain-name]";; esac exit $? |
Added ex19.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 | #!/bin/bash # shft.sh: Using 'shift' to step through all the positional parameters. # Name this script something like shft.sh, #+ and invoke it with some parameters. #+ For example: # sh shft.sh a b c def 83 barndoor until [ -z "$1" ] # Until all parameters used up . . . do echo -n "$1 " shift done echo # Extra linefeed. # But, what happens to the "used-up" parameters? echo "$2" # Nothing echoes! # When $2 shifts into $1 (and there is no $3 to shift into $2) #+ then $2 remains empty. # So, it is not a parameter *copy*, but a *move*. exit # See also the echo-params.sh script for a "shiftless" #+ alternative method of stepping through the positional params. |
Added ex1a.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash # Proper header for a Bash script. # Cleanup, version 2 # Run as root, of course. # Insert code here to print error message and exit if not root. LOG_DIR=/var/log # Variables are better than hard-coded values. cd $LOG_DIR cat /dev/null > messages cat /dev/null > wtmp echo "Logs cleaned up." exit # The right and proper method of "exiting" from a script. # A bare "exit" (no parameter) returns the exit status #+ of the preceding command. |
Added ex2.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 | #!/bin/bash # Cleanup, version 3 # Warning: # ------- # This script uses quite a number of features that will be explained #+ later on. # By the time you've finished the first half of the book, #+ there should be nothing mysterious about it. LOG_DIR=/var/log ROOT_UID=0 # Only users with $UID 0 have root privileges. LINES=50 # Default number of lines saved. E_XCD=86 # Can't change directory? E_NOTROOT=87 # Non-root exit error. # Run as root, of course. if [ "$UID" -ne "$ROOT_UID" ] then echo "Must be root to run this script." exit $E_NOTROOT fi if [ -n "$1" ] # Test whether command-line argument is present (non-empty). then lines=$1 else lines=$LINES # Default, if not specified on command-line. fi # Stephane Chazelas suggests the following, #+ as a better way of checking command-line arguments, #+ but this is still a bit advanced for this stage of the tutorial. # # E_WRONGARGS=85 # Non-numerical argument (bad argument format). # # case "$1" in # "" ) lines=50;; # *[!0-9]*) echo "Usage: `basename $0` lines-to-cleanup"; # exit $E_WRONGARGS;; # * ) lines=$1;; # esac # #* Skip ahead to "Loops" chapter to decipher all this. cd $LOG_DIR if [ `pwd` != "$LOG_DIR" ] # or if [ "$PWD" != "$LOG_DIR" ] # Not in /var/log? then echo "Can't change to $LOG_DIR." exit $E_XCD fi # Doublecheck if in right directory before messing with log file. # Far more efficient is: # # cd /var/log || { # echo "Cannot change to necessary directory." >&2 # exit $E_XCD; # } tail -n $lines messages > mesg.temp # Save last section of message log file. mv mesg.temp messages # Rename it as system log file. # cat /dev/null > messages #* No longer needed, as the above method is safer. cat /dev/null > wtmp # ': > wtmp' and '> wtmp' have the same effect. echo "Log files cleaned up." # Note that there are other log files in /var/log not affected #+ by this script. exit 0 # A zero return value from the script upon exit indicates success #+ to the shell. |
Added ex20.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 | #!/bin/bash func1 () { echo This is a function. } declare -f # Lists the function above. echo declare -i var1 # var1 is an integer. var1=2367 echo "var1 declared as $var1" var1=var1+1 # Integer declaration eliminates the need for 'let'. echo "var1 incremented by 1 is $var1." # Attempt to change variable declared as integer. echo "Attempting to change var1 to floating point value, 2367.1." var1=2367.1 # Results in error message, with no change to variable. echo "var1 is still $var1" echo declare -r var2=13.36 # 'declare' permits setting a variable property #+ and simultaneously assigning it a value. echo "var2 declared as $var2" # Attempt to change readonly variable. var2=13.37 # Generates error message, and exit from script. echo "var2 is still $var2" # This line will not execute. exit 0 # Script will not exit here. |
Added ex21.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 | #!/bin/bash # $RANDOM returns a different random integer at each invocation. # Nominal range: 0 - 32767 (signed 16-bit integer). MAXCOUNT=10 count=1 echo echo "$MAXCOUNT random numbers:" echo "-----------------" while [ "$count" -le $MAXCOUNT ] # Generate 10 ($MAXCOUNT) random integers. do number=$RANDOM echo $number let "count += 1" # Increment count. done echo "-----------------" # If you need a random int within a certain range, use the 'modulo' operator. # This returns the remainder of a division operation. RANGE=500 echo number=$RANDOM let "number %= $RANGE" # ^^ echo "Random number less than $RANGE --- $number" echo # If you need a random integer greater than a lower bound, #+ then set up a test to discard all numbers below that. FLOOR=200 number=0 #initialize while [ "$number" -le $FLOOR ] do number=$RANDOM done echo "Random number greater than $FLOOR --- $number" echo # Let's examine a simple alternative to the above loop, namely # let "number = $RANDOM + $FLOOR" # That would eliminate the while-loop and run faster. # But, there might be a problem with that. What is it? # Combine above two techniques to retrieve random number between two limits. number=0 #initialize while [ "$number" -le $FLOOR ] do number=$RANDOM let "number %= $RANGE" # Scales $number down within $RANGE. done echo "Random number between $FLOOR and $RANGE --- $number" echo # Generate binary choice, that is, "true" or "false" value. BINARY=2 T=1 number=$RANDOM let "number %= $BINARY" # Note that let "number >>= 14" gives a better random distribution #+ (right shifts out everything except last binary digit). if [ "$number" -eq $T ] then echo "TRUE" else echo "FALSE" fi echo # Generate a toss of the dice. SPOTS=6 # Modulo 6 gives range 0 - 5. # Incrementing by 1 gives desired range of 1 - 6. # Thanks, Paulo Marcel Coelho Aragao, for the simplification. die1=0 die2=0 # Would it be better to just set SPOTS=7 and not add 1? Why or why not? # Tosses each die separately, and so gives correct odds. let "die1 = $RANDOM % $SPOTS +1" # Roll first one. let "die2 = $RANDOM % $SPOTS +1" # Roll second one. # Which arithmetic operation, above, has greater precedence -- #+ modulo (%) or addition (+)? let "throw = $die1 + $die2" echo "Throw of the dice = $throw" echo exit 0 |
Added ex22.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash # Listing the planets. for planet in Mercury Venus Earth Mars Jupiter Saturn Uranus Neptune Pluto do echo $planet # Each planet on a separate line. done echo; echo for planet in "Mercury Venus Earth Mars Jupiter Saturn Uranus Neptune Pluto" # All planets on same line. # Entire 'list' enclosed in quotes creates a single variable. # Why? Whitespace incorporated into the variable. do echo $planet done echo; echo "Whoops! Pluto is no longer a planet!" exit 0 |
Added ex22a.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 | #!/bin/bash # Planets revisited. # Associate the name of each planet with its distance from the sun. for planet in "Mercury 36" "Venus 67" "Earth 93" "Mars 142" "Jupiter 483" do set -- $planet # Parses variable "planet" #+ and sets positional parameters. # The "--" prevents nasty surprises if $planet is null or #+ begins with a dash. # May need to save original positional parameters, #+ since they get overwritten. # One way of doing this is to use an array, # original_params=("$@") echo "$1 $2,000,000 miles from the sun" #-------two tabs---concatenate zeroes onto parameter $2 done # (Thanks, S.C., for additional clarification.) exit 0 |
Added ex23.sh.
> > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/bash # Invoke this script both with and without arguments, #+ and see what happens. for a do echo -n "$a " done # The 'in list' missing, therefore the loop operates on '$@' #+ (command-line argument list, including whitespace). echo exit 0 |
Added ex24.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 | #!/bin/bash # Faxing (must have 'efax' package installed). EXPECTED_ARGS=2 E_BADARGS=85 MODEM_PORT="/dev/ttyS2" # May be different on your machine. # ^^^^^ PCMCIA modem card default port. if [ $# -ne $EXPECTED_ARGS ] # Check for proper number of command-line args. then echo "Usage: `basename $0` phone# text-file" exit $E_BADARGS fi if [ ! -f "$2" ] then echo "File $2 is not a text file." # File is not a regular file, or does not exist. exit $E_BADARGS fi fax make $2 # Create fax-formatted files from text files. for file in $(ls $2.0*) # Concatenate the converted files. # Uses wild card (filename "globbing") #+ in variable list. do fil="$fil $file" done efax -d "$MODEM_PORT" -t "T$1" $fil # Finally, do the work. # Trying adding -o1 if above line fails. # As S.C. points out, the for-loop can be eliminated with # efax -d /dev/ttyS2 -o1 -t "T$1" $2.0* #+ but it's not quite as instructive [grin]. exit $? # Also, efax sends diagnostic messages to stdout. |
Added ex25.sh.
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/bash var0=0 LIMIT=10 while [ "$var0" -lt "$LIMIT" ] # ^ ^ # Spaces, because these are "test-brackets" . . . do echo -n "$var0 " # -n suppresses newline. # ^ Space, to separate printed out numbers. var0=`expr $var0 + 1` # var0=$(($var0+1)) also works. # var0=$((var0 + 1)) also works. # let "var0 += 1" also works. done # Various other methods also work. echo exit 0 |
Added ex26.sh.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash echo # Equivalent to: while [ "$var1" != "end" ] # while test "$var1" != "end" do echo "Input variable #1 (end to exit) " read var1 # Not 'read $var1' (why?). echo "variable #1 = $var1" # Need quotes because of "#" . . . # If input is 'end', echoes it here. # Does not test for termination condition until top of loop. echo done exit 0 |
Added ex26a.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash var1=unset previous=$var1 while echo "previous-variable = $previous" echo previous=$var1 [ "$var1" != end ] # Keeps track of what $var1 was previously. # Four conditions on *while*, but only the final one controls loop. # The *last* exit status is the one that counts. do echo "Input variable #1 (end to exit) " read var1 echo "variable #1 = $var1" done # Try to figure out how this all works. # It's a wee bit tricky. exit 0 |
Added ex27.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 | #!/bin/bash END_CONDITION=end until [ "$var1" = "$END_CONDITION" ] # Tests condition here, at top of loop. do echo "Input variable #1 " echo "($END_CONDITION to exit)" read var1 echo "variable #1 = $var1" echo done # --- # # As with "for" and "while" loops, #+ an "until" loop permits C-like test constructs. LIMIT=10 var=0 until (( var > LIMIT )) do # ^^ ^ ^ ^^ No brackets, no $ prefixing variables. echo -n "$var " (( var++ )) done # 0 1 2 3 4 5 6 7 8 9 10 exit 0 |
Added ex28.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 | #!/bin/bash LIMIT=19 # Upper limit echo echo "Printing Numbers 1 through 20 (but not 3 and 11)." a=0 while [ $a -le "$LIMIT" ] do a=$(($a+1)) if [ "$a" -eq 3 ] || [ "$a" -eq 11 ] # Excludes 3 and 11. then continue # Skip rest of this particular loop iteration. fi echo -n "$a " # This will not execute for 3 and 11. done # Exercise: # Why does the loop print up to 20? echo; echo echo Printing Numbers 1 through 20, but something happens after 2. ################################################################## # Same loop, but substituting 'break' for 'continue'. a=0 while [ "$a" -le "$LIMIT" ] do a=$(($a+1)) if [ "$a" -gt 2 ] then break # Skip entire rest of loop. fi echo -n "$a " done echo; echo; echo exit 0 |
Added ex29.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 | #!/bin/bash # Testing ranges of characters. echo; echo "Hit a key, then hit return." read Keypress case "$Keypress" in [[:lower:]] ) echo "Lowercase letter";; [[:upper:]] ) echo "Uppercase letter";; [0-9] ) echo "Digit";; * ) echo "Punctuation, whitespace, or other";; esac # Allows ranges of characters in [square brackets], #+ or POSIX ranges in [[double square brackets. # In the first version of this example, #+ the tests for lowercase and uppercase characters were #+ [a-z] and [A-Z]. # This no longer works in certain locales and/or Linux distros. # POSIX is more portable. # Thanks to Frank Wang for pointing this out. # Exercise: # -------- # As the script stands, it accepts a single keystroke, then terminates. # Change the script so it accepts repeated input, #+ reports on each keystroke, and terminates only when "X" is hit. # Hint: enclose everything in a "while" loop. exit 0 |
Added ex3.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 | #!/bin/bash # This simple script removes blank lines from a file. # No argument checking. # # You might wish to add something like: # # E_NOARGS=85 # if [ -z "$1" ] # then # echo "Usage: `basename $0` target-file" # exit $E_NOARGS # fi sed -e /^$/d "$1" # Same as # sed -e '/^$/d' filename # invoked from the command-line. # The '-e' means an "editing" command follows (optional here). # '^' indicates the beginning of line, '$' the end. # This matches lines with nothing between the beginning and the end -- #+ blank lines. # The 'd' is the delete command. # Quoting the command-line arg permits #+ whitespace and special characters in the filename. # Note that this script doesn't actually change the target file. # If you need to do that, redirect its output. exit |
Added ex30.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 | #!/bin/bash # Crude address database clear # Clear the screen. echo " Contact List" echo " ------- ----" echo "Choose one of the following persons:" echo echo "[E]vans, Roland" echo "[J]ones, Mildred" echo "[S]mith, Julie" echo "[Z]ane, Morris" echo read person case "$person" in # Note variable is quoted. "E" | "e" ) # Accept upper or lowercase input. echo echo "Roland Evans" echo "4321 Flash Dr." echo "Hardscrabble, CO 80753" echo "(303) 734-9874" echo "(303) 734-9892 fax" echo "revans@zzy.net" echo "Business partner & old friend" ;; # Note double semicolon to terminate each option. "J" | "j" ) echo echo "Mildred Jones" echo "249 E. 7th St., Apt. 19" echo "New York, NY 10009" echo "(212) 533-2814" echo "(212) 533-9972 fax" echo "milliej@loisaida.com" echo "Ex-girlfriend" echo "Birthday: Feb. 11" ;; # Add info for Smith & Zane later. * ) # Default option. # Empty input (hitting RETURN) fits here, too. echo echo "Not yet in database." ;; esac echo # Exercise: # -------- # Change the script so it accepts multiple inputs, #+ instead of terminating after displaying just one address. exit 0 |
Added ex30a.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 | #!/bin/bash # ex30a.sh: "Colorized" version of ex30.sh. # Crude address database clear # Clear the screen. echo -n " " echo -e '\E[37;44m'"\033[1mContact List\033[0m" # White on blue background echo; echo echo -e "\033[1mChoose one of the following persons:\033[0m" # Bold tput sgr0 # Reset attributes. echo "(Enter only the first letter of name.)" echo echo -en '\E[47;34m'"\033[1mE\033[0m" # Blue tput sgr0 # Reset colors to "normal." echo "vans, Roland" # "[E]vans, Roland" echo -en '\E[47;35m'"\033[1mJ\033[0m" # Magenta tput sgr0 echo "ambalaya, Mildred" echo -en '\E[47;32m'"\033[1mS\033[0m" # Green tput sgr0 echo "mith, Julie" echo -en '\E[47;31m'"\033[1mZ\033[0m" # Red tput sgr0 echo "ane, Morris" echo read person case "$person" in # Note variable is quoted. "E" | "e" ) # Accept upper or lowercase input. echo echo "Roland Evans" echo "4321 Flash Dr." echo "Hardscrabble, CO 80753" echo "(303) 734-9874" echo "(303) 734-9892 fax" echo "revans@zzy.net" echo "Business partner & old friend" ;; "J" | "j" ) echo echo "Mildred Jambalaya" echo "249 E. 7th St., Apt. 19" echo "New York, NY 10009" echo "(212) 533-2814" echo "(212) 533-9972 fax" echo "milliej@loisaida.com" echo "Girlfriend" echo "Birthday: Feb. 11" ;; # Add info for Smith & Zane later. * ) # Default option. # Empty input (hitting RETURN) fits here, too. echo echo "Not yet in database." ;; esac tput sgr0 # Reset colors to "normal." echo exit 0 |
Added ex31.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 | #!/bin/bash PS3='Choose your favorite vegetable: ' # Sets the prompt string. # Otherwise it defaults to #? . echo select vegetable in "beans" "carrots" "potatoes" "onions" "rutabagas" do echo echo "Your favorite veggie is $vegetable." echo "Yuck!" echo break # What happens if there is no 'break' here? done exit # Exercise: # -------- # Fix this script to accept user input not specified in #+ the "select" statement. # For example, if the user inputs "peas," #+ the script would respond "Sorry. That is not on the menu." |
Added ex32.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 | #!/bin/bash PS3='Choose your favorite vegetable: ' echo choice_of() { select vegetable # [in list] omitted, so 'select' uses arguments passed to function. do echo echo "Your favorite veggie is $vegetable." echo "Yuck!" echo break done } choice_of beans rice carrots radishes rutabaga spinach # $1 $2 $3 $4 $5 $6 # passed to choice_of() function exit 0 |
Added ex33.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 | #!/bin/bash # ex33.sh: Exercising getopts and OPTIND # Script modified 10/09/03 at the suggestion of Bill Gradwohl. # Here we observe how 'getopts' processes command-line arguments to script. # The arguments are parsed as "options" (flags) and associated arguments. # Try invoking this script with: # 'scriptname -mn' # 'scriptname -oq qOption' (qOption can be some arbitrary string.) # 'scriptname -qXXX -r' # # 'scriptname -qr' #+ - Unexpected result, takes "r" as the argument to option "q" # 'scriptname -q -r' #+ - Unexpected result, same as above # 'scriptname -mnop -mnop' - Unexpected result # (OPTIND is unreliable at stating where an option came from.) # # If an option expects an argument ("flag:"), then it will grab #+ whatever is next on the command-line. NO_ARGS=0 E_OPTERROR=85 if [ $# -eq "$NO_ARGS" ] # Script invoked with no command-line args? then echo "Usage: `basename $0` options (-mnopqrs)" exit $E_OPTERROR # Exit and explain usage. # Usage: scriptname -options # Note: dash (-) necessary fi while getopts ":mnopq:rs" Option do case $Option in m ) echo "Scenario #1: option -m- [OPTIND=${OPTIND}]";; n | o ) echo "Scenario #2: option -$Option- [OPTIND=${OPTIND}]";; p ) echo "Scenario #3: option -p- [OPTIND=${OPTIND}]";; q ) echo "Scenario #4: option -q-\ with argument \"$OPTARG\" [OPTIND=${OPTIND}]";; # Note that option 'q' must have an associated argument, #+ otherwise it falls through to the default. r | s ) echo "Scenario #5: option -$Option-";; * ) echo "Unimplemented option chosen.";; # Default. esac done shift $(($OPTIND - 1)) # Decrements the argument pointer so it points to next argument. # $1 now references the first non-option item supplied on the command-line #+ if one exists. exit $? # As Bill Gradwohl states, # "The getopts mechanism allows one to specify: scriptname -mnop -mnop #+ but there is no reliable way to differentiate what came #+ from where by using OPTIND." # There are, however, workarounds. |
Added ex33a.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 | #!/bin/bash # Using getopt # Try the following when invoking this script: # sh ex33a.sh -a # sh ex33a.sh -abc # sh ex33a.sh -a -b -c # sh ex33a.sh -d # sh ex33a.sh -dXYZ # sh ex33a.sh -d XYZ # sh ex33a.sh -abcd # sh ex33a.sh -abcdZ # sh ex33a.sh -z # sh ex33a.sh a # Explain the results of each of the above. E_OPTERR=65 if [ "$#" -eq 0 ] then # Script needs at least one command-line argument. echo "Usage $0 -[options a,b,c]" exit $E_OPTERR fi set -- `getopt "abcd:" "$@"` # Sets positional parameters to command-line arguments. # What happens if you use "$*" instead of "$@"? while [ ! -z "$1" ] do case "$1" in -a) echo "Option \"a\"";; -b) echo "Option \"b\"";; -c) echo "Option \"c\"";; -d) echo "Option \"d\" $2";; *) break;; esac shift done # It is usually better to use the 'getopts' builtin in a script. # See "ex33.sh." exit 0 |
Added ex34.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 | #!/bin/bash # ex34.sh # Script "set-test" # Invoke this script with three command-line parameters, # for example, "sh ex34.sh one two three". echo echo "Positional parameters before set \`uname -a\` :" echo "Command-line argument #1 = $1" echo "Command-line argument #2 = $2" echo "Command-line argument #3 = $3" set `uname -a` # Sets the positional parameters to the output # of the command `uname -a` echo echo +++++ echo $_ # +++++ # Flags set in script. echo $- # hB # Anomalous behavior? echo echo "Positional parameters after set \`uname -a\` :" # $1, $2, $3, etc. reinitialized to result of `uname -a` echo "Field #1 of 'uname -a' = $1" echo "Field #2 of 'uname -a' = $2" echo "Field #3 of 'uname -a' = $3" echo \#\#\# echo $_ # ### echo exit 0 |
Added ex35.sh.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash address=/home/bozo/daily-journal.txt echo "Basename of /home/bozo/daily-journal.txt = `basename $address`" echo "Dirname of /home/bozo/daily-journal.txt = `dirname $address`" echo echo "My own home is `basename ~/`." # `basename ~` also works. echo "The home of my home is `dirname ~/`." # `dirname ~` also works. exit 0 |
Added ex36.sh.
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash # "Reading" variables. echo -n "Enter the value of variable 'var1': " # The -n option to echo suppresses newline. read var1 # Note no '$' in front of var1, since it is being set. echo "var1 = $var1" echo # A single 'read' statement can set multiple variables. echo -n "Enter the values of variables 'var2' and 'var3' " echo =n "(separated by a space or tab): " read var2 var3 echo "var2 = $var2 var3 = $var3" # If you input only one value, #+ the other variable(s) will remain unset (null). exit 0 |
Added ex37.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 | #!/bin/bash dir1=/usr/local dir2=/var/spool pushd $dir1 # Will do an automatic 'dirs' (list directory stack to stdout). echo "Now in directory `pwd`." # Uses back-quoted 'pwd'. # Now, do some stuff in directory 'dir1'. pushd $dir2 echo "Now in directory `pwd`." # Now, do some stuff in directory 'dir2'. echo "The top entry in the DIRSTACK array is $DIRSTACK." popd echo "Now back in directory `pwd`." # Now, do some more stuff in directory 'dir1'. popd echo "Now back in original working directory `pwd`." exit 0 # What happens if you don't 'popd' -- then exit the script? # Which directory do you end up in? Why? |
Added ex38.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 | #!/bin/bash # Note that this example must be invoked with bash, i.e., bash ex38.sh #+ not sh ex38.sh ! . data-file # Load a data file. # Same effect as "source data-file", but more portable. # The file "data-file" must be present in current working directory, #+ since it is referred to by its basename. # Now, let's reference some data from that file. echo "variable1 (from data-file) = $variable1" echo "variable3 (from data-file) = $variable3" let "sum = $variable2 + $variable4" echo "Sum of variable2 + variable4 (from data-file) = $sum" echo "message1 (from data-file) is \"$message1\"" # Escaped quotes echo "message2 (from data-file) is \"$message2\"" print_message This is the message-print function in the data-file. exit $? |
Added ex39.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 | #!/bin/bash ROOT_UID=0 # Only users with $UID 0 have root privileges. E_NOTROOT=65 E_NOPARAMS=66 if [ "$UID" -ne "$ROOT_UID" ] then echo "Must be root to run this script." # "Run along kid, it's past your bedtime." exit $E_NOTROOT fi if [ -z "$1" ] then echo "Usage: `basename $0` find-string" exit $E_NOPARAMS fi echo "Updating 'locate' database..." echo "This may take a while." updatedb /usr & # Must be run as root. wait # Don't run the rest of the script until 'updatedb' finished. # You want the the database updated before looking up the file name. locate $1 # Without the 'wait' command, in the worse case scenario, #+ the script would exit while 'updatedb' was still running, #+ leaving it as an orphan process. exit 0 |
Added ex4.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 | #!/bin/bash # subst.sh: a script that substitutes one pattern for #+ another in a file, #+ i.e., "sh subst.sh Smith Jones letter.txt". # Jones replaces Smith. ARGS=3 # Script requires 3 arguments. E_BADARGS=85 # Wrong number of arguments passed to script. if [ $# -ne "$ARGS" ] then echo "Usage: `basename $0` old-pattern new-pattern filename" exit $E_BADARGS fi old_pattern=$1 new_pattern=$2 if [ -f "$3" ] then file_name=$3 else echo "File \"$3\" does not exist." exit $E_BADARGS fi # ----------------------------------------------- # Here is where the heavy work gets done. sed -e "s/$old_pattern/$new_pattern/g" $file_name # ----------------------------------------------- # 's' is, of course, the substitute command in sed, #+ and /pattern/ invokes address matching. # The 'g,' or global flag causes substitution for EVERY #+ occurence of $old_pattern on each line, not just the first. # Read the 'sed' docs for an in-depth explanation. exit $? # Redirect the output of this script to write to a file. |
Added ex40.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 | #!/bin/bash # ex40.sh (burn-cd.sh) # Script to automate burning a CDR. SPEED=10 # May use higher speed if your hardware supports it. IMAGEFILE=cdimage.iso CONTENTSFILE=contents # DEVICE=/dev/cdrom For older versions of cdrecord DEVICE="1,0,0" DEFAULTDIR=/opt # This is the directory containing the data to be burned. # Make sure it exists. # Exercise: Add a test for this. # Uses Joerg Schilling's "cdrecord" package: # http://www.fokus.fhg.de/usr/schilling/cdrecord.html # If this script invoked as an ordinary user, may need to suid cdrecord #+ chmod u+s /usr/bin/cdrecord, as root. # Of course, this creates a security hole, though a relatively minor one. if [ -z "$1" ] then IMAGE_DIRECTORY=$DEFAULTDIR # Default directory, if not specified on command-line. else IMAGE_DIRECTORY=$1 fi # Create a "table of contents" file. ls -lRF $IMAGE_DIRECTORY > $IMAGE_DIRECTORY/$CONTENTSFILE # The "l" option gives a "long" file listing. # The "R" option makes the listing recursive. # The "F" option marks the file types (directories get a trailing /). echo "Creating table of contents." # Create an image file preparatory to burning it onto the CDR. mkisofs -r -o $IMAGEFILE $IMAGE_DIRECTORY echo "Creating ISO9660 file system image ($IMAGEFILE)." # Burn the CDR. echo "Burning the disk." echo "Please be patient, this will take a while." wodim -v -isosize dev=$DEVICE $IMAGEFILE # In newer Linux distros, the "wodim" utility assumes the #+ functionality of "cdrecord." exitcode=$? echo "Exit code = $exitcode" exit $exitcode |
Added ex41.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 | #!/bin/bash # Generates a log file in current directory # from the tail end of /var/log/messages. # Note: /var/log/messages must be world readable # if this script invoked by an ordinary user. # #root chmod 644 /var/log/messages LINES=5 ( date; uname -a ) >>logfile # Time and machine name echo ---------------------------------------------------------- >>logfile tail -n $LINES /var/log/messages | xargs | fmt -s >>logfile echo >>logfile echo >>logfile exit 0 # Note: # ---- # As Frank Wang points out, #+ unmatched quotes (either single or double quotes) in the source file #+ may give xargs indigestion. # # He suggests the following substitution for line 15: # tail -n $LINES /var/log/messages | tr -d "\"'" | xargs | fmt -s >>logfile # Exercise: # -------- # Modify this script to track changes in /var/log/messages at intervals #+ of 20 minutes. # Hint: Use the "watch" command. |
Added ex42.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 | #!/bin/bash # copydir.sh # Copy (verbose) all files in current directory ($PWD) #+ to directory specified on command-line. E_NOARGS=85 if [ -z "$1" ] # Exit if no argument given. then echo "Usage: `basename $0` directory-to-copy-to" exit $E_NOARGS fi ls . | xargs -i -t cp ./{} $1 # ^^ ^^ ^^ # -t is "verbose" (output command-line to stderr) option. # -i is "replace strings" option. # {} is a placeholder for output text. # This is similar to the use of a curly-bracket pair in "find." # # List the files in current directory (ls .), #+ pass the output of "ls" as arguments to "xargs" (-i -t options), #+ then copy (cp) these arguments ({}) to new directory ($1). # # The net result is the exact equivalent of #+ cp * $1 #+ unless any of the filenames has embedded "whitespace" characters. exit 0 |
Added ex43.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 | #!/bin/bash # Exercising "eval" ... y=`eval ls -l` # Similar to y=`ls -l` echo $y #+ but linefeeds removed because "echoed" variable is unquoted. echo echo "$y" # Linefeeds preserved when variable is quoted. echo; echo y=`eval df` # Similar to y=`df` echo $y #+ but linefeeds removed. # When LF's not preserved, it may make it easier to parse output, #+ using utilities such as "awk". echo echo "===========================================================" echo eval "`seq 3 | sed -e 's/.*/echo var&=ABCDEFGHIJ/'`" # var1=ABCDEFGHIJ # var2=ABCDEFGHIJ # var3=ABCDEFGHIJ echo echo "===========================================================" echo # Now, showing how to do something useful with "eval" . . . # (Thank you, E. Choroba!) version=3.4 # Can we split the version into major and minor #+ part in one command? echo "version = $version" eval major=${version/./;minor=} # Replaces '.' in version by ';minor=' # The substitution yields '3; minor=4' #+ so eval does minor=4, major=3 echo Major: $major, minor: $minor # Major: 3, minor: 4 |
Added ex44.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 | #!/bin/bash # Killing ppp to force a log-off. # For dialup connection, of course. # Script should be run as root user. SERPORT=ttyS3 # Depending on the hardware and even the kernel version, #+ the modem port on your machine may be different -- #+ /dev/ttyS1 or /dev/ttyS2. killppp="eval kill -9 `ps ax | awk '/ppp/ { print $1 }'`" # -------- process ID of ppp ------- $killppp # This variable is now a command. # The following operations must be done as root user. chmod 666 /dev/$SERPORT # Restore r+w permissions, or else what? # Since doing a SIGKILL on ppp changed the permissions on the serial port, #+ we restore permissions to previous state. rm /var/lock/LCK..$SERPORT # Remove the serial port lock file. Why? exit $? # Exercises: # --------- # 1) Have script check whether root user is invoking it. # 2) Do a check on whether the process to be killed #+ is actually running before attempting to kill it. # 3) Write an alternate version of this script based on 'fuser': #+ if [ fuser -s /dev/modem ]; then . . . |
Added ex45.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 | #!/bin/bash # Demonstrating some of the uses of 'expr' # ======================================= echo # Arithmetic Operators # ---------- --------- echo "Arithmetic Operators" echo a=`expr 5 + 3` echo "5 + 3 = $a" a=`expr $a + 1` echo echo "a + 1 = $a" echo "(incrementing a variable)" a=`expr 5 % 3` # modulo echo echo "5 mod 3 = $a" echo echo # Logical Operators # ------- --------- # Returns 1 if true, 0 if false, #+ opposite of normal Bash convention. echo "Logical Operators" echo x=24 y=25 b=`expr $x = $y` # Test equality. echo "b = $b" # 0 ( $x -ne $y ) echo a=3 b=`expr $a \> 10` echo 'b=`expr $a \> 10`, therefore...' echo "If a > 10, b = 0 (false)" echo "b = $b" # 0 ( 3 ! -gt 10 ) echo b=`expr $a \< 10` echo "If a < 10, b = 1 (true)" echo "b = $b" # 1 ( 3 -lt 10 ) echo # Note escaping of operators. b=`expr $a \<= 3` echo "If a <= 3, b = 1 (true)" echo "b = $b" # 1 ( 3 -le 3 ) # There is also a "\>=" operator (greater than or equal to). echo echo # String Operators # ------ --------- echo "String Operators" echo a=1234zipper43231 echo "The string being operated upon is \"$a\"." # length: length of string b=`expr length $a` echo "Length of \"$a\" is $b." # index: position of first character in substring # that matches a character in string b=`expr index $a 23` echo "Numerical position of first \"2\" in \"$a\" is \"$b\"." # substr: extract substring, starting position & length specified b=`expr substr $a 2 6` echo "Substring of \"$a\", starting at position 2,\ and 6 chars long is \"$b\"." # The default behavior of the 'match' operations is to #+ search for the specified match at the BEGINNING of the string. # # Using Regular Expressions ... b=`expr match "$a" '[0-9]*'` # Numerical count. echo Number of digits at the beginning of \"$a\" is $b. b=`expr match "$a" '\([0-9]*\)'` # Note that escaped parentheses # == == #+ trigger substring match. echo "The digits at the beginning of \"$a\" are \"$b\"." echo exit 0 |
Added ex45a.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 | #!/bin/bash echo echo "String operations using \"expr \$string : \" construct" echo "===================================================" echo a=1234zipper5FLIPPER43231 echo "The string being operated upon is \"`expr "$a" : '\(.*\)'`\"." # Escaped parentheses grouping operator. == == # *************************** #+ Escaped parentheses #+ match a substring # *************************** # If no escaped parentheses ... #+ then 'expr' converts the string operand to an integer. echo "Length of \"$a\" is `expr "$a" : '.*'`." # Length of string echo "Number of digits at the beginning of \"$a\" is `expr "$a" : '[0-9]*'`." # ------------------------------------------------------------------------- # echo echo "The digits at the beginning of \"$a\" are `expr "$a" : '\([0-9]*\)'`." # == == echo "The first 7 characters of \"$a\" are `expr "$a" : '\(.......\)'`." # ===== == == # Again, escaped parentheses force a substring match. # echo "The last 7 characters of \"$a\" are `expr "$a" : '.*\(.......\)'`." # ==== end of string operator ^^ # (In fact, means skip over one or more of any characters until specified #+ substring found.) echo exit 0 |
Added ex46.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 | #!/bin/bash echo let a=11 # Same as 'a=11' let a=a+5 # Equivalent to let "a = a + 5" # (Double quotes and spaces make it more readable.) echo "11 + 5 = $a" # 16 let "a <<= 3" # Equivalent to let "a = a << 3" echo "\"\$a\" (=16) left-shifted 3 places = $a" # 128 let "a /= 4" # Equivalent to let "a = a / 4" echo "128 / 4 = $a" # 32 let "a -= 5" # Equivalent to let "a = a - 5" echo "32 - 5 = $a" # 27 let "a *= 10" # Equivalent to let "a = a * 10" echo "27 * 10 = $a" # 270 let "a %= 8" # Equivalent to let "a = a % 8" echo "270 modulo 8 = $a (270 / 8 = 33, remainder $a)" # 6 # Does "let" permit C-style operators? # Yes, just as the (( ... )) double-parentheses construct does. let a++ # C-style (post) increment. echo "6++ = $a" # 6++ = 7 let a-- # C-style decrement. echo "7-- = $a" # 7-- = 6 # Of course, ++a, etc., also allowed . . . echo # Trinary operator. # Note that $a is 6, see above. let "t = a<7?7:11" # True echo $t # 7 let a++ let "t = a<7?7:11" # False echo $t # 11 exit |
Added ex47.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 | #!/bin/bash # printf demo declare -r PI=3.14159265358979 # Read-only variable, i.e., a constant. declare -r DecimalConstant=31373 Message1="Greetings," Message2="Earthling." echo printf "Pi to 2 decimal places = %1.2f" $PI echo printf "Pi to 9 decimal places = %1.9f" $PI # It even rounds off correctly. printf "\n" # Prints a line feed, # Equivalent to 'echo' . . . printf "Constant = \t%d\n" $DecimalConstant # Inserts tab (\t). printf "%s %s \n" $Message1 $Message2 echo # ==========================================# # Simulation of C function, sprintf(). # Loading a variable with a formatted string. echo Pi12=$(printf "%1.12f" $PI) echo "Pi to 12 decimal places = $Pi12" # Roundoff error! Msg=`printf "%s %s \n" $Message1 $Message2` echo $Msg; echo $Msg # As it happens, the 'sprintf' function can now be accessed #+ as a loadable module to Bash, #+ but this is not portable. exit 0 |
Added ex48.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 | #!/bin/bash # Copying a directory tree using cpio. # Advantages of using 'cpio': # Speed of copying. It's faster than 'tar' with pipes. # Well suited for copying special files (named pipes, etc.) #+ that 'cp' may choke on. ARGS=2 E_BADARGS=65 if [ $# -ne "$ARGS" ] then echo "Usage: `basename $0` source destination" exit $E_BADARGS fi source="$1" destination="$2" ################################################################### find "$source" -depth | cpio -admvp "$destination" # ^^^^^ ^^^^^ # Read the 'find' and 'cpio' info pages to decipher these options. # The above works only relative to $PWD (current directory) . . . #+ full pathnames are specified. ################################################################### # Exercise: # -------- # Add code to check the exit status ($?) of the 'find | cpio' pipe #+ and output appropriate error messages if anything went wrong. exit $? |
Added ex49.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 | #!/bin/bash # Changes a file to all uppercase. E_BADARGS=85 if [ -z "$1" ] # Standard check for command-line arg. then echo "Usage: `basename $0` filename" exit $E_BADARGS fi tr a-z A-Z <"$1" # Same effect as above, but using POSIX character set notation: # tr '[:lower:]' '[:upper:]' <"$1" # Thanks, S.C. # Or even . . . # cat "$1" | tr a-z A-Z # Or dozens of other ways . . . exit 0 # Exercise: # Rewrite this script to give the option of changing a file #+ to *either* upper or lowercase. # Hint: Use either the "case" or "select" command. |
Added ex5.sh.
> > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/bash echo hello echo $? # Exit status 0 returned because command executed successfully. lskdf # Unrecognized command. echo $? # Non-zero exit status returned -- command failed to execute. echo exit 113 # Will return 113 to shell. # To verify this, type "echo $?" after script terminates. # By convention, an 'exit 0' indicates success, #+ while a non-zero exit value means an error or anomalous condition. # See the "Exit Codes With Special Meanings" appendix. |
Added ex50.sh.
> > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash WIDTH=40 # 40 columns wide. b=`ls /usr/local/bin` # Get a file listing... echo $b | fmt -w $WIDTH # Could also have been done by # echo $b | fold - -s -w $WIDTH exit 0 |
Added ex51.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash # Exercising the 'date' command echo "The number of days since the year's beginning is `date +%j`." # Needs a leading '+' to invoke formatting. # %j gives day of year. echo "The number of seconds elapsed since 01/01/1970 is `date +%s`." # %s yields number of seconds since "UNIX epoch" began, #+ but how is this useful? prefix=temp suffix=$(date +%s) # The "+%s" option to 'date' is GNU-specific. filename=$prefix.$suffix echo "Temporary filename = $filename" # It's great for creating "unique and random" temp filenames, #+ even better than using $$. # Read the 'date' man page for more formatting options. exit 0 |
Added ex52.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 | #!/bin/bash # Uudecodes all uuencoded files in current working directory. lines=35 # Allow 35 lines for the header (very generous). for File in * # Test all the files in $PWD. do search1=`head -n $lines $File | grep begin | wc -w` search2=`tail -n $lines $File | grep end | wc -w` # Uuencoded files have a "begin" near the beginning, #+ and an "end" near the end. if [ "$search1" -gt 0 ] then if [ "$search2" -gt 0 ] then echo "uudecoding - $File -" uudecode $File fi fi done # Note that running this script upon itself fools it #+ into thinking it is a uuencoded file, #+ because it contains both "begin" and "end". # Exercise: # -------- # Modify this script to check each file for a newsgroup header, #+ and skip to next if not found. exit 0 |
Added ex53.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 | #!/bin/bash # Using "seq" echo for a in `seq 80` # or for a in $( seq 80 ) # Same as for a in 1 2 3 4 5 ... 80 (saves much typing!). # May also use 'jot' (if present on system). do echo -n "$a " done # 1 2 3 4 5 ... 80 # Example of using the output of a command to generate # the [list] in a "for" loop. echo; echo COUNT=80 # Yes, 'seq' also accepts a replaceable parameter. for a in `seq $COUNT` # or for a in $( seq $COUNT ) do echo -n "$a " done # 1 2 3 4 5 ... 80 echo; echo BEGIN=75 END=80 for a in `seq $BEGIN $END` # Giving "seq" two arguments starts the count at the first one, #+ and continues until it reaches the second. do echo -n "$a " done # 75 76 77 78 79 80 echo; echo BEGIN=45 INTERVAL=5 END=80 for a in `seq $BEGIN $INTERVAL $END` # Giving "seq" three arguments starts the count at the first one, #+ uses the second for a step interval, #+ and continues until it reaches the third. do echo -n "$a " done # 45 50 55 60 65 70 75 80 echo; echo exit 0 |
Added ex54.sh.
> > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/bash exec echo "Exiting \"$0\" at line $LINENO." # Exit from script here. # $LINENO is an internal Bash variable set to the line number it's on. # ---------------------------------- # The following lines never execute. echo "This echo fails to echo." exit 99 # This script will not exit here. # Check exit value after script terminates #+ with an 'echo $?'. # It will *not* be 99. |
Added ex55.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 | #!/bin/sh # --> Comments added by the author of this document marked by "# -->". # --> This is part of the 'rc' script package # --> by Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>. # --> This particular script seems to be Red Hat / FC specific # --> (may not be present in other distributions). # Bring down all unneeded services that are still running #+ (there shouldn't be any, so this is just a sanity check) for i in /var/lock/subsys/*; do # --> Standard for/in loop, but since "do" is on same line, # --> it is necessary to add ";". # Check if the script is there. [ ! -f $i ] && continue # --> This is a clever use of an "and list", equivalent to: # --> if [ ! -f "$i" ]; then continue # Get the subsystem name. subsys=${i#/var/lock/subsys/} # --> Match variable name, which, in this case, is the file name. # --> This is the exact equivalent of subsys=`basename $i`. # --> It gets it from the lock file name # -->+ (if there is a lock file, # -->+ that's proof the process has been running). # --> See the "lockfile" entry, above. # Bring the subsystem down. if [ -f /etc/rc.d/init.d/$subsys.init ]; then /etc/rc.d/init.d/$subsys.init stop else /etc/rc.d/init.d/$subsys stop # --> Suspend running jobs and daemons. # --> Note that "stop" is a positional parameter, # -->+ not a shell builtin. fi done |
Added ex56.sh.
> > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash # Shell commands may precede the Perl script. echo "This precedes the embedded Perl script within \"$0\"." echo "===============================================================" perl -e 'print "This line prints from an embedded Perl script.\n";' # Like sed, Perl also uses the "-e" option. echo "===============================================================" echo "However, the script may also contain shell and system commands." exit 0 |
Added ex56py.sh.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash # ex56py.sh # Shell commands may precede the Python script. echo "This precedes the embedded Python script within \"$0.\"" echo "===============================================================" python -c 'print "This line prints from an embedded Python script.\n";' # Unlike sed and perl, Python uses the "-c" option. python -c 'k = raw_input( "Hit a key to exit to outer script. " )' echo "===============================================================" echo "However, the script may also contain shell and system commands." exit 0 |
Added ex57.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 | #!/bin/bash # badname.sh # Delete filenames in current directory containing bad characters. for filename in * do badname=`echo "$filename" | sed -n /[\+\{\;\"\\\=\?~\(\)\<\>\&\*\|\$]/p` # badname=`echo "$filename" | sed -n '/[+{;"\=?~()<>&*|$]/p'` also works. # Deletes files containing these nasties: + { ; " \ = ? ~ ( ) < > & * | $ # rm $badname 2>/dev/null # ^^^^^^^^^^^ Error messages deep-sixed. done # Now, take care of files containing all manner of whitespace. find . -name "* *" -exec rm -f {} \; # The path name of the file that _find_ finds replaces the "{}". # The '\' ensures that the ';' is interpreted literally, as end of command. exit 0 #--------------------------------------------------------------------- # Commands below this line will not execute because of _exit_ command. # An alternative to the above script: find . -name '*[+{;"\\=?~()<>&*|$ ]*' -maxdepth 0 \ -exec rm -f '{}' \; # The "-maxdepth 0" option ensures that _find_ will not search #+ subdirectories below $PWD. # (Thanks, S.C.) |
Added ex58.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 | #!/bin/bash # Backs up all files in current directory modified within last 24 hours #+ in a "tarball" (tarred and gzipped file). BACKUPFILE=backup-$(date +%m-%d-%Y) # Embeds date in backup filename. # Thanks, Joshua Tschida, for the idea. archive=${1:-$BACKUPFILE} # If no backup-archive filename specified on command-line, #+ it will default to "backup-MM-DD-YYYY.tar.gz." tar cvf - `find . -mtime -1 -type f -print` > $archive.tar gzip $archive.tar echo "Directory $PWD backed up in archive file \"$archive.tar.gz\"." # Stephane Chazelas points out that the above code will fail #+ if there are too many files found #+ or if any filenames contain blank characters. # He suggests the following alternatives: # ------------------------------------------------------------------- # find . -mtime -1 -type f -print0 | xargs -0 tar rvf "$archive.tar" # using the GNU version of "find". # find . -mtime -1 -type f -exec tar rvf "$archive.tar" '{}' \; # portable to other UNIX flavors, but much slower. # ------------------------------------------------------------------- exit 0 |
Added ex59.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 | #!/bin/bash # ex59.sh: Exercising functions (simple). JUST_A_SECOND=1 funky () { # This is about as simple as functions get. echo "This is a funky function." echo "Now exiting funky function." } # Function declaration must precede call. fun () { # A somewhat more complex function. i=0 REPEATS=30 echo echo "And now the fun really begins." echo sleep $JUST_A_SECOND # Hey, wait a second! while [ $i -lt $REPEATS ] do echo "----------FUNCTIONS---------->" echo "<------------ARE-------------" echo "<------------FUN------------>" echo let "i+=1" done } # Now, call the functions. funky fun exit $? |
Added ex6.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 | #!/bin/bash # Check some of the system's environmental variables. # This is good preventative maintenance. # If, for example, $USER, the name of the person at the console, is not set, #+ the machine will not recognize you. : ${HOSTNAME?} ${USER?} ${HOME?} ${MAIL?} echo echo "Name of the machine is $HOSTNAME." echo "You are $USER." echo "Your home directory is $HOME." echo "Your mail INBOX is located in $MAIL." echo echo "If you are reading this message," echo "critical environmental variables have been set." echo echo # ------------------------------------------------------ # The ${variablename?} construction can also check #+ for variables set within the script. ThisVariable=Value-of-ThisVariable # Note, by the way, that string variables may be set #+ to characters disallowed in their names. : ${ThisVariable?} echo "Value of ThisVariable is $ThisVariable". echo; echo : ${ZZXy23AB?"ZZXy23AB has not been set."} # Since ZZXy23AB has not been set, #+ then the script terminates with an error message. # You can specify the error message. # : ${variablename?"ERROR MESSAGE"} # Same result with: dummy_variable=${ZZXy23AB?} # dummy_variable=${ZZXy23AB?"ZXy23AB has not been set."} # # echo ${ZZXy23AB?} >/dev/null # Compare these methods of checking whether a variable has been set #+ with "set -u" . . . echo "You will not see this message, because script already terminated." HERE=0 exit $HERE # Will NOT exit here. # In fact, this script will return an exit status (echo $?) of 1. |
Added ex60.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 | #!/bin/bash # Functions and parameters DEFAULT=default # Default param value. func2 () { if [ -z "$1" ] # Is parameter #1 zero length? then echo "-Parameter #1 is zero length.-" # Or no parameter passed. else echo "-Parameter #1 is \"$1\".-" fi variable=${1-$DEFAULT} # What does echo "variable = $variable" #+ parameter substitution show? # --------------------------- # It distinguishes between #+ no param and a null param. if [ "$2" ] then echo "-Parameter #2 is \"$2\".-" fi return 0 } echo echo "Nothing passed." func2 # Called with no params echo echo "Zero-length parameter passed." func2 "" # Called with zero-length param echo echo "Null parameter passed." func2 "$uninitialized_param" # Called with uninitialized param echo echo "One parameter passed." func2 first # Called with one param echo echo "Two parameters passed." func2 first second # Called with two params echo echo "\"\" \"second\" passed." func2 "" second # Called with zero-length first parameter echo # and ASCII string as a second one. exit 0 |
Added ex61.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 | #!/bin/bash # Arabic number to Roman numeral conversion # Range: 0 - 200 # It's crude, but it works. # Extending the range and otherwise improving the script is left as an exercise. # Usage: roman number-to-convert LIMIT=200 E_ARG_ERR=65 E_OUT_OF_RANGE=66 if [ -z "$1" ] then echo "Usage: `basename $0` number-to-convert" exit $E_ARG_ERR fi num=$1 if [ "$num" -gt $LIMIT ] then echo "Out of range!" exit $E_OUT_OF_RANGE fi to_roman () # Must declare function before first call to it. { number=$1 factor=$2 rchar=$3 let "remainder = number - factor" while [ "$remainder" -ge 0 ] do echo -n $rchar let "number -= factor" let "remainder = number - factor" done return $number # Exercises: # --------- # 1) Explain how this function works. # Hint: division by successive subtraction. # 2) Extend to range of the function. # Hint: use "echo" and command-substitution capture. } to_roman $num 100 C num=$? to_roman $num 90 LXXXX num=$? to_roman $num 50 L num=$? to_roman $num 40 XL num=$? to_roman $num 10 X num=$? to_roman $num 9 IX num=$? to_roman $num 5 V num=$? to_roman $num 4 IV num=$? to_roman $num 1 I # Successive calls to conversion function! # Is this really necessary??? Can it be simplified? echo exit |
Added ex62.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 | #!/bin/bash # ex62.sh: Global and local variables inside a function. func () { local loc_var=23 # Declared as local variable. echo # Uses the 'local' builtin. echo "\"loc_var\" in function = $loc_var" global_var=999 # Not declared as local. # Therefore, defaults to global. echo "\"global_var\" in function = $global_var" } func # Now, to see if local variable "loc_var" exists outside the function. echo echo "\"loc_var\" outside function = $loc_var" # $loc_var outside function = # No, $loc_var not visible globally. echo "\"global_var\" outside function = $global_var" # $global_var outside function = 999 # $global_var is visible globally. echo exit 0 # In contrast to C, a Bash variable declared inside a function #+ is local ONLY if declared as such. |
Added ex63.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 | #!/bin/bash # factorial # --------- # Does bash permit recursion? # Well, yes, but... # It's so slow that you gotta have rocks in your head to try it. MAX_ARG=5 E_WRONG_ARGS=85 E_RANGE_ERR=86 if [ -z "$1" ] then echo "Usage: `basename $0` number" exit $E_WRONG_ARGS fi if [ "$1" -gt $MAX_ARG ] then echo "Out of range ($MAX_ARG is maximum)." # Let's get real now. # If you want greater range than this, #+ rewrite it in a Real Programming Language. exit $E_RANGE_ERR fi fact () { local number=$1 # Variable "number" must be declared as local, #+ otherwise this doesn't work. if [ "$number" -eq 0 ] then factorial=1 # Factorial of 0 = 1. else let "decrnum = number - 1" fact $decrnum # Recursive function call (the function calls itself). let "factorial = $number * $?" fi return $factorial } fact $1 echo "Factorial of $1 is $?." exit 0 |
Added ex64.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 | #!/bin/bash # and list if [ ! -z "$1" ] && echo "Argument #1 = $1" && [ ! -z "$2" ] && \ # ^^ ^^ ^^ echo "Argument #2 = $2" then echo "At least 2 arguments passed to script." # All the chained commands return true. else echo "Fewer than 2 arguments passed to script." # At least one of the chained commands returns false. fi # Note that "if [ ! -z $1 ]" works, but its alleged equivalent, # "if [ -n $1 ]" does not. # However, quoting fixes this. # if "[ -n "$1" ]" works. # ^ ^ Careful! # It is always best to QUOTE the variables being tested. # This accomplishes the same thing, using "pure" if/then statements. if [ ! -z "$1" ] then echo "Argument #1 = $1" fi if [ ! -z "$2" ] then echo "Argument #2 = $2" echo "At least 2 arguments passed to script." else echo "Fewer than 2 arguments passed to script." fi # It's longer and more ponderous than using an "and list". exit $? |
Added ex65.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 | #!/bin/bash # delete.sh, a not-so-cunning file deletion utility. # Usage: delete filename E_BADARGS=85 if [ -z "$1" ] then echo "Usage: `basename $0` filename" exit $E_BADARGS # No arg? Bail out. else file=$1 # Set filename. fi [ ! -f "$file" ] && echo "File \"$file\" not found. \ Cowardly refusing to delete a nonexistent file." # AND LIST, to give error message if file not present. # Note echo message continuing on to a second line after an escape. [ ! -f "$file" ] || (rm -f $file; echo "File \"$file\" deleted.") # OR LIST, to delete file if present. # Note logic inversion above. # AND LIST executes on true, OR LIST on false. exit $? |
Added ex66.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 | #!/bin/bash area[11]=23 area[13]=37 area[51]=UFOs # Array members need not be consecutive or contiguous. # Some members of the array can be left uninitialized. # Gaps in the array are okay. # In fact, arrays with sparse data ("sparse arrays") #+ are useful in spreadsheet-processing software. echo -n "area[11] = " echo ${area[11]} # {curly brackets} needed. echo -n "area[13] = " echo ${area[13]} echo "Contents of area[51] are ${area[51]}." # Contents of uninitialized array variable print blank (null variable). echo -n "area[43] = " echo ${area[43]} echo "(area[43] unassigned)" echo # Sum of two array variables assigned to third area[5]=`expr ${area[11]} + ${area[13]}` echo "area[5] = area[11] + area[13]" echo -n "area[5] = " echo ${area[5]} area[6]=`expr ${area[11]} + ${area[51]}` echo "area[6] = area[11] + area[51]" echo -n "area[6] = " echo ${area[6]} # This fails because adding an integer to a string is not permitted. echo; echo; echo # ----------------------------------------------------------------- # Another array, "area2". # Another way of assigning array variables... # array_name=( XXX YYY ZZZ ... ) area2=( zero one two three four ) echo -n "area2[0] = " echo ${area2[0]} # Aha, zero-based indexing (first element of array is [0], not [1]). echo -n "area2[1] = " echo ${area2[1]} # [1] is second element of array. # ----------------------------------------------------------------- echo; echo; echo # ----------------------------------------------- # Yet another array, "area3". # Yet another way of assigning array variables... # array_name=([xx]=XXX [yy]=YYY ...) area3=([17]=seventeen [24]=twenty-four) echo -n "area3[17] = " echo ${area3[17]} echo -n "area3[24] = " echo ${area3[24]} # ----------------------------------------------- exit 0 |
Added ex67.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 | #!/bin/bash declare -a colors # All subsequent commands in this script will treat #+ the variable "colors" as an array. echo "Enter your favorite colors (separated from each other by a space)." read -a colors # Enter at least 3 colors to demonstrate features below. # Special option to 'read' command, #+ allowing assignment of elements in an array. echo element_count=${#colors[@]} # Special syntax to extract number of elements in array. # element_count=${#colors[*]} works also. # # The "@" variable allows word splitting within quotes #+ (extracts variables separated by whitespace). # # This corresponds to the behavior of "$@" and "$*" #+ in positional parameters. index=0 while [ "$index" -lt "$element_count" ] do # List all the elements in the array. echo ${colors[$index]} # ${colors[index]} also works because it's within ${ ... } brackets. let "index = $index + 1" # Or: # ((index++)) done # Each array element listed on a separate line. # If this is not desired, use echo -n "${colors[$index]} " # # Doing it with a "for" loop instead: # for i in "${colors[@]}" # do # echo "$i" # done # (Thanks, S.C.) echo # Again, list all the elements in the array, but using a more elegant method. echo ${colors[@]} # echo ${colors[*]} also works. echo # The "unset" command deletes elements of an array, or entire array. unset colors[1] # Remove 2nd element of array. # Same effect as colors[1]= echo ${colors[@]} # List array again, missing 2nd element. unset colors # Delete entire array. # unset colors[*] and #+ unset colors[@] also work. echo; echo -n "Colors gone." echo ${colors[@]} # List array again, now empty. exit 0 |
Added ex68.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 | #!/bin/bash # sieve.sh (ex68.sh) # Sieve of Eratosthenes # Ancient algorithm for finding prime numbers. # This runs a couple of orders of magnitude slower #+ than the equivalent program written in C. LOWER_LIMIT=1 # Starting with 1. UPPER_LIMIT=1000 # Up to 1000. # (You may set this higher . . . if you have time on your hands.) PRIME=1 NON_PRIME=0 let SPLIT=UPPER_LIMIT/2 # Optimization: # Need to test numbers only halfway to upper limit. Why? declare -a Primes # Primes[] is an array. initialize () { # Initialize the array. i=$LOWER_LIMIT until [ "$i" -gt "$UPPER_LIMIT" ] do Primes[i]=$PRIME let "i += 1" done # Assume all array members guilty (prime) #+ until proven innocent. } print_primes () { # Print out the members of the Primes[] array tagged as prime. i=$LOWER_LIMIT until [ "$i" -gt "$UPPER_LIMIT" ] do if [ "${Primes[i]}" -eq "$PRIME" ] then printf "%8d" $i # 8 spaces per number gives nice, even columns. fi let "i += 1" done } sift () # Sift out the non-primes. { let i=$LOWER_LIMIT+1 # Let's start with 2. until [ "$i" -gt "$UPPER_LIMIT" ] do if [ "${Primes[i]}" -eq "$PRIME" ] # Don't bother sieving numbers already sieved (tagged as non-prime). then t=$i while [ "$t" -le "$UPPER_LIMIT" ] do let "t += $i " Primes[t]=$NON_PRIME # Tag as non-prime all multiples. done fi let "i += 1" done } # ============================================== # main () # Invoke the functions sequentially. initialize sift print_primes # This is what they call structured programming. # ============================================== echo exit 0 # -------------------------------------------------------- # # Code below line will not execute, because of 'exit.' # This improved version of the Sieve, by Stephane Chazelas, #+ executes somewhat faster. # Must invoke with command-line argument (limit of primes). UPPER_LIMIT=$1 # From command-line. let SPLIT=UPPER_LIMIT/2 # Halfway to max number. Primes=( '' $(seq $UPPER_LIMIT) ) i=1 until (( ( i += 1 ) > SPLIT )) # Need check only halfway. do if [[ -n ${Primes[i]} ]] then t=$i until (( ( t += i ) > UPPER_LIMIT )) do Primes[t]= done fi done echo ${Primes[*]} exit $? |
Added ex68a.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 | #!/bin/bash # Optimized Sieve of Eratosthenes # Script by Jared Martin, with very minor changes by ABS Guide author. # Used in ABS Guide with permission (thanks!). # Based on script in Advanced Bash Scripting Guide. # http://tldp.org/LDP/abs/html/arrays.html#PRIMES0 (ex68.sh). # http://www.cs.hmc.edu/~oneill/papers/Sieve-JFP.pdf (reference) # Check results against http://primes.utm.edu/lists/small/1000.txt # Necessary but not sufficient would be, e.g., # (($(sieve 7919 | wc -w) == 1000)) && echo "7919 is the 1000th prime" UPPER_LIMIT=${1:?"Need an upper limit of primes to search."} Primes=( '' $(seq ${UPPER_LIMIT}) ) typeset -i i t Primes[i=1]='' # 1 is not a prime. until (( ( i += 1 ) > (${UPPER_LIMIT}/i) )) # Need check only ith-way. do # Why? if ((${Primes[t=i*(i-1), i]})) # Obscure, but instructive, use of arithmetic expansion in subscript. then until (( ( t += i ) > ${UPPER_LIMIT} )) do Primes[t]=; done fi done # echo ${Primes[*]} echo # Change to original script for pretty-printing (80-col. display). printf "%8d" ${Primes[*]} echo; echo exit $? |
Added ex69.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 | #!/bin/bash # Noninteractive use of 'vi' to edit a file. # Emulates 'sed'. E_BADARGS=85 if [ -z "$1" ] then echo "Usage: `basename $0` filename" exit $E_BADARGS fi TARGETFILE=$1 # Insert 2 lines in file, then save. #--------Begin here document-----------# vi $TARGETFILE <<x23LimitStringx23 i This is line 1 of the example file. This is line 2 of the example file. ^[ ZZ x23LimitStringx23 #----------End here document-----------# # Note that ^[ above is a literal escape #+ typed by Control-V <Esc>. # Bram Moolenaar points out that this may not work with 'vim' #+ because of possible problems with terminal interaction. exit |
Added ex7.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 | #!/bin/bash var1=abcd-1234-defg echo "var1 = $var1" t=${var1#*-*} echo "var1 (with everything, up to and including first - stripped out) = $t" # t=${var1#*-} works just the same, #+ since # matches the shortest string, #+ and * matches everything preceding, including an empty string. # (Thanks, Stephane Chazelas, for pointing this out.) t=${var1##*-*} echo "If var1 contains a \"-\", returns empty string... var1 = $t" t=${var1%*-*} echo "var1 (with everything from the last - on stripped out) = $t" echo # ------------------------------------------- path_name=/home/bozo/ideas/thoughts.for.today # ------------------------------------------- echo "path_name = $path_name" t=${path_name##/*/} echo "path_name, stripped of prefixes = $t" # Same effect as t=`basename $path_name` in this particular case. # t=${path_name%/}; t=${t##*/} is a more general solution, #+ but still fails sometimes. # If $path_name ends with a newline, then `basename $path_name` will not work, #+ but the above expression will. # (Thanks, S.C.) t=${path_name%/*.*} # Same effect as t=`dirname $path_name` echo "path_name, stripped of suffixes = $t" # These will fail in some cases, such as "../", "/foo////", # "foo/", "/". # Removing suffixes, especially when the basename has no suffix, #+ but the dirname does, also complicates matters. # (Thanks, S.C.) echo t=${path_name:11} echo "$path_name, with first 11 chars stripped off = $t" t=${path_name:11:5} echo "$path_name, with first 11 chars stripped off, length 5 = $t" echo t=${path_name/bozo/clown} echo "$path_name with \"bozo\" replaced by \"clown\" = $t" t=${path_name/today/} echo "$path_name with \"today\" deleted = $t" t=${path_name//o/O} echo "$path_name with all o's capitalized = $t" t=${path_name//o/} echo "$path_name with all o's deleted = $t" exit 0 |
Added ex70.sh.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash wall <<zzz23EndOfMessagezzz23 E-mail your noontime orders for pizza to the system administrator. (Add an extra dollar for anchovy or mushroom topping.) # Additional message text goes here. # Note: 'wall' prints comment lines. zzz23EndOfMessagezzz23 # Could have been done more efficiently by # wall <message-file # However, embedding the message template in a script #+ is a quick-and-dirty one-off solution. exit |
Added ex71.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 | #!/bin/bash # 'echo' is fine for printing single line messages, #+ but somewhat problematic for for message blocks. # A 'cat' here document overcomes this limitation. cat <<End-of-message ------------------------------------- This is line 1 of the message. This is line 2 of the message. This is line 3 of the message. This is line 4 of the message. This is the last line of the message. ------------------------------------- End-of-message # Replacing line 7, above, with #+ cat > $Newfile <<End-of-message #+ ^^^^^^^^^^ #+ writes the output to the file $Newfile, rather than to stdout. exit 0 #-------------------------------------------- # Code below disabled, due to "exit 0" above. # S.C. points out that the following also works. echo "------------------------------------- This is line 1 of the message. This is line 2 of the message. This is line 3 of the message. This is line 4 of the message. This is the last line of the message. -------------------------------------" # However, text may not include double quotes unless they are escaped. |
Added ex71a.sh.
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash # Same as previous example, but... # The - option to a here document <<- #+ suppresses leading tabs in the body of the document, #+ but *not* spaces. cat <<-ENDOFMESSAGE This is line 1 of the message. This is line 2 of the message. This is line 3 of the message. This is line 4 of the message. This is the last line of the message. ENDOFMESSAGE # The output of the script will be flush left. # Leading tab in each line will not show. # Above 5 lines of "message" prefaced by a tab, not spaces. # Spaces not affected by <<- . # Note that this option has no effect on *embedded* tabs. exit 0 |
Added ex71b.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 | #!/bin/bash # Another 'cat' here document, using parameter substitution. # Try it with no command-line parameters, ./scriptname # Try it with one command-line parameter, ./scriptname Mortimer # Try it with one two-word quoted command-line parameter, # ./scriptname "Mortimer Jones" CMDLINEPARAM=1 # Expect at least command-line parameter. if [ $# -ge $CMDLINEPARAM ] then NAME=$1 # If more than one command-line param, #+ then just take the first. else NAME="John Doe" # Default, if no command-line parameter. fi RESPONDENT="the author of this fine script" cat <<Endofmessage Hello, there, $NAME. Greetings to you, $NAME, from $RESPONDENT. # This comment shows up in the output (why?). Endofmessage # Note that the blank lines show up in the output. # So does the comment. exit |
Added ex71c.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 | #!/bin/bash # A 'cat' here-document, but with parameter substitution disabled. NAME="John Doe" RESPONDENT="the author of this fine script" cat <<'Endofmessage' Hello, there, $NAME. Greetings to you, $NAME, from $RESPONDENT. Endofmessage # No parameter substitution when the "limit string" is quoted or escaped. # Either of the following at the head of the here document would have #+ the same effect. # cat <<"Endofmessage" # cat <<\Endofmessage # And, likewise: cat <<"SpecialCharTest" Directory listing would follow if limit string were not quoted. `ls -l` Arithmetic expansion would take place if limit string were not quoted. $((5 + 3)) A a single backslash would echo if limit string were not quoted. \\ SpecialCharTest exit |
Added ex72.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 | #!/bin/bash # upload.sh # Upload file pair (Filename.lsm, Filename.tar.gz) #+ to incoming directory at Sunsite/UNC (ibiblio.org). # Filename.tar.gz is the tarball itself. # Filename.lsm is the descriptor file. # Sunsite requires "lsm" file, otherwise will bounce contributions. E_ARGERROR=85 if [ -z "$1" ] then echo "Usage: `basename $0` Filename-to-upload" exit $E_ARGERROR fi Filename=`basename $1` # Strips pathname out of file name. Server="ibiblio.org" Directory="/incoming/Linux" # These need not be hard-coded into script, #+ but may instead be changed to command-line argument. Password="your.e-mail.address" # Change above to suit. ftp -n $Server <<End-Of-Session # -n option disables auto-logon user anonymous "$Password" # If this doesn't work, then try: # quote user anonymous "$Password" binary bell # Ring 'bell' after each file transfer. cd $Directory put "$Filename.lsm" put "$Filename.tar.gz" bye End-Of-Session exit 0 |
Added ex73.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 | #!/bin/bash # Creating a swap file. # A swap file provides a temporary storage cache #+ which helps speed up certain filesystem operations. ROOT_UID=0 # Root has $UID 0. E_WRONG_USER=85 # Not root? FILE=/swap BLOCKSIZE=1024 MINBLOCKS=40 SUCCESS=0 # This script must be run as root. if [ "$UID" -ne "$ROOT_UID" ] then echo; echo "You must be root to run this script."; echo exit $E_WRONG_USER fi blocks=${1:-$MINBLOCKS} # Set to default of 40 blocks, #+ if nothing specified on command-line. # This is the equivalent of the command block below. # -------------------------------------------------- # if [ -n "$1" ] # then # blocks=$1 # else # blocks=$MINBLOCKS # fi # -------------------------------------------------- if [ "$blocks" -lt $MINBLOCKS ] then blocks=$MINBLOCKS # Must be at least 40 blocks long. fi ###################################################################### echo "Creating swap file of size $blocks blocks (KB)." dd if=/dev/zero of=$FILE bs=$BLOCKSIZE count=$blocks # Zero out file. mkswap $FILE $blocks # Designate it a swap file. swapon $FILE # Activate swap file. retcode=$? # Everything worked? # Note that if one or more of these commands fails, #+ then it could cause nasty problems. ###################################################################### # Exercise: # Rewrite the above block of code so that if it does not execute #+ successfully, then: # 1) an error message is echoed to stderr, # 2) all temporary files are cleaned up, and # 3) the script exits in an orderly fashion with an #+ appropriate error code. echo "Swap file created and activated." exit $retcode |
Added ex74.sh.
> > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/bash # ex74.sh # This is a buggy script. # Where, oh where is the error? a=37 if [$a -gt 27 ] then echo $a fi exit $? # 0! Why? |
Added ex75.sh.
> > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/bash # This script is supposed to delete all filenames in current directory #+ containing embedded spaces. # It doesn't work. # Why not? badname=`ls | grep ' '` # Try this: # echo "$badname" rm "$badname" exit 0 |
Added ex76.sh.
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/bash # Hunting variables with a trap. trap 'echo Variable Listing --- a = $a b = $b' EXIT # EXIT is the name of the signal generated upon exit from a script. # # The command specified by the "trap" doesn't execute until #+ the appropriate signal is sent. echo "This prints before the \"trap\" --" echo "even though the script sees the \"trap\" first." echo a=39 b=36 exit 0 # Note that commenting out the 'exit' command makes no difference, #+ since the script exits in any case after running out of commands. |
Added ex77.sh.
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/bash # String expansion. # Introduced with version 2 of Bash. # Strings of the form $'xxx' #+ have the standard escaped characters interpreted. echo $'Ringing bell 3 times \a \a \a' # May only ring once with certain terminals. # Or ... # May not ring at all, depending on terminal settings. echo $'Three form feeds \f \f \f' echo $'10 newlines \n\n\n\n\n\n\n\n\n\n' echo $'\102\141\163\150' # B a s h # Octal equivalent of characters. exit |
Added ex78.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 | #!/bin/bash # Indirect variable referencing. # This has a few of the attributes of references in C++. a=letter_of_alphabet letter_of_alphabet=z echo "a = $a" # Direct reference. echo "Now a = ${!a}" # Indirect reference. # The ${!variable} notation is more intuitive than the old #+ eval var1=\$$var2 echo t=table_cell_3 table_cell_3=24 echo "t = ${!t}" # t = 24 table_cell_3=387 echo "Value of t changed to ${!t}" # 387 # No 'eval' necessary. # This is useful for referencing members of an array or table, #+ or for simulating a multi-dimensional array. # An indexing option (analogous to pointer arithmetic) #+ would have been nice. Sigh. exit 0 # See also, ind-ref.sh example. |
Added ex8.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash # Reading lines in /etc/fstab. File=/etc/fstab { read line1 read line2 } < $File echo "First line in $File is:" echo "$line1" echo echo "Second line in $File is:" echo "$line2" exit 0 # Now, how do you parse the separate fields of each line? # Hint: use awk, or . . . # . . . Hans-Joerg Diers suggests using the "set" Bash builtin. |
Added ex9.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 | #!/bin/bash # ex9.sh # Variables: assignment and substitution a=375 hello=$a # ^ ^ #------------------------------------------------------------------------- # No space permitted on either side of = sign when initializing variables. # What happens if there is a space? # "VARIABLE =value" # ^ #% Script tries to run "VARIABLE" command with one argument, "=value". # "VARIABLE= value" # ^ #% Script tries to run "value" command with #+ the environmental variable "VARIABLE" set to "". #------------------------------------------------------------------------- echo hello # hello # Not a variable reference, just the string "hello" ... echo $hello # 375 # ^ This *is* a variable reference. echo ${hello} # 375 # Likewise a variable reference, as above. # Quoting . . . echo "$hello" # 375 echo "${hello}" # 375 echo hello="A B C D" echo $hello # A B C D echo "$hello" # A B C D # As we see, echo $hello and echo "$hello" give different results. # ======================================= # Quoting a variable preserves whitespace. # ======================================= echo echo '$hello' # $hello # ^ ^ # Variable referencing disabled (escaped) by single quotes, #+ which causes the "$" to be interpreted literally. # Notice the effect of different types of quoting. hello= # Setting it to a null value. echo "\$hello (null value) = $hello" # $hello (null value) = # Note that setting a variable to a null value is not the same as #+ unsetting it, although the end result is the same (see below). # -------------------------------------------------------------- # It is permissible to set multiple variables on the same line, #+ if separated by white space. # Caution, this may reduce legibility, and may not be portable. var1=21 var2=22 var3=$V3 echo echo "var1=$var1 var2=$var2 var3=$var3" # May cause problems with legacy versions of "sh" . . . # -------------------------------------------------------------- echo; echo numbers="one two three" # ^ ^ other_numbers="1 2 3" # ^ ^ # If there is whitespace embedded within a variable, #+ then quotes are necessary. # other_numbers=1 2 3 # Gives an error message. echo "numbers = $numbers" echo "other_numbers = $other_numbers" # other_numbers = 1 2 3 # Escaping the whitespace also works. mixed_bag=2\ ---\ Whatever # ^ ^ Space after escape (\). echo "$mixed_bag" # 2 --- Whatever echo; echo echo "uninitialized_variable = $uninitialized_variable" # Uninitialized variable has null value (no value at all!). uninitialized_variable= # Declaring, but not initializing it -- #+ same as setting it to a null value, as above. echo "uninitialized_variable = $uninitialized_variable" # It still has a null value. uninitialized_variable=23 # Set it. unset uninitialized_variable # Unset it. echo "uninitialized_variable = $uninitialized_variable" # uninitialized_variable = # It still has a null value. echo exit 0 |
Added exercising-dd.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash # exercising-dd.sh # Script by Stephane Chazelas. # Somewhat modified by ABS Guide author. infile=$0 # This script. outfile=log.txt # Output file left behind. n=8 p=11 dd if=$infile of=$outfile bs=1 skip=$((n-1)) count=$((p-n+1)) 2> /dev/null # Extracts characters n to p (8 to 11) from this script ("bash"). # ---------------------------------------------------------------- echo -n "hello vertical world" | dd cbs=1 conv=unblock 2> /dev/null # Echoes "hello vertical world" vertically downward. # Why? A newline follows each character dd emits. exit $? |
Added factr.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 | #!/bin/bash # factr.sh: Factor a number MIN=2 # Will not work for number smaller than this. E_NOARGS=85 E_TOOSMALL=86 if [ -z $1 ] then echo "Usage: $0 number" exit $E_NOARGS fi if [ "$1" -lt "$MIN" ] then echo "Number to factor must be $MIN or greater." exit $E_TOOSMALL fi # Exercise: Add type checking (to reject non-integer arg). echo "Factors of $1:" # ------------------------------------------------------- echo "$1[p]s2[lip/dli%0=1dvsr]s12sid2%0=13sidvsr[dli%0=\ 1lrli2+dsi!>.]ds.xd1<2" | dc # ------------------------------------------------------- # Above code written by Michel Charpentier <charpov@cs.unh.edu> # (as a one-liner, here broken into two lines for display purposes). # Used in ABS Guide with permission (thanks!). exit # $ sh factr.sh 270138 # 2 # 3 # 11 # 4093 |
Added fc4upd.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 | #!/bin/bash # fc4upd.sh # Script author: Frank Wang. # Slight stylistic modifications by ABS Guide author. # Used in ABS Guide with permission. # Download Fedora Core 4 update from mirror site using rsync. # Should also work for newer Fedora Cores -- 5, 6, . . . # Only download latest package if multiple versions exist, #+ to save space. URL=rsync://distro.ibiblio.org/fedora-linux-core/updates/ # URL=rsync://ftp.kddilabs.jp/fedora/core/updates/ # URL=rsync://rsync.planetmirror.com/fedora-linux-core/updates/ DEST=${1:-/var/www/html/fedora/updates/} LOG=/tmp/repo-update-$(/bin/date +%Y-%m-%d).txt PID_FILE=/var/run/${0##*/}.pid E_RETURN=85 # Something unexpected happened. # General rsync options # -r: recursive download # -t: reserve time # -v: verbose OPTS="-rtv --delete-excluded --delete-after --partial" # rsync include pattern # Leading slash causes absolute path name match. INCLUDE=( "/4/i386/kde-i18n-Chinese*" # ^ ^ # Quoting is necessary to prevent globbing. ) # rsync exclude pattern # Temporarily comment out unwanted pkgs using "#" . . . EXCLUDE=( /1 /2 /3 /testing /4/SRPMS /4/ppc /4/x86_64 /4/i386/debug "/4/i386/kde-i18n-*" "/4/i386/openoffice.org-langpack-*" "/4/i386/*i586.rpm" "/4/i386/GFS-*" "/4/i386/cman-*" "/4/i386/dlm-*" "/4/i386/gnbd-*" "/4/i386/kernel-smp*" # "/4/i386/kernel-xen*" # "/4/i386/xen-*" ) init () { # Let pipe command return possible rsync error, e.g., stalled network. set -o pipefail # Newly introduced in Bash, version 3. TMP=${TMPDIR:-/tmp}/${0##*/}.$$ # Store refined download list. trap "{ rm -f $TMP 2>/dev/null }" EXIT # Clear temporary file on exit. } check_pid () { # Check if process exists. if [ -s "$PID_FILE" ]; then echo "PID file exists. Checking ..." PID=$(/bin/egrep -o "^[[:digit:]]+" $PID_FILE) if /bin/ps --pid $PID &>/dev/null; then echo "Process $PID found. ${0##*/} seems to be running!" /usr/bin/logger -t ${0##*/} \ "Process $PID found. ${0##*/} seems to be running!" exit $E_RETURN fi echo "Process $PID not found. Start new process . . ." fi } # Set overall file update range starting from root or $URL, #+ according to above patterns. set_range () { include= exclude= for p in "${INCLUDE[@]}"; do include="$include --include \"$p\"" done for p in "${EXCLUDE[@]}"; do exclude="$exclude --exclude \"$p\"" done } # Retrieve and refine rsync update list. get_list () { echo $$ > $PID_FILE || { echo "Can't write to pid file $PID_FILE" exit $E_RETURN } echo -n "Retrieving and refining update list . . ." # Retrieve list -- 'eval' is needed to run rsync as a single command. # $3 and $4 is the date and time of file creation. # $5 is the full package name. previous= pre_file= pre_date=0 eval /bin/nice /usr/bin/rsync \ -r $include $exclude $URL | \ egrep '^dr.x|^-r' | \ awk '{print $3, $4, $5}' | \ sort -k3 | \ { while read line; do # Get seconds since epoch, to filter out obsolete pkgs. cur_date=$(date -d "$(echo $line | awk '{print $1, $2}')" +%s) # echo $cur_date # Get file name. cur_file=$(echo $line | awk '{print $3}') # echo $cur_file # Get rpm pkg name from file name, if possible. if [[ $cur_file == *rpm ]]; then pkg_name=$(echo $cur_file | sed -r -e \ 's/(^([^_-]+[_-])+)[[:digit:]]+\..*[_-].*$/\1/') else pkg_name= fi # echo $pkg_name if [ -z "$pkg_name" ]; then # If not a rpm file, echo $cur_file >> $TMP #+ then append to download list. elif [ "$pkg_name" != "$previous" ]; then # A new pkg found. echo $pre_file >> $TMP # Output latest file. previous=$pkg_name # Save current. pre_date=$cur_date pre_file=$cur_file elif [ "$cur_date" -gt "$pre_date" ]; then # If same pkg, but newer, pre_date=$cur_date #+ then update latest pointer. pre_file=$cur_file fi done echo $pre_file >> $TMP # TMP contains ALL #+ of refined list now. # echo "subshell=$BASH_SUBSHELL" } # Bracket required here to let final "echo $pre_file >> $TMP" # Remained in the same subshell ( 1 ) with the entire loop. RET=$? # Get return code of the pipe command. [ "$RET" -ne 0 ] && { echo "List retrieving failed with code $RET" exit $E_RETURN } echo "done"; echo } # Real rsync download part. get_file () { echo "Downloading..." /bin/nice /usr/bin/rsync \ $OPTS \ --filter "merge,+/ $TMP" \ --exclude '*' \ $URL $DEST \ | /usr/bin/tee $LOG RET=$? # --filter merge,+/ is crucial for the intention. # + modifier means include and / means absolute path. # Then sorted list in $TMP will contain ascending dir name and #+ prevent the following --exclude '*' from "shortcutting the circuit." echo "Done" rm -f $PID_FILE 2>/dev/null return $RET } # ------- # Main init check_pid set_range get_list get_file RET=$? # ------- if [ "$RET" -eq 0 ]; then /usr/bin/logger -t ${0##*/} "Fedora update mirrored successfully." else /usr/bin/logger -t ${0##*/} \ "Fedora update mirrored with failure code: $RET" fi exit $RET |
Added fetch_address-2.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 | #!/bin/bash4 # fetch_address-2.sh # A more elaborate version of fetch_address.sh. SUCCESS=0 E_DB=99 # Error code for missing entry. declare -A address # -A option declares associative array. store_address () { address[$1]="$2" return $? } fetch_address () { if [[ -z "${address[$1]}" ]] then echo "$1's address is not in database." return $E_DB fi echo "$1's address is ${address[$1]}." return $? } store_address "Lucas Fayne" "414 W. 13th Ave., Baltimore, MD 21236" store_address "Arvid Boyce" "202 E. 3rd St., New York, NY 10009" store_address "Velma Winston" "1854 Vermont Ave, Los Angeles, CA 90023" # Exercise: # Rewrite the above store_address calls to read data from a file, #+ then assign field 1 to name, field 2 to address in the array. # Each line in the file would have a format corresponding to the above. # Use a while-read loop to read from file, sed or awk to parse the fields. fetch_address "Lucas Fayne" # Lucas Fayne's address is 414 W. 13th Ave., Baltimore, MD 21236. fetch_address "Velma Winston" # Velma Winston's address is 1854 Vermont Ave, Los Angeles, CA 90023. fetch_address "Arvid Boyce" # Arvid Boyce's address is 202 E. 3rd St., New York, NY 10009. fetch_address "Bozo Bozeman" # Bozo Bozeman's address is not in database. exit $? # In this case, exit code = 99, since that is function return. |
Added fetch_address.sh.
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/bash4 # fetch_address.sh declare -A address # -A option declares associative array. address[Charles]="414 W. 10th Ave., Baltimore, MD 21236" address[John]="202 E. 3rd St., New York, NY 10009" address[Wilma]="1854 Vermont Ave, Los Angeles, CA 90023" echo "Charles's address is ${address[Charles]}." # Charles's address is 414 W. 10th Ave., Baltimore, MD 21236. echo "Wilma's address is ${address[Wilma]}." # Wilma's address is 1854 Vermont Ave, Los Angeles, CA 90023. echo "John's address is ${address[John]}." # John's address is 202 E. 3rd St., New York, NY 10009. echo echo "${!address[*]}" # The array indices ... # Charles John Wilma |
Added fibo.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 | #!/bin/bash # fibo.sh : Fibonacci sequence (recursive) # Author: M. Cooper # License: GPL3 # ----------algorithm-------------- # Fibo(0) = 0 # Fibo(1) = 1 # else # Fibo(j) = Fibo(j-1) + Fibo(j-2) # --------------------------------- MAXTERM=15 # Number of terms (+1) to generate. MINIDX=2 # If idx is less than 2, then Fibo(idx) = idx. Fibonacci () { idx=$1 # Doesn't need to be local. Why not? if [ "$idx" -lt "$MINIDX" ] then echo "$idx" # First two terms are 0 1 ... see above. else (( --idx )) # j-1 term1=$( Fibonacci $idx ) # Fibo(j-1) (( --idx )) # j-2 term2=$( Fibonacci $idx ) # Fibo(j-2) echo $(( term1 + term2 )) fi # An ugly, ugly kludge. # The more elegant implementation of recursive fibo in C #+ is a straightforward translation of the algorithm in lines 7 - 10. } for i in $(seq 0 $MAXTERM) do # Calculate $MAXTERM+1 terms. FIBO=$(Fibonacci $i) echo -n "$FIBO " done # 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 # Takes a while, doesn't it? Recursion in a script is slow. echo exit 0 |
Added fifo.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 | #!/bin/bash # ==> Script by James R. Van Zandt, and used here with his permission. # ==> Comments added by author of this document. HERE=`uname -n` # ==> hostname THERE=bilbo echo "starting remote backup to $THERE at `date +%r`" # ==> `date +%r` returns time in 12-hour format, i.e. "08:08:34 PM". # make sure /pipe really is a pipe and not a plain file rm -rf /pipe mkfifo /pipe # ==> Create a "named pipe", named "/pipe" ... # ==> 'su xyz' runs commands as user "xyz". # ==> 'ssh' invokes secure shell (remote login client). su xyz -c "ssh $THERE \"cat > /home/xyz/backup/${HERE}-daily.tar.gz\" < /pipe"& cd / tar -czf - bin boot dev etc home info lib man root sbin share usr var > /pipe # ==> Uses named pipe, /pipe, to communicate between processes: # ==> 'tar/gzip' writes to /pipe and 'ssh' reads from /pipe. # ==> The end result is this backs up the main directories, from / on down. # ==> What are the advantages of a "named pipe" in this situation, # ==>+ as opposed to an "anonymous pipe", with |? # ==> Will an anonymous pipe even work here? # ==> Is it necessary to delete the pipe before exiting the script? # ==> How could that be done? exit 0 |
Added fifteen.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 | #!/bin/bash # fifteen.sh # Classic "Fifteen Puzzle" # Author: Antonio Macchi # Lightly edited and commented by ABS Guide author. # Used in ABS Guide with permission. (Thanks!) # The invention of the Fifteen Puzzle is attributed to either #+ Sam Loyd or Noyes Palmer Chapman. # The puzzle was wildly popular in the late 19th-century. # Object: Rearrange the numbers so they read in order, #+ from 1 - 15: ________________ # | 1 2 3 4 | # | 5 6 7 8 | # | 9 10 11 12 | # | 13 14 15 | # ---------------- ####################### # Constants # SQUARES=16 # FAIL=70 # E_PREMATURE_EXIT=80 # ####################### ######## # Data # ######## Puzzle=( 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 " " ) ############# # Functions # ############# function swap { local tmp tmp=${Puzzle[$1]} Puzzle[$1]=${Puzzle[$2]} Puzzle[$2]=$tmp } function Jumble { # Scramble the pieces at beginning of round. local i pos1 pos2 for i in {1..100} do pos1=$(( $RANDOM % $SQUARES)) pos2=$(( $RANDOM % $SQUARES )) swap $pos1 $pos2 done } function PrintPuzzle { local i1 i2 puzpos puzpos=0 clear echo "Enter quit to exit."; echo # Better that than Ctl-C. echo ",----.----.----.----." # Top border. for i1 in {1..4} do for i2 in {1..4} do printf "| %2s " "${Puzzle[$puzpos]}" (( puzpos++ )) done echo "|" # Right-side border. test $i1 = 4 || echo "+----+----+----+----+" done echo "'----'----'----'----'" # Bottom border. } function GetNum { # Test for valid input. local puznum garbage while true do echo "Moves: $moves" # Also counts invalid moves. read -p "Number to move: " puznum garbage if [ "$puznum" = "quit" ]; then echo; exit $E_PREMATURE_EXIT; fi test -z "$puznum" -o -n "${puznum//[0-9]/}" && continue test $puznum -gt 0 -a $puznum -lt $SQUARES && break done return $puznum } function GetPosFromNum { # $1 = puzzle-number local puzpos for puzpos in {0..15} do test "${Puzzle[$puzpos]}" = "$1" && break done return $puzpos } function Move { # $1=Puzzle-pos test $1 -gt 3 && test "${Puzzle[$(( $1 - 4 ))]}" = " "\ && swap $1 $(( $1 - 4 )) && return 0 test $(( $1%4 )) -ne 3 && test "${Puzzle[$(( $1 + 1 ))]}" = " "\ && swap $1 $(( $1 + 1 )) && return 0 test $1 -lt 12 && test "${Puzzle[$(( $1 + 4 ))]}" = " "\ && swap $1 $(( $1 + 4 )) && return 0 test $(( $1%4 )) -ne 0 && test "${Puzzle[$(( $1 - 1 ))]}" = " " &&\ swap $1 $(( $1 - 1 )) && return 0 return 1 } function Solved { local pos for pos in {0..14} do test "${Puzzle[$pos]}" = $(( $pos + 1 )) || return $FAIL # Check whether number in each square = square number. done return 0 # Successful solution. } ################### MAIN () #######################{ moves=0 Jumble while true # Loop continuously until puzzle solved. do echo; echo PrintPuzzle echo while true do GetNum puznum=$? GetPosFromNum $puznum puzpos=$? ((moves++)) Move $puzpos && break done Solved && break done echo;echo PrintPuzzle echo; echo "BRAVO!"; echo exit 0 ###################################################} # Exercise: # -------- # Rewrite the script to display the letters A - O, #+ rather than the numbers 1 - 15. |
Added file-comparison.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 | #!/bin/bash # file-comparison.sh ARGS=2 # Two args to script expected. E_BADARGS=85 E_UNREADABLE=86 if [ $# -ne "$ARGS" ] then echo "Usage: `basename $0` file1 file2" exit $E_BADARGS fi if [[ ! -r "$1" || ! -r "$2" ]] then echo "Both files to be compared must exist and be readable." exit $E_UNREADABLE fi cmp $1 $2 &> /dev/null # Redirection to /dev/null buries the output of the "cmp" command. # cmp -s $1 $2 has same result ("-s" silent flag to "cmp") # Thank you Anders Gustavsson for pointing this out. # # Also works with 'diff', i.e., #+ diff $1 $2 &> /dev/null if [ $? -eq 0 ] # Test exit status of "cmp" command. then echo "File \"$1\" is identical to file \"$2\"." else echo "File \"$1\" differs from file \"$2\"." fi exit 0 |
Added file-info.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 | #!/bin/bash # fileinfo.sh FILES="/usr/sbin/accept /usr/sbin/pwck /usr/sbin/chroot /usr/bin/fakefile /sbin/badblocks /sbin/ypbind" # List of files you are curious about. # Threw in a dummy file, /usr/bin/fakefile. echo for file in $FILES do if [ ! -e "$file" ] # Check if file exists. then echo "$file does not exist."; echo continue # On to next. fi ls -l $file | awk '{ print $8 " file size: " $5 }' # Print 2 fields. whatis `basename $file` # File info. # Note that the whatis database needs to have been set up for this to work. # To do this, as root run /usr/bin/makewhatis. echo done exit 0 |
Added file-info01.sh.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash filename="*txt" for file in $filename do echo "Contents of $file" echo "---" cat "$file" echo done |
Added file-integrity.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 | #!/bin/bash # file-integrity.sh: Checking whether files in a given directory # have been tampered with. E_DIR_NOMATCH=80 E_BAD_DBFILE=81 dbfile=File_record.md5 # Filename for storing records (database file). set_up_database () { echo ""$directory"" > "$dbfile" # Write directory name to first line of file. md5sum "$directory"/* >> "$dbfile" # Append md5 checksums and filenames. } check_database () { local n=0 local filename local checksum # ------------------------------------------- # # This file check should be unnecessary, #+ but better safe than sorry. if [ ! -r "$dbfile" ] then echo "Unable to read checksum database file!" exit $E_BAD_DBFILE fi # ------------------------------------------- # while read record[n] do directory_checked="${record[0]}" if [ "$directory_checked" != "$directory" ] then echo "Directories do not match up!" # Tried to use file for a different directory. exit $E_DIR_NOMATCH fi if [ "$n" -gt 0 ] # Not directory name. then filename[n]=$( echo ${record[$n]} | awk '{ print $2 }' ) # md5sum writes records backwards, #+ checksum first, then filename. checksum[n]=$( md5sum "${filename[n]}" ) if [ "${record[n]}" = "${checksum[n]}" ] then echo "${filename[n]} unchanged." elif [ "`basename ${filename[n]}`" != "$dbfile" ] # Skip over checksum database file, #+ as it will change with each invocation of script. # --- # This unfortunately means that when running #+ this script on $PWD, tampering with the #+ checksum database file will not be detected. # Exercise: Fix this. then echo "${filename[n]} : CHECKSUM ERROR!" # File has been changed since last checked. fi fi let "n+=1" done <"$dbfile" # Read from checksum database file. } # =================================================== # # main () if [ -z "$1" ] then directory="$PWD" # If not specified, else #+ use current working directory. directory="$1" fi clear # Clear screen. echo " Running file integrity check on $directory" echo # ------------------------------------------------------------------ # if [ ! -r "$dbfile" ] # Need to create database file? then echo "Setting up database file, \""$directory"/"$dbfile"\"."; echo set_up_database fi # ------------------------------------------------------------------ # check_database # Do the actual work. echo # You may wish to redirect the stdout of this script to a file, #+ especially if the directory checked has many files in it. exit 0 # For a much more thorough file integrity check, #+ consider the "Tripwire" package, #+ http://sourceforge.net/projects/tripwire/. |
Added find-splitpara.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 | #!/bin/bash # find-splitpara.sh # Finds split paragraphs in a text file, #+ and tags the line numbers. ARGCOUNT=1 # Expect one arg. OFF=0 # Flag states. ON=1 E_WRONGARGS=85 file="$1" # Target filename. lineno=1 # Line number. Start at 1. Flag=$OFF # Blank line flag. if [ $# -ne "$ARGCOUNT" ] then echo "Usage: `basename $0` FILENAME" exit $E_WRONGARGS fi file_read () # Scan file for pattern, then print line. { while read line do if [[ "$line" =~ ^[a-z] && $Flag -eq $ON ]] then # Line begins with lowercase character, following blank line. echo -n "$lineno:: " echo "$line" fi if [[ "$line" =~ ^$ ]] then # If blank line, Flag=$ON #+ set flag. else Flag=$OFF fi ((lineno++)) done } < $file # Redirect file into function's stdin. file_read exit $? # ---------------------------------------------------------------- This is line one of an example paragraph, bla, bla, bla. This is line two, and line three should follow on next line, but there is a blank line separating the two parts of the paragraph. # ---------------------------------------------------------------- Running this script on a file containing the above paragraph yields: 4:: there is a blank line separating the two parts of the paragraph. There will be additional output for all the other split paragraphs in the target file. |
Added findstring.sh.
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/bash # findstring.sh: # Find a particular string in the binaries in a specified directory. directory=/usr/bin/ fstring="Free Software Foundation" # See which files come from the FSF. for file in $( find $directory -type f -name '*' | sort ) do strings -f $file | grep "$fstring" | sed -e "s%$directory%%" # In the "sed" expression, #+ it is necessary to substitute for the normal "/" delimiter #+ because "/" happens to be one of the characters filtered out. # Failure to do so gives an error message. (Try it.) done exit $? # Exercise (easy): # --------------- # Convert this script to take command-line parameters #+ for $directory and $fstring. |
Added for-loopc.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 | #!/bin/bash # Multiple ways to count up to 10. echo # Standard syntax. for a in 1 2 3 4 5 6 7 8 9 10 do echo -n "$a " done echo; echo # +==========================================+ # Using "seq" ... for a in `seq 10` do echo -n "$a " done echo; echo # +==========================================+ # Using brace expansion ... # Bash, version 3+. for a in {1..10} do echo -n "$a " done echo; echo # +==========================================+ # Now, let's do the same, using C-like syntax. LIMIT=10 for ((a=1; a <= LIMIT ; a++)) # Double parentheses, and naked "LIMIT" do echo -n "$a " done # A construct borrowed from ksh93. echo; echo # +=========================================================================+ # Let's use the C "comma operator" to increment two variables simultaneously. for ((a=1, b=1; a <= LIMIT ; a++, b++)) do # The comma concatenates operations. echo -n "$a-$b " done echo; echo exit 0 |
Added for-loopcmd.sh.
> > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash # for-loopcmd.sh: for-loop with [list] #+ generated by command substitution. NUMBERS="9 7 3 8 37.53" for number in `echo $NUMBERS` # for number in 9 7 3 8 37.53 do echo -n "$number " done echo exit 0 |
Added from.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 | #!/bin/bash # from.sh # Emulates the useful 'from' utility in Solaris, BSD, etc. # Echoes the "From" header line in all messages #+ in your e-mail directory. MAILDIR=~/mail/* # No quoting of variable. Why? # Maybe check if-exists $MAILDIR: if [ -d $MAILDIR ] . . . GREP_OPTS="-H -A 5 --color" # Show file, plus extra context lines #+ and display "From" in color. TARGETSTR="^From" # "From" at beginning of line. for file in $MAILDIR # No quoting of variable. do grep $GREP_OPTS "$TARGETSTR" "$file" # ^^^^^^^^^^ # Again, do not quote this variable. echo done exit $? # You might wish to pipe the output of this script to 'more' #+ or redirect it to a file . . . |
Added ftpget.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 | #! /bin/sh # $Id: ftpget,v 1.2 91/05/07 21:15:43 moraes Exp $ # Script to perform batch anonymous ftp. Essentially converts a list of # of command-line arguments into input to ftp. # ==> This script is nothing but a shell wrapper around "ftp" . . . # Simple, and quick - written as a companion to ftplist # -h specifies the remote host (default prep.ai.mit.edu) # -d specifies the remote directory to cd to - you can provide a sequence # of -d options - they will be cd'ed to in turn. If the paths are relative, # make sure you get the sequence right. Be careful with relative paths - # there are far too many symlinks nowadays. # (default is the ftp login directory) # -v turns on the verbose option of ftp, and shows all responses from the # ftp server. # -f remotefile[:localfile] gets the remote file into localfile # -m pattern does an mget with the specified pattern. Remember to quote # shell characters. # -c does a local cd to the specified directory # For example, # ftpget -h expo.lcs.mit.edu -d contrib -f xplaces.shar:xplaces.sh \ # -d ../pub/R3/fixes -c ~/fixes -m 'fix*' # will get xplaces.shar from ~ftp/contrib on expo.lcs.mit.edu, and put it # in xplaces.sh in the current working directory, and get all fixes from # ~ftp/pub/R3/fixes and put them in the ~/fixes directory. # Obviously, the sequence of the options is important, since the equivalent # commands are executed by ftp in corresponding order # # Mark Moraes <moraes@csri.toronto.edu>, Feb 1, 1989 # # ==> These comments added by author of this document. # PATH=/local/bin:/usr/ucb:/usr/bin:/bin # export PATH # ==> Above 2 lines from original script probably superfluous. E_BADARGS=65 TMPFILE=/tmp/ftp.$$ # ==> Creates temp file, using process id of script ($$) # ==> to construct filename. SITE=`domainname`.toronto.edu # ==> 'domainname' similar to 'hostname' # ==> May rewrite this to parameterize this for general use. usage="Usage: $0 [-h remotehost] [-d remotedirectory]... \ [-f remfile:localfile]... [-c localdirectory] [-m filepattern] [-v]" ftpflags="-i -n" verbflag= set -f # So we can use globbing in -m set x `getopt vh:d:c:m:f: $*` if [ $? != 0 ]; then echo $usage exit $E_BADARGS fi shift trap 'rm -f ${TMPFILE} ; exit' 0 1 2 3 15 # ==> Signals: HUP INT (Ctl-C) QUIT TERM # ==> Delete tempfile in case of abnormal exit from script. echo "user anonymous ${USER-gnu}@${SITE} > ${TMPFILE}" # ==> Added quotes (recommended in complex echoes). echo binary >> ${TMPFILE} for i in $* # ==> Parse command-line args. do case $i in -v) verbflag=-v; echo hash >> ${TMPFILE}; shift;; -h) remhost=$2; shift 2;; -d) echo cd $2 >> ${TMPFILE}; if [ x${verbflag} != x ]; then echo pwd >> ${TMPFILE}; fi; shift 2;; -c) echo lcd $2 >> ${TMPFILE}; shift 2;; -m) echo mget "$2" >> ${TMPFILE}; shift 2;; -f) f1=`expr "$2" : "\([^:]*\).*"`; f2=`expr "$2" : "[^:]*:\(.*\)"`; echo get ${f1} ${f2} >> ${TMPFILE}; shift 2;; --) shift; break;; esac # ==> 'lcd' and 'mget' are ftp commands. See "man ftp" . . . done if [ $# -ne 0 ]; then echo $usage exit $E_BADARGS # ==> Changed from "exit 2" to conform with style standard. fi if [ x${verbflag} != x ]; then ftpflags="${ftpflags} -v" fi if [ x${remhost} = x ]; then remhost=prep.ai.mit.edu # ==> Change to match appropriate ftp site. fi echo quit >> ${TMPFILE} # ==> All commands saved in tempfile. ftp ${ftpflags} ${remhost} < ${TMPFILE} # ==> Now, tempfile batch processed by ftp. rm -f ${TMPFILE} # ==> Finally, tempfile deleted (you may wish to copy it to a logfile). # ==> Exercises: # ==> --------- # ==> 1) Add error checking. # ==> 2) Add bells & whistles. # See the included file "Moraes-COPYRIGHT" for copyright info. #+ on this script. |
Added func-cmdlinearg.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 | #!/bin/bash # func-cmdlinearg.sh # Call this script with a command-line argument, #+ something like $0 arg1. func () { echo "$1" # Echoes first arg passed to the function. } # Does a command-line arg qualify? echo "First call to function: no arg passed." echo "See if command-line arg is seen." func # No! Command-line arg not seen. echo "============================================================" echo echo "Second call to function: command-line arg passed explicitly." func $1 # Now it's seen! exit 0 |
Added gcd.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 | #!/bin/bash # gcd.sh: greatest common divisor # Uses Euclid's algorithm # The "greatest common divisor" (gcd) of two integers #+ is the largest integer that will divide both, leaving no remainder. # Euclid's algorithm uses successive division. # In each pass, #+ dividend <--- divisor #+ divisor <--- remainder #+ until remainder = 0. # The gcd = dividend, on the final pass. # # For an excellent discussion of Euclid's algorithm, see #+ Jim Loy's site, http://www.jimloy.com/number/euclids.htm. # ------------------------------------------------------ # Argument check ARGS=2 E_BADARGS=85 if [ $# -ne "$ARGS" ] then echo "Usage: `basename $0` first-number second-number" exit $E_BADARGS fi # ------------------------------------------------------ gcd () { dividend=$1 # Arbitrary assignment. divisor=$2 #! It doesn't matter which of the two is larger. # Why not? remainder=1 # If an uninitialized variable is used inside #+ test brackets, an error message results. until [ "$remainder" -eq 0 ] do # ^^^^^^^^^^ Must be previously initialized! let "remainder = $dividend % $divisor" dividend=$divisor # Now repeat with 2 smallest numbers. divisor=$remainder done # Euclid's algorithm } # Last $dividend is the gcd. gcd $1 $2 echo; echo "GCD of $1 and $2 = $dividend"; echo # Exercises : # --------- # 1) Check command-line arguments to make sure they are integers, #+ and exit the script with an appropriate error message if not. # 2) Rewrite the gcd () function to use local variables. exit 0 |
Added gen0.
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # gen0 # # This is an example "generation 0" start-up file for "life.sh". # -------------------------------------------------------------- # The "gen0" file is a 10 x 10 grid using a period (.) for live cells, #+ and an underscore (_) for dead ones. We cannot simply use spaces #+ for dead cells in this file because of a peculiarity in Bash arrays. # [Exercise for the reader: explain this.] # # Lines beginning with a '#' are comments, and the script ignores them. __.__..___ __.._.____ ____.___.. _._______. ____._____ ..__...___ ____._____ ___...____ __.._..___ _..___..__ |
Added generate-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 | #!/bin/bash # generate-script.sh # Based on an idea by Albert Reiner. OUTFILE=generated.sh # Name of the file to generate. # ----------------------------------------------------------- # 'Here document containing the body of the generated script. ( cat <<'EOF' #!/bin/bash echo "This is a generated shell script." # Note that since we are inside a subshell, #+ we can't access variables in the "outside" script. echo "Generated file will be named: $OUTFILE" # Above line will not work as normally expected #+ because parameter expansion has been disabled. # Instead, the result is literal output. a=7 b=3 let "c = $a * $b" echo "c = $c" exit 0 EOF ) > $OUTFILE # ----------------------------------------------------------- # Quoting the 'limit string' prevents variable expansion #+ within the body of the above 'here document.' # This permits outputting literal strings in the output file. if [ -f "$OUTFILE" ] then chmod 755 $OUTFILE # Make the generated file executable. else echo "Problem in creating file: \"$OUTFILE\"" fi # This method also works for generating #+ C programs, Perl programs, Python programs, Makefiles, #+ and the like. exit 0 |
Added getopt-simple.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 | #!/bin/bash # getopt-simple.sh # Author: Chris Morgan # Used in the ABS Guide with permission. getopt_simple() { echo "getopt_simple()" echo "Parameters are '$*'" until [ -z "$1" ] do echo "Processing parameter of: '$1'" if [ ${1:0:1} = '/' ] then tmp=${1:1} # Strip off leading '/' . . . parameter=${tmp%%=*} # Extract name. value=${tmp##*=} # Extract value. echo "Parameter: '$parameter', value: '$value'" eval $parameter=$value fi shift done } # Pass all options to getopt_simple(). getopt_simple $* echo "test is '$test'" echo "test2 is '$test2'" exit 0 # See also, UseGetOpt.sh, a modified version of this script. --- sh getopt_example.sh /test=value1 /test2=value2 Parameters are '/test=value1 /test2=value2' Processing parameter of: '/test=value1' Parameter: 'test', value: 'value1' Processing parameter of: '/test2=value2' Parameter: 'test2', value: 'value2' test is 'value1' test2 is 'value2' |
Added gronsfeld.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #!/bin/bash # gronsfeld.bash # License: GPL3 # Reldate 06/23/11 # This is an implementation of the Gronsfeld Cipher. # It's essentially a stripped-down variant of the #+ polyalphabetic Vigenère Tableau, but with only 10 alphabets. # The classic Gronsfeld has a numeric sequence as the key word, #+ but here we substitute a letter string, for ease of use. # Allegedly, this cipher was invented by the eponymous Count Gronsfeld #+ in the 17th Century. It was at one time considered to be unbreakable. # Note that this is ###not### a secure cipher by modern standards. # Global Variables # Enc_suffix="29379" # Encrypted text output with this 5-digit suffix. # This functions as a decryption flag, #+ and when used to generate passwords adds security. Default_key="gronsfeldk" # The script uses this if key not entered below # (at "Keychain"). # Change the above two values frequently #+ for added security. GROUPLEN=5 # Output in groups of 5 letters, per tradition. alpha1=( abcdefghijklmnopqrstuvwxyz ) alpha2=( {A..Z} ) # Output in all caps, per tradition. # Use alpha2=( {a..z} ) for password generator. wraplen=26 # Wrap around if past end of alphabet. dflag= # Decrypt flag (set if $Enc_suffix present). E_NOARGS=76 # Missing command-line args? DEBUG=77 # Debugging flag. declare -a offsets # This array holds the numeric shift values for #+ encryption/decryption. ########Keychain######### key= ### Put key here!!! # 10 characters! ######################### # Function : () { # Encrypt or decrypt, depending on whether $dflag is set. # Why ": ()" as a function name? Just to prove that it can be done. local idx keydx mlen off1 shft local plaintext="$1" local mlen=${#plaintext} for (( idx=0; idx<$mlen; idx++ )) do let "keydx = $idx % $keylen" shft=${offsets[keydx]} if [ -n "$dflag" ] then # Decrypt! let "off1 = $(expr index "${alpha1[*]}" ${plaintext:idx:1}) - $shft" # Shift backward to decrypt. else # Encrypt! let "off1 = $(expr index "${alpha1[*]}" ${plaintext:idx:1}) + $shft" # Shift forward to encrypt. test $(( $idx % $GROUPLEN)) = 0 && echo -n " " # Groups of 5 letters. # Comment out above line for output as a string without whitespace, #+ for example, if using the script as a password generator. fi ((off1--)) # Normalize. Why is this necessary? if [ $off1 -lt 0 ] then # Catch negative indices. let "off1 += $wraplen" fi ((off1 %= $wraplen)) # Wrap around if past end of alphabet. echo -n "${alpha2[off1]}" done if [ -z "$dflag" ] then echo " $Enc_suffix" # echo "$Enc_suffix" # For password generator. else echo fi } # End encrypt/decrypt function. # int main () { # Check for command-line args. if [ -z "$1" ] then echo "Usage: $0 TEXT TO ENCODE/DECODE" exit $E_NOARGS fi if [ ${!#} == "$Enc_suffix" ] # ^^^^^ Final command-line arg. then dflag=ON echo -n "+" # Flag decrypted text with a "+" for easy ID. fi if [ -z "$key" ] then key="$Default_key" # "gronsfeldk" per above. fi keylen=${#key} for (( idx=0; idx<$keylen; idx++ )) do # Calculate shift values for encryption/decryption. offsets[idx]=$(expr index "${alpha1[*]}" ${key:idx:1}) # Normalize. ((offsets[idx]--)) # Necessary because "expr index" starts at 1, #+ whereas array count starts at 0. # Generate array of numerical offsets corresponding to the key. # There are simpler ways to accomplish this. done args=$(echo "$*" | sed -e 's/ //g' | tr A-Z a-z | sed -e 's/[0-9]//g') # Remove whitespace and digits from command-line args. # Can modify to also remove punctuation characters, if desired. # Debug: # echo "$args"; exit $DEBUG : "$args" # Call the function named ":". # : is a null operator, except . . . when it's a function name! exit $? # } End-of-script # ************************************************************** # # This script can function as a password generator, #+ with several minor mods, see above. # That would allow an easy-to-remember password, even the word #+ "password" itself, which encrypts to vrgfotvo29379 #+ a fairly secure password not susceptible to a dictionary attack. # Or, you could use your own name (surely that's easy to remember!). # For example, Bozo Bozeman encrypts to hfnbttdppkt29379. # ************************************************************** # |
Added grp.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 | #!/bin/bash # grp.sh: Rudimentary reimplementation of grep. E_BADARGS=85 if [ -z "$1" ] # Check for argument to script. then echo "Usage: `basename $0` pattern" exit $E_BADARGS fi echo for file in * # Traverse all files in $PWD. do output=$(sed -n /"$1"/p $file) # Command substitution. if [ ! -z "$output" ] # What happens if "$output" is not quoted? then echo -n "$file: " echo "$output" fi # sed -ne "/$1/s|^|${file}: |p" is equivalent to above. echo done echo exit 0 # Exercises: # --------- # 1) Add newlines to output, if more than one match in any given file. # 2) Add features. |
Added ha.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 | #!/bin/bash # $Id: ha.sh,v 1.2 2005/04/21 23:24:26 oliver Exp $ # Copyright 2005 Oliver Beckstein # Released under the GNU Public License # Author of script granted permission for inclusion in ABS Guide. # (Thank you!) #---------------------------------------------------------------- # pseudo hash based on indirect parameter expansion # API: access through functions: # # create the hash: # # newhash Lovers # # add entries (note single quotes for spaces) # # addhash Lovers Tristan Isolde # addhash Lovers 'Romeo Montague' 'Juliet Capulet' # # access value by key # # gethash Lovers Tristan ----> Isolde # # show all keys # # keyshash Lovers ----> 'Tristan' 'Romeo Montague' # # # Convention: instead of perls' foo{bar} = boing' syntax, # use # '_foo_bar=boing' (two underscores, no spaces) # # 1) store key in _NAME_keys[] # 2) store value in _NAME_values[] using the same integer index # The integer index for the last entry is _NAME_ptr # # NOTE: No error or sanity checks, just bare bones. function _inihash () { # private function # call at the beginning of each procedure # defines: _keys _values _ptr # # Usage: _inihash NAME local name=$1 _keys=_${name}_keys _values=_${name}_values _ptr=_${name}_ptr } function newhash () { # Usage: newhash NAME # NAME should not contain spaces or dots. # Actually: it must be a legal name for a Bash variable. # We rely on Bash automatically recognising arrays. local name=$1 local _keys _values _ptr _inihash ${name} eval ${_ptr}=0 } function addhash () { # Usage: addhash NAME KEY 'VALUE with spaces' # arguments with spaces need to be quoted with single quotes '' local name=$1 k="$2" v="$3" local _keys _values _ptr _inihash ${name} #echo "DEBUG(addhash): ${_ptr}=${!_ptr}" eval let ${_ptr}=${_ptr}+1 eval "$_keys[${!_ptr}]=\"${k}\"" eval "$_values[${!_ptr}]=\"${v}\"" } function gethash () { # Usage: gethash NAME KEY # Returns boing # ERR=0 if entry found, 1 otherwise # That's not a proper hash -- #+ we simply linearly search through the keys. local name=$1 key="$2" local _keys _values _ptr local k v i found h _inihash ${name} # _ptr holds the highest index in the hash found=0 for i in $(seq 1 ${!_ptr}); do h="\${${_keys}[${i}]}" # Safer to do it in two steps, eval k=${h} #+ especially when quoting for spaces. if [ "${k}" = "${key}" ]; then found=1; break; fi done; [ ${found} = 0 ] && return 1; # else: i is the index that matches the key h="\${${_values}[${i}]}" eval echo "${h}" return 0; } function keyshash () { # Usage: keyshash NAME # Returns list of all keys defined for hash name. local name=$1 key="$2" local _keys _values _ptr local k i h _inihash ${name} # _ptr holds the highest index in the hash for i in $(seq 1 ${!_ptr}); do h="\${${_keys}[${i}]}" # Safer to do it in two steps, eval k=${h} #+ especially when quoting for spaces. echo -n "'${k}' " done; } # ----------------------------------------------------------------------- # Now, let's test it. # (Per comments at the beginning of the script.) newhash Lovers addhash Lovers Tristan Isolde addhash Lovers 'Romeo Montague' 'Juliet Capulet' # Output results. echo gethash Lovers Tristan # Isolde echo keyshash Lovers # 'Tristan' 'Romeo Montague' echo; echo exit 0 # Exercise: # -------- # Add error checks to the functions. |
Added hanoi.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #! /bin/bash # # The Towers Of Hanoi # Bash script # Copyright (C) 2000 Amit Singh. All Rights Reserved. # http://hanoi.kernelthread.com # # Tested under Bash version 2.05b.0(13)-release. # Also works under Bash version 3.x. # # Used in "Advanced Bash Scripting Guide" #+ with permission of script author. # Slightly modified and commented by ABS author. #=================================================================# # The Tower of Hanoi is a mathematical puzzle attributed to #+ Edouard Lucas, a nineteenth-century French mathematician. # # There are three vertical posts set in a base. # The first post has a set of annular rings stacked on it. # These rings are disks with a hole drilled out of the center, #+ so they can slip over the posts and rest flat. # The rings have different diameters, and they stack in ascending #+ order, according to size. # The smallest ring is on top, and the largest on the bottom. # # The task is to transfer the stack of rings #+ to one of the other posts. # You can move only one ring at a time to another post. # You are permitted to move rings back to the original post. # You may place a smaller ring atop a larger one, #+ but *not* vice versa. # Again, it is forbidden to place a larger ring atop a smaller one. # # For a small number of rings, only a few moves are required. #+ For each additional ring, #+ the required number of moves approximately doubles, #+ and the "strategy" becomes increasingly complicated. # # For more information, see http://hanoi.kernelthread.com #+ or pp. 186-92 of _The Armchair Universe_ by A.K. Dewdney. # # # ... ... ... # | | | | | | # _|_|_ | | | | # |_____| | | | | # |_______| | | | | # |_________| | | | | # |___________| | | | | # | | | | | | # .--------------------------------------------------------------. # |**************************************************************| # #1 #2 #3 # #=================================================================# E_NOPARAM=66 # No parameter passed to script. E_BADPARAM=67 # Illegal number of disks passed to script. Moves= # Global variable holding number of moves. # Modification to original script. dohanoi() { # Recursive function. case $1 in 0) ;; *) dohanoi "$(($1-1))" $2 $4 $3 echo move $2 "-->" $3 ((Moves++)) # Modification to original script. dohanoi "$(($1-1))" $4 $3 $2 ;; esac } case $# in 1) case $(($1>0)) in # Must have at least one disk. 1) # Nested case statement. dohanoi $1 1 3 2 echo "Total moves = $Moves" # 2^n - 1, where n = # of disks. exit 0; ;; *) echo "$0: illegal value for number of disks"; exit $E_BADPARAM; ;; esac ;; *) echo "usage: $0 N" echo " Where \"N\" is the number of disks." exit $E_NOPARAM; ;; esac # Exercises: # --------- # 1) Would commands beyond this point ever be executed? # Why not? (Easy) # 2) Explain the workings of the workings of the "dohanoi" function. # (Difficult -- see the Dewdney reference, above.) |
Added hanoi2.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #! /bin/bash # The Towers Of Hanoi # Original script (hanoi.bash) copyright (C) 2000 Amit Singh. # All Rights Reserved. # http://hanoi.kernelthread.com # hanoi2.bash # Version 2.00: modded for ASCII-graphic display. # Version 2.01: fixed no command-line param bug. # Uses code contributed by Antonio Macchi, #+ with heavy editing by ABS Guide author. # This variant falls under the original copyright, see above. # Used in ABS Guide with Amit Singh's permission (thanks!). ### Variables && sanity check ### E_NOPARAM=86 E_BADPARAM=87 # Illegal no. of disks passed to script. E_NOEXIT=88 DISKS=${1:-$E_NOPARAM} # Must specify how many disks. Moves=0 MWIDTH=7 MARGIN=2 # Arbitrary "magic" constants; work okay for relatively small # of disks. # BASEWIDTH=51 # Original code. let "basewidth = $MWIDTH * $DISKS + $MARGIN" # "Base" beneath rods. # Above "algorithm" could likely stand improvement. ### Display variables ### let "disks1 = $DISKS - 1" let "spaces1 = $DISKS" let "spaces2 = 2 * $DISKS" let "lastmove_t = $DISKS - 1" # Final move? declare -a Rod1 Rod2 Rod3 ### ######################### ### function repeat { # $1=char $2=number of repetitions local n # Repeat-print a character. for (( n=0; n<$2; n++ )); do echo -n "$1" done } function FromRod { local rod summit weight sequence while true; do rod=$1 test ${rod/[^123]/} || continue sequence=$(echo $(seq 0 $disks1 | tac)) for summit in $sequence; do eval weight=\${Rod${rod}[$summit]} test $weight -ne 0 && { echo "$rod $summit $weight"; return; } done done } function ToRod { # $1=previous (FromRod) weight local rod firstfree weight sequence while true; do rod=$2 test ${rod/[^123]} || continue sequence=$(echo $(seq 0 $disks1 | tac)) for firstfree in $sequence; do eval weight=\${Rod${rod}[$firstfree]} test $weight -gt 0 && { (( firstfree++ )); break; } done test $weight -gt $1 -o $firstfree = 0 && { echo "$rod $firstfree"; return; } done } function PrintRods { local disk rod empty fill sp sequence repeat " " $spaces1 echo -n "|" repeat " " $spaces2 echo -n "|" repeat " " $spaces2 echo "|" sequence=$(echo $(seq 0 $disks1 | tac)) for disk in $sequence; do for rod in {1..3}; do eval empty=$(( $DISKS - (Rod${rod}[$disk] / 2) )) eval fill=\${Rod${rod}[$disk]} repeat " " $empty test $fill -gt 0 && repeat "*" $fill || echo -n "|" repeat " " $empty done echo done repeat "=" $basewidth # Print "base" beneath rods. echo } display () { echo PrintRods # Get rod-number, summit and weight first=( `FromRod $1` ) eval Rod${first[0]}[${first[1]}]=0 # Get rod-number and first-free position second=( `ToRod ${first[2]} $2` ) eval Rod${second[0]}[${second[1]}]=${first[2]} echo; echo; echo if [ "${Rod3[lastmove_t]}" = 1 ] then # Last move? If yes, then display final position. echo "+ Final Position: $Moves moves"; echo PrintRods fi } # From here down, almost the same as original (hanoi.bash) script. dohanoi() { # Recursive function. case $1 in 0) ;; *) dohanoi "$(($1-1))" $2 $4 $3 if [ "$Moves" -ne 0 ] then echo "+ Position after move $Moves" fi ((Moves++)) echo -n " Next move will be: " echo $2 "-->" $3 display $2 $3 dohanoi "$(($1-1))" $4 $3 $2 ;; esac } setup_arrays () { local dim n elem let "dim1 = $1 - 1" elem=$dim1 for n in $(seq 0 $dim1) do let "Rod1[$elem] = 2 * $n + 1" Rod2[$n]=0 Rod3[$n]=0 ((elem--)) done } ### Main ### setup_arrays $DISKS echo; echo "+ Start Position" case $# in 1) case $(($1>0)) in # Must have at least one disk. 1) disks=$1 dohanoi $1 1 3 2 # Total moves = 2^n - 1, where n = number of disks. echo exit 0; ;; *) echo "$0: Illegal value for number of disks"; exit $E_BADPARAM; ;; esac ;; *) clear echo "usage: $0 N" echo " Where \"N\" is the number of disks." exit $E_NOPARAM; ;; esac exit $E_NOEXIT # Shouldn't exit here. # Note: # Redirect script output to a file, otherwise it scrolls off display. |
Added hanoi2a.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #! /bin/bash # The Towers Of Hanoi # Original script (hanoi.bash) copyright (C) 2000 Amit Singh. # All Rights Reserved. # http://hanoi.kernelthread.com # hanoi2.bash # Version 2: modded for ASCII-graphic display. # Uses code contributed by Antonio Macchi, #+ with heavy editing by ABS Guide author. # This variant also falls under the original copyright, see above. # Used in ABS Guide with Amit Singh's permission (thanks!). # Variables # E_NOPARAM=86 E_BADPARAM=87 # Illegal no. of disks passed to script. E_NOEXIT=88 DELAY=2 # Interval, in seconds, between moves. Change, if desired. DISKS=$1 Moves=0 MWIDTH=7 MARGIN=2 # Arbitrary "magic" constants, work okay for relatively small # of disks. # BASEWIDTH=51 # Original code. let "basewidth = $MWIDTH * $DISKS + $MARGIN" # "Base" beneath rods. # Above "algorithm" could likely stand improvement. # Display variables. let "disks1 = $DISKS - 1" let "spaces1 = $DISKS" let "spaces2 = 2 * $DISKS" let "lastmove_t = $DISKS - 1" # Final move? declare -a Rod1 Rod2 Rod3 ################# function repeat { # $1=char $2=number of repetitions local n # Repeat-print a character. for (( n=0; n<$2; n++ )); do echo -n "$1" done } function FromRod { local rod summit weight sequence while true; do rod=$1 test ${rod/[^123]/} || continue sequence=$(echo $(seq 0 $disks1 | tac)) for summit in $sequence; do eval weight=\${Rod${rod}[$summit]} test $weight -ne 0 && { echo "$rod $summit $weight"; return; } done done } function ToRod { # $1=previous (FromRod) weight local rod firstfree weight sequence while true; do rod=$2 test ${rod/[^123]} || continue sequence=$(echo $(seq 0 $disks1 | tac)) for firstfree in $sequence; do eval weight=\${Rod${rod}[$firstfree]} test $weight -gt 0 && { (( firstfree++ )); break; } done test $weight -gt $1 -o $firstfree = 0 && { echo "$rod $firstfree"; return; } done } function PrintRods { local disk rod empty fill sp sequence tput cup 5 0 repeat " " $spaces1 echo -n "|" repeat " " $spaces2 echo -n "|" repeat " " $spaces2 echo "|" sequence=$(echo $(seq 0 $disks1 | tac)) for disk in $sequence; do for rod in {1..3}; do eval empty=$(( $DISKS - (Rod${rod}[$disk] / 2) )) eval fill=\${Rod${rod}[$disk]} repeat " " $empty test $fill -gt 0 && repeat "*" $fill || echo -n "|" repeat " " $empty done echo done repeat "=" $basewidth # Print "base" beneath rods. echo } display () { echo PrintRods # Get rod-number, summit and weight first=( `FromRod $1` ) eval Rod${first[0]}[${first[1]}]=0 # Get rod-number and first-free position second=( `ToRod ${first[2]} $2` ) eval Rod${second[0]}[${second[1]}]=${first[2]} if [ "${Rod3[lastmove_t]}" = 1 ] then # Last move? If yes, then display final position. tput cup 0 0 echo; echo "+ Final Position: $Moves moves" PrintRods fi sleep $DELAY } # From here down, almost the same as original (hanoi.bash) script. dohanoi() { # Recursive function. case $1 in 0) ;; *) dohanoi "$(($1-1))" $2 $4 $3 if [ "$Moves" -ne 0 ] then tput cup 0 0 echo; echo "+ Position after move $Moves" fi ((Moves++)) echo -n " Next move will be: " echo $2 "-->" $3 display $2 $3 dohanoi "$(($1-1))" $4 $3 $2 ;; esac } setup_arrays () { local dim n elem let "dim1 = $1 - 1" elem=$dim1 for n in $(seq 0 $dim1) do let "Rod1[$elem] = 2 * $n + 1" Rod2[$n]=0 Rod3[$n]=0 ((elem--)) done } ### Main ### trap "tput cnorm" 0 tput civis clear setup_arrays $DISKS tput cup 0 0 echo; echo "+ Start Position" case $# in 1) case $(($1>0)) in # Must have at least one disk. 1) disks=$1 dohanoi $1 1 3 2 # Total moves = 2^n - 1, where n = # of disks. echo exit 0; ;; *) echo "$0: Illegal value for number of disks"; exit $E_BADPARAM; ;; esac ;; *) echo "usage: $0 N" echo " Where \"N\" is the number of disks." exit $E_NOPARAM; ;; esac exit $E_NOEXIT # Shouldn't exit here. # Exercise: # -------- # There is a minor bug in the script that causes the display of #+ the next-to-last move to be skipped. #+ Fix this. |
Added hash-example.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 | #!/bin/bash # hash-example.sh: Colorizing text. # Author: Mariusz Gniazdowski <mariusz.gn-at-gmail.com> . Hash.lib # Load the library of functions. hash_set colors red "\033[0;31m" hash_set colors blue "\033[0;34m" hash_set colors light_blue "\033[1;34m" hash_set colors light_red "\033[1;31m" hash_set colors cyan "\033[0;36m" hash_set colors light_green "\033[1;32m" hash_set colors light_gray "\033[0;37m" hash_set colors green "\033[0;32m" hash_set colors yellow "\033[1;33m" hash_set colors light_purple "\033[1;35m" hash_set colors purple "\033[0;35m" hash_set colors reset_color "\033[0;00m" # $1 - keyname # $2 - value try_colors() { echo -en "$2" echo "This line is $1." } hash_foreach colors try_colors hash_echo colors reset_color -en echo -e '\nLet us overwrite some colors with yellow.\n' # It's hard to read yellow text on some terminals. hash_dup colors yellow red light_green blue green light_gray cyan hash_foreach colors try_colors hash_echo colors reset_color -en echo -e '\nLet us delete them and try colors once more . . .\n' for i in red light_green blue green light_gray cyan; do hash_unset colors $i done hash_foreach colors try_colors hash_echo colors reset_color -en hash_set other txt "Other examples . . ." hash_echo other txt hash_get_into other txt text echo $text hash_set other my_fun try_colors hash_call other my_fun purple "`hash_echo colors purple`" hash_echo colors reset_color -en echo; echo "Back to normal?"; echo exit $? # On some terminals, the "light" colors print in bold, # and end up looking darker than the normal ones. # Why is this? |
Added hello.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 | #!/bin/bash # hello.sh: Saying "hello" or "goodbye" #+ depending on how script is invoked. # Make a link in current working directory ($PWD) to this script: # ln -s hello.sh goodbye # Now, try invoking this script both ways: # ./hello.sh # ./goodbye HELLO_CALL=65 GOODBYE_CALL=66 if [ $0 = "./goodbye" ] then echo "Good-bye!" # Some other goodbye-type commands, as appropriate. exit $GOODBYE_CALL fi echo "Hello!" # Some other hello-type commands, as appropriate. exit $HELLO_CALL |
Added here-commsub.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 | #!/bin/bash # here-commsub.sh # Requires Bash version -ge 4.1 ... multi_line_var=$( cat <<ENDxxx ------------------------------ This is line 1 of the variable This is line 2 of the variable This is line 3 of the variable ------------------------------ ENDxxx) # Rather than what Bash 4.0 requires: #+ that the terminating limit string and #+ the terminating close-parenthesis be on separate lines. # ENDxxx # ) echo "$multi_line_var" # Bash still emits a warning, though. # warning: here-document at line 10 delimited #+ by end-of-file (wanted `ENDxxx') |
Added here-function.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 | #!/bin/bash # here-function.sh GetPersonalData () { read firstname read lastname read address read city read state read zipcode } # This certainly appears to be an interactive function, but . . . # Supply input to the above function. GetPersonalData <<RECORD001 Bozo Bozeman 2726 Nondescript Dr. Bozeman MT 21226 RECORD001 echo echo "$firstname $lastname" echo "$address" echo "$city, $state $zipcode" echo exit 0 |
Added hexconvert.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 | #!/bin/bash # hexconvert.sh: Convert a decimal number to hexadecimal. E_NOARGS=85 # Command-line arg missing. BASE=16 # Hexadecimal. if [ -z "$1" ] then # Need a command-line argument. echo "Usage: $0 number" exit $E_NOARGS fi # Exercise: add argument validity checking. hexcvt () { if [ -z "$1" ] then echo 0 return # "Return" 0 if no arg passed to function. fi echo ""$1" "$BASE" o p" | dc # o sets radix (numerical base) of output. # p prints the top of stack. # For other options: 'man dc' ... return } hexcvt "$1" exit |
Added homework.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 | #!/bin/bash # homework.sh: All-purpose homework assignment solution. # Author: M. Leo Cooper # If you substitute your own name as author, then it is plagiarism, #+ possibly a lesser sin than cheating on your homework! # License: Public Domain # This script may be turned in to your instructor #+ in fulfillment of ALL shell scripting homework assignments. # It's sparsely commented, but you, the student, can easily remedy that. # The script author repudiates all responsibility! DLA=1 P1=2 P2=4 P3=7 PP1=0 PP2=8 MAXL=9 E_LZY=99 declare -a L L[0]="3 4 0 17 29 8 13 18 19 17 20 2 19 14 17 28" L[1]="8 29 12 14 18 19 29 4 12 15 7 0 19 8 2 0 11 11 24 29 17 4 6 17 4 19" L[2]="29 19 7 0 19 29 8 29 7 0 21 4 29 13 4 6 11 4 2 19 4 3" L[3]="19 14 29 2 14 12 15 11 4 19 4 29 19 7 8 18 29" L[4]="18 2 7 14 14 11 22 14 17 10 29 0 18 18 8 6 13 12 4 13 19 26" L[5]="15 11 4 0 18 4 29 0 2 2 4 15 19 29 12 24 29 7 20 12 1 11 4 29" L[6]="4 23 2 20 18 4 29 14 5 29 4 6 17 4 6 8 14 20 18 29" L[7]="11 0 25 8 13 4 18 18 27" L[8]="0 13 3 29 6 17 0 3 4 29 12 4 29 0 2 2 14 17 3 8 13 6 11 24 26" L[9]="19 7 0 13 10 29 24 14 20 26" declare -a \ alph=( A B C D E F G H I J K L M N O P Q R S T U V W X Y Z . , : ' ' ) pt_lt () { echo -n "${alph[$1]}" echo -n -e "\a" sleep $DLA } b_r () { echo -e '\E[31;48m\033[1m' } cr () { echo -e "\a" sleep $DLA } restore () { echo -e '\033[0m' # Bold off. tput sgr0 # Normal. } p_l () { for ltr in $1 do pt_lt "$ltr" done } # ---------------------- b_r for i in $(seq 0 $MAXL) do p_l "${L[i]}" if [[ "$i" -eq "$P1" || "$i" -eq "$P2" || "$i" -eq "$P3" ]] then cr elif [[ "$i" -eq "$PP1" || "$i" -eq "$PP2" ]] then cr; cr fi done restore # ---------------------- echo exit $E_LZY # A typical example of an obfuscated script that is difficult #+ to understand, and frustrating to maintain. # In your career as a sysadmin, you'll run into these critters #+ all too often. |
Added horserace.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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 | #!/bin/bash # horserace.sh: Very simple horserace simulation. # Author: Stefano Palmeri # Used with permission. ################################################################ # Goals of the script: # playing with escape sequences and terminal colors. # # Exercise: # Edit the script to make it run less randomly, #+ set up a fake betting shop . . . # Um . . . um . . . it's starting to remind me of a movie . . . # # The script gives each horse a random handicap. # The odds are calculated upon horse handicap #+ and are expressed in European(?) style. # E.g., odds=3.75 means that if you bet $1 and win, #+ you receive $3.75. # # The script has been tested with a GNU/Linux OS, #+ using xterm and rxvt, and konsole. # On a machine with an AMD 900 MHz processor, #+ the average race time is 75 seconds. # On faster computers the race time would be lower. # So, if you want more suspense, reset the USLEEP_ARG variable. # # Script by Stefano Palmeri. ################################################################ E_RUNERR=65 # Check if md5sum and bc are installed. if ! which bc &> /dev/null; then echo bc is not installed. echo "Can\'t run . . . " exit $E_RUNERR fi if ! which md5sum &> /dev/null; then echo md5sum is not installed. echo "Can\'t run . . . " exit $E_RUNERR fi # Set the following variable to slow down script execution. # It will be passed as the argument for usleep (man usleep) #+ and is expressed in microseconds (500000 = half a second). USLEEP_ARG=0 # Clean up the temp directory, restore terminal cursor and #+ terminal colors -- if script interrupted by Ctl-C. trap 'echo -en "\E[?25h"; echo -en "\E[0m"; stty echo;\ tput cup 20 0; rm -fr $HORSE_RACE_TMP_DIR' TERM EXIT # See the chapter on debugging for an explanation of 'trap.' # Set a unique (paranoid) name for the temp directory the script needs. HORSE_RACE_TMP_DIR=$HOME/.horserace-`date +%s`-`head -c10 /dev/urandom \ | md5sum | head -c30` # Create the temp directory and move right in. mkdir $HORSE_RACE_TMP_DIR cd $HORSE_RACE_TMP_DIR # This function moves the cursor to line $1 column $2 and then prints $3. # E.g.: "move_and_echo 5 10 linux" is equivalent to #+ "tput cup 4 9; echo linux", but with one command instead of two. # Note: "tput cup" defines 0 0 the upper left angle of the terminal, #+ echo defines 1 1 the upper left angle of the terminal. move_and_echo() { echo -ne "\E[${1};${2}H""$3" } # Function to generate a pseudo-random number between 1 and 9. random_1_9 () { head -c10 /dev/urandom | md5sum | tr -d [a-z] | tr -d 0 | cut -c1 } # Two functions that simulate "movement," when drawing the horses. draw_horse_one() { echo -n " "//$MOVE_HORSE// } draw_horse_two(){ echo -n " "\\\\$MOVE_HORSE\\\\ } # Define current terminal dimension. N_COLS=`tput cols` N_LINES=`tput lines` # Need at least a 20-LINES X 80-COLUMNS terminal. Check it. if [ $N_COLS -lt 80 ] || [ $N_LINES -lt 20 ]; then echo "`basename $0` needs a 80-cols X 20-lines terminal." echo "Your terminal is ${N_COLS}-cols X ${N_LINES}-lines." exit $E_RUNERR fi # Start drawing the race field. # Need a string of 80 chars. See below. BLANK80=`seq -s "" 100 | head -c80` clear # Set foreground and background colors to white. echo -ne '\E[37;47m' # Move the cursor on the upper left angle of the terminal. tput cup 0 0 # Draw six white lines. for n in `seq 5`; do echo $BLANK80 # Use the 80 chars string to colorize the terminal. done # Sets foreground color to black. echo -ne '\E[30m' move_and_echo 3 1 "START 1" move_and_echo 3 75 FINISH move_and_echo 1 5 "|" move_and_echo 1 80 "|" move_and_echo 2 5 "|" move_and_echo 2 80 "|" move_and_echo 4 5 "| 2" move_and_echo 4 80 "|" move_and_echo 5 5 "V 3" move_and_echo 5 80 "V" # Set foreground color to red. echo -ne '\E[31m' # Some ASCII art. move_and_echo 1 8 "..@@@..@@@@@...@@@@@.@...@..@@@@..." move_and_echo 2 8 ".@...@...@.......@...@...@.@......." move_and_echo 3 8 ".@@@@@...@.......@...@@@@@.@@@@...." move_and_echo 4 8 ".@...@...@.......@...@...@.@......." move_and_echo 5 8 ".@...@...@.......@...@...@..@@@@..." move_and_echo 1 43 "@@@@...@@@...@@@@..@@@@..@@@@." move_and_echo 2 43 "@...@.@...@.@.....@.....@....." move_and_echo 3 43 "@@@@..@@@@@.@.....@@@@...@@@.." move_and_echo 4 43 "@..@..@...@.@.....@.........@." move_and_echo 5 43 "@...@.@...@..@@@@..@@@@.@@@@.." # Set foreground and background colors to green. echo -ne '\E[32;42m' # Draw eleven green lines. tput cup 5 0 for n in `seq 11`; do echo $BLANK80 done # Set foreground color to black. echo -ne '\E[30m' tput cup 5 0 # Draw the fences. echo "++++++++++++++++++++++++++++++++++++++\ ++++++++++++++++++++++++++++++++++++++++++" tput cup 15 0 echo "++++++++++++++++++++++++++++++++++++++\ ++++++++++++++++++++++++++++++++++++++++++" # Set foreground and background colors to white. echo -ne '\E[37;47m' # Draw three white lines. for n in `seq 3`; do echo $BLANK80 done # Set foreground color to black. echo -ne '\E[30m' # Create 9 files to stores handicaps. for n in `seq 10 7 68`; do touch $n done # Set the first type of "horse" the script will draw. HORSE_TYPE=2 # Create position-file and odds-file for every "horse". #+ In these files, store the current position of the horse, #+ the type and the odds. for HN in `seq 9`; do touch horse_${HN}_position touch odds_${HN} echo \-1 > horse_${HN}_position echo $HORSE_TYPE >> horse_${HN}_position # Define a random handicap for horse. HANDICAP=`random_1_9` # Check if the random_1_9 function returned a good value. while ! echo $HANDICAP | grep [1-9] &> /dev/null; do HANDICAP=`random_1_9` done # Define last handicap position for horse. LHP=`expr $HANDICAP \* 7 + 3` for FILE in `seq 10 7 $LHP`; do echo $HN >> $FILE done # Calculate odds. case $HANDICAP in 1) ODDS=`echo $HANDICAP \* 0.25 + 1.25 | bc` echo $ODDS > odds_${HN} ;; 2 | 3) ODDS=`echo $HANDICAP \* 0.40 + 1.25 | bc` echo $ODDS > odds_${HN} ;; 4 | 5 | 6) ODDS=`echo $HANDICAP \* 0.55 + 1.25 | bc` echo $ODDS > odds_${HN} ;; 7 | 8) ODDS=`echo $HANDICAP \* 0.75 + 1.25 | bc` echo $ODDS > odds_${HN} ;; 9) ODDS=`echo $HANDICAP \* 0.90 + 1.25 | bc` echo $ODDS > odds_${HN} esac done # Print odds. print_odds() { tput cup 6 0 echo -ne '\E[30;42m' for HN in `seq 9`; do echo "#$HN odds->" `cat odds_${HN}` done } # Draw the horses at starting line. draw_horses() { tput cup 6 0 echo -ne '\E[30;42m' for HN in `seq 9`; do echo /\\$HN/\\" " done } print_odds echo -ne '\E[47m' # Wait for a enter key press to start the race. # The escape sequence '\E[?25l' disables the cursor. tput cup 17 0 echo -e '\E[?25l'Press [enter] key to start the race... read -s # Disable normal echoing in the terminal. # This avoids key presses that might "contaminate" the screen #+ during the race. stty -echo # -------------------------------------------------------- # Start the race. draw_horses echo -ne '\E[37;47m' move_and_echo 18 1 $BLANK80 echo -ne '\E[30m' move_and_echo 18 1 Starting... sleep 1 # Set the column of the finish line. WINNING_POS=74 # Define the time the race started. START_TIME=`date +%s` # COL variable needed by following "while" construct. COL=0 while [ $COL -lt $WINNING_POS ]; do MOVE_HORSE=0 # Check if the random_1_9 function has returned a good value. while ! echo $MOVE_HORSE | grep [1-9] &> /dev/null; do MOVE_HORSE=`random_1_9` done # Define old type and position of the "randomized horse". HORSE_TYPE=`cat horse_${MOVE_HORSE}_position | tail -n 1` COL=$(expr `cat horse_${MOVE_HORSE}_position | head -n 1`) ADD_POS=1 # Check if the current position is an handicap position. if seq 10 7 68 | grep -w $COL &> /dev/null; then if grep -w $MOVE_HORSE $COL &> /dev/null; then ADD_POS=0 grep -v -w $MOVE_HORSE $COL > ${COL}_new rm -f $COL mv -f ${COL}_new $COL else ADD_POS=1 fi else ADD_POS=1 fi COL=`expr $COL + $ADD_POS` echo $COL > horse_${MOVE_HORSE}_position # Store new position. # Choose the type of horse to draw. case $HORSE_TYPE in 1) HORSE_TYPE=2; DRAW_HORSE=draw_horse_two ;; 2) HORSE_TYPE=1; DRAW_HORSE=draw_horse_one esac echo $HORSE_TYPE >> horse_${MOVE_HORSE}_position # Store current type. # Set foreground color to black and background to green. echo -ne '\E[30;42m' # Move the cursor to new horse position. tput cup `expr $MOVE_HORSE + 5` \ `cat horse_${MOVE_HORSE}_position | head -n 1` # Draw the horse. $DRAW_HORSE usleep $USLEEP_ARG # When all horses have gone beyond field line 15, reprint odds. touch fieldline15 if [ $COL = 15 ]; then echo $MOVE_HORSE >> fieldline15 fi if [ `wc -l fieldline15 | cut -f1 -d " "` = 9 ]; then print_odds : > fieldline15 fi # Define the leading horse. HIGHEST_POS=`cat *position | sort -n | tail -1` # Set background color to white. echo -ne '\E[47m' tput cup 17 0 echo -n Current leader: `grep -w $HIGHEST_POS *position | cut -c7`\ " " done # Define the time the race finished. FINISH_TIME=`date +%s` # Set background color to green and enable blinking text. echo -ne '\E[30;42m' echo -en '\E[5m' # Make the winning horse blink. tput cup `expr $MOVE_HORSE + 5` \ `cat horse_${MOVE_HORSE}_position | head -n 1` $DRAW_HORSE # Disable blinking text. echo -en '\E[25m' # Set foreground and background color to white. echo -ne '\E[37;47m' move_and_echo 18 1 $BLANK80 # Set foreground color to black. echo -ne '\E[30m' # Make winner blink. tput cup 17 0 echo -e "\E[5mWINNER: $MOVE_HORSE\E[25m"" Odds: `cat odds_${MOVE_HORSE}`"\ " Race time: `expr $FINISH_TIME - $START_TIME` secs" # Restore cursor and old colors. echo -en "\E[?25h" echo -en "\E[0m" # Restore echoing. stty echo # Remove race temp directory. rm -rf $HORSE_RACE_TMP_DIR tput cup 19 0 exit 0 |
Added hypotenuse.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 | #!/bin/bash # hypotenuse.sh: Returns the "hypotenuse" of a right triangle. # (square root of sum of squares of the "legs") ARGS=2 # Script needs sides of triangle passed. E_BADARGS=85 # Wrong number of arguments. if [ $# -ne "$ARGS" ] # Test number of arguments to script. then echo "Usage: `basename $0` side_1 side_2" exit $E_BADARGS fi AWKSCRIPT=' { printf( "%3.7f\n", sqrt($1*$1 + $2*$2) ) } ' # command(s) / parameters passed to awk # Now, pipe the parameters to awk. echo -n "Hypotenuse of $1 and $2 = " echo $1 $2 | awk "$AWKSCRIPT" # ^^^^^^^^^^^^ # An echo-and-pipe is an easy way of passing shell parameters to awk. exit # Exercise: Rewrite this script using 'bc' rather than awk. # Which method is more intuitive? |
Added idelete.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 | #!/bin/bash # idelete.sh: Deleting a file by its inode number. # This is useful when a filename starts with an illegal character, #+ such as ? or -. ARGCOUNT=1 # Filename arg must be passed to script. E_WRONGARGS=70 E_FILE_NOT_EXIST=71 E_CHANGED_MIND=72 if [ $# -ne "$ARGCOUNT" ] then echo "Usage: `basename $0` filename" exit $E_WRONGARGS fi if [ ! -e "$1" ] then echo "File \""$1"\" does not exist." exit $E_FILE_NOT_EXIST fi inum=`ls -i | grep "$1" | awk '{print $1}'` # inum = inode (index node) number of file # ----------------------------------------------------------------------- # Every file has an inode, a record that holds its physical address info. # ----------------------------------------------------------------------- echo; echo -n "Are you absolutely sure you want to delete \"$1\" (y/n)? " # The '-v' option to 'rm' also asks this. read answer case "$answer" in [nN]) echo "Changed your mind, huh?" exit $E_CHANGED_MIND ;; *) echo "Deleting file \"$1\".";; esac find . -inum $inum -exec rm {} \; # ^^ # Curly brackets are placeholder #+ for text output by "find." echo "File "\"$1"\" deleted!" exit 0 |
Added ifs-empty.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 | #!/bin/bash # If $IFS set, but empty, #+ then "$*" and "$@" do not echo positional params as expected. mecho () # Echo positional parameters. { echo "$1,$2,$3"; } IFS="" # Set, but empty. set a b c # Positional parameters. mecho "$*" # abc,, # ^^ mecho $* # a,b,c mecho $@ # a,b,c mecho "$@" # a,b,c # The behavior of $* and $@ when $IFS is empty depends #+ on which Bash or sh version being run. # It is therefore inadvisable to depend on this "feature" in a script. # Thanks, Stephane Chazelas. exit |
Added ifs.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 | #!/bin/bash # ifs.sh var1="a+b+c" var2="d-e-f" var3="g,h,i" IFS=+ # The plus sign will be interpreted as a separator. echo $var1 # a b c echo $var2 # d-e-f echo $var3 # g,h,i echo IFS="-" # The plus sign reverts to default interpretation. # The minus sign will be interpreted as a separator. echo $var1 # a+b+c echo $var2 # d e f echo $var3 # g,h,i echo IFS="," # The comma will be interpreted as a separator. # The minus sign reverts to default interpretation. echo $var1 # a+b+c echo $var2 # d-e-f echo $var3 # g h i echo IFS=" " # The space character will be interpreted as a separator. # The comma reverts to default interpretation. echo $var1 # a+b+c echo $var2 # d-e-f echo $var3 # g,h,i # ======================================================== # # However ... # $IFS treats whitespace differently than other characters. output_args_one_per_line() { for arg do echo "[$arg]" done # ^ ^ Embed within brackets, for your viewing pleasure. } echo; echo "IFS=\" \"" echo "-------" IFS=" " var=" a b c " # ^ ^^ ^^^ output_args_one_per_line $var # output_args_one_per_line `echo " a b c "` # [a] # [b] # [c] echo; echo "IFS=:" echo "-----" IFS=: var=":a::b:c:::" # Same pattern as above, # ^ ^^ ^^^ #+ but substituting ":" for " " ... output_args_one_per_line $var # [] # [a] # [] # [b] # [c] # [] # [] # Note "empty" brackets. # The same thing happens with the "FS" field separator in awk. echo exit |
Added incompat.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 | #!/bin/bash # Erratic behavior of the "$*" and "$@" internal Bash variables, #+ depending on whether or not they are quoted. # Demonstrates inconsistent handling of word splitting and linefeeds. set -- "First one" "second" "third:one" "" "Fifth: :one" # Setting the script arguments, $1, $2, $3, etc. echo echo 'IFS unchanged, using "$*"' c=0 for i in "$*" # quoted do echo "$((c+=1)): [$i]" # This line remains the same in every instance. # Echo args. done echo --- echo 'IFS unchanged, using $*' c=0 for i in $* # unquoted do echo "$((c+=1)): [$i]" done echo --- echo 'IFS unchanged, using "$@"' c=0 for i in "$@" do echo "$((c+=1)): [$i]" done echo --- echo 'IFS unchanged, using $@' c=0 for i in $@ do echo "$((c+=1)): [$i]" done echo --- IFS=: echo 'IFS=":", using "$*"' c=0 for i in "$*" do echo "$((c+=1)): [$i]" done echo --- echo 'IFS=":", using $*' c=0 for i in $* do echo "$((c+=1)): [$i]" done echo --- var=$* echo 'IFS=":", using "$var" (var=$*)' c=0 for i in "$var" do echo "$((c+=1)): [$i]" done echo --- echo 'IFS=":", using $var (var=$*)' c=0 for i in $var do echo "$((c+=1)): [$i]" done echo --- var="$*" echo 'IFS=":", using $var (var="$*")' c=0 for i in $var do echo "$((c+=1)): [$i]" done echo --- echo 'IFS=":", using "$var" (var="$*")' c=0 for i in "$var" do echo "$((c+=1)): [$i]" done echo --- echo 'IFS=":", using "$@"' c=0 for i in "$@" do echo "$((c+=1)): [$i]" done echo --- echo 'IFS=":", using $@' c=0 for i in $@ do echo "$((c+=1)): [$i]" done echo --- var=$@ echo 'IFS=":", using $var (var=$@)' c=0 for i in $var do echo "$((c+=1)): [$i]" done echo --- echo 'IFS=":", using "$var" (var=$@)' c=0 for i in "$var" do echo "$((c+=1)): [$i]" done echo --- var="$@" echo 'IFS=":", using "$var" (var="$@")' c=0 for i in "$var" do echo "$((c+=1)): [$i]" done echo --- echo 'IFS=":", using $var (var="$@")' c=0 for i in $var do echo "$((c+=1)): [$i]" done echo # Try this script with ksh or zsh -y. exit 0 # This example script written by Stephane Chazelas, #+ and slightly modified by the document author. |
Added ind-func.sh.
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash # ind-func.sh: Passing an indirect reference to a function. echo_var () { echo "$1" } message=Hello Hello=Goodbye echo_var "$message" # Hello # Now, let's pass an indirect reference to the function. echo_var "${!message}" # Goodbye echo "-------------" # What happens if we change the contents of "hello" variable? Hello="Hello, again!" echo_var "$message" # Hello echo_var "${!message}" # Hello, again! exit 0 |
Added ind-ref.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 | #!/bin/bash # ind-ref.sh: Indirect variable referencing. # Accessing the contents of the contents of a variable. # First, let's fool around a little. var=23 echo "\$var = $var" # $var = 23 # So far, everything as expected. But ... echo "\$\$var = $$var" # $$var = 4570var # Not useful ... # \$\$ expanded to PID of the script # -- refer to the entry on the $$ variable -- #+ and "var" is echoed as plain text. # (Thank you, Jakob Bohm, for pointing this out.) echo "\\\$\$var = \$$var" # \$$var = $23 # As expected. The first $ is escaped and pasted on to #+ the value of var ($var = 23 ). # Meaningful, but still not useful. # Now, let's start over and do it the right way. # ============================================== # a=letter_of_alphabet # Variable "a" holds the name of another variable. letter_of_alphabet=z echo # Direct reference. echo "a = $a" # a = letter_of_alphabet # Indirect reference. eval a=\$$a # ^^^ Forcing an eval(uation), and ... # ^ Escaping the first $ ... # ------------------------------------------------------------------------ # The 'eval' forces an update of $a, sets it to the updated value of \$$a. # So, we see why 'eval' so often shows up in indirect reference notation. # ------------------------------------------------------------------------ echo "Now a = $a" # Now a = z echo # Now, let's try changing the second-order reference. t=table_cell_3 table_cell_3=24 echo "\"table_cell_3\" = $table_cell_3" # "table_cell_3" = 24 echo -n "dereferenced \"t\" = "; eval echo \$$t # dereferenced "t" = 24 # In this simple case, the following also works (why?). # eval t=\$$t; echo "\"t\" = $t" echo t=table_cell_3 NEW_VAL=387 table_cell_3=$NEW_VAL echo "Changing value of \"table_cell_3\" to $NEW_VAL." echo "\"table_cell_3\" now $table_cell_3" echo -n "dereferenced \"t\" now "; eval echo \$$t # "eval" takes the two arguments "echo" and "\$$t" (set equal to $table_cell_3) echo # (Thanks, Stephane Chazelas, for clearing up the above behavior.) # A more straightforward method is the ${!t} notation, discussed in the #+ "Bash, version 2" section. # See also ex78.sh. exit 0 |
Added insertion-sort.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #!/bin/bash # insertion-sort.bash: Insertion sort implementation in Bash # Heavy use of Bash array features: #+ (string) slicing, merging, etc # URL: http://www.lugmen.org.ar/~jjo/jjotip/insertion-sort.bash.d #+ /insertion-sort.bash.sh # # Author: JuanJo Ciarlante <jjo@irrigacion.gov.ar> # Lightly reformatted by ABS Guide author. # License: GPLv2 # Used in ABS Guide with author's permission (thanks!). # # Test with: ./insertion-sort.bash -t # Or: bash insertion-sort.bash -t # The following *doesn't* work: # sh insertion-sort.bash -t # Why not? Hint: which Bash-specific features are disabled #+ when running a script by 'sh script.sh'? # : ${DEBUG:=0} # Debug, override with: DEBUG=1 ./scriptname . . . # Parameter substitution -- set DEBUG to 0 if not previously set. # Global array: "list" typeset -a list # Load whitespace-separated numbers from stdin. if [ "$1" = "-t" ]; then DEBUG=1 read -a list < <( od -Ad -w24 -t u2 /dev/urandom ) # Random list. # ^ ^ process substition else read -a list fi numelem=${#list[*]} # Shows the list, marking the element whose index is $1 #+ by surrounding it with the two chars passed as $2. # Whole line prefixed with $3. showlist() { echo "$3"${list[@]:0:$1} ${2:0:1}${list[$1]}${2:1:1} ${list[@]:$1+1}; } # Loop _pivot_ -- from second element to end of list. for(( i=1; i<numelem; i++ )) do ((DEBUG))&&showlist i "[]" " " # From current _pivot_, back to first element. for(( j=i; j; j-- )) do # Search for the 1st elem. less than current "pivot" . . . [[ "${list[j-1]}" -le "${list[i]}" ]] && break done (( i==j )) && continue ## No insertion was needed for this element. # . . . Move list[i] (pivot) to the left of list[j]: list=(${list[@]:0:j} ${list[i]} ${list[j]}\ # {0,j-1} {i} {j} ${list[@]:j+1:i-(j+1)} ${list[@]:i+1}) # {j+1,i-1} {i+1,last} ((DEBUG))&&showlist j "<>" "*" done echo echo "------" echo $'Result:\n'${list[@]} exit $? |
Added int-or-string.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 | #!/bin/bash # int-or-string.sh a=2334 # Integer. let "a += 1" echo "a = $a " # a = 2335 echo # Integer, still. b=${a/23/BB} # Substitute "BB" for "23". # This transforms $b into a string. echo "b = $b" # b = BB35 declare -i b # Declaring it an integer doesn't help. echo "b = $b" # b = BB35 let "b += 1" # BB35 + 1 echo "b = $b" # b = 1 echo # Bash sets the "integer value" of a string to 0. c=BB34 echo "c = $c" # c = BB34 d=${c/BB/23} # Substitute "23" for "BB". # This makes $d an integer. echo "d = $d" # d = 2334 let "d += 1" # 2334 + 1 echo "d = $d" # d = 2335 echo # What about null variables? e='' # ... Or e="" ... Or e= echo "e = $e" # e = let "e += 1" # Arithmetic operations allowed on a null variable? echo "e = $e" # e = 1 echo # Null variable transformed into an integer. # What about undeclared variables? echo "f = $f" # f = let "f += 1" # Arithmetic operations allowed? echo "f = $f" # f = 1 echo # Undeclared variable transformed into an integer. # # However ... let "f /= $undecl_var" # Divide by zero? # let: f /= : syntax error: operand expected (error token is " ") # Syntax error! Variable $undecl_var is not set to zero here! # # But still ... let "f /= 0" # let: f /= 0: division by 0 (error token is "0") # Expected behavior. # Bash (usually) sets the "integer value" of null to zero #+ when performing an arithmetic operation. # But, don't try this at home, folks! # It's undocumented and probably non-portable behavior. # Conclusion: Variables in Bash are untyped, #+ with all attendant consequences. exit $? |
Added ip-addresses.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 | #!/bin/bash # ip-addresses.sh # List the IP addresses your computer is connected to. # Inspired by Greg Bledsoe's ddos.sh script, # Linux Journal, 09 March 2011. # URL: # http://www.linuxjournal.com/content/back-dead-simple-bash-complex-ddos # Greg licensed his script under the GPL2, #+ and as a derivative, this script is likewise GPL2. connection_type=TCP # Also try UDP. field=2 # Which field of the output we're interested in. no_match=LISTEN # Filter out records containing this. Why? lsof_args=-ni # -i lists Internet-associated files. # -n preserves numerical IP addresses. # What happens without the -n option? Try it. router="[0-9][0-9][0-9][0-9][0-9]->" # Delete the router info. lsof "$lsof_args" | grep $connection_type | grep -v "$no_match" | awk '{print $9}' | cut -d : -f $field | sort | uniq | sed s/"^$router"// # Bledsoe's script assigns the output of a filtered IP list, # (similar to lines 19-22, above) to a variable. # He checks for multiple connections to a single IP address, # then uses: # # iptables -I INPUT -s $ip -p tcp -j REJECT --reject-with tcp-reset # # ... within a 60-second delay loop to bounce packets from DDOS attacks. # Exercise: # -------- # Use the 'iptables' command to extend this script #+ to reject connection attempts from well-known spammer IP domains. |
Added ip.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 | #!/bin/bash # Script by Juan Nicolas Ruiz # Used with his kind permission. # Setting up (and stopping) a GRE tunnel. # --- start-tunnel.sh --- LOCAL_IP="192.168.1.17" REMOTE_IP="10.0.5.33" OTHER_IFACE="192.168.0.100" REMOTE_NET="192.168.3.0/24" /sbin/ip tunnel add netb mode gre remote $REMOTE_IP \ local $LOCAL_IP ttl 255 /sbin/ip addr add $OTHER_IFACE dev netb /sbin/ip link set netb up /sbin/ip route add $REMOTE_NET dev netb exit 0 ############################################# # --- stop-tunnel.sh --- REMOTE_NET="192.168.3.0/24" /sbin/ip route del $REMOTE_NET dev netb /sbin/ip link set netb down /sbin/ip tunnel del netb exit 0 |
Added is-spammer.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 | #! /bin/bash # is-spammer.sh: Identifying spam domains # $Id: is-spammer, v 1.4 2004/09/01 19:37:52 mszick Exp $ # Above line is RCS ID info. # # This is a simplified version of the "is_spammer.bash #+ script in the Contributed Scripts appendix. # is-spammer <domain.name> # Uses an external program: 'dig' # Tested with version: 9.2.4rc5 # Uses functions. # Uses IFS to parse strings by assignment into arrays. # And even does something useful: checks e-mail blacklists. # Use the domain.name(s) from the text body: # http://www.good_stuff.spammer.biz/just_ignore_everything_else # ^^^^^^^^^^^ # Or the domain.name(s) from any e-mail address: # Really_Good_Offer@spammer.biz # # as the only argument to this script. #(PS: have your Inet connection running) # # So, to invoke this script in the above two instances: # is-spammer.sh spammer.biz # Whitespace == :Space:Tab:Line Feed:Carriage Return: WSP_IFS=$'\x20'$'\x09'$'\x0A'$'\x0D' # No Whitespace == Line Feed:Carriage Return No_WSP=$'\x0A'$'\x0D' # Field separator for dotted decimal ip addresses ADR_IFS=${No_WSP}'.' # Get the dns text resource record. # get_txt <error_code> <list_query> get_txt() { # Parse $1 by assignment at the dots. local -a dns IFS=$ADR_IFS dns=( $1 ) IFS=$WSP_IFS if [ "${dns[0]}" == '127' ] then # See if there is a reason. echo $(dig +short $2 -t txt) fi } # Get the dns address resource record. # chk_adr <rev_dns> <list_server> chk_adr() { local reply local server local reason server=${1}${2} reply=$( dig +short ${server} ) # If reply might be an error code . . . if [ ${#reply} -gt 6 ] then reason=$(get_txt ${reply} ${server} ) reason=${reason:-${reply}} fi echo ${reason:-' not blacklisted.'} } # Need to get the IP address from the name. echo 'Get address of: '$1 ip_adr=$(dig +short $1) dns_reply=${ip_adr:-' no answer '} echo ' Found address: '${dns_reply} # A valid reply is at least 4 digits plus 3 dots. if [ ${#ip_adr} -gt 6 ] then echo declare query # Parse by assignment at the dots. declare -a dns IFS=$ADR_IFS dns=( ${ip_adr} ) IFS=$WSP_IFS # Reorder octets into dns query order. rev_dns="${dns[3]}"'.'"${dns[2]}"'.'"${dns[1]}"'.'"${dns[0]}"'.' # See: http://www.spamhaus.org (Conservative, well maintained) echo -n 'spamhaus.org says: ' echo $(chk_adr ${rev_dns} 'sbl-xbl.spamhaus.org') # See: http://ordb.org (Open mail relays) echo -n ' ordb.org says: ' echo $(chk_adr ${rev_dns} 'relays.ordb.org') # See: http://www.spamcop.net/ (You can report spammers here) echo -n ' spamcop.net says: ' echo $(chk_adr ${rev_dns} 'bl.spamcop.net') # # # other blacklist operations # # # # See: http://cbl.abuseat.org. echo -n ' abuseat.org says: ' echo $(chk_adr ${rev_dns} 'cbl.abuseat.org') # See: http://dsbl.org/usage (Various mail relays) echo echo 'Distributed Server Listings' echo -n ' list.dsbl.org says: ' echo $(chk_adr ${rev_dns} 'list.dsbl.org') echo -n ' multihop.dsbl.org says: ' echo $(chk_adr ${rev_dns} 'multihop.dsbl.org') echo -n 'unconfirmed.dsbl.org says: ' echo $(chk_adr ${rev_dns} 'unconfirmed.dsbl.org') else echo echo 'Could not use that address.' fi exit 0 # Exercises: # -------- # 1) Check arguments to script, # and exit with appropriate error message if necessary. # 2) Check if on-line at invocation of script, # and exit with appropriate error message if necessary. # 3) Substitute generic variables for "hard-coded" BHL domains. # 4) Set a time-out for the script using the "+time=" option to the 'dig' command. |
Added is_spammer.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 | #!/bin/bash # $Id: is_spammer.bash,v 1.12.2.11 2004/10/01 21:42:33 mszick Exp $ # Above line is RCS info. # The latest version of this script is available from http://www.morethan.org. # # Spammer-identification # by Michael S. Zick # Used in the ABS Guide with permission. ####################################################### # Documentation # See also "Quickstart" at end of script. ####################################################### :<<-'__is_spammer_Doc_' Copyright (c) Michael S. Zick, 2004 License: Unrestricted reuse in any form, for any purpose. Warranty: None -{Its a script; the user is on their own.}- Impatient? Application code: goto "# # # Hunt the Spammer' program code # # #" Example output: ":<<-'_is_spammer_outputs_'" How to use: Enter script name without arguments. Or goto "Quickstart" at end of script. Provides Given a domain name or IP(v4) address as input: Does an exhaustive set of queries to find the associated network resources (short of recursing into TLDs). Checks the IP(v4) addresses found against Blacklist nameservers. If found to be a blacklisted IP(v4) address, reports the blacklist text records. (Usually hyper-links to the specific report.) Requires A working Internet connection. (Exercise: Add check and/or abort if not on-line when running script.) Bash with arrays (2.05b+). The external program 'dig' -- a utility program provided with the 'bind' set of programs. Specifically, the version which is part of Bind series 9.x See: http://www.isc.org All usages of 'dig' are limited to wrapper functions, which may be rewritten as required. See: dig_wrappers.bash for details. ("Additional documentation" -- below) Usage Script requires a single argument, which may be: 1) A domain name; 2) An IP(v4) address; 3) A filename, with one name or address per line. Script accepts an optional second argument, which may be: 1) A Blacklist server name; 2) A filename, with one Blacklist server name per line. If the second argument is not provided, the script uses a built-in set of (free) Blacklist servers. See also, the Quickstart at the end of this script (after 'exit'). Return Codes 0 - All OK 1 - Script failure 2 - Something is Blacklisted Optional environment variables SPAMMER_TRACE If set to a writable file, script will log an execution flow trace. SPAMMER_DATA If set to a writable file, script will dump its discovered data in the form of GraphViz file. See: http://www.research.att.com/sw/tools/graphviz SPAMMER_LIMIT Limits the depth of resource tracing. Default is 2 levels. A setting of 0 (zero) means 'unlimited' . . . Caution: script might recurse the whole Internet! A limit of 1 or 2 is most useful when processing a file of domain names and addresses. A higher limit can be useful when hunting spam gangs. Additional documentation Download the archived set of scripts explaining and illustrating the function contained within this script. http://bash.deta.in/mszick_clf.tar.bz2 Study notes This script uses a large number of functions. Nearly all general functions have their own example script. Each of the example scripts have tutorial level comments. Scripting project Add support for IP(v6) addresses. IP(v6) addresses are recognized but not processed. Advanced project Add the reverse lookup detail to the discovered information. Report the delegation chain and abuse contacts. Modify the GraphViz file output to include the newly discovered information. __is_spammer_Doc_ ####################################################### #### Special IFS settings used for string parsing. #### # Whitespace == :Space:Tab:Line Feed:Carriage Return: WSP_IFS=$'\x20'$'\x09'$'\x0A'$'\x0D' # No Whitespace == Line Feed:Carriage Return NO_WSP=$'\x0A'$'\x0D' # Field separator for dotted decimal IP addresses ADR_IFS=${NO_WSP}'.' # Array to dotted string conversions DOT_IFS='.'${WSP_IFS} # # # Pending operations stack machine # # # # This set of functions described in func_stack.bash. # (See "Additional documentation" above.) # # # # Global stack of pending operations. declare -f -a _pending_ # Global sentinel for stack runners declare -i _p_ctrl_ # Global holder for currently executing function declare -f _pend_current_ # # # Debug version only - remove for regular use # # # # # The function stored in _pend_hook_ is called # immediately before each pending function is # evaluated. Stack clean, _pend_current_ set. # # This thingy demonstrated in pend_hook.bash. declare -f _pend_hook_ # # # # The do nothing function pend_dummy() { : ; } # Clear and initialize the function stack. pend_init() { unset _pending_[@] pend_func pend_stop_mark _pend_hook_='pend_dummy' # Debug only. } # Discard the top function on the stack. pend_pop() { if [ ${#_pending_[@]} -gt 0 ] then local -i _top_ _top_=${#_pending_[@]}-1 unset _pending_[$_top_] fi } # pend_func function_name [$(printf '%q\n' arguments)] pend_func() { local IFS=${NO_WSP} set -f _pending_[${#_pending_[@]}]=$@ set +f } # The function which stops the release: pend_stop_mark() { _p_ctrl_=0 } pend_mark() { pend_func pend_stop_mark } # Execute functions until 'pend_stop_mark' . . . pend_release() { local -i _top_ # Declare _top_ as integer. _p_ctrl_=${#_pending_[@]} while [ ${_p_ctrl_} -gt 0 ] do _top_=${#_pending_[@]}-1 _pend_current_=${_pending_[$_top_]} unset _pending_[$_top_] $_pend_hook_ # Debug only. eval $_pend_current_ done } # Drop functions until 'pend_stop_mark' . . . pend_drop() { local -i _top_ local _pd_ctrl_=${#_pending_[@]} while [ ${_pd_ctrl_} -gt 0 ] do _top_=$_pd_ctrl_-1 if [ "${_pending_[$_top_]}" == 'pend_stop_mark' ] then unset _pending_[$_top_] break else unset _pending_[$_top_] _pd_ctrl_=$_top_ fi done if [ ${#_pending_[@]} -eq 0 ] then pend_func pend_stop_mark fi } #### Array editors #### # This function described in edit_exact.bash. # (See "Additional documentation," above.) # edit_exact <excludes_array_name> <target_array_name> edit_exact() { [ $# -eq 2 ] || [ $# -eq 3 ] || return 1 local -a _ee_Excludes local -a _ee_Target local _ee_x local _ee_t local IFS=${NO_WSP} set -f eval _ee_Excludes=\( \$\{$1\[@\]\} \) eval _ee_Target=\( \$\{$2\[@\]\} \) local _ee_len=${#_ee_Target[@]} # Original length. local _ee_cnt=${#_ee_Excludes[@]} # Exclude list length. [ ${_ee_len} -ne 0 ] || return 0 # Can't edit zero length. [ ${_ee_cnt} -ne 0 ] || return 0 # Can't edit zero length. for (( x = 0; x < ${_ee_cnt} ; x++ )) do _ee_x=${_ee_Excludes[$x]} for (( n = 0 ; n < ${_ee_len} ; n++ )) do _ee_t=${_ee_Target[$n]} if [ x"${_ee_t}" == x"${_ee_x}" ] then unset _ee_Target[$n] # Discard match. [ $# -eq 2 ] && break # If 2 arguments, then done. fi done done eval $2=\( \$\{_ee_Target\[@\]\} \) set +f return 0 } # This function described in edit_by_glob.bash. # edit_by_glob <excludes_array_name> <target_array_name> edit_by_glob() { [ $# -eq 2 ] || [ $# -eq 3 ] || return 1 local -a _ebg_Excludes local -a _ebg_Target local _ebg_x local _ebg_t local IFS=${NO_WSP} set -f eval _ebg_Excludes=\( \$\{$1\[@\]\} \) eval _ebg_Target=\( \$\{$2\[@\]\} \) local _ebg_len=${#_ebg_Target[@]} local _ebg_cnt=${#_ebg_Excludes[@]} [ ${_ebg_len} -ne 0 ] || return 0 [ ${_ebg_cnt} -ne 0 ] || return 0 for (( x = 0; x < ${_ebg_cnt} ; x++ )) do _ebg_x=${_ebg_Excludes[$x]} for (( n = 0 ; n < ${_ebg_len} ; n++ )) do [ $# -eq 3 ] && _ebg_x=${_ebg_x}'*' # Do prefix edit if [ ${_ebg_Target[$n]:=} ] #+ if defined & set. then _ebg_t=${_ebg_Target[$n]/#${_ebg_x}/} [ ${#_ebg_t} -eq 0 ] && unset _ebg_Target[$n] fi done done eval $2=\( \$\{_ebg_Target\[@\]\} \) set +f return 0 } # This function described in unique_lines.bash. # unique_lines <in_name> <out_name> unique_lines() { [ $# -eq 2 ] || return 1 local -a _ul_in local -a _ul_out local -i _ul_cnt local -i _ul_pos local _ul_tmp local IFS=${NO_WSP} set -f eval _ul_in=\( \$\{$1\[@\]\} \) _ul_cnt=${#_ul_in[@]} for (( _ul_pos = 0 ; _ul_pos < ${_ul_cnt} ; _ul_pos++ )) do if [ ${_ul_in[${_ul_pos}]:=} ] # If defined & not empty then _ul_tmp=${_ul_in[${_ul_pos}]} _ul_out[${#_ul_out[@]}]=${_ul_tmp} for (( zap = _ul_pos ; zap < ${_ul_cnt} ; zap++ )) do [ ${_ul_in[${zap}]:=} ] && [ 'x'${_ul_in[${zap}]} == 'x'${_ul_tmp} ] && unset _ul_in[${zap}] done fi done eval $2=\( \$\{_ul_out\[@\]\} \) set +f return 0 } # This function described in char_convert.bash. # to_lower <string> to_lower() { [ $# -eq 1 ] || return 1 local _tl_out _tl_out=${1//A/a} _tl_out=${_tl_out//B/b} _tl_out=${_tl_out//C/c} _tl_out=${_tl_out//D/d} _tl_out=${_tl_out//E/e} _tl_out=${_tl_out//F/f} _tl_out=${_tl_out//G/g} _tl_out=${_tl_out//H/h} _tl_out=${_tl_out//I/i} _tl_out=${_tl_out//J/j} _tl_out=${_tl_out//K/k} _tl_out=${_tl_out//L/l} _tl_out=${_tl_out//M/m} _tl_out=${_tl_out//N/n} _tl_out=${_tl_out//O/o} _tl_out=${_tl_out//P/p} _tl_out=${_tl_out//Q/q} _tl_out=${_tl_out//R/r} _tl_out=${_tl_out//S/s} _tl_out=${_tl_out//T/t} _tl_out=${_tl_out//U/u} _tl_out=${_tl_out//V/v} _tl_out=${_tl_out//W/w} _tl_out=${_tl_out//X/x} _tl_out=${_tl_out//Y/y} _tl_out=${_tl_out//Z/z} echo ${_tl_out} return 0 } #### Application helper functions #### # Not everybody uses dots as separators (APNIC, for example). # This function described in to_dot.bash # to_dot <string> to_dot() { [ $# -eq 1 ] || return 1 echo ${1//[#|@|%]/.} return 0 } # This function described in is_number.bash. # is_number <input> is_number() { [ "$#" -eq 1 ] || return 1 # is blank? [ x"$1" == 'x0' ] && return 0 # is zero? local -i tst let tst=$1 2>/dev/null # else is numeric! return $? } # This function described in is_address.bash. # is_address <input> is_address() { [ $# -eq 1 ] || return 1 # Blank ==> false local -a _ia_input local IFS=${ADR_IFS} _ia_input=( $1 ) if [ ${#_ia_input[@]} -eq 4 ] && is_number ${_ia_input[0]} && is_number ${_ia_input[1]} && is_number ${_ia_input[2]} && is_number ${_ia_input[3]} && [ ${_ia_input[0]} -lt 256 ] && [ ${_ia_input[1]} -lt 256 ] && [ ${_ia_input[2]} -lt 256 ] && [ ${_ia_input[3]} -lt 256 ] then return 0 else return 1 fi } # This function described in split_ip.bash. # split_ip <IP_address> #+ <array_name_norm> [<array_name_rev>] split_ip() { [ $# -eq 3 ] || # Either three [ $# -eq 2 ] || return 1 #+ or two arguments local -a _si_input local IFS=${ADR_IFS} _si_input=( $1 ) IFS=${WSP_IFS} eval $2=\(\ \$\{_si_input\[@\]\}\ \) if [ $# -eq 3 ] then # Build query order array. local -a _dns_ip _dns_ip[0]=${_si_input[3]} _dns_ip[1]=${_si_input[2]} _dns_ip[2]=${_si_input[1]} _dns_ip[3]=${_si_input[0]} eval $3=\(\ \$\{_dns_ip\[@\]\}\ \) fi return 0 } # This function described in dot_array.bash. # dot_array <array_name> dot_array() { [ $# -eq 1 ] || return 1 # Single argument required. local -a _da_input eval _da_input=\(\ \$\{$1\[@\]\}\ \) local IFS=${DOT_IFS} local _da_output=${_da_input[@]} IFS=${WSP_IFS} echo ${_da_output} return 0 } # This function described in file_to_array.bash # file_to_array <file_name> <line_array_name> file_to_array() { [ $# -eq 2 ] || return 1 # Two arguments required. local IFS=${NO_WSP} local -a _fta_tmp_ _fta_tmp_=( $(cat $1) ) eval $2=\( \$\{_fta_tmp_\[@\]\} \) return 0 } # Columnized print of an array of multi-field strings. # col_print <array_name> <min_space> < #+ tab_stop [tab_stops]> col_print() { [ $# -gt 2 ] || return 0 local -a _cp_inp local -a _cp_spc local -a _cp_line local _cp_min local _cp_mcnt local _cp_pos local _cp_cnt local _cp_tab local -i _cp local -i _cpf local _cp_fld # WARNING: FOLLOWING LINE NOT BLANK -- IT IS QUOTED SPACES. local _cp_max=' ' set -f local IFS=${NO_WSP} eval _cp_inp=\(\ \$\{$1\[@\]\}\ \) [ ${#_cp_inp[@]} -gt 0 ] || return 0 # Empty is easy. _cp_mcnt=$2 _cp_min=${_cp_max:1:${_cp_mcnt}} shift shift _cp_cnt=$# for (( _cp = 0 ; _cp < _cp_cnt ; _cp++ )) do _cp_spc[${#_cp_spc[@]}]="${_cp_max:2:$1}" #" shift done _cp_cnt=${#_cp_inp[@]} for (( _cp = 0 ; _cp < _cp_cnt ; _cp++ )) do _cp_pos=1 IFS=${NO_WSP}$'\x20' _cp_line=( ${_cp_inp[${_cp}]} ) IFS=${NO_WSP} for (( _cpf = 0 ; _cpf < ${#_cp_line[@]} ; _cpf++ )) do _cp_tab=${_cp_spc[${_cpf}]:${_cp_pos}} if [ ${#_cp_tab} -lt ${_cp_mcnt} ] then _cp_tab="${_cp_min}" fi echo -n "${_cp_tab}" (( _cp_pos = ${_cp_pos} + ${#_cp_tab} )) _cp_fld="${_cp_line[${_cpf}]}" echo -n ${_cp_fld} (( _cp_pos = ${_cp_pos} + ${#_cp_fld} )) done echo done set +f return 0 } # # # # 'Hunt the Spammer' data flow # # # # # Application return code declare -i _hs_RC # Original input, from which IP addresses are removed # After which, domain names to check declare -a uc_name # Original input IP addresses are moved here # After which, IP addresses to check declare -a uc_address # Names against which address expansion run # Ready for name detail lookup declare -a chk_name # Addresses against which name expansion run # Ready for address detail lookup declare -a chk_address # Recursion is depth-first-by-name. # The expand_input_address maintains this list #+ to prohibit looking up addresses twice during #+ domain name recursion. declare -a been_there_addr been_there_addr=( '127.0.0.1' ) # Whitelist localhost # Names which we have checked (or given up on) declare -a known_name # Addresses which we have checked (or given up on) declare -a known_address # List of zero or more Blacklist servers to check. # Each 'known_address' will be checked against each server, #+ with negative replies and failures suppressed. declare -a list_server # Indirection limit - set to zero == no limit indirect=${SPAMMER_LIMIT:=2} # # # # 'Hunt the Spammer' information output data # # # # # Any domain name may have multiple IP addresses. # Any IP address may have multiple domain names. # Therefore, track unique address-name pairs. declare -a known_pair declare -a reverse_pair # In addition to the data flow variables; known_address #+ known_name and list_server, the following are output to the #+ external graphics interface file. # Authority chain, parent -> SOA fields. declare -a auth_chain # Reference chain, parent name -> child name declare -a ref_chain # DNS chain - domain name -> address declare -a name_address # Name and service pairs - domain name -> service declare -a name_srvc # Name and resource pairs - domain name -> Resource Record declare -a name_resource # Parent and Child pairs - parent name -> child name # This MAY NOT be the same as the ref_chain followed! declare -a parent_child # Address and Blacklist hit pairs - address->server declare -a address_hits # Dump interface file data declare -f _dot_dump _dot_dump=pend_dummy # Initially a no-op # Data dump is enabled by setting the environment variable SPAMMER_DATA #+ to the name of a writable file. declare _dot_file # Helper function for the dump-to-dot-file function # dump_to_dot <array_name> <prefix> dump_to_dot() { local -a _dda_tmp local -i _dda_cnt local _dda_form=' '${2}'%04u %s\n' local IFS=${NO_WSP} eval _dda_tmp=\(\ \$\{$1\[@\]\}\ \) _dda_cnt=${#_dda_tmp[@]} if [ ${_dda_cnt} -gt 0 ] then for (( _dda = 0 ; _dda < _dda_cnt ; _dda++ )) do printf "${_dda_form}" \ "${_dda}" "${_dda_tmp[${_dda}]}" >>${_dot_file} done fi } # Which will also set _dot_dump to this function . . . dump_dot() { local -i _dd_cnt echo '# Data vintage: '$(date -R) >${_dot_file} echo '# ABS Guide: is_spammer.bash; v2, 2004-msz' >>${_dot_file} echo >>${_dot_file} echo 'digraph G {' >>${_dot_file} if [ ${#known_name[@]} -gt 0 ] then echo >>${_dot_file} echo '# Known domain name nodes' >>${_dot_file} _dd_cnt=${#known_name[@]} for (( _dd = 0 ; _dd < _dd_cnt ; _dd++ )) do printf ' N%04u [label="%s"] ;\n' \ "${_dd}" "${known_name[${_dd}]}" >>${_dot_file} done fi if [ ${#known_address[@]} -gt 0 ] then echo >>${_dot_file} echo '# Known address nodes' >>${_dot_file} _dd_cnt=${#known_address[@]} for (( _dd = 0 ; _dd < _dd_cnt ; _dd++ )) do printf ' A%04u [label="%s"] ;\n' \ "${_dd}" "${known_address[${_dd}]}" >>${_dot_file} done fi echo >>${_dot_file} echo '/*' >>${_dot_file} echo ' * Known relationships :: User conversion to' >>${_dot_file} echo ' * graphic form by hand or program required.' >>${_dot_file} echo ' *' >>${_dot_file} if [ ${#auth_chain[@]} -gt 0 ] then echo >>${_dot_file} echo '# Authority ref. edges followed & field source.' >>${_dot_file} dump_to_dot auth_chain AC fi if [ ${#ref_chain[@]} -gt 0 ] then echo >>${_dot_file} echo '# Name ref. edges followed and field source.' >>${_dot_file} dump_to_dot ref_chain RC fi if [ ${#name_address[@]} -gt 0 ] then echo >>${_dot_file} echo '# Known name->address edges' >>${_dot_file} dump_to_dot name_address NA fi if [ ${#name_srvc[@]} -gt 0 ] then echo >>${_dot_file} echo '# Known name->service edges' >>${_dot_file} dump_to_dot name_srvc NS fi if [ ${#name_resource[@]} -gt 0 ] then echo >>${_dot_file} echo '# Known name->resource edges' >>${_dot_file} dump_to_dot name_resource NR fi if [ ${#parent_child[@]} -gt 0 ] then echo >>${_dot_file} echo '# Known parent->child edges' >>${_dot_file} dump_to_dot parent_child PC fi if [ ${#list_server[@]} -gt 0 ] then echo >>${_dot_file} echo '# Known Blacklist nodes' >>${_dot_file} _dd_cnt=${#list_server[@]} for (( _dd = 0 ; _dd < _dd_cnt ; _dd++ )) do printf ' LS%04u [label="%s"] ;\n' \ "${_dd}" "${list_server[${_dd}]}" >>${_dot_file} done fi unique_lines address_hits address_hits if [ ${#address_hits[@]} -gt 0 ] then echo >>${_dot_file} echo '# Known address->Blacklist_hit edges' >>${_dot_file} echo '# CAUTION: dig warnings can trigger false hits.' >>${_dot_file} dump_to_dot address_hits AH fi echo >>${_dot_file} echo ' *' >>${_dot_file} echo ' * That is a lot of relationships. Happy graphing.' >>${_dot_file} echo ' */' >>${_dot_file} echo '}' >>${_dot_file} return 0 } # # # # 'Hunt the Spammer' execution flow # # # # # Execution trace is enabled by setting the #+ environment variable SPAMMER_TRACE to the name of a writable file. declare -a _trace_log declare _log_file # Function to fill the trace log trace_logger() { _trace_log[${#_trace_log[@]}]=${_pend_current_} } # Dump trace log to file function variable. declare -f _log_dump _log_dump=pend_dummy # Initially a no-op. # Dump the trace log to a file. dump_log() { local -i _dl_cnt _dl_cnt=${#_trace_log[@]} for (( _dl = 0 ; _dl < _dl_cnt ; _dl++ )) do echo ${_trace_log[${_dl}]} >> ${_log_file} done _dl_cnt=${#_pending_[@]} if [ ${_dl_cnt} -gt 0 ] then _dl_cnt=${_dl_cnt}-1 echo '# # # Operations stack not empty # # #' >> ${_log_file} for (( _dl = ${_dl_cnt} ; _dl >= 0 ; _dl-- )) do echo ${_pending_[${_dl}]} >> ${_log_file} done fi } # # # Utility program 'dig' wrappers # # # # # These wrappers are derived from the #+ examples shown in dig_wrappers.bash. # # The major difference is these return #+ their results as a list in an array. # # See dig_wrappers.bash for details and #+ use that script to develop any changes. # # # # # Short form answer: 'dig' parses answer. # Forward lookup :: Name -> Address # short_fwd <domain_name> <array_name> short_fwd() { local -a _sf_reply local -i _sf_rc local -i _sf_cnt IFS=${NO_WSP} echo -n '.' # echo 'sfwd: '${1} _sf_reply=( $(dig +short ${1} -c in -t a 2>/dev/null) ) _sf_rc=$? if [ ${_sf_rc} -ne 0 ] then _trace_log[${#_trace_log[@]}]='## Lookup error '${_sf_rc}' on '${1}' ##' # [ ${_sf_rc} -ne 9 ] && pend_drop return ${_sf_rc} else # Some versions of 'dig' return warnings on stdout. _sf_cnt=${#_sf_reply[@]} for (( _sf = 0 ; _sf < ${_sf_cnt} ; _sf++ )) do [ 'x'${_sf_reply[${_sf}]:0:2} == 'x;;' ] && unset _sf_reply[${_sf}] done eval $2=\( \$\{_sf_reply\[@\]\} \) fi return 0 } # Reverse lookup :: Address -> Name # short_rev <ip_address> <array_name> short_rev() { local -a _sr_reply local -i _sr_rc local -i _sr_cnt IFS=${NO_WSP} echo -n '.' # echo 'srev: '${1} _sr_reply=( $(dig +short -x ${1} 2>/dev/null) ) _sr_rc=$? if [ ${_sr_rc} -ne 0 ] then _trace_log[${#_trace_log[@]}]='## Lookup error '${_sr_rc}' on '${1}' ##' # [ ${_sr_rc} -ne 9 ] && pend_drop return ${_sr_rc} else # Some versions of 'dig' return warnings on stdout. _sr_cnt=${#_sr_reply[@]} for (( _sr = 0 ; _sr < ${_sr_cnt} ; _sr++ )) do [ 'x'${_sr_reply[${_sr}]:0:2} == 'x;;' ] && unset _sr_reply[${_sr}] done eval $2=\( \$\{_sr_reply\[@\]\} \) fi return 0 } # Special format lookup used to query blacklist servers. # short_text <ip_address> <array_name> short_text() { local -a _st_reply local -i _st_rc local -i _st_cnt IFS=${NO_WSP} # echo 'stxt: '${1} _st_reply=( $(dig +short ${1} -c in -t txt 2>/dev/null) ) _st_rc=$? if [ ${_st_rc} -ne 0 ] then _trace_log[${#_trace_log[@]}]='##Text lookup error '${_st_rc}' on '${1}'##' # [ ${_st_rc} -ne 9 ] && pend_drop return ${_st_rc} else # Some versions of 'dig' return warnings on stdout. _st_cnt=${#_st_reply[@]} for (( _st = 0 ; _st < ${#_st_cnt} ; _st++ )) do [ 'x'${_st_reply[${_st}]:0:2} == 'x;;' ] && unset _st_reply[${_st}] done eval $2=\( \$\{_st_reply\[@\]\} \) fi return 0 } # The long forms, a.k.a., the parse it yourself versions # RFC 2782 Service lookups # dig +noall +nofail +answer _ldap._tcp.openldap.org -t srv # _<service>._<protocol>.<domain_name> # _ldap._tcp.openldap.org. 3600 IN SRV 0 0 389 ldap.openldap.org. # domain TTL Class SRV Priority Weight Port Target # Forward lookup :: Name -> poor man's zone transfer # long_fwd <domain_name> <array_name> long_fwd() { local -a _lf_reply local -i _lf_rc local -i _lf_cnt IFS=${NO_WSP} echo -n ':' # echo 'lfwd: '${1} _lf_reply=( $( dig +noall +nofail +answer +authority +additional \ ${1} -t soa ${1} -t mx ${1} -t any 2>/dev/null) ) _lf_rc=$? if [ ${_lf_rc} -ne 0 ] then _trace_log[${#_trace_log[@]}]='# Zone lookup err '${_lf_rc}' on '${1}' #' # [ ${_lf_rc} -ne 9 ] && pend_drop return ${_lf_rc} else # Some versions of 'dig' return warnings on stdout. _lf_cnt=${#_lf_reply[@]} for (( _lf = 0 ; _lf < ${_lf_cnt} ; _lf++ )) do [ 'x'${_lf_reply[${_lf}]:0:2} == 'x;;' ] && unset _lf_reply[${_lf}] done eval $2=\( \$\{_lf_reply\[@\]\} \) fi return 0 } # The reverse lookup domain name corresponding to the IPv6 address: # 4321:0:1:2:3:4:567:89ab # would be (nibble, I.E: Hexdigit) reversed: # b.a.9.8.7.6.5.0.4.0.0.0.3.0.0.0.2.0.0.0.1.0.0.0.0.0.0.0.1.2.3.4.IP6.ARPA. # Reverse lookup :: Address -> poor man's delegation chain # long_rev <rev_ip_address> <array_name> long_rev() { local -a _lr_reply local -i _lr_rc local -i _lr_cnt local _lr_dns _lr_dns=${1}'.in-addr.arpa.' IFS=${NO_WSP} echo -n ':' # echo 'lrev: '${1} _lr_reply=( $( dig +noall +nofail +answer +authority +additional \ ${_lr_dns} -t soa ${_lr_dns} -t any 2>/dev/null) ) _lr_rc=$? if [ ${_lr_rc} -ne 0 ] then _trace_log[${#_trace_log[@]}]='# Deleg lkp error '${_lr_rc}' on '${1}' #' # [ ${_lr_rc} -ne 9 ] && pend_drop return ${_lr_rc} else # Some versions of 'dig' return warnings on stdout. _lr_cnt=${#_lr_reply[@]} for (( _lr = 0 ; _lr < ${_lr_cnt} ; _lr++ )) do [ 'x'${_lr_reply[${_lr}]:0:2} == 'x;;' ] && unset _lr_reply[${_lr}] done eval $2=\( \$\{_lr_reply\[@\]\} \) fi return 0 } # # # Application specific functions # # # # Mung a possible name; suppresses root and TLDs. # name_fixup <string> name_fixup(){ local -a _nf_tmp local -i _nf_end local _nf_str local IFS _nf_str=$(to_lower ${1}) _nf_str=$(to_dot ${_nf_str}) _nf_end=${#_nf_str}-1 [ ${_nf_str:${_nf_end}} != '.' ] && _nf_str=${_nf_str}'.' IFS=${ADR_IFS} _nf_tmp=( ${_nf_str} ) IFS=${WSP_IFS} _nf_end=${#_nf_tmp[@]} case ${_nf_end} in 0) # No dots, only dots. echo return 1 ;; 1) # Only a TLD. echo return 1 ;; 2) # Maybe okay. echo ${_nf_str} return 0 # Needs a lookup table? if [ ${#_nf_tmp[1]} -eq 2 ] then # Country coded TLD. echo return 1 else echo ${_nf_str} return 0 fi ;; esac echo ${_nf_str} return 0 } # Grope and mung original input(s). split_input() { [ ${#uc_name[@]} -gt 0 ] || return 0 local -i _si_cnt local -i _si_len local _si_str unique_lines uc_name uc_name _si_cnt=${#uc_name[@]} for (( _si = 0 ; _si < _si_cnt ; _si++ )) do _si_str=${uc_name[$_si]} if is_address ${_si_str} then uc_address[${#uc_address[@]}]=${_si_str} unset uc_name[$_si] else if ! uc_name[$_si]=$(name_fixup ${_si_str}) then unset ucname[$_si] fi fi done uc_name=( ${uc_name[@]} ) _si_cnt=${#uc_name[@]} _trace_log[${#_trace_log[@]}]='#Input '${_si_cnt}' unchkd name input(s).#' _si_cnt=${#uc_address[@]} _trace_log[${#_trace_log[@]}]='#Input '${_si_cnt}' unchkd addr input(s).#' return 0 } # # # Discovery functions -- recursively interlocked by external data # # # # # # The leading 'if list is empty; return 0' in each is required. # # # # Recursion limiter # limit_chk() <next_level> limit_chk() { local -i _lc_lmt # Check indirection limit. if [ ${indirect} -eq 0 ] || [ $# -eq 0 ] then # The 'do-forever' choice echo 1 # Any value will do. return 0 # OK to continue. else # Limiting is in effect. if [ ${indirect} -lt ${1} ] then echo ${1} # Whatever. return 1 # Stop here. else _lc_lmt=${1}+1 # Bump the given limit. echo ${_lc_lmt} # Echo it. return 0 # OK to continue. fi fi } # For each name in uc_name: # Move name to chk_name. # Add addresses to uc_address. # Pend expand_input_address. # Repeat until nothing new found. # expand_input_name <indirection_limit> expand_input_name() { [ ${#uc_name[@]} -gt 0 ] || return 0 local -a _ein_addr local -a _ein_new local -i _ucn_cnt local -i _ein_cnt local _ein_tst _ucn_cnt=${#uc_name[@]} if ! _ein_cnt=$(limit_chk ${1}) then return 0 fi for (( _ein = 0 ; _ein < _ucn_cnt ; _ein++ )) do if short_fwd ${uc_name[${_ein}]} _ein_new then for (( _ein_cnt = 0 ; _ein_cnt < ${#_ein_new[@]}; _ein_cnt++ )) do _ein_tst=${_ein_new[${_ein_cnt}]} if is_address ${_ein_tst} then _ein_addr[${#_ein_addr[@]}]=${_ein_tst} fi done fi done unique_lines _ein_addr _ein_addr # Scrub duplicates. edit_exact chk_address _ein_addr # Scrub pending detail. edit_exact known_address _ein_addr # Scrub already detailed. if [ ${#_ein_addr[@]} -gt 0 ] # Anything new? then uc_address=( ${uc_address[@]} ${_ein_addr[@]} ) pend_func expand_input_address ${1} _trace_log[${#_trace_log[@]}]='#Add '${#_ein_addr[@]}' unchkd addr inp.#' fi edit_exact chk_name uc_name # Scrub pending detail. edit_exact known_name uc_name # Scrub already detailed. if [ ${#uc_name[@]} -gt 0 ] then chk_name=( ${chk_name[@]} ${uc_name[@]} ) pend_func detail_each_name ${1} fi unset uc_name[@] return 0 } # For each address in uc_address: # Move address to chk_address. # Add names to uc_name. # Pend expand_input_name. # Repeat until nothing new found. # expand_input_address <indirection_limit> expand_input_address() { [ ${#uc_address[@]} -gt 0 ] || return 0 local -a _eia_addr local -a _eia_name local -a _eia_new local -i _uca_cnt local -i _eia_cnt local _eia_tst unique_lines uc_address _eia_addr unset uc_address[@] edit_exact been_there_addr _eia_addr _uca_cnt=${#_eia_addr[@]} [ ${_uca_cnt} -gt 0 ] && been_there_addr=( ${been_there_addr[@]} ${_eia_addr[@]} ) for (( _eia = 0 ; _eia < _uca_cnt ; _eia++ )) do if short_rev ${_eia_addr[${_eia}]} _eia_new then for (( _eia_cnt = 0 ; _eia_cnt < ${#_eia_new[@]} ; _eia_cnt++ )) do _eia_tst=${_eia_new[${_eia_cnt}]} if _eia_tst=$(name_fixup ${_eia_tst}) then _eia_name[${#_eia_name[@]}]=${_eia_tst} fi done fi done unique_lines _eia_name _eia_name # Scrub duplicates. edit_exact chk_name _eia_name # Scrub pending detail. edit_exact known_name _eia_name # Scrub already detailed. if [ ${#_eia_name[@]} -gt 0 ] # Anything new? then uc_name=( ${uc_name[@]} ${_eia_name[@]} ) pend_func expand_input_name ${1} _trace_log[${#_trace_log[@]}]='#Add '${#_eia_name[@]}' unchkd name inp.#' fi edit_exact chk_address _eia_addr # Scrub pending detail. edit_exact known_address _eia_addr # Scrub already detailed. if [ ${#_eia_addr[@]} -gt 0 ] # Anything new? then chk_address=( ${chk_address[@]} ${_eia_addr[@]} ) pend_func detail_each_address ${1} fi return 0 } # The parse-it-yourself zone reply. # The input is the chk_name list. # detail_each_name <indirection_limit> detail_each_name() { [ ${#chk_name[@]} -gt 0 ] || return 0 local -a _den_chk # Names to check local -a _den_name # Names found here local -a _den_address # Addresses found here local -a _den_pair # Pairs found here local -a _den_rev # Reverse pairs found here local -a _den_tmp # Line being parsed local -a _den_auth # SOA contact being parsed local -a _den_new # The zone reply local -a _den_pc # Parent-Child gets big fast local -a _den_ref # So does reference chain local -a _den_nr # Name-Resource can be big local -a _den_na # Name-Address local -a _den_ns # Name-Service local -a _den_achn # Chain of Authority local -i _den_cnt # Count of names to detail local -i _den_lmt # Indirection limit local _den_who # Named being processed local _den_rec # Record type being processed local _den_cont # Contact domain local _den_str # Fixed up name string local _den_str2 # Fixed up reverse local IFS=${WSP_IFS} # Local, unique copy of names to check unique_lines chk_name _den_chk unset chk_name[@] # Done with globals. # Less any names already known edit_exact known_name _den_chk _den_cnt=${#_den_chk[@]} # If anything left, add to known_name. [ ${_den_cnt} -gt 0 ] && known_name=( ${known_name[@]} ${_den_chk[@]} ) # for the list of (previously) unknown names . . . for (( _den = 0 ; _den < _den_cnt ; _den++ )) do _den_who=${_den_chk[${_den}]} if long_fwd ${_den_who} _den_new then unique_lines _den_new _den_new if [ ${#_den_new[@]} -eq 0 ] then _den_pair[${#_den_pair[@]}]='0.0.0.0 '${_den_who} fi # Parse each line in the reply. for (( _line = 0 ; _line < ${#_den_new[@]} ; _line++ )) do IFS=${NO_WSP}$'\x09'$'\x20' _den_tmp=( ${_den_new[${_line}]} ) IFS=${WSP_IFS} # If usable record and not a warning message . . . if [ ${#_den_tmp[@]} -gt 4 ] && [ 'x'${_den_tmp[0]} != 'x;;' ] then _den_rec=${_den_tmp[3]} _den_nr[${#_den_nr[@]}]=${_den_who}' '${_den_rec} # Begin at RFC1033 (+++) case ${_den_rec} in #<name> [<ttl>] [<class>] SOA <origin> <person> SOA) # Start Of Authority if _den_str=$(name_fixup ${_den_tmp[0]}) then _den_name[${#_den_name[@]}]=${_den_str} _den_achn[${#_den_achn[@]}]=${_den_who}' '${_den_str}' SOA' # SOA origin -- domain name of master zone record if _den_str2=$(name_fixup ${_den_tmp[4]}) then _den_name[${#_den_name[@]}]=${_den_str2} _den_achn[${#_den_achn[@]}]=${_den_who}' '${_den_str2}' SOA.O' fi # Responsible party e-mail address (possibly bogus). # Possibility of first.last@domain.name ignored. set -f if _den_str2=$(name_fixup ${_den_tmp[5]}) then IFS=${ADR_IFS} _den_auth=( ${_den_str2} ) IFS=${WSP_IFS} if [ ${#_den_auth[@]} -gt 2 ] then _den_cont=${_den_auth[1]} for (( _auth = 2 ; _auth < ${#_den_auth[@]} ; _auth++ )) do _den_cont=${_den_cont}'.'${_den_auth[${_auth}]} done _den_name[${#_den_name[@]}]=${_den_cont}'.' _den_achn[${#_den_achn[@]}]=${_den_who}' '${_den_cont}'. SOA.C' fi fi set +f fi ;; A) # IP(v4) Address Record if _den_str=$(name_fixup ${_den_tmp[0]}) then _den_name[${#_den_name[@]}]=${_den_str} _den_pair[${#_den_pair[@]}]=${_den_tmp[4]}' '${_den_str} _den_na[${#_den_na[@]}]=${_den_str}' '${_den_tmp[4]} _den_ref[${#_den_ref[@]}]=${_den_who}' '${_den_str}' A' else _den_pair[${#_den_pair[@]}]=${_den_tmp[4]}' unknown.domain' _den_na[${#_den_na[@]}]='unknown.domain '${_den_tmp[4]} _den_ref[${#_den_ref[@]}]=${_den_who}' unknown.domain A' fi _den_address[${#_den_address[@]}]=${_den_tmp[4]} _den_pc[${#_den_pc[@]}]=${_den_who}' '${_den_tmp[4]} ;; NS) # Name Server Record # Domain name being serviced (may be other than current) if _den_str=$(name_fixup ${_den_tmp[0]}) then _den_name[${#_den_name[@]}]=${_den_str} _den_ref[${#_den_ref[@]}]=${_den_who}' '${_den_str}' NS' # Domain name of service provider if _den_str2=$(name_fixup ${_den_tmp[4]}) then _den_name[${#_den_name[@]}]=${_den_str2} _den_ref[${#_den_ref[@]}]=${_den_who}' '${_den_str2}' NSH' _den_ns[${#_den_ns[@]}]=${_den_str2}' NS' _den_pc[${#_den_pc[@]}]=${_den_str}' '${_den_str2} fi fi ;; MX) # Mail Server Record # Domain name being serviced (wildcards not handled here) if _den_str=$(name_fixup ${_den_tmp[0]}) then _den_name[${#_den_name[@]}]=${_den_str} _den_ref[${#_den_ref[@]}]=${_den_who}' '${_den_str}' MX' fi # Domain name of service provider if _den_str=$(name_fixup ${_den_tmp[5]}) then _den_name[${#_den_name[@]}]=${_den_str} _den_ref[${#_den_ref[@]}]=${_den_who}' '${_den_str}' MXH' _den_ns[${#_den_ns[@]}]=${_den_str}' MX' _den_pc[${#_den_pc[@]}]=${_den_who}' '${_den_str} fi ;; PTR) # Reverse address record # Special name if _den_str=$(name_fixup ${_den_tmp[0]}) then _den_ref[${#_den_ref[@]}]=${_den_who}' '${_den_str}' PTR' # Host name (not a CNAME) if _den_str2=$(name_fixup ${_den_tmp[4]}) then _den_rev[${#_den_rev[@]}]=${_den_str}' '${_den_str2} _den_ref[${#_den_ref[@]}]=${_den_who}' '${_den_str2}' PTRH' _den_pc[${#_den_pc[@]}]=${_den_who}' '${_den_str} fi fi ;; AAAA) # IP(v6) Address Record if _den_str=$(name_fixup ${_den_tmp[0]}) then _den_name[${#_den_name[@]}]=${_den_str} _den_pair[${#_den_pair[@]}]=${_den_tmp[4]}' '${_den_str} _den_na[${#_den_na[@]}]=${_den_str}' '${_den_tmp[4]} _den_ref[${#_den_ref[@]}]=${_den_who}' '${_den_str}' AAAA' else _den_pair[${#_den_pair[@]}]=${_den_tmp[4]}' unknown.domain' _den_na[${#_den_na[@]}]='unknown.domain '${_den_tmp[4]} _den_ref[${#_den_ref[@]}]=${_den_who}' unknown.domain' fi # No processing for IPv6 addresses _den_pc[${#_den_pc[@]}]=${_den_who}' '${_den_tmp[4]} ;; CNAME) # Alias name record # Nickname if _den_str=$(name_fixup ${_den_tmp[0]}) then _den_name[${#_den_name[@]}]=${_den_str} _den_ref[${#_den_ref[@]}]=${_den_who}' '${_den_str}' CNAME' _den_pc[${#_den_pc[@]}]=${_den_who}' '${_den_str} fi # Hostname if _den_str=$(name_fixup ${_den_tmp[4]}) then _den_name[${#_den_name[@]}]=${_den_str} _den_ref[${#_den_ref[@]}]=${_den_who}' '${_den_str}' CHOST' _den_pc[${#_den_pc[@]}]=${_den_who}' '${_den_str} fi ;; # TXT) # ;; esac fi done else # Lookup error == 'A' record 'unknown address' _den_pair[${#_den_pair[@]}]='0.0.0.0 '${_den_who} fi done # Control dot array growth. unique_lines _den_achn _den_achn # Works best, all the same. edit_exact auth_chain _den_achn # Works best, unique items. if [ ${#_den_achn[@]} -gt 0 ] then IFS=${NO_WSP} auth_chain=( ${auth_chain[@]} ${_den_achn[@]} ) IFS=${WSP_IFS} fi unique_lines _den_ref _den_ref # Works best, all the same. edit_exact ref_chain _den_ref # Works best, unique items. if [ ${#_den_ref[@]} -gt 0 ] then IFS=${NO_WSP} ref_chain=( ${ref_chain[@]} ${_den_ref[@]} ) IFS=${WSP_IFS} fi unique_lines _den_na _den_na edit_exact name_address _den_na if [ ${#_den_na[@]} -gt 0 ] then IFS=${NO_WSP} name_address=( ${name_address[@]} ${_den_na[@]} ) IFS=${WSP_IFS} fi unique_lines _den_ns _den_ns edit_exact name_srvc _den_ns if [ ${#_den_ns[@]} -gt 0 ] then IFS=${NO_WSP} name_srvc=( ${name_srvc[@]} ${_den_ns[@]} ) IFS=${WSP_IFS} fi unique_lines _den_nr _den_nr edit_exact name_resource _den_nr if [ ${#_den_nr[@]} -gt 0 ] then IFS=${NO_WSP} name_resource=( ${name_resource[@]} ${_den_nr[@]} ) IFS=${WSP_IFS} fi unique_lines _den_pc _den_pc edit_exact parent_child _den_pc if [ ${#_den_pc[@]} -gt 0 ] then IFS=${NO_WSP} parent_child=( ${parent_child[@]} ${_den_pc[@]} ) IFS=${WSP_IFS} fi # Update list known_pair (Address and Name). unique_lines _den_pair _den_pair edit_exact known_pair _den_pair if [ ${#_den_pair[@]} -gt 0 ] # Anything new? then IFS=${NO_WSP} known_pair=( ${known_pair[@]} ${_den_pair[@]} ) IFS=${WSP_IFS} fi # Update list of reverse pairs. unique_lines _den_rev _den_rev edit_exact reverse_pair _den_rev if [ ${#_den_rev[@]} -gt 0 ] # Anything new? then IFS=${NO_WSP} reverse_pair=( ${reverse_pair[@]} ${_den_rev[@]} ) IFS=${WSP_IFS} fi # Check indirection limit -- give up if reached. if ! _den_lmt=$(limit_chk ${1}) then return 0 fi # Execution engine is LIFO. Order of pend operations is important. # Did we define any new addresses? unique_lines _den_address _den_address # Scrub duplicates. edit_exact known_address _den_address # Scrub already processed. edit_exact un_address _den_address # Scrub already waiting. if [ ${#_den_address[@]} -gt 0 ] # Anything new? then uc_address=( ${uc_address[@]} ${_den_address[@]} ) pend_func expand_input_address ${_den_lmt} _trace_log[${#_trace_log[@]}]='# Add '${#_den_address[@]}' unchkd addr. #' fi # Did we find any new names? unique_lines _den_name _den_name # Scrub duplicates. edit_exact known_name _den_name # Scrub already processed. edit_exact uc_name _den_name # Scrub already waiting. if [ ${#_den_name[@]} -gt 0 ] # Anything new? then uc_name=( ${uc_name[@]} ${_den_name[@]} ) pend_func expand_input_name ${_den_lmt} _trace_log[${#_trace_log[@]}]='#Added '${#_den_name[@]}' unchkd name#' fi return 0 } # The parse-it-yourself delegation reply # Input is the chk_address list. # detail_each_address <indirection_limit> detail_each_address() { [ ${#chk_address[@]} -gt 0 ] || return 0 unique_lines chk_address chk_address edit_exact known_address chk_address if [ ${#chk_address[@]} -gt 0 ] then known_address=( ${known_address[@]} ${chk_address[@]} ) unset chk_address[@] fi return 0 } # # # Application specific output functions # # # # Pretty print the known pairs. report_pairs() { echo echo 'Known network pairs.' col_print known_pair 2 5 30 if [ ${#auth_chain[@]} -gt 0 ] then echo echo 'Known chain of authority.' col_print auth_chain 2 5 30 55 fi if [ ${#reverse_pair[@]} -gt 0 ] then echo echo 'Known reverse pairs.' col_print reverse_pair 2 5 55 fi return 0 } # Check an address against the list of blacklist servers. # A good place to capture for GraphViz: address->status(server(reports)) # check_lists <ip_address> check_lists() { [ $# -eq 1 ] || return 1 local -a _cl_fwd_addr local -a _cl_rev_addr local -a _cl_reply local -i _cl_rc local -i _ls_cnt local _cl_dns_addr local _cl_lkup split_ip ${1} _cl_fwd_addr _cl_rev_addr _cl_dns_addr=$(dot_array _cl_rev_addr)'.' _ls_cnt=${#list_server[@]} echo ' Checking address '${1} for (( _cl = 0 ; _cl < _ls_cnt ; _cl++ )) do _cl_lkup=${_cl_dns_addr}${list_server[${_cl}]} if short_text ${_cl_lkup} _cl_reply then if [ ${#_cl_reply[@]} -gt 0 ] then echo ' Records from '${list_server[${_cl}]} address_hits[${#address_hits[@]}]=${1}' '${list_server[${_cl}]} _hs_RC=2 for (( _clr = 0 ; _clr < ${#_cl_reply[@]} ; _clr++ )) do echo ' '${_cl_reply[${_clr}]} done fi fi done return 0 } # # # The usual application glue # # # # Who did it? credits() { echo echo 'Advanced Bash Scripting Guide: is_spammer.bash, v2, 2004-msz' } # How to use it? # (See also, "Quickstart" at end of script.) usage() { cat <<-'_usage_statement_' The script is_spammer.bash requires either one or two arguments. arg 1) May be one of: a) A domain name b) An IPv4 address c) The name of a file with any mix of names and addresses, one per line. arg 2) May be one of: a) A Blacklist server domain name b) The name of a file with Blacklist server domain names, one per line. c) If not present, a default list of (free) Blacklist servers is used. d) If a filename of an empty, readable, file is given, Blacklist server lookup is disabled. All script output is written to stdout. Return codes: 0 -> All OK, 1 -> Script failure, 2 -> Something is Blacklisted. Requires the external program 'dig' from the 'bind-9' set of DNS programs. See: http://www.isc.org The domain name lookup depth limit defaults to 2 levels. Set the environment variable SPAMMER_LIMIT to change. SPAMMER_LIMIT=0 means 'unlimited' Limit may also be set on the command-line. If arg#1 is an integer, the limit is set to that value and then the above argument rules are applied. Setting the environment variable 'SPAMMER_DATA' to a filename will cause the script to write a GraphViz graphic file. For the development version; Setting the environment variable 'SPAMMER_TRACE' to a filename will cause the execution engine to log a function call trace. _usage_statement_ } # The default list of Blacklist servers: # Many choices, see: http://www.spews.org/lists.html declare -a default_servers # See: http://www.spamhaus.org (Conservative, well maintained) default_servers[0]='sbl-xbl.spamhaus.org' # See: http://ordb.org (Open mail relays) default_servers[1]='relays.ordb.org' # See: http://www.spamcop.net/ (You can report spammers here) default_servers[2]='bl.spamcop.net' # See: http://www.spews.org (An 'early detect' system) default_servers[3]='l2.spews.dnsbl.sorbs.net' # See: http://www.dnsbl.us.sorbs.net/using.shtml default_servers[4]='dnsbl.sorbs.net' # See: http://dsbl.org/usage (Various mail relay lists) default_servers[5]='list.dsbl.org' default_servers[6]='multihop.dsbl.org' default_servers[7]='unconfirmed.dsbl.org' # User input argument #1 setup_input() { if [ -e ${1} ] && [ -r ${1} ] # Name of readable file then file_to_array ${1} uc_name echo 'Using filename >'${1}'< as input.' else if is_address ${1} # IP address? then uc_address=( ${1} ) echo 'Starting with address >'${1}'<' else # Must be a name. uc_name=( ${1} ) echo 'Starting with domain name >'${1}'<' fi fi return 0 } # User input argument #2 setup_servers() { if [ -e ${1} ] && [ -r ${1} ] # Name of a readable file then file_to_array ${1} list_server echo 'Using filename >'${1}'< as blacklist server list.' else list_server=( ${1} ) echo 'Using blacklist server >'${1}'<' fi return 0 } # User environment variable SPAMMER_TRACE live_log_die() { if [ ${SPAMMER_TRACE:=} ] # Wants trace log? then if [ ! -e ${SPAMMER_TRACE} ] then if ! touch ${SPAMMER_TRACE} 2>/dev/null then pend_func echo $(printf '%q\n' \ 'Unable to create log file >'${SPAMMER_TRACE}'<') pend_release exit 1 fi _log_file=${SPAMMER_TRACE} _pend_hook_=trace_logger _log_dump=dump_log else if [ ! -w ${SPAMMER_TRACE} ] then pend_func echo $(printf '%q\n' \ 'Unable to write log file >'${SPAMMER_TRACE}'<') pend_release exit 1 fi _log_file=${SPAMMER_TRACE} echo '' > ${_log_file} _pend_hook_=trace_logger _log_dump=dump_log fi fi return 0 } # User environment variable SPAMMER_DATA data_capture() { if [ ${SPAMMER_DATA:=} ] # Wants a data dump? then if [ ! -e ${SPAMMER_DATA} ] then if ! touch ${SPAMMER_DATA} 2>/dev/null then pend_func echo $(printf '%q]n' \ 'Unable to create data output file >'${SPAMMER_DATA}'<') pend_release exit 1 fi _dot_file=${SPAMMER_DATA} _dot_dump=dump_dot else if [ ! -w ${SPAMMER_DATA} ] then pend_func echo $(printf '%q\n' \ 'Unable to write data output file >'${SPAMMER_DATA}'<') pend_release exit 1 fi _dot_file=${SPAMMER_DATA} _dot_dump=dump_dot fi fi return 0 } # Grope user specified arguments. do_user_args() { if [ $# -gt 0 ] && is_number $1 then indirect=$1 shift fi case $# in # Did user treat us well? 1) if ! setup_input $1 # Needs error checking. then pend_release $_log_dump exit 1 fi list_server=( ${default_servers[@]} ) _list_cnt=${#list_server[@]} echo 'Using default blacklist server list.' echo 'Search depth limit: '${indirect} ;; 2) if ! setup_input $1 # Needs error checking. then pend_release $_log_dump exit 1 fi if ! setup_servers $2 # Needs error checking. then pend_release $_log_dump exit 1 fi echo 'Search depth limit: '${indirect} ;; *) pend_func usage pend_release $_log_dump exit 1 ;; esac return 0 } # A general purpose debug tool. # list_array <array_name> list_array() { [ $# -eq 1 ] || return 1 # One argument required. local -a _la_lines set -f local IFS=${NO_WSP} eval _la_lines=\(\ \$\{$1\[@\]\}\ \) echo echo "Element count "${#_la_lines[@]}" array "${1} local _ln_cnt=${#_la_lines[@]} for (( _i = 0; _i < ${_ln_cnt}; _i++ )) do echo 'Element '$_i' >'${_la_lines[$_i]}'<' done set +f return 0 } # # # 'Hunt the Spammer' program code # # # pend_init # Ready stack engine. pend_func credits # Last thing to print. # # # Deal with user # # # live_log_die # Setup debug trace log. data_capture # Setup data capture file. echo do_user_args $@ # # # Haven't exited yet - There is some hope # # # # Discovery group - Execution engine is LIFO - pend # in reverse order of execution. _hs_RC=0 # Hunt the Spammer return code pend_mark pend_func report_pairs # Report name-address pairs. # The two detail_* are mutually recursive functions. # They also pend expand_* functions as required. # These two (the last of ???) exit the recursion. pend_func detail_each_address # Get all resources of addresses. pend_func detail_each_name # Get all resources of names. # The two expand_* are mutually recursive functions, #+ which pend additional detail_* functions as required. pend_func expand_input_address 1 # Expand input names by address. pend_func expand_input_name 1 # #xpand input addresses by name. # Start with a unique set of names and addresses. pend_func unique_lines uc_address uc_address pend_func unique_lines uc_name uc_name # Separate mixed input of names and addresses. pend_func split_input pend_release # # # Pairs reported -- Unique list of IP addresses found echo _ip_cnt=${#known_address[@]} if [ ${#list_server[@]} -eq 0 ] then echo 'Blacklist server list empty, none checked.' else if [ ${_ip_cnt} -eq 0 ] then echo 'Known address list empty, none checked.' else _ip_cnt=${_ip_cnt}-1 # Start at top. echo 'Checking Blacklist servers.' for (( _ip = _ip_cnt ; _ip >= 0 ; _ip-- )) do pend_func check_lists $( printf '%q\n' ${known_address[$_ip]} ) done fi fi pend_release $_dot_dump # Graphics file dump $_log_dump # Execution trace echo ############################## # Example output from script # ############################## :<<-'_is_spammer_outputs_' ./is_spammer.bash 0 web4.alojamentos7.com Starting with domain name >web4.alojamentos7.com< Using default blacklist server list. Search depth limit: 0 .:....::::...:::...:::.......::..::...:::.......:: Known network pairs. 66.98.208.97 web4.alojamentos7.com. 66.98.208.97 ns1.alojamentos7.com. 69.56.202.147 ns2.alojamentos.ws. 66.98.208.97 alojamentos7.com. 66.98.208.97 web.alojamentos7.com. 69.56.202.146 ns1.alojamentos.ws. 69.56.202.146 alojamentos.ws. 66.235.180.113 ns1.alojamentos.org. 66.235.181.192 ns2.alojamentos.org. 66.235.180.113 alojamentos.org. 66.235.180.113 web6.alojamentos.org. 216.234.234.30 ns1.theplanet.com. 12.96.160.115 ns2.theplanet.com. 216.185.111.52 mail1.theplanet.com. 69.56.141.4 spooling.theplanet.com. 216.185.111.40 theplanet.com. 216.185.111.40 www.theplanet.com. 216.185.111.52 mail.theplanet.com. Checking Blacklist servers. Checking address 66.98.208.97 Records from dnsbl.sorbs.net "Spam Received See: http://www.dnsbl.sorbs.net/lookup.shtml?66.98.208.97" Checking address 69.56.202.147 Checking address 69.56.202.146 Checking address 66.235.180.113 Checking address 66.235.181.192 Checking address 216.185.111.40 Checking address 216.234.234.30 Checking address 12.96.160.115 Checking address 216.185.111.52 Checking address 69.56.141.4 Advanced Bash Scripting Guide: is_spammer.bash, v2, 2004-msz _is_spammer_outputs_ exit ${_hs_RC} #################################################### # The script ignores everything from here on down # #+ because of the 'exit' command, just above. # #################################################### Quickstart ========== Prerequisites Bash version 2.05b or 3.00 (bash --version) A version of Bash which supports arrays. Array support is included by default Bash configurations. 'dig,' version 9.x.x (dig $HOSTNAME, see first line of output) A version of dig which supports the +short options. See: dig_wrappers.bash for details. Optional Prerequisites 'named,' a local DNS caching program. Any flavor will do. Do twice: dig $HOSTNAME Check near bottom of output for: SERVER: 127.0.0.1#53 That means you have one running. Optional Graphics Support 'date,' a standard *nix thing. (date -R) dot Program to convert graphic description file to a diagram. (dot -V) A part of the Graph-Viz set of programs. See: [http://www.research.att.com/sw/tools/graphviz||GraphViz] 'dotty,' a visual editor for graphic description files. Also a part of the Graph-Viz set of programs. Quick Start In the same directory as the is_spammer.bash script; Do: ./is_spammer.bash Usage Details 1. Blacklist server choices. (a) To use default, built-in list: Do nothing. (b) To use your own list: i. Create a file with a single Blacklist server domain name per line. ii. Provide that filename as the last argument to the script. (c) To use a single Blacklist server: Last argument to the script. (d) To disable Blacklist lookups: i. Create an empty file (touch spammer.nul) Your choice of filename. ii. Provide the filename of that empty file as the last argument to the script. 2. Search depth limit. (a) To use the default value of 2: Do nothing. (b) To set a different limit: A limit of 0 means: no limit. i. export SPAMMER_LIMIT=1 or whatever limit you want. ii. OR provide the desired limit as the first argument to the script. 3. Optional execution trace log. (a) To use the default setting of no log output: Do nothing. (b) To write an execution trace log: export SPAMMER_TRACE=spammer.log or whatever filename you want. 4. Optional graphic description file. (a) To use the default setting of no graphic file: Do nothing. (b) To write a Graph-Viz graphic description file: export SPAMMER_DATA=spammer.dot or whatever filename you want. 5. Where to start the search. (a) Starting with a single domain name: i. Without a command-line search limit: First argument to script. ii. With a command-line search limit: Second argument to script. (b) Starting with a single IP address: i. Without a command-line search limit: First argument to script. ii. With a command-line search limit: Second argument to script. (c) Starting with (mixed) multiple name(s) and/or address(es): Create a file with one name or address per line. Your choice of filename. i. Without a command-line search limit: Filename as first argument to script. ii. With a command-line search limit: Filename as second argument to script. 6. What to do with the display output. (a) To view display output on screen: Do nothing. (b) To save display output to a file: Redirect stdout to a filename. (c) To discard display output: Redirect stdout to /dev/null. 7. Temporary end of decision making. press RETURN wait (optionally, watch the dots and colons). 8. Optionally check the return code. (a) Return code 0: All OK (b) Return code 1: Script setup failure (c) Return code 2: Something was blacklisted. 9. Where is my graph (diagram)? The script does not directly produce a graph (diagram). It only produces a graphic description file. You can process the graphic descriptor file that was output with the 'dot' program. Until you edit that descriptor file, to describe the relationships you want shown, all that you will get is a bunch of labeled name and address nodes. All of the script's discovered relationships are within a comment block in the graphic descriptor file, each with a descriptive heading. The editing required to draw a line between a pair of nodes from the information in the descriptor file may be done with a text editor. Given these lines somewhere in the descriptor file: # Known domain name nodes N0000 [label="guardproof.info."] ; N0002 [label="third.guardproof.info."] ; # Known address nodes A0000 [label="61.141.32.197"] ; /* # Known name->address edges NA0000 third.guardproof.info. 61.141.32.197 # Known parent->child edges PC0000 guardproof.info. third.guardproof.info. */ Turn that into the following lines by substituting node identifiers into the relationships: # Known domain name nodes N0000 [label="guardproof.info."] ; N0002 [label="third.guardproof.info."] ; # Known address nodes A0000 [label="61.141.32.197"] ; # PC0000 guardproof.info. third.guardproof.info. N0000->N0002 ; # NA0000 third.guardproof.info. 61.141.32.197 N0002->A0000 ; /* # Known name->address edges NA0000 third.guardproof.info. 61.141.32.197 # Known parent->child edges PC0000 guardproof.info. third.guardproof.info. */ Process that with the 'dot' program, and you have your first network diagram. In addition to the conventional graphic edges, the descriptor file includes similar format pair-data that describes services, zone records (sub-graphs?), blacklisted addresses, and other things which might be interesting to include in your graph. This additional information could be displayed as different node shapes, colors, line sizes, etc. The descriptor file can also be read and edited by a Bash script (of course). You should be able to find most of the functions required within the "is_spammer.bash" script. # End Quickstart. Additional Note ========== ==== Michael Zick points out that there is a "makeviz.bash" interactive Web site at rediris.es. Can't give the full URL, since this is not a publically accessible site. |
Added isalpha.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 | #!/bin/bash # isalpha.sh: Using a "case" structure to filter a string. SUCCESS=0 FAILURE=1 # Was FAILURE=-1, #+ but Bash no longer allows negative return value. isalpha () # Tests whether *first character* of input string is alphabetic. { if [ -z "$1" ] # No argument passed? then return $FAILURE fi case "$1" in [a-zA-Z]*) return $SUCCESS;; # Begins with a letter? * ) return $FAILURE;; esac } # Compare this with "isalpha ()" function in C. isalpha2 () # Tests whether *entire string* is alphabetic. { [ $# -eq 1 ] || return $FAILURE case $1 in *[!a-zA-Z]*|"") return $FAILURE;; *) return $SUCCESS;; esac } isdigit () # Tests whether *entire string* is numerical. { # In other words, tests for integer variable. [ $# -eq 1 ] || return $FAILURE case $1 in *[!0-9]*|"") return $FAILURE;; *) return $SUCCESS;; esac } check_var () # Front-end to isalpha (). { if isalpha "$@" then echo "\"$*\" begins with an alpha character." if isalpha2 "$@" then # No point in testing if first char is non-alpha. echo "\"$*\" contains only alpha characters." else echo "\"$*\" contains at least one non-alpha character." fi else echo "\"$*\" begins with a non-alpha character." # Also "non-alpha" if no argument passed. fi echo } digit_check () # Front-end to isdigit (). { if isdigit "$@" then echo "\"$*\" contains only digits [0 - 9]." else echo "\"$*\" has at least one non-digit character." fi echo } a=23skidoo b=H3llo c=-What? d=What? e=$(echo $b) # Command substitution. f=AbcDef g=27234 h=27a34 i=27.34 check_var $a check_var $b check_var $c check_var $d check_var $e check_var $f check_var # No argument passed, so what happens? # digit_check $g digit_check $h digit_check $i exit 0 # Script improved by S.C. # Exercise: # -------- # Write an 'isfloat ()' function that tests for floating point numbers. # Hint: The function duplicates 'isdigit ()', #+ but adds a test for a mandatory decimal point. |
Added iscan.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 | #! /bin/sh ## Duplicate DaveG's ident-scan thingie using netcat. Oooh, he'll be p*ssed. ## Args: target port [port port port ...] ## Hose stdout _and_ stderr together. ## ## Advantages: runs slower than ident-scan, giving remote inetd less cause ##+ for alarm, and only hits the few known daemon ports you specify. ## Disadvantages: requires numeric-only port args, the output sleazitude, ##+ and won't work for r-services when coming from high source ports. # Script author: Hobbit <hobbit@avian.org> # Used in ABS Guide with permission. # --------------------------------------------------- E_BADARGS=65 # Need at least two args. TWO_WINKS=2 # How long to sleep. THREE_WINKS=3 IDPORT=113 # Authentication "tap ident" port. RAND1=999 RAND2=31337 TIMEOUT0=9 TIMEOUT1=8 TIMEOUT2=4 # --------------------------------------------------- case "${2}" in "" ) echo "Need HOST and at least one PORT." ; exit $E_BADARGS ;; esac # Ping 'em once and see if they *are* running identd. nc -z -w $TIMEOUT0 "$1" $IDPORT || \ { echo "Oops, $1 isn't running identd." ; exit 0 ; } # -z scans for listening daemons. # -w $TIMEOUT = How long to try to connect. # Generate a randomish base port. RP=`expr $$ % $RAND1 + $RAND2` TRG="$1" shift while test "$1" ; do nc -v -w $TIMEOUT1 -p ${RP} "$TRG" ${1} < /dev/null > /dev/null & PROC=$! sleep $THREE_WINKS echo "${1},${RP}" | nc -w $TIMEOUT2 -r "$TRG" $IDPORT 2>&1 sleep $TWO_WINKS # Does this look like a lamer script or what . . . ? # ABS Guide author comments: "Ain't really all that bad . . . #+ kinda clever, actually." kill -HUP $PROC RP=`expr ${RP} + 1` shift done exit $? # Notes: # ----- # Try commenting out line 30 and running this script #+ with "localhost.localdomain 25" as arguments. # For more of Hobbit's 'nc' example scripts, #+ look in the documentation: #+ the /usr/share/doc/nc-X.XX/scripts directory. |
Added keypress.sh.
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/bash # keypress.sh: Detect a user keypress ("hot keys"). echo old_tty_settings=$(stty -g) # Save old settings (why?). stty -icanon Keypress=$(head -c1) # or $(dd bs=1 count=1 2> /dev/null) # on non-GNU systems echo echo "Key pressed was \""$Keypress"\"." echo stty "$old_tty_settings" # Restore old settings. # Thanks, Stephane Chazelas. exit 0 |
Added kill-byname.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 | #!/bin/bash # kill-byname.sh: Killing processes by name. # Compare this script with kill-process.sh. # For instance, #+ try "./kill-byname.sh xterm" -- #+ and watch all the xterms on your desktop disappear. # Warning: # ------- # This is a fairly dangerous script. # Running it carelessly (especially as root) #+ can cause data loss and other undesirable effects. E_BADARGS=66 if test -z "$1" # No command-line arg supplied? then echo "Usage: `basename $0` Process(es)_to_kill" exit $E_BADARGS fi PROCESS_NAME="$1" ps ax | grep "$PROCESS_NAME" | awk '{print $1}' | xargs -i kill {} 2&>/dev/null # ^^ ^^ # --------------------------------------------------------------- # Notes: # -i is the "replace strings" option to xargs. # The curly brackets are the placeholder for the replacement. # 2&>/dev/null suppresses unwanted error messages. # # Can grep "$PROCESS_NAME" be replaced by pidof "$PROCESS_NAME"? # --------------------------------------------------------------- exit $? # The "killall" command has the same effect as this script, #+ but using it is not quite as educational. |
Added kill-process.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 | #!/bin/bash # kill-process.sh NOPROCESS=2 process=xxxyyyzzz # Use nonexistent process. # For demo purposes only... # ... don't want to actually kill any actual process with this script. # # If, for example, you wanted to use this script to logoff the Internet, # process=pppd t=`pidof $process` # Find pid (process id) of $process. # The pid is needed by 'kill' (can't 'kill' by program name). if [ -z "$t" ] # If process not present, 'pidof' returns null. then echo "Process $process was not running." echo "Nothing killed." exit $NOPROCESS fi kill $t # May need 'kill -9' for stubborn process. # Need a check here to see if process allowed itself to be killed. # Perhaps another " t=`pidof $process` " or ... # This entire script could be replaced by # kill $(pidof -x process_name) # or # killall process_name # but it would not be as instructive. exit 0 |
Added ktour.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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 | #!/bin/bash # ktour.sh # author: mendel cooper # reldate: 12 Jan 2009 # license: public domain # (Not much sense GPLing something that's pretty much in the common #+ domain anyhow.) ################################################################### # The Knight's Tour, a classic problem. # # ===================================== # # The knight must move onto every square of the chess board, # # but cannot revisit any square he has already visited. # # # # And just why is Sir Knight unwelcome for a return visit? # # Could it be that he has a habit of partying into the wee hours # #+ of the morning? # # Possibly he leaves pizza crusts in the bed, empty beer bottles # #+ all over the floor, and clogs the plumbing. . . . # # # # ------------------------------------------------------------- # # # # Usage: ktour.sh [start-square] [stupid] # # # # Note that start-square can be a square number # #+ in the range 0 - 63 ... or # # a square designator in conventional chess notation, # # such as a1, f5, h3, etc. # # # # If start-square-number not supplied, # #+ then starts on a random square somewhere on the board. # # # # "stupid" as second parameter sets the stupid strategy. # # # # Examples: # # ktour.sh 23 starts on square #23 (h3) # # ktour.sh g6 stupid starts on square #46, # # using "stupid" (non-Warnsdorff) strategy. # ################################################################### DEBUG= # Set this to echo debugging info to stdout. SUCCESS=0 FAIL=99 BADMOVE=-999 FAILURE=1 LINELEN=21 # How many moves to display per line. # ---------------------------------------- # # Board array params ROWS=8 # 8 x 8 board. COLS=8 let "SQUARES = $ROWS * $COLS" let "MAX = $SQUARES - 1" MIN=0 # 64 squares on board, indexed from 0 to 63. VISITED=1 UNVISITED=-1 UNVSYM="##" # ---------------------------------------- # # Global variables. startpos= # Starting position (square #, 0 - 63). currpos= # Current position. movenum= # Move number. CRITPOS=37 # Have to patch for f5 starting position! declare -i board # Use a one-dimensional array to simulate a two-dimensional one. # This can make life difficult and result in ugly kludges; see below. declare -i moves # Offsets from current knight position. initialize_board () { local idx for idx in {0..63} do board[$idx]=$UNVISITED done } print_board () { local idx echo " _____________________________________" for row in {7..0} # Reverse order of rows ... do #+ so it prints in chessboard order. let "rownum = $row + 1" # Start numbering rows at 1. echo -n "$rownum |" # Mark board edge with border and for column in {0..7} #+ "algebraic notation." do let "idx = $ROWS*$row + $column" if [ ${board[idx]} -eq $UNVISITED ] then echo -n "$UNVSYM " ## else # Mark square with move number. printf "%02d " "${board[idx]}"; echo -n " " fi done echo -e -n "\b\b\b|" # \b is a backspace. echo # -e enables echoing escaped chars. done echo " -------------------------------------" echo " a b c d e f g h" } failure() { # Whine, then bail out. echo print_board echo echo " Waah!!! Ran out of squares to move to!" echo -n " Knight's Tour attempt ended" echo " on $(to_algebraic $currpos) [square #$currpos]" echo " after just $movenum moves!" echo exit $FAIL } xlat_coords () # Translate x/y coordinates to board position { #+ (board-array element #). # For user input of starting board position as x/y coords. # This function not used in initial release of ktour.sh. # May be used in an updated version, for compatibility with #+ standard implementation of the Knight's Tour in C, Python, etc. if [ -z "$1" -o -z "$2" ] then return $FAIL fi local xc=$1 local yc=$2 let "board_index = $xc * $ROWS + yc" if [ $board_index -lt $MIN -o $board_index -gt $MAX ] then return $FAIL # Strayed off the board! else return $board_index fi } to_algebraic () # Translate board position (board-array element #) { #+ to standard algebraic notation used by chess players. if [ -z "$1" ] then return $FAIL fi local element_no=$1 # Numerical board position. local col_arr=( a b c d e f g h ) local row_arr=( 1 2 3 4 5 6 7 8 ) let "row_no = $element_no / $ROWS" let "col_no = $element_no % $ROWS" t1=${col_arr[col_no]}; t2=${row_arr[row_no]} local apos=$t1$t2 # Concatenate. echo $apos } from_algebraic () # Translate standard algebraic chess notation { #+ to numerical board position (board-array element #). # Or recognize numerical input & return it unchanged. if [ -z "$1" ] then return $FAIL fi # If no command-line arg, then will default to random start pos. local ix local ix_count=0 local b_index # Board index [0-63] local alpos="$1" arow=${alpos:0:1} # position = 0, length = 1 acol=${alpos:1:1} if [[ $arow =~ [[:digit:]] ]] # Numerical input? then # POSIX char class if [[ $acol =~ [[:alpha:]] ]] # Number followed by a letter? Illegal! then return $FAIL else if [ $alpos -gt $MAX ] # Off board? then return $FAIL else return $alpos # Return digit(s) unchanged . . . fi #+ if within range. fi fi if [[ $acol -eq $MIN || $acol -gt $ROWS ]] then # Outside of range 1 - 8? return $FAIL fi for ix in a b c d e f g h do # Convert column letter to column number. if [ "$arow" = "$ix" ] then break fi ((ix_count++)) # Find index count. done ((acol--)) # Decrementing converts to zero-based array. let "b_index = $ix_count + $acol * $ROWS" if [ $b_index -gt $MAX ] # Off board? then return $FAIL fi return $b_index } generate_moves () # Calculate all valid knight moves, { #+ relative to current position ($1), #+ and store in ${moves} array. local kt_hop=1 # One square :: short leg of knight move. local kt_skip=2 # Two squares :: long leg of knight move. local valmov=0 # Valid moves. local row_pos; let "row_pos = $1 % $COLS" let "move1 = -$kt_skip + $ROWS" # 2 sideways to-the-left, 1 up if [[ `expr $row_pos - $kt_skip` -lt $MIN ]] # An ugly, ugly kludge! then # Can't move off board. move1=$BADMOVE # Not even temporarily. else ((valmov++)) fi let "move2 = -$kt_hop + $kt_skip * $ROWS" # 1 sideways to-the-left, 2 up if [[ `expr $row_pos - $kt_hop` -lt $MIN ]] # Kludge continued ... then move2=$BADMOVE else ((valmov++)) fi let "move3 = $kt_hop + $kt_skip * $ROWS" # 1 sideways to-the-right, 2 up if [[ `expr $row_pos + $kt_hop` -ge $COLS ]] then move3=$BADMOVE else ((valmov++)) fi let "move4 = $kt_skip + $ROWS" # 2 sideways to-the-right, 1 up if [[ `expr $row_pos + $kt_skip` -ge $COLS ]] then move4=$BADMOVE else ((valmov++)) fi let "move5 = $kt_skip - $ROWS" # 2 sideways to-the-right, 1 dn if [[ `expr $row_pos + $kt_skip` -ge $COLS ]] then move5=$BADMOVE else ((valmov++)) fi let "move6 = $kt_hop - $kt_skip * $ROWS" # 1 sideways to-the-right, 2 dn if [[ `expr $row_pos + $kt_hop` -ge $COLS ]] then move6=$BADMOVE else ((valmov++)) fi let "move7 = -$kt_hop - $kt_skip * $ROWS" # 1 sideways to-the-left, 2 dn if [[ `expr $row_pos - $kt_hop` -lt $MIN ]] then move7=$BADMOVE else ((valmov++)) fi let "move8 = -$kt_skip - $ROWS" # 2 sideways to-the-left, 1 dn if [[ `expr $row_pos - $kt_skip` -lt $MIN ]] then move8=$BADMOVE else ((valmov++)) fi # There must be a better way to do this. local m=( $valmov $move1 $move2 $move3 $move4 $move5 $move6 $move7 $move8 ) # ${moves[0]} = number of valid moves. # ${moves[1]} ... ${moves[8]} = possible moves. echo "${m[*]}" # Elements of array to stdout for capture in a var. } is_on_board () # Is position actually on the board? { if [[ "$1" -lt "$MIN" || "$1" -gt "$MAX" ]] then return $FAILURE else return $SUCCESS fi } do_move () # Move the knight! { local valid_moves=0 local aapos currposl="$1" lmin=$ROWS iex=0 squarel= mpm= mov= declare -a p_moves ########################## DECIDE-MOVE ############################# if [ $startpos -ne $CRITPOS ] then # CRITPOS = square #37 decide_move else # Needs a special patch for startpos=37 !!! decide_move_patched # Why this particular move and no other ??? fi #################################################################### (( ++movenum )) # Increment move count. let "square = $currposl + ${moves[iex]}" ################## DEBUG ############### if [ "$DEBUG" ] then debug # Echo debugging information. fi ############################################## if [[ "$square" -gt $MAX || "$square" -lt $MIN || ${board[square]} -ne $UNVISITED ]] then (( --movenum )) # Decrement move count, echo "RAN OUT OF SQUARES!!!" #+ since previous one was invalid. return $FAIL fi board[square]=$movenum currpos=$square # Update current position. ((valid_moves++)); # moves[0]=$valid_moves aapos=$(to_algebraic $square) echo -n "$aapos " test $(( $Moves % $LINELEN )) -eq 0 && echo # Print LINELEN=21 moves per line. A valid tour shows 3 complete lines. return $valid_moves # Found a square to move to! } do_move_stupid() # Dingbat algorithm, { #+ courtesy of script author, *not* Warnsdorff. local valid_moves=0 local movloc local squareloc local aapos local cposloc="$1" for movloc in {1..8} do # Move to first-found unvisited square. let "squareloc = $cposloc + ${moves[movloc]}" is_on_board $squareloc if [ $? -eq $SUCCESS ] && [ ${board[squareloc]} -eq $UNVISITED ] then # Add conditions to above if-test to improve algorithm. (( ++movenum )) board[squareloc]=$movenum currpos=$squareloc # Update current position. ((valid_moves++)); # moves[0]=$valid_moves aapos=$(to_algebraic $squareloc) echo -n "$aapos " test $(( $Moves % $LINELEN )) -eq 0 && echo # Print 21 moves/line. return $valid_moves # Found a square to move to! fi done return $FAIL # If no square found in all 8 loop iterations, #+ then Knight's Tour attempt ends in failure. # Dingbat algorithm will typically fail after about 30 - 40 moves, #+ but executes _much_ faster than Warnsdorff's in do_move() function. } decide_move () # Which move will we make? { # But, fails on startpos=37 !!! for mov in {1..8} do let "squarel = $currposl + ${moves[mov]}" is_on_board $squarel if [[ $? -eq $SUCCESS && ${board[squarel]} -eq $UNVISITED ]] then # Find accessible square with least possible future moves. # This is Warnsdorff's algorithm. # What happens is that the knight wanders toward the outer edge #+ of the board, then pretty much spirals inward. # Given two or more possible moves with same value of #+ least-possible-future-moves, this implementation chooses #+ the _first_ of those moves. # This means that there is not necessarily a unique solution #+ for any given starting position. possible_moves $squarel mpm=$? p_moves[mov]=$mpm if [ $mpm -lt $lmin ] # If less than previous minimum ... then # ^^ lmin=$mpm # Update minimum. iex=$mov # Save index. fi fi done } decide_move_patched () # Decide which move to make, { # ^^^^^^^ #+ but only if startpos=37 !!! for mov in {1..8} do let "squarel = $currposl + ${moves[mov]}" is_on_board $squarel if [[ $? -eq $SUCCESS && ${board[squarel]} -eq $UNVISITED ]] then possible_moves $squarel mpm=$? p_moves[mov]=$mpm if [ $mpm -le $lmin ] # If less-than-or equal to prev. minimum! then # ^^ lmin=$mpm iex=$mov fi fi done # There has to be a better way to do this. } possible_moves () # Calculate number of possible moves, { #+ given the current position. if [ -z "$1" ] then return $FAIL fi local curr_pos=$1 local valid_movl=0 local icx=0 local movl local sq declare -a movesloc movesloc=( $(generate_moves $curr_pos) ) for movl in {1..8} do let "sq = $curr_pos + ${movesloc[movl]}" is_on_board $sq if [ $? -eq $SUCCESS ] && [ ${board[sq]} -eq $UNVISITED ] then ((valid_movl++)); fi done return $valid_movl # Found a square to move to! } strategy () { echo if [ -n "$STUPID" ] then for Moves in {1..63} do cposl=$1 moves=( $(generate_moves $currpos) ) do_move_stupid "$currpos" if [ $? -eq $FAIL ] then failure fi done fi # Don't need an "else" clause here, #+ because Stupid Strategy will always fail and exit! for Moves in {1..63} do cposl=$1 moves=( $(generate_moves $currpos) ) do_move "$currpos" if [ $? -eq $FAIL ] then failure fi done # Could have condensed above two do-loops into a single one, echo #+ but this would have slowed execution. print_board echo echo "Knight's Tour ends on $(to_algebraic $currpos) [square #$currpos]." return $SUCCESS } debug () { # Enable this by setting DEBUG=1 near beginning of script. local n echo "=================================" echo " At move number $movenum:" echo " *** possible moves = $mpm ***" # echo "### square = $square ###" echo "lmin = $lmin" echo "${moves[@]}" for n in {1..8} do echo -n "($n):${p_moves[n]} " done echo echo "iex = $iex :: moves[iex] = ${moves[iex]}" echo "square = $square" echo "=================================" echo } # Gives pretty complete status after ea. move. # =============================================================== # # int main () { from_algebraic "$1" startpos=$? if [ "$startpos" -eq "$FAIL" ] # Okay even if no $1. then # ^^^^^^^^^^^ Okay even if input -lt 0. echo "No starting square specified (or illegal input)." let "startpos = $RANDOM % $SQUARES" # 0 - 63 permissable range. fi if [ "$2" = "stupid" ] then STUPID=1 echo -n " ### Stupid Strategy ###" else STUPID='' echo -n " *** Warnsdorff's Algorithm ***" fi initialize_board movenum=0 board[startpos]=$movenum # Mark each board square with move number. currpos=$startpos algpos=$(to_algebraic $startpos) echo; echo "Starting from $algpos [square #$startpos] ..."; echo echo -n "Moves:" strategy "$currpos" echo exit 0 # return 0; # } # End of main() pseudo-function. # =============================================================== # # Exercises: # --------- # # 1) Extend this example to a 10 x 10 board or larger. # 2) Improve the "stupid strategy" by modifying the # do_move_stupid function. # Hint: Prevent straying into corner squares in early moves # (the exact opposite of Warnsdorff's algorithm!). # 3) This script could stand considerable improvement and # streamlining, especially in the poorly-written # generate_moves() function # and in the DECIDE-MOVE patch in the do_move() function. # Must figure out why standard algorithm fails for startpos=37 ... #+ but _not_ on any other, including symmetrical startpos=26. # Possibly, when calculating possible moves, counts the move back #+ to the originating square. If so, it might be a relatively easy fix. |
Added lastpipe-option.sh.
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/bash # lastpipe-option.sh line='' # Null value. echo "\$line = "$line"" # $line = echo shopt -s lastpipe # Error on Bash version -lt 4.2. echo "Exit status of attempting to set \"lastpipe\" option is $?" # 1 if Bash version -lt 4.2, 0 otherwise. echo head -1 $0 | read line # Pipe the first line of the script to read. # ^^^^^^^^^ Not in a subshell!!! echo "\$line = "$line"" # Older Bash releases $line = # Bash version 4.2 $line = #!/bin/bash |
Added length.sh.
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash # length.sh E_NO_ARGS=65 if [ $# -eq 0 ] # Must have command-line args to demo script. then echo "Please invoke this script with one or more command-line arguments." exit $E_NO_ARGS fi var01=abcdEFGH28ij echo "var01 = ${var01}" echo "Length of var01 = ${#var01}" # Now, let's try embedding a space. var02="abcd EFGH28ij" echo "var02 = ${var02}" echo "Length of var02 = ${#var02}" echo "Number of command-line arguments passed to script = ${#@}" echo "Number of command-line arguments passed to script = ${#*}" exit 0 |
Added letter-count.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 | #!/bin/bash # letter-count.sh: Counting letter occurrences in a text file. # Written by Stefano Palmeri. # Used in ABS Guide with permission. # Slightly modified by document author. MINARGS=2 # Script requires at least two arguments. E_BADARGS=65 FILE=$1 let LETTERS=$#-1 # How many letters specified (as command-line args). # (Subtract 1 from number of command-line args.) show_help(){ echo echo Usage: `basename $0` file letters echo Note: `basename $0` arguments are case sensitive. echo Example: `basename $0` foobar.txt G n U L i N U x. echo } # Checks number of arguments. if [ $# -lt $MINARGS ]; then echo echo "Not enough arguments." echo show_help exit $E_BADARGS fi # Checks if file exists. if [ ! -f $FILE ]; then echo "File \"$FILE\" does not exist." exit $E_BADARGS fi # Counts letter occurrences . for n in `seq $LETTERS`; do shift if [[ `echo -n "$1" | wc -c` -eq 1 ]]; then # Checks arg. echo "$1" -\> `cat $FILE | tr -cd "$1" | wc -c` # Counting. else echo "$1 is not a single char." fi done exit $? # This script has exactly the same functionality as letter-count2.sh, #+ but executes faster. # Why? |
Added letter-count2.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 | #! /bin/sh # letter-count2.sh: Counting letter occurrences in a text file. # # Script by nyal [nyal@voila.fr]. # Used in ABS Guide with permission. # Recommented and reformatted by ABS Guide author. # Version 1.1: Modified to work with gawk 3.1.3. # (Will still work with earlier versions.) INIT_TAB_AWK="" # Parameter to initialize awk script. count_case=0 FILE_PARSE=$1 E_PARAMERR=85 usage() { echo "Usage: letter-count.sh file letters" 2>&1 # For example: ./letter-count2.sh filename.txt a b c exit $E_PARAMERR # Too few arguments passed to script. } if [ ! -f "$1" ] ; then echo "$1: No such file." 2>&1 usage # Print usage message and exit. fi if [ -z "$2" ] ; then echo "$2: No letters specified." 2>&1 usage fi shift # Letters specified. for letter in `echo $@` # For each one . . . do INIT_TAB_AWK="$INIT_TAB_AWK tab_search[${count_case}] = \ \"$letter\"; final_tab[${count_case}] = 0; " # Pass as parameter to awk script below. count_case=`expr $count_case + 1` done # DEBUG: # echo $INIT_TAB_AWK; cat $FILE_PARSE | # Pipe the target file to the following awk script. # --------------------------------------------------------------------- # Earlier version of script: # awk -v tab_search=0 -v final_tab=0 -v tab=0 -v \ # nb_letter=0 -v chara=0 -v chara2=0 \ awk \ "BEGIN { $INIT_TAB_AWK } \ { split(\$0, tab, \"\"); \ for (chara in tab) \ { for (chara2 in tab_search) \ { if (tab_search[chara2] == tab[chara]) { final_tab[chara2]++ } } } } \ END { for (chara in final_tab) \ { print tab_search[chara] \" => \" final_tab[chara] } }" # --------------------------------------------------------------------- # Nothing all that complicated, just . . . #+ for-loops, if-tests, and a couple of specialized functions. exit $? # Compare this script to letter-count.sh. |
Added life.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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | #!/bin/bash # life.sh: "Life in the Slow Lane" # Author: Mendel Cooper # License: GPL3 # Version 0.2: Patched by Daniel Albers #+ to allow non-square grids as input. # Version 0.2.1: Added 2-second delay between generations. # ##################################################################### # # This is the Bash script version of John Conway's "Game of Life". # # "Life" is a simple implementation of cellular automata. # # --------------------------------------------------------------------- # # On a rectangular grid, let each "cell" be either "living" or "dead." # # Designate a living cell with a dot, and a dead one with a blank space.# # Begin with an arbitrarily drawn dot-and-blank grid, # #+ and let this be the starting generation: generation 0. # # Determine each successive generation by the following rules: # # 1) Each cell has 8 neighbors, the adjoining cells # #+ left, right, top, bottom, and the 4 diagonals. # # # # 123 # # 4*5 The * is the cell under consideration. # # 678 # # # # 2) A living cell with either 2 or 3 living neighbors remains alive. # SURVIVE=2 # # 3) A dead cell with 3 living neighbors comes alive, a "birth." # BIRTH=3 # # 4) All other cases result in a dead cell for the next generation. # # ##################################################################### # startfile=gen0 # Read the starting generation from the file "gen0" ... # Default, if no other file specified when invoking script. # if [ -n "$1" ] # Specify another "generation 0" file. then startfile="$1" fi ############################################ # Abort script if "startfile" not specified #+ and #+ default file "gen0" not present. E_NOSTARTFILE=86 if [ ! -e "$startfile" ] then echo "Startfile \""$startfile"\" missing!" exit $E_NOSTARTFILE fi ############################################ ALIVE1=. DEAD1=_ # Represent living and dead cells in the start-up file. # -----------------------------------------------------# # This script uses a 10 x 10 grid (may be increased, #+ but a large grid will slow down execution). ROWS=10 COLS=10 # Change above two variables to match desired grid size. # -----------------------------------------------------# GENERATIONS=10 # How many generations to cycle through. # Adjust this upwards #+ if you have time on your hands. NONE_ALIVE=85 # Exit status on premature bailout, #+ if no cells left alive. DELAY=2 # Pause between generations. TRUE=0 FALSE=1 ALIVE=0 DEAD=1 avar= # Global; holds current generation. generation=0 # Initialize generation count. # ================================================================= let "cells = $ROWS * $COLS" # How many cells. # Arrays containing "cells." declare -a initial declare -a current display () { alive=0 # How many cells alive at any given time. # Initially zero. declare -a arr arr=( `echo "$1"` ) # Convert passed arg to array. element_count=${#arr[*]} local i local rowcheck for ((i=0; i<$element_count; i++)) do # Insert newline at end of each row. let "rowcheck = $i % COLS" if [ "$rowcheck" -eq 0 ] then echo # Newline. echo -n " " # Indent. fi cell=${arr[i]} if [ "$cell" = . ] then let "alive += 1" fi echo -n "$cell" | sed -e 's/_/ /g' # Print out array, changing underscores to spaces. done return } IsValid () # Test if cell coordinate valid. { if [ -z "$1" -o -z "$2" ] # Mandatory arguments missing? then return $FALSE fi local row local lower_limit=0 # Disallow negative coordinate. local upper_limit local left local right let "upper_limit = $ROWS * $COLS - 1" # Total number of cells. if [ "$1" -lt "$lower_limit" -o "$1" -gt "$upper_limit" ] then return $FALSE # Out of array bounds. fi row=$2 let "left = $row * $COLS" # Left limit. let "right = $left + $COLS - 1" # Right limit. if [ "$1" -lt "$left" -o "$1" -gt "$right" ] then return $FALSE # Beyond row boundary. fi return $TRUE # Valid coordinate. } IsAlive () # Test whether cell is alive. # Takes array, cell number, and { #+ state of cell as arguments. GetCount "$1" $2 # Get alive cell count in neighborhood. local nhbd=$? if [ "$nhbd" -eq "$BIRTH" ] # Alive in any case. then return $ALIVE fi if [ "$3" = "." -a "$nhbd" -eq "$SURVIVE" ] then # Alive only if previously alive. return $ALIVE fi return $DEAD # Defaults to dead. } GetCount () # Count live cells in passed cell's neighborhood. # Two arguments needed: # $1) variable holding array # $2) cell number { local cell_number=$2 local array local top local center local bottom local r local row local i local t_top local t_cen local t_bot local count=0 local ROW_NHBD=3 array=( `echo "$1"` ) let "top = $cell_number - $COLS - 1" # Set up cell neighborhood. let "center = $cell_number - 1" let "bottom = $cell_number + $COLS - 1" let "r = $cell_number / $COLS" for ((i=0; i<$ROW_NHBD; i++)) # Traverse from left to right. do let "t_top = $top + $i" let "t_cen = $center + $i" let "t_bot = $bottom + $i" let "row = $r" # Count center row. IsValid $t_cen $row # Valid cell position? if [ $? -eq "$TRUE" ] then if [ ${array[$t_cen]} = "$ALIVE1" ] # Is it alive? then # If yes, then ... let "count += 1" # Increment count. fi fi let "row = $r - 1" # Count top row. IsValid $t_top $row if [ $? -eq "$TRUE" ] then if [ ${array[$t_top]} = "$ALIVE1" ] # Redundancy here. then # Can it be optimized? let "count += 1" fi fi let "row = $r + 1" # Count bottom row. IsValid $t_bot $row if [ $? -eq "$TRUE" ] then if [ ${array[$t_bot]} = "$ALIVE1" ] then let "count += 1" fi fi done if [ ${array[$cell_number]} = "$ALIVE1" ] then let "count -= 1" # Make sure value of tested cell itself fi #+ is not counted. return $count } next_gen () # Update generation array. { local array local i=0 array=( `echo "$1"` ) # Convert passed arg to array. while [ "$i" -lt "$cells" ] do IsAlive "$1" $i ${array[$i]} # Is the cell alive? if [ $? -eq "$ALIVE" ] then # If alive, then array[$i]=. #+ represent the cell as a period. else array[$i]="_" # Otherwise underscore fi #+ (will later be converted to space). let "i += 1" done # let "generation += 1" # Increment generation count. ### Why was the above line commented out? # Set variable to pass as parameter to "display" function. avar=`echo ${array[@]}` # Convert array back to string variable. display "$avar" # Display it. echo; echo echo "Generation $generation - $alive alive" if [ "$alive" -eq 0 ] then echo echo "Premature exit: no more cells alive!" exit $NONE_ALIVE # No point in continuing fi #+ if no live cells. } # ========================================================= # main () # { # Load initial array with contents of startup file. initial=( `cat "$startfile" | sed -e '/#/d' | tr -d '\n' |\ # Delete lines containing '#' comment character. sed -e 's/\./\. /g' -e 's/_/_ /g'` ) # Remove linefeeds and insert space between elements. clear # Clear screen. echo # Title setterm -reverse on echo "=======================" setterm -reverse off echo " $GENERATIONS generations" echo " of" echo "\"Life in the Slow Lane\"" setterm -reverse on echo "=======================" setterm -reverse off sleep $DELAY # Display "splash screen" for 2 seconds. # -------- Display first generation. -------- Gen0=`echo ${initial[@]}` display "$Gen0" # Display only. echo; echo echo "Generation $generation - $alive alive" sleep $DELAY # ------------------------------------------- let "generation += 1" # Bump generation count. echo # ------- Display second generation. ------- Cur=`echo ${initial[@]}` next_gen "$Cur" # Update & display. sleep $DELAY # ------------------------------------------ let "generation += 1" # Increment generation count. # ------ Main loop for displaying subsequent generations ------ while [ "$generation" -le "$GENERATIONS" ] do Cur="$avar" next_gen "$Cur" let "generation += 1" sleep $DELAY done # ============================================================== echo # } exit 0 # CEOF:EOF # The grid in this script has a "boundary problem." # The the top, bottom, and sides border on a void of dead cells. # Exercise: Change the script to have the grid wrap around, # + so that the left and right sides will "touch," # + as will the top and bottom. # # Exercise: Create a new "gen0" file to seed this script. # Use a 12 x 16 grid, instead of the original 10 x 10 one. # Make the necessary changes to the script, #+ so it will run with the altered file. # # Exercise: Modify this script so that it can determine the grid size #+ from the "gen0" file, and set any variables necessary #+ for the script to run. # This would make unnecessary any changes to variables #+ in the script for an altered grid size. # # Exercise: Optimize this script. # It has redundant code. |
Added line-number.sh.
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/bash # line-number.sh # This script echoes itself twice to stdout with its lines numbered. echo " line number = $LINENO" # 'nl' sees this as line 4 # (nl does not number blank lines). # 'cat -n' sees it correctly as line #6. nl `basename $0` echo; echo # Now, let's try it with 'cat -n' cat -n `basename $0` # The difference is that 'cat -n' numbers the blank lines. # Note that 'nl -ba' will also do so. exit 0 # ----------------------------------------------------------------- |
Added list-glob.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 | #!/bin/bash # list-glob.sh: Generating [list] in a for-loop, using "globbing" ... # Globbing = filename expansion. echo for file in * # ^ Bash performs filename expansion #+ on expressions that globbing recognizes. do ls -l "$file" # Lists all files in $PWD (current directory). # Recall that the wild card character "*" matches every filename, #+ however, in "globbing," it doesn't match dot-files. # If the pattern matches no file, it is expanded to itself. # To prevent this, set the nullglob option #+ (shopt -s nullglob). # Thanks, S.C. done echo; echo for file in [jx]* do rm -f $file # Removes only files beginning with "j" or "x" in $PWD. echo "Removed file \"$file\"". done echo exit 0 |
Added logevents.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 | #!/bin/bash # logevents.sh # Author: Stephane Chazelas. # Used in ABS Guide with permission. # Event logging to a file. # Must be run as root (for write access in /var/log). ROOT_UID=0 # Only users with $UID 0 have root privileges. E_NOTROOT=67 # Non-root exit error. if [ "$UID" -ne "$ROOT_UID" ] then echo "Must be root to run this script." exit $E_NOTROOT fi FD_DEBUG1=3 FD_DEBUG2=4 FD_DEBUG3=5 # === Uncomment one of the two lines below to activate script. === # LOG_EVENTS=1 # LOG_VARS=1 log() # Writes time and date to log file. { echo "$(date) $*" >&7 # This *appends* the date to the file. # ^^^^^^^ command substitution # See below. } case $LOG_LEVEL in 1) exec 3>&2 4> /dev/null 5> /dev/null;; 2) exec 3>&2 4>&2 5> /dev/null;; 3) exec 3>&2 4>&2 5>&2;; *) exec 3> /dev/null 4> /dev/null 5> /dev/null;; esac FD_LOGVARS=6 if [[ $LOG_VARS ]] then exec 6>> /var/log/vars.log else exec 6> /dev/null # Bury output. fi FD_LOGEVENTS=7 if [[ $LOG_EVENTS ]] then # exec 7 >(exec gawk '{print strftime(), $0}' >> /var/log/event.log) # Above line fails in versions of Bash more recent than 2.04. Why? exec 7>> /var/log/event.log # Append to "event.log". log # Write time and date. else exec 7> /dev/null # Bury output. fi echo "DEBUG3: beginning" >&${FD_DEBUG3} ls -l >&5 2>&4 # command1 >&5 2>&4 echo "Done" # command2 echo "sending mail" >&${FD_LOGEVENTS} # Writes "sending mail" to file descriptor #7. exit 0 |
Added logging-wrapper.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 | #!/bin/bash # logging-wrapper.sh # Generic shell wrapper that performs an operation #+ and logs it. DEFAULT_LOGFILE=logfile.txt # Set the following two variables. OPERATION= # Can be a complex chain of commands, #+ for example an awk script or a pipe . . . LOGFILE= if [ -z "$LOGFILE" ] then # If not set, default to ... LOGFILE="$DEFAULT_LOGFILE" fi # Command-line arguments, if any, for the operation. OPTIONS="$@" # Log it. echo "`date` + `whoami` + $OPERATION "$@"" >> $LOGFILE # Now, do it. exec $OPERATION "$@" # It's necessary to do the logging before the operation. # Why? |
Added lookup.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 | #!/bin/bash # lookup: Does a dictionary lookup on each word in a data file. file=words.data # Data file from which to read words to test. echo echo "Testing file $file" echo while [ "$word" != end ] # Last word in data file. do # ^^^ read word # From data file, because of redirection at end of loop. look $word > /dev/null # Don't want to display lines in dictionary file. # Searches for words in the file /usr/share/dict/words #+ (usually a link to linux.words). lookup=$? # Exit status of 'look' command. if [ "$lookup" -eq 0 ] then echo "\"$word\" is valid." else echo "\"$word\" is invalid." fi done <"$file" # Redirects stdin to $file, so "reads" come from there. echo exit 0 # ---------------------------------------------------------------- # Code below line will not execute because of "exit" command above. # Stephane Chazelas proposes the following, more concise alternative: while read word && [[ $word != end ]] do if look "$word" > /dev/null then echo "\"$word\" is valid." else echo "\"$word\" is invalid." fi done <"$file" exit 0 |
Added lowercase.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 | #!/bin/bash # # Changes every filename in working directory to all lowercase. # # Inspired by a script of John Dubois, #+ which was translated into Bash by Chet Ramey, #+ and considerably simplified by the author of the ABS Guide. for filename in * # Traverse all files in directory. do fname=`basename $filename` n=`echo $fname | tr A-Z a-z` # Change name to lowercase. if [ "$fname" != "$n" ] # Rename only files not already lowercase. then mv $fname $n fi done exit $? # Code below this line will not execute because of "exit". #--------------------------------------------------------# # To run it, delete script above line. # The above script will not work on filenames containing blanks or newlines. # Stephane Chazelas therefore suggests the following alternative: for filename in * # Not necessary to use basename, # since "*" won't return any file containing "/". do n=`echo "$filename/" | tr '[:upper:]' '[:lower:]'` # POSIX char set notation. # Slash added so that trailing newlines are not # removed by command substitution. # Variable substitution: n=${n%/} # Removes trailing slash, added above, from filename. [[ $filename == $n ]] || mv "$filename" "$n" # Checks if filename already lowercase. done exit $? |
Added m4.sh.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash # m4.sh: Using the m4 macro processor # Strings string=abcdA01 echo "len($string)" | m4 # 7 echo "substr($string,4)" | m4 # A01 echo "regexp($string,[0-1][0-1],\&Z)" | m4 # 01Z # Arithmetic var=99 echo "incr($var)" | m4 # 100 echo "eval($var / 3)" | m4 # 33 exit |
Added mail-format.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 | #!/bin/bash # mail-format.sh (ver. 1.1): Format e-mail messages. # Gets rid of carets, tabs, and also folds excessively long lines. # ================================================================= # Standard Check for Script Argument(s) ARGS=1 E_BADARGS=85 E_NOFILE=86 if [ $# -ne $ARGS ] # Correct number of arguments passed to script? then echo "Usage: `basename $0` filename" exit $E_BADARGS fi if [ -f "$1" ] # Check if file exists. then file_name=$1 else echo "File \"$1\" does not exist." exit $E_NOFILE fi # ----------------------------------------------------------------- MAXWIDTH=70 # Width to fold excessively long lines to. # ================================= # A variable can hold a sed script. # It's a useful technique. sedscript='s/^>// s/^ *>// s/^ *// s/ *//' # ================================= # Delete carets and tabs at beginning of lines, #+ then fold lines to $MAXWIDTH characters. sed "$sedscript" $1 | fold -s --width=$MAXWIDTH # -s option to "fold" #+ breaks lines at whitespace, if possible. # This script was inspired by an article in a well-known trade journal #+ extolling a 164K MS Windows utility with similar functionality. # # An nice set of text processing utilities and an efficient #+ scripting language provide an alternative to the bloated executables #+ of a clunky operating system. exit $? |
Added mailbox_grep.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 | #!/bin/bash # Script by Francisco Lobo, #+ and slightly modified and commented by ABS Guide author. # Used in ABS Guide with permission. (Thank you!) # This script will not run under Bash versions -lt 3.0. E_MISSING_ARG=87 if [ -z "$1" ] then echo "Usage: $0 mailbox-file" exit $E_MISSING_ARG fi mbox_grep() # Parse mailbox file. { declare -i body=0 match=0 declare -a date sender declare mail header value while IFS= read -r mail # ^^^^ Reset $IFS. # Otherwise "read" will strip leading & trailing space from its input. do if [[ $mail =~ ^From ]] # Match "From" field in message. then (( body = 0 )) # "Zero out" variables. (( match = 0 )) unset date elif (( body )) then (( match )) # echo "$mail" # Uncomment above line if you want entire body #+ of message to display. elif [[ $mail ]]; then IFS=: read -r header value <<< "$mail" # ^^^ "here string" case "$header" in [Ff][Rr][Oo][Mm] ) [[ $value =~ "$2" ]] && (( match++ )) ;; # Match "From" line. [Dd][Aa][Tt][Ee] ) read -r -a date <<< "$value" ;; # ^^^ # Match "Date" line. [Rr][Ee][Cc][Ee][Ii][Vv][Ee][Dd] ) read -r -a sender <<< "$value" ;; # ^^^ # Match IP Address (may be spoofed). esac else (( body++ )) (( match )) && echo "MESSAGE ${date:+of: ${date[*]} }" # Entire $date array ^ echo "IP address of sender: ${sender[1]}" # Second field of "Received" line ^ fi done < "$1" # Redirect stdout of file into loop. } mbox_grep "$1" # Send mailbox file to function. exit $? # Exercises: # --------- # 1) Break the single function, above, into multiple functions, #+ for the sake of readability. # 2) Add additional parsing to the script, checking for various keywords. $ mailbox_grep.sh scam_mail MESSAGE of Thu, 5 Jan 2006 08:00:56 -0500 (EST) IP address of sender: 196.3.62.4 |
Added makedict.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 | #!/bin/bash # makedict.sh [make dictionary] # Modification of /usr/sbin/mkdict (/usr/sbin/cracklib-forman) script. # Original script copyright 1993, by Alec Muffett. # # This modified script included in this document in a manner #+ consistent with the "LICENSE" document of the "Crack" package #+ that the original script is a part of. # This script processes text files to produce a sorted list #+ of words found in the files. # This may be useful for compiling dictionaries #+ and for other lexicographic purposes. E_BADARGS=85 if [ ! -r "$1" ] # Need at least one then #+ valid file argument. echo "Usage: $0 files-to-process" exit $E_BADARGS fi # SORT="sort" # No longer necessary to define #+ options to sort. Changed from #+ original script. cat $* | # Dump specified files to stdout. tr A-Z a-z | # Convert to lowercase. tr ' ' '\012' | # New: change spaces to newlines. # tr -cd '\012[a-z][0-9]' | # Get rid of everything #+ non-alphanumeric (in orig. script). tr -c '\012a-z' '\012' | # Rather than deleting non-alpha #+ chars, change them to newlines. sort | # $SORT options unnecessary now. uniq | # Remove duplicates. grep -v '^#' | # Delete lines starting with #. grep -v '^$' # Delete blank lines. exit $? |
Added maned.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 | #!/bin/bash # maned.sh # A rudimentary man page editor # Version: 0.1 (Alpha, probably buggy) # Author: Mendel Cooper <thegrendel.abs@gmail.com> # Reldate: 16 June 2008 # License: GPL3 savefile= # Global, used in multiple functions. E_NOINPUT=90 # User input missing (error). May or may not be critical. # =========== Markup Tags ============ # TopHeader=".TH" NameHeader=".SH NAME" SyntaxHeader=".SH SYNTAX" SynopsisHeader=".SH SYNOPSIS" InstallationHeader=".SH INSTALLATION" DescHeader=".SH DESCRIPTION" OptHeader=".SH OPTIONS" FilesHeader=".SH FILES" EnvHeader=".SH ENVIRONMENT" AuthHeader=".SH AUTHOR" BugsHeader=".SH BUGS" SeeAlsoHeader=".SH SEE ALSO" BOLD=".B" # Add more tags, as needed. # See groff docs for markup meanings. # ==================================== # start () { clear # Clear screen. echo "ManEd" echo "-----" echo echo "Simple man page creator" echo "Author: Mendel Cooper" echo "License: GPL3" echo; echo; echo } progname () { echo -n "Program name? " read name echo -n "Manpage section? [Hit RETURN for default (\"1\") ] " read section if [ -z "$section" ] then section=1 # Most man pages are in section 1. fi if [ -n "$name" ] then savefile=""$name"."$section"" # Filename suffix = section. echo -n "$1 " >>$savefile name1=$(echo "$name" | tr a-z A-Z) # Change to uppercase, #+ per man page convention. echo -n "$name1" >>$savefile else echo "Error! No input." # Mandatory input. exit $E_NOINPUT # Critical! # Exercise: The script-abort if no filename input is a bit clumsy. # Rewrite this section so a default filename is used #+ if no input. fi echo -n " \"$section\"">>$savefile # Append, always append. echo -n "Version? " read ver echo -n " \"Version $ver \"">>$savefile echo >>$savefile echo -n "Short description [0 - 5 words]? " read sdesc echo "$NameHeader">>$savefile echo ""$BOLD" "$name"">>$savefile echo "\- "$sdesc"">>$savefile } fill_in () { # This function more or less copied from "pad.sh" script. echo -n "$2? " # Get user input. read var # May paste (a single line only!) to fill in field. if [ -n "$var" ] then echo "$1 " >>$savefile echo -n "$var" >>$savefile else # Don't append empty field to file. return $E_NOINPUT # Not critical here. fi echo >>$savefile } end () { clear echo -n "Would you like to view the saved man page (y/n)? " read ans if [ "$ans" = "n" -o "$ans" = "N" ]; then exit; fi exec less "$savefile" # Exit script and hand off control to "less" ... #+ ... which formats for viewing man page source. } # ---------------------------------------- # start progname "$TopHeader" fill_in "$SynopsisHeader" "Synopsis" fill_in "$DescHeader" "Long description" # May paste in *single line* of text. fill_in "$OptHeader" "Options" fill_in "$FilesHeader" "Files" fill_in "$AuthHeader" "Author" fill_in "$BugsHeader" "Bugs" fill_in "$SeeAlsoHeader" "See also" # fill_in "$OtherHeader" ... as necessary. end # ... exit not needed. # ---------------------------------------- # # Note that the generated man page will usually #+ require manual fine-tuning with a text editor. # However, it's a distinct improvement upon #+ writing man source from scratch #+ or even editing a blank man page template. # The main deficiency of the script is that it permits #+ pasting only a single text line into the input fields. # This may be a long, cobbled-together line, which groff # will automatically wrap and hyphenate. # However, if you want multiple (newline-separated) paragraphs, #+ these must be inserted by manual text editing on the #+ script-generated man page. # Exercise (difficult): Fix this! # This script is not nearly as elaborate as the #+ full-featured "manedit" package #+ http://freshmeat.net/projects/manedit/ #+ but it's much easier to use. |
Added manview.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 | #!/bin/bash # manview.sh: Formats the source of a man page for viewing. # This script is useful when writing man page source. # It lets you look at the intermediate results on the fly #+ while working on it. E_WRONGARGS=85 if [ -z "$1" ] then echo "Usage: `basename $0` filename" exit $E_WRONGARGS fi # --------------------------- groff -Tascii -man $1 | less # From the man page for groff. # --------------------------- # If the man page includes tables and/or equations, #+ then the above code will barf. # The following line can handle such cases. # # gtbl < "$1" | geqn -Tlatin1 | groff -Tlatin1 -mtty-char -man # # Thanks, S.C. exit $? # See also the "maned.sh" script. |
Added match-string.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 | #!/bin/bash # match-string.sh: Simple string matching # using a 'case' construct. match_string () { # Exact string match. MATCH=0 E_NOMATCH=90 PARAMS=2 # Function requires 2 arguments. E_BAD_PARAMS=91 [ $# -eq $PARAMS ] || return $E_BAD_PARAMS case "$1" in "$2") return $MATCH;; * ) return $E_NOMATCH;; esac } a=one b=two c=three d=two match_string $a # wrong number of parameters echo $? # 91 match_string $a $b # no match echo $? # 90 match_string $b $d # match echo $? # 0 exit 0 |
Added max.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 | #!/bin/bash # max.sh: Maximum of two integers. E_PARAM_ERR=250 # If less than 2 params passed to function. EQUAL=251 # Return value if both params equal. # Error values out of range of any #+ params that might be fed to the function. max2 () # Returns larger of two numbers. { # Note: numbers compared must be less than 250. if [ -z "$2" ] then return $E_PARAM_ERR fi if [ "$1" -eq "$2" ] then return $EQUAL else if [ "$1" -gt "$2" ] then return $1 else return $2 fi fi } max2 33 34 return_val=$? if [ "$return_val" -eq $E_PARAM_ERR ] then echo "Need to pass two parameters to the function." elif [ "$return_val" -eq $EQUAL ] then echo "The two numbers are equal." else echo "The larger of the two numbers is $return_val." fi exit 0 # Exercise (easy): # --------------- # Convert this to an interactive script, #+ that is, have the script ask for input (two numbers). |
Added max2.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 | #!/bin/bash # max2.sh: Maximum of two LARGE integers. # This is the previous "max.sh" example, #+ modified to permit comparing large integers. EQUAL=0 # Return value if both params equal. E_PARAM_ERR=-99999 # Not enough params passed to function. # ^^^^^^ Out of range of any params that might be passed. max2 () # "Returns" larger of two numbers. { if [ -z "$2" ] then echo $E_PARAM_ERR return fi if [ "$1" -eq "$2" ] then echo $EQUAL return else if [ "$1" -gt "$2" ] then retval=$1 else retval=$2 fi fi echo $retval # Echoes (to stdout), rather than returning value. # Why? } return_val=$(max2 33001 33997) # ^^^^ Function name # ^^^^^ ^^^^^ Params passed # This is actually a form of command substitution: #+ treating a function as if it were a command, #+ and assigning the stdout of the function to the variable "return_val." # ========================= OUTPUT ======================== if [ "$return_val" -eq "$E_PARAM_ERR" ] then echo "Error in parameters passed to comparison function!" elif [ "$return_val" -eq "$EQUAL" ] then echo "The two numbers are equal." else echo "The larger of the two numbers is $return_val." fi # ========================================================= exit 0 # Exercises: # --------- # 1) Find a more elegant way of testing #+ the parameters passed to the function. # 2) Simplify the if/then structure at "OUTPUT." # 3) Rewrite the script to take input from command-line parameters. |
Added missing-keyword.sh.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash # missing-keyword.sh # What error message will this script generate? And why? for a in 1 2 3 do echo "$a" # done # Required keyword 'done' commented out in line 8. exit 0 # Will not exit here! # === # # From command line, after script terminates: echo $? # 2 |
Added monthlypmt.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 | #!/bin/bash # monthlypmt.sh: Calculates monthly payment on a mortgage. # This is a modification of code in the #+ "mcalc" (mortgage calculator) package, #+ by Jeff Schmidt #+ and #+ Mendel Cooper (yours truly, the ABS Guide author). # http://www.ibiblio.org/pub/Linux/apps/financial/mcalc-1.6.tar.gz echo echo "Given the principal, interest rate, and term of a mortgage," echo "calculate the monthly payment." bottom=1.0 echo echo -n "Enter principal (no commas) " read principal echo -n "Enter interest rate (percent) " # If 12%, enter "12", not ".12". read interest_r echo -n "Enter term (months) " read term interest_r=$(echo "scale=9; $interest_r/100.0" | bc) # Convert to decimal. # ^^^^^^^^^^^^^^^^^ Divide by 100. # "scale" determines how many decimal places. interest_rate=$(echo "scale=9; $interest_r/12 + 1.0" | bc) top=$(echo "scale=9; $principal*$interest_rate^$term" | bc) # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ # Standard formula for figuring interest. echo; echo "Please be patient. This may take a while." let "months = $term - 1" # ==================================================================== for ((x=$months; x > 0; x--)) do bot=$(echo "scale=9; $interest_rate^$x" | bc) bottom=$(echo "scale=9; $bottom+$bot" | bc) # bottom = $(($bottom + $bot")) done # ==================================================================== # -------------------------------------------------------------------- # Rick Boivie pointed out a more efficient implementation #+ of the above loop, which decreases computation time by 2/3. # for ((x=1; x <= $months; x++)) # do # bottom=$(echo "scale=9; $bottom * $interest_rate + 1" | bc) # done # And then he came up with an even more efficient alternative, #+ one that cuts down the run time by about 95%! # bottom=`{ # echo "scale=9; bottom=$bottom; interest_rate=$interest_rate" # for ((x=1; x <= $months; x++)) # do # echo 'bottom = bottom * interest_rate + 1' # done # echo 'bottom' # } | bc` # Embeds a 'for loop' within command substitution. # -------------------------------------------------------------------------- # On the other hand, Frank Wang suggests: # bottom=$(echo "scale=9; ($interest_rate^$term-1)/($interest_rate-1)" | bc) # Because . . . # The algorithm behind the loop #+ is actually a sum of geometric proportion series. # The sum formula is e0(1-q^n)/(1-q), #+ where e0 is the first element and q=e(n+1)/e(n) #+ and n is the number of elements. # -------------------------------------------------------------------------- # let "payment = $top/$bottom" payment=$(echo "scale=2; $top/$bottom" | bc) # Use two decimal places for dollars and cents. echo echo "monthly payment = \$$payment" # Echo a dollar sign in front of amount. echo exit 0 # Exercises: # 1) Filter input to permit commas in principal amount. # 2) Filter input to permit interest to be entered as percent or decimal. # 3) If you are really ambitious, #+ expand this script to print complete amortization tables. |
Added msquare.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 | #!/bin/bash # msquare.sh # Magic Square generator (odd-order squares only!) # Author: mendel cooper # reldate: 19 Jan. 2009 # License: Public Domain # A C-program by the very talented Kwon Young Shin inspired this script. # http://user.chollian.net/~brainstm/MagicSquare.htm # Definition: A "magic square" is a two-dimensional array # of integers in which all the rows, columns, # and *long* diagonals add up to the same number. # Being "square," the array has the same number # of rows and columns. That number is the "order." # An example of a magic square of order 3 is: # 8 1 6 # 3 5 7 # 4 9 2 # All the rows, columns, and the two long diagonals add up to 15. # Globals EVEN=2 MAXSIZE=31 # 31 rows x 31 cols. E_usage=90 # Invocation error. dimension= declare -i square usage_message () { echo "Usage: $0 order" echo " ... where \"order\" (square size) is an ODD integer" echo " in the range 3 - 31." # Actually works for squares up to order 159, #+ but large squares will not display pretty-printed in a term window. # Try increasing MAXSIZE, above. exit $E_usage } calculate () # Here's where the actual work gets done. { local row col index dimadj j k cell_val=1 dimension=$1 let "dimadj = $dimension * 3"; let "dimadj /= 2" # x 1.5, then truncate. for ((j=0; j < dimension; j++)) do for ((k=0; k < dimension; k++)) do # Calculate indices, then convert to 1-dim. array index. # Bash doesn't support multidimensional arrays. Pity. let "col = $k - $j + $dimadj"; let "col %= $dimension" let "row = $j * 2 - $k + $dimension"; let "row %= $dimension" let "index = $row*($dimension) + $col" square[$index]=cell_val; ((cell_val++)) done done } # Plain math, visualization not required. print_square () # Output square, one row at a time. { local row col idx d1 let "d1 = $dimension - 1" # Adjust for zero-indexed array. for row in $(seq 0 $d1) do for col in $(seq 0 $d1) do let "idx = $row * $dimension + $col" printf "%3d " "${square[idx]}"; echo -n " " done # Displays up to 13th order neatly in 80-column term window. echo # Newline after each row. done } ################################################# if [[ -z "$1" ]] || [[ "$1" -gt $MAXSIZE ]] then usage_message fi let "test_even = $1 % $EVEN" if [ $test_even -eq 0 ] then # Can't handle even-order squares. usage_message fi calculate $1 print_square # echo "${square[@]}" # DEBUG exit $? ################################################# # Exercises: # --------- # 1) Add a function to calculate the sum of each row, column, # and *long* diagonal. The sums must match. # This is the "magic constant" of that particular order square. # 2) Have the print_square function auto-calculate how much space # to allot between square elements for optimized display. # This might require parameterizing the "printf" line. # 3) Add appropriate functions for generating magic squares # with an *even* number of rows/columns. # This is non-trivial(!). # See the URL for Kwon Young Shin, above, for help. |
Added multiple-processes.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 | #!/bin/bash # parent.sh # Running multiple processes on an SMP box. # Author: Tedman Eng # This is the first of two scripts, #+ both of which must be present in the current working directory. LIMIT=$1 # Total number of process to start NUMPROC=4 # Number of concurrent threads (forks?) PROCID=1 # Starting Process ID echo "My PID is $$" function start_thread() { if [ $PROCID -le $LIMIT ] ; then ./child.sh $PROCID& let "PROCID++" else echo "Limit reached." wait exit fi } while [ "$NUMPROC" -gt 0 ]; do start_thread; let "NUMPROC--" done while true do trap "start_thread" SIGRTMIN done exit 0 # ======== Second script follows ======== #!/bin/bash # child.sh # Running multiple processes on an SMP box. # This script is called by parent.sh. # Author: Tedman Eng temp=$RANDOM index=$1 shift let "temp %= 5" let "temp += 4" echo "Starting $index Time:$temp" "$@" sleep ${temp} echo "Ending $index" kill -s SIGRTMIN $PPID exit 0 # ======================= SCRIPT AUTHOR'S NOTES ======================= # # It's not completely bug free. # I ran it with limit = 500 and after the first few hundred iterations, #+ one of the concurrent threads disappeared! # Not sure if this is collisions from trap signals or something else. # Once the trap is received, there's a brief moment while executing the #+ trap handler but before the next trap is set. During this time, it may #+ be possible to miss a trap signal, thus miss spawning a child process. # No doubt someone may spot the bug and will be writing #+ . . . in the future. # ===================================================================== # # ----------------------------------------------------------------------# ################################################################# # The following is the original script written by Vernia Damiano. # Unfortunately, it doesn't work properly. ################################################################# #!/bin/bash # Must call script with at least one integer parameter #+ (number of concurrent processes). # All other parameters are passed through to the processes started. INDICE=8 # Total number of process to start TEMPO=5 # Maximum sleep time per process E_BADARGS=65 # No arg(s) passed to script. if [ $# -eq 0 ] # Check for at least one argument passed to script. then echo "Usage: `basename $0` number_of_processes [passed params]" exit $E_BADARGS fi NUMPROC=$1 # Number of concurrent process shift PARAMETRI=( "$@" ) # Parameters of each process function avvia() { local temp local index temp=$RANDOM index=$1 shift let "temp %= $TEMPO" let "temp += 1" echo "Starting $index Time:$temp" "$@" sleep ${temp} echo "Ending $index" kill -s SIGRTMIN $$ } function parti() { if [ $INDICE -gt 0 ] ; then avvia $INDICE "${PARAMETRI[@]}" & let "INDICE--" else trap : SIGRTMIN fi } trap parti SIGRTMIN while [ "$NUMPROC" -gt 0 ]; do parti; let "NUMPROC--" done wait trap - SIGRTMIN exit $? : <<SCRIPT_AUTHOR_COMMENTS I had the need to run a program, with specified options, on a number of different files, using a SMP machine. So I thought [I'd] keep running a specified number of processes and start a new one each time . . . one of these terminates. The "wait" instruction does not help, since it waits for a given process or *all* process started in background. So I wrote [this] bash script that can do the job, using the "trap" instruction. --Vernia Damiano SCRIPT_AUTHOR_COMMENTS |
Added multiplication.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 | #!/bin/bash # multiplication.sh multiply () # Multiplies params passed. { # Will accept a variable number of args. local product=1 until [ -z "$1" ] # Until uses up arguments passed... do let "product *= $1" shift done echo $product # Will not echo to stdout, } #+ since this will be assigned to a variable. mult1=15383; mult2=25211 val1=`multiply $mult1 $mult2` # Assigns stdout (echo) of function to the variable val1. echo "$mult1 X $mult2 = $val1" # 387820813 mult1=25; mult2=5; mult3=20 val2=`multiply $mult1 $mult2 $mult3` echo "$mult1 X $mult2 X $mult3 = $val2" # 2500 mult1=188; mult2=37; mult3=25; mult4=47 val3=`multiply $mult1 $mult2 $mult3 $mult4` echo "$mult1 X $mult2 X $mult3 X $mult4 = $val3" # 8173300 exit 0 |
Added music.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 | #!/bin/bash # music.sh # Music without external files # Author: Antonio Macchi # Used in ABS Guide with permission. # /dev/dsp default = 8000 frames per second, 8 bits per frame (1 byte), #+ 1 channel (mono) duration=2000 # If 8000 bytes = 1 second, then 2000 = 1/4 second. volume=$'\xc0' # Max volume = \xff (or \x00). mute=$'\x80' # No volume = \x80 (the middle). function mknote () # $1=Note Hz in bytes (e.g. A = 440Hz :: { #+ 8000 fps / 440 = 16 :: A = 16 bytes per second) for t in `seq 0 $duration` do test $(( $t % $1 )) = 0 && echo -n $volume || echo -n $mute done } e=`mknote 49` g=`mknote 41` a=`mknote 36` b=`mknote 32` c=`mknote 30` cis=`mknote 29` d=`mknote 27` e2=`mknote 24` n=`mknote 32767` # European notation. echo -n "$g$e2$d$c$d$c$a$g$n$g$e$n$g$e2$d$c$c$b$c$cis$n$cis$d \ $n$g$e2$d$c$d$c$a$g$n$g$e$n$g$a$d$c$b$a$b$c" > /dev/dsp # dsp = Digital Signal Processor exit # A "bonny" example of an elegant shell script! |
Added names.data.
> > > > > > > > > > > > > > > > > > > > > > > > > | 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 | Aristotle Arrhenius Belisarius Capablanca Dickens Euler Goethe Hegel Jonah Laplace Maroczy Purcell Schmidt Schopenhauer Semmelweiss Smith Steinmetz Tukhashevsky Turing Venn Warshawski Znosko-Borowski # This is a data file for #+ "redir2.sh", "redir3.sh", "redir4.sh", "redir4a.sh", "redir5.sh". |
Added neg-array.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 | #!/bin/bash # neg-array.sh # Requires Bash, version -ge 4.2. array=( zero one two three four five ) # Six-element array. # 0 1 2 3 4 5 # -6 -5 -4 -3 -2 -1 # Negative array indices now permitted. echo ${array[-1]} # five echo ${array[-2]} # four # ... echo ${array[-6]} # zero # Negative array indices count backward from the last element+1. # But, you cannot index past the beginning of the array. echo ${array[-7]} # array: bad array subscript # So, what is this new feature good for? echo "The last element in the array is "${array[-1]}"" # Which is quite a bit more straightforward than: echo "The last element in the array is "${array[${#array[*]}-1]}"" echo # And ... index=0 let "neg_element_count = 0 - ${#array[*]}" # Number of elements, converted to a negative number. while [ $index -gt $neg_element_count ]; do ((index--)); echo -n "${array[index]} " done # Lists the elements in the array, backwards. # We have just simulated the "tac" command on this array. echo # See also neg-offset.sh. |
Added neg-offset.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 | #!/bin/bash # Bash, version -ge 4.2 # Negative length-index in substring extraction. # Important: It changes the interpretation of this construct! stringZ=abcABC123ABCabc echo ${stringZ} # abcABC123ABCabc # Position within string: 0123456789..... echo ${stringZ:2:3} # cAB # Count 2 chars forward from string beginning, and extract 3 chars. # ${string:position:length} # So far, nothing new, but now ... # abcABC123ABCabc # Position within string: 0123....6543210 echo ${stringZ:3:-6} # ABC123 # ^ # Index 3 chars forward from beginning and 6 chars backward from end, #+ and extract everything in between. # ${string:offset-from-front:offset-from-end} # When the "length" parameter is negative, #+ it serves as an offset-from-end parameter. # See also neg-array.sh. |
Added nested-loop.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 | #!/bin/bash # nested-loop.sh: Nested "for" loops. outer=1 # Set outer loop counter. # Beginning of outer loop. for a in 1 2 3 4 5 do echo "Pass $outer in outer loop." echo "---------------------" inner=1 # Reset inner loop counter. # =============================================== # Beginning of inner loop. for b in 1 2 3 4 5 do echo "Pass $inner in inner loop." let "inner+=1" # Increment inner loop counter. done # End of inner loop. # =============================================== let "outer+=1" # Increment outer loop counter. echo # Space between output blocks in pass of outer loop. done # End of outer loop. exit 0 |
Added nightly-backup.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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | #!/bin/bash # nightly-backup.sh # http://www.richardneill.org/source.php#nightly-backup-rsync # Copyright (c) 2005 Richard Neill <backup@richardneill.org>. # This is Free Software licensed under the GNU GPL. # ==> Included in ABS Guide with script author's kind permission. # ==> (Thanks!) # This does a backup from the host computer to a locally connected #+ firewire HDD using rsync and ssh. # (Script should work with USB-connected device (see lines 40-43). # It then rotates the backups. # Run it via cron every night at 5am. # This only backs up the home directory. # If ownerships (other than the user's) should be preserved, #+ then run the rsync process as root (and re-instate the -o). # We save every day for 7 days, then every week for 4 weeks, #+ then every month for 3 months. # See: http://www.mikerubel.org/computers/rsync_snapshots/ #+ for more explanation of the theory. # Save as: $HOME/bin/nightly-backup_firewire-hdd.sh # Known bugs: # ---------- # i) Ideally, we want to exclude ~/.tmp and the browser caches. # ii) If the user is sitting at the computer at 5am, #+ and files are modified while the rsync is occurring, #+ then the BACKUP_JUSTINCASE branch gets triggered. # To some extent, this is a #+ feature, but it also causes a "disk-space leak". ##### BEGIN CONFIGURATION SECTION ############################################ LOCAL_USER=rjn # User whose home directory should be backed up. MOUNT_POINT=/backup # Mountpoint of backup drive. # NO trailing slash! # This must be unique (eg using a udev symlink) # MOUNT_POINT=/media/disk # For USB-connected device. SOURCE_DIR=/home/$LOCAL_USER # NO trailing slash - it DOES matter to rsync. BACKUP_DEST_DIR=$MOUNT_POINT/backup/`hostname -s`.${LOCAL_USER}.nightly_backup DRY_RUN=false #If true, invoke rsync with -n, to do a dry run. # Comment out or set to false for normal use. VERBOSE=false # If true, make rsync verbose. # Comment out or set to false otherwise. COMPRESS=false # If true, compress. # Good for internet, bad on LAN. # Comment out or set to false otherwise. ### Exit Codes ### E_VARS_NOT_SET=64 E_COMMANDLINE=65 E_MOUNT_FAIL=70 E_NOSOURCEDIR=71 E_UNMOUNTED=72 E_BACKUP=73 ##### END CONFIGURATION SECTION ############################################## # Check that all the important variables have been set: if [ -z "$LOCAL_USER" ] || [ -z "$SOURCE_DIR" ] || [ -z "$MOUNT_POINT" ] || [ -z "$BACKUP_DEST_DIR" ] then echo 'One of the variables is not set! Edit the file: $0. BACKUP FAILED.' exit $E_VARS_NOT_SET fi if [ "$#" != 0 ] # If command-line param(s) . . . then # Here document(ation). cat <<-ENDOFTEXT Automatic Nightly backup run from cron. Read the source for more details: $0 The backup directory is $BACKUP_DEST_DIR . It will be created if necessary; initialisation is no longer required. WARNING: Contents of $BACKUP_DEST_DIR are rotated. Directories named 'backup.\$i' will eventually be DELETED. We keep backups from every day for 7 days (1-8), then every week for 4 weeks (9-12), then every month for 3 months (13-15). You may wish to add this to your crontab using 'crontab -e' # Back up files: $SOURCE_DIR to $BACKUP_DEST_DIR #+ every night at 3:15 am 15 03 * * * /home/$LOCAL_USER/bin/nightly-backup_firewire-hdd.sh Don't forget to verify the backups are working, especially if you don't read cron's mail!" ENDOFTEXT exit $E_COMMANDLINE fi # Parse the options. # ================== if [ "$DRY_RUN" == "true" ]; then DRY_RUN="-n" echo "WARNING:" echo "THIS IS A 'DRY RUN'!" echo "No data will actually be transferred!" else DRY_RUN="" fi if [ "$VERBOSE" == "true" ]; then VERBOSE="-v" else VERBOSE="" fi if [ "$COMPRESS" == "true" ]; then COMPRESS="-z" else COMPRESS="" fi # Every week (actually of 8 days) and every month, #+ extra backups are preserved. DAY_OF_MONTH=`date +%d` # Day of month (01..31). if [ $DAY_OF_MONTH = 01 ]; then # First of month. MONTHSTART=true elif [ $DAY_OF_MONTH = 08 \ -o $DAY_OF_MONTH = 16 \ -o $DAY_OF_MONTH = 24 ]; then # Day 8,16,24 (use 8, not 7 to better handle 31-day months) WEEKSTART=true fi # Check that the HDD is mounted. # At least, check that *something* is mounted here! # We can use something unique to the device, rather than just guessing #+ the scsi-id by having an appropriate udev rule in #+ /etc/udev/rules.d/10-rules.local #+ and by putting a relevant entry in /etc/fstab. # Eg: this udev rule: # BUS="scsi", KERNEL="sd*", SYSFS{vendor}="WDC WD16", # SYSFS{model}="00JB-00GVA0 ", NAME="%k", SYMLINK="lacie_1394d%n" if mount | grep $MOUNT_POINT >/dev/null; then echo "Mount point $MOUNT_POINT is indeed mounted. OK" else echo -n "Attempting to mount $MOUNT_POINT..." # If it isn't mounted, try to mount it. sudo mount $MOUNT_POINT 2>/dev/null if mount | grep $MOUNT_POINT >/dev/null; then UNMOUNT_LATER=TRUE echo "OK" # Note: Ensure that this is also unmounted #+ if we exit prematurely with failure. else echo "FAILED" echo -e "Nothing is mounted at $MOUNT_POINT. BACKUP FAILED!" exit $E_MOUNT_FAIL fi fi # Check that source dir exists and is readable. if [ ! -r $SOURCE_DIR ] ; then echo "$SOURCE_DIR does not exist, or cannot be read. BACKUP FAILED." exit $E_NOSOURCEDIR fi # Check that the backup directory structure is as it should be. # If not, create it. # Create the subdirectories. # Note that backup.0 will be created as needed by rsync. for ((i=1;i<=15;i++)); do if [ ! -d $BACKUP_DEST_DIR/backup.$i ]; then if /bin/mkdir -p $BACKUP_DEST_DIR/backup.$i ; then # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ No [ ] test brackets. Why? echo "Warning: directory $BACKUP_DEST_DIR/backup.$i is missing," echo "or was not initialised. (Re-)creating it." else echo "ERROR: directory $BACKUP_DEST_DIR/backup.$i" echo "is missing and could not be created." if [ "$UNMOUNT_LATER" == "TRUE" ]; then # Before we exit, unmount the mount point if necessary. cd sudo umount $MOUNT_POINT && echo "Unmounted $MOUNT_POINT again. Giving up." fi exit $E_UNMOUNTED fi fi done # Set the permission to 700 for security #+ on an otherwise permissive multi-user system. if ! /bin/chmod 700 $BACKUP_DEST_DIR ; then echo "ERROR: Could not set permissions on $BACKUP_DEST_DIR to 700." if [ "$UNMOUNT_LATER" == "TRUE" ]; then # Before we exit, unmount the mount point if necessary. cd ; sudo umount $MOUNT_POINT \ && echo "Unmounted $MOUNT_POINT again. Giving up." fi exit $E_UNMOUNTED fi # Create the symlink: current -> backup.1 if required. # A failure here is not critical. cd $BACKUP_DEST_DIR if [ ! -h current ] ; then if ! /bin/ln -s backup.1 current ; then echo "WARNING: could not create symlink current -> backup.1" fi fi # Now, do the rsync. echo "Now doing backup with rsync..." echo "Source dir: $SOURCE_DIR" echo -e "Backup destination dir: $BACKUP_DEST_DIR\n" /usr/bin/rsync $DRY_RUN $VERBOSE -a -S --delete --modify-window=60 \ --link-dest=../backup.1 $SOURCE_DIR $BACKUP_DEST_DIR/backup.0/ # Only warn, rather than exit if the rsync failed, #+ since it may only be a minor problem. # E.g., if one file is not readable, rsync will fail. # This shouldn't prevent the rotation. # Not using, e.g., `date +%a` since these directories #+ are just full of links and don't consume *that much* space. if [ $? != 0 ]; then BACKUP_JUSTINCASE=backup.`date +%F_%T`.justincase echo "WARNING: the rsync process did not entirely succeed." echo "Something might be wrong." echo "Saving an extra copy at: $BACKUP_JUSTINCASE" echo "WARNING: if this occurs regularly, a LOT of space will be consumed," echo "even though these are just hard-links!" fi # Save a readme in the backup parent directory. # Save another one in the recent subdirectory. echo "Backup of $SOURCE_DIR on `hostname` was last run on \ `date`" > $BACKUP_DEST_DIR/README.txt echo "This backup of $SOURCE_DIR on `hostname` was created on \ `date`" > $BACKUP_DEST_DIR/backup.0/README.txt # If we are not in a dry run, rotate the backups. [ -z "$DRY_RUN" ] && # Check how full the backup disk is. # Warn if 90%. if 98% or more, we'll probably fail, so give up. # (Note: df can output to more than one line.) # We test this here, rather than before #+ so that rsync may possibly have a chance. DISK_FULL_PERCENT=`/bin/df $BACKUP_DEST_DIR | tr "\n" ' ' | awk '{print $12}' | grep -oE [0-9]+ ` echo "Disk space check on backup partition \ $MOUNT_POINT $DISK_FULL_PERCENT% full." if [ $DISK_FULL_PERCENT -gt 90 ]; then echo "Warning: Disk is greater than 90% full." fi if [ $DISK_FULL_PERCENT -gt 98 ]; then echo "Error: Disk is full! Giving up." if [ "$UNMOUNT_LATER" == "TRUE" ]; then # Before we exit, unmount the mount point if necessary. cd; sudo umount $MOUNT_POINT && echo "Unmounted $MOUNT_POINT again. Giving up." fi exit $E_UNMOUNTED fi # Create an extra backup. # If this copy fails, give up. if [ -n "$BACKUP_JUSTINCASE" ]; then if ! /bin/cp -al $BACKUP_DEST_DIR/backup.0 \ $BACKUP_DEST_DIR/$BACKUP_JUSTINCASE then echo "ERROR: Failed to create extra copy \ $BACKUP_DEST_DIR/$BACKUP_JUSTINCASE" if [ "$UNMOUNT_LATER" == "TRUE" ]; then # Before we exit, unmount the mount point if necessary. cd ;sudo umount $MOUNT_POINT && echo "Unmounted $MOUNT_POINT again. Giving up." fi exit $E_UNMOUNTED fi fi # At start of month, rotate the oldest 8. if [ "$MONTHSTART" == "true" ]; then echo -e "\nStart of month. \ Removing oldest backup: $BACKUP_DEST_DIR/backup.15" && /bin/rm -rf $BACKUP_DEST_DIR/backup.15 && echo "Rotating monthly,weekly backups: \ $BACKUP_DEST_DIR/backup.[8-14] -> $BACKUP_DEST_DIR/backup.[9-15]" && /bin/mv $BACKUP_DEST_DIR/backup.14 $BACKUP_DEST_DIR/backup.15 && /bin/mv $BACKUP_DEST_DIR/backup.13 $BACKUP_DEST_DIR/backup.14 && /bin/mv $BACKUP_DEST_DIR/backup.12 $BACKUP_DEST_DIR/backup.13 && /bin/mv $BACKUP_DEST_DIR/backup.11 $BACKUP_DEST_DIR/backup.12 && /bin/mv $BACKUP_DEST_DIR/backup.10 $BACKUP_DEST_DIR/backup.11 && /bin/mv $BACKUP_DEST_DIR/backup.9 $BACKUP_DEST_DIR/backup.10 && /bin/mv $BACKUP_DEST_DIR/backup.8 $BACKUP_DEST_DIR/backup.9 # At start of week, rotate the second-oldest 4. elif [ "$WEEKSTART" == "true" ]; then echo -e "\nStart of week. \ Removing oldest weekly backup: $BACKUP_DEST_DIR/backup.12" && /bin/rm -rf $BACKUP_DEST_DIR/backup.12 && echo "Rotating weekly backups: \ $BACKUP_DEST_DIR/backup.[8-11] -> $BACKUP_DEST_DIR/backup.[9-12]" && /bin/mv $BACKUP_DEST_DIR/backup.11 $BACKUP_DEST_DIR/backup.12 && /bin/mv $BACKUP_DEST_DIR/backup.10 $BACKUP_DEST_DIR/backup.11 && /bin/mv $BACKUP_DEST_DIR/backup.9 $BACKUP_DEST_DIR/backup.10 && /bin/mv $BACKUP_DEST_DIR/backup.8 $BACKUP_DEST_DIR/backup.9 else echo -e "\nRemoving oldest daily backup: $BACKUP_DEST_DIR/backup.8" && /bin/rm -rf $BACKUP_DEST_DIR/backup.8 fi && # Every day, rotate the newest 8. echo "Rotating daily backups: \ $BACKUP_DEST_DIR/backup.[1-7] -> $BACKUP_DEST_DIR/backup.[2-8]" && /bin/mv $BACKUP_DEST_DIR/backup.7 $BACKUP_DEST_DIR/backup.8 && /bin/mv $BACKUP_DEST_DIR/backup.6 $BACKUP_DEST_DIR/backup.7 && /bin/mv $BACKUP_DEST_DIR/backup.5 $BACKUP_DEST_DIR/backup.6 && /bin/mv $BACKUP_DEST_DIR/backup.4 $BACKUP_DEST_DIR/backup.5 && /bin/mv $BACKUP_DEST_DIR/backup.3 $BACKUP_DEST_DIR/backup.4 && /bin/mv $BACKUP_DEST_DIR/backup.2 $BACKUP_DEST_DIR/backup.3 && /bin/mv $BACKUP_DEST_DIR/backup.1 $BACKUP_DEST_DIR/backup.2 && /bin/mv $BACKUP_DEST_DIR/backup.0 $BACKUP_DEST_DIR/backup.1 && SUCCESS=true if [ "$UNMOUNT_LATER" == "TRUE" ]; then # Unmount the mount point if it wasn't mounted to begin with. cd ; sudo umount $MOUNT_POINT && echo "Unmounted $MOUNT_POINT again." fi if [ "$SUCCESS" == "true" ]; then echo 'SUCCESS!' exit 0 fi # Should have already exited if backup worked. echo 'BACKUP FAILED! Is this just a dry run? Is the disk full?) ' exit $E_BACKUP |
Added nim.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 | #!/bin/bash # nim.sh: Game of Nim # Author: Mendel Cooper # Reldate: 15 July 2008 # License: GPL3 ROWS=5 # Five rows of pegs (or matchsticks). WON=91 # Exit codes to keep track of wins/losses. LOST=92 # Possibly useful if running in batch mode. QUIT=99 peg_msg= # Peg/Pegs? Rows=( 0 5 4 3 2 1 ) # Array holding play info. # ${Rows[0]} holds total number of pegs, updated after each turn. # Other array elements hold number of pegs in corresponding row. instructions () { clear tput bold echo "Welcome to the game of Nim."; echo echo -n "Do you need instructions? (y/n) "; read ans if [ "$ans" = "y" -o "$ans" = "Y" ]; then clear echo -e '\E[33;41m' # Yellow fg., over red bg.; bold. cat <<INSTRUCTIONS Nim is a game with roots in the distant past. This particular variant starts with five rows of pegs. 1: | | | | | 2: | | | | 3: | | | 4: | | 5: | The number at the left identifies the row. The human player moves first, and alternates turns with the bot. A turn consists of removing at least one peg from a single row. It is permissable to remove ALL the pegs from a row. For example, in row 2, above, the player can remove 1, 2, 3, or 4 pegs. The player who removes the last peg loses. The strategy consists of trying to be the one who removes the next-to-last peg(s), leaving the loser with the final peg. To exit the game early, hit ENTER during your turn. INSTRUCTIONS echo; echo -n "Hit ENTER to begin game. "; read azx echo -e "\033[0m" # Restore display. else tput sgr0; clear fi clear } tally_up () { let "Rows[0] = ${Rows[1]} + ${Rows[2]} + ${Rows[3]} + ${Rows[4]} + \ ${Rows[5]}" # Add up how many pegs remaining. } display () { index=1 # Start with top row. echo while [ "$index" -le "$ROWS" ] do p=${Rows[index]} echo -n "$index: " # Show row number. # ------------------------------------------------ # Two concurrent inner loops. indent=$index while [ "$indent" -gt 0 ] do echo -n " " # Staggered rows. ((indent--)) # Spacing between pegs. done while [ "$p" -gt 0 ] do echo -n "| " ((p--)) done # ----------------------------------------------- echo ((index++)) done tally_up rp=${Rows[0]} if [ "$rp" -eq 1 ] then peg_msg=peg final_msg="Game over." else # Game not yet over . . . peg_msg=pegs final_msg="" # . . . So "final message" is blank. fi echo " $rp $peg_msg remaining." echo " "$final_msg"" echo } player_move () { echo "Your move:" echo -n "Which row? " while read idx do # Validity check, etc. if [ -z "$idx" ] # Hitting return quits. then echo "Premature exit."; echo tput sgr0 # Restore display. exit $QUIT fi if [ "$idx" -gt "$ROWS" -o "$idx" -lt 1 ] # Bounds check. then echo "Invalid row number!" echo -n "Which row? " else break fi # TODO: # Add check for non-numeric input. # Also, script crashes on input outside of range of long double. # Fix this. done echo -n "Remove how many? " while read num do # Validity check. if [ -z "$num" ] then echo "Premature exit."; echo tput sgr0 # Restore display. exit $QUIT fi if [ "$num" -gt ${Rows[idx]} -o "$num" -lt 1 ] then echo "Cannot remove $num!" echo -n "Remove how many? " else break fi done # TODO: # Add check for non-numeric input. # Also, script crashes on input outside of range of long double. # Fix this. let "Rows[idx] -= $num" display tally_up if [ ${Rows[0]} -eq 1 ] then echo " Human wins!" echo " Congratulations!" tput sgr0 # Restore display. echo exit $WON fi if [ ${Rows[0]} -eq 0 ] then # Snatching defeat from the jaws of victory . . . echo " Fool!" echo " You just removed the last peg!" echo " Bot wins!" tput sgr0 # Restore display. echo exit $LOST fi } bot_move () { row_b=0 while [[ $row_b -eq 0 || ${Rows[row_b]} -eq 0 ]] do row_b=$RANDOM # Choose random row. let "row_b %= $ROWS" done num_b=0 r0=${Rows[row_b]} if [ "$r0" -eq 1 ] then num_b=1 else let "num_b = $r0 - 1" # Leave only a single peg in the row. fi # Not a very strong strategy, #+ but probably a bit better than totally random. let "Rows[row_b] -= $num_b" echo -n "Bot: " echo "Removing from row $row_b ... " if [ "$num_b" -eq 1 ] then peg_msg=peg else peg_msg=pegs fi echo " $num_b $peg_msg." display tally_up if [ ${Rows[0]} -eq 1 ] then echo " Bot wins!" tput sgr0 # Restore display. exit $WON fi } # ================================================== # instructions # If human player needs them . . . tput bold # Bold characters for easier viewing. display # Show game board. while [ true ] # Main loop. do # Alternate human and bot turns. player_move bot_move done # ================================================== # # Exercise: # -------- # Improve the bot's strategy. # There is, in fact, a Nim strategy that can force a win. # See the Wikipedia article on Nim: http://en.wikipedia.org/wiki/Nim # Recode the bot to use this strategy (rather difficult). # Curiosities: # ----------- # Nim played a prominent role in Alain Resnais' 1961 New Wave film, #+ Last Year at Marienbad. # # In 1978, Leo Christopherson wrote an animated version of Nim, #+ Android Nim, for the TRS-80 Model I. |
Added numbers.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 | #!/bin/bash # numbers.sh: Representation of numbers in different bases. # Decimal: the default let "dec = 32" echo "decimal number = $dec" # 32 # Nothing out of the ordinary here. # Octal: numbers preceded by '0' (zero) let "oct = 032" echo "octal number = $oct" # 26 # Expresses result in decimal. # --------- ------ -- ------- # Hexadecimal: numbers preceded by '0x' or '0X' let "hex = 0x32" echo "hexadecimal number = $hex" # 50 echo $((0x9abc)) # 39612 # ^^ ^^ double-parentheses arithmetic expansion/evaluation # Expresses result in decimal. # Other bases: BASE#NUMBER # BASE between 2 and 64. # NUMBER must use symbols within the BASE range, see below. let "bin = 2#111100111001101" echo "binary number = $bin" # 31181 let "b32 = 32#77" echo "base-32 number = $b32" # 231 let "b64 = 64#@_" echo "base-64 number = $b64" # 4031 # This notation only works for a limited range (2 - 64) of ASCII characters. # 10 digits + 26 lowercase characters + 26 uppercase characters + @ + _ echo echo $((36#zz)) $((2#10101010)) $((16#AF16)) $((53#1aA)) # 1295 170 44822 3375 # Important note: # -------------- # Using a digit out of range of the specified base notation #+ gives an error message. let "bad_oct = 081" # (Partial) error message output: # bad_oct = 081: value too great for base (error token is "081") # Octal numbers use only digits in the range 0 - 7. exit $? # Exit value = 1 (error) # Thanks, Rich Bartell and Stephane Chazelas, for clarification. |
Added online.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 | #!/bin/bash # logon.sh: A quick 'n dirty script to check whether you are on-line yet. umask 177 # Make sure temp files are not world readable. TRUE=1 LOGFILE=/var/log/messages # Note that $LOGFILE must be readable #+ (as root, chmod 644 /var/log/messages). TEMPFILE=temp.$$ # Create a "unique" temp file name, using process id of the script. # Using 'mktemp' is an alternative. # For example: # TEMPFILE=`mktemp temp.XXXXXX` KEYWORD=address # At logon, the line "remote IP address xxx.xxx.xxx.xxx" # appended to /var/log/messages. ONLINE=22 USER_INTERRUPT=13 CHECK_LINES=100 # How many lines in log file to check. trap 'rm -f $TEMPFILE; exit $USER_INTERRUPT' TERM INT # Cleans up the temp file if script interrupted by control-c. echo while [ $TRUE ] #Endless loop. do tail -n $CHECK_LINES $LOGFILE> $TEMPFILE # Saves last 100 lines of system log file as temp file. # Necessary, since newer kernels generate many log messages at log on. search=`grep $KEYWORD $TEMPFILE` # Checks for presence of the "IP address" phrase, #+ indicating a successful logon. if [ ! -z "$search" ] # Quotes necessary because of possible spaces. then echo "On-line" rm -f $TEMPFILE # Clean up temp file. exit $ONLINE else echo -n "." # The -n option to echo suppresses newline, #+ so you get continuous rows of dots. fi sleep 1 done # Note: if you change the KEYWORD variable to "Exit", #+ this script can be used while on-line #+ to check for an unexpected logoff. # Exercise: Change the script, per the above note, # and prettify it. exit 0 # Nick Drage suggests an alternate method: while true do ifconfig ppp0 | grep UP 1> /dev/null && echo "connected" && exit 0 echo -n "." # Prints dots (.....) until connected. sleep 2 done # Problem: Hitting Control-C to terminate this process may be insufficient. #+ (Dots may keep on echoing.) # Exercise: Fix this. # Stephane Chazelas has yet another alternative: CHECK_INTERVAL=1 while ! tail -n 1 "$LOGFILE" | grep -q "$KEYWORD" do echo -n . sleep $CHECK_INTERVAL done echo "On-line" # Exercise: Discuss the relative strengths and weaknesses # of each of these various approaches. |
Added opprec-table.sgml.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <table> <title>Operator Precedence</title> <tgroup cols="3"> <thead> <row> <entry>Operator</entry> <entry>Meaning</entry> <entry>Comments</entry> </row> </thead> <tbody> <row> <entry><option></option></entry> <entry></entry> <entry><command>HIGHEST PRECEDENCE</command></entry> </row> <row> <entry><option>var++ var--</option></entry> <entry>post-increment, post-decrement</entry> <entry><link linkend="cstyle">C-style</link> operators</entry> </row> <row> <entry><option>++var --var</option></entry> <entry>pre-increment, pre-decrement</entry> <entry></entry> </row> <row> <entry></entry> <entry></entry> <entry></entry> </row> <row> <entry><option>! ~</option></entry> <entry><link linkend="notref">negation</link></entry> <entry>logical / bitwise, inverts sense of following operator</entry> </row> <row> <entry></entry> <entry></entry> <entry></entry> </row> <row> <entry><option>**</option></entry> <entry><link linkend="exponentiationref">exponentiation</link></entry> <entry><link linkend="arops1">arithmetic operation</link></entry> </row> <row> <entry><option>* / %</option></entry> <entry>multiplication, division, modulo</entry> <entry>arithmetic operation</entry> </row> <row> <entry><option>+ -</option></entry> <entry>addition, subtraction</entry> <entry>arithmetic operation</entry> </row> <row> <entry></entry> <entry></entry> <entry></entry> </row> <row> <entry><option><< >></option></entry> <entry>left, right shift</entry> <entry><link linkend="bitwsops1">bitwise</link></entry> </row> <row> <entry></entry> <entry></entry> <entry></entry> </row> <row> <entry><option>-z -n</option></entry> <entry><firstterm>unary</firstterm> comparison</entry> <entry>string is/is-not <link linkend="stringnull">null</link></entry> </row> <row> <entry><option>-e -f -t -x, etc.</option></entry> <entry><firstterm>unary</firstterm> comparison</entry> <entry><link linkend="fto">file-test</link></entry> </row> <row> <entry><option>< -lt > -gt <= -le >= -ge</option></entry> <entry><firstterm>compound</firstterm> comparison</entry> <entry>string and integer</entry> </row> <row> <entry><option>-nt -ot -ef</option></entry> <entry><firstterm>compound</firstterm> comparison</entry> <entry>file-test</entry> </row> <row> <entry><option>== -eq <link linkend="notequal">!=</link> -ne</option></entry> <entry>equality / inequality</entry> <entry>test operators, string and integer</entry> </row> <row> <entry></entry> <entry></entry> <entry></entry> </row> <row> <entry><option>&</option></entry> <entry>AND</entry> <entry>bitwise</entry> </row> <row> <entry><option>^</option></entry> <entry>XOR</entry> <entry><firstterm>exclusive</firstterm> OR, bitwise</entry> </row> <row> <entry><option>|</option></entry> <entry>OR</entry> <entry>bitwise</entry> </row> <row> <entry></entry> <entry></entry> <entry></entry> </row> <row> <entry><option>&& -a</option></entry> <entry>AND</entry> <entry><link linkend="logops1">logical</link>, <firstterm>compound</firstterm> comparison</entry> </row> <row> <entry><option>|| -o</option></entry> <entry>OR</entry> <entry>logical, <firstterm>compound</firstterm> comparison</entry> </row> <row> <entry></entry> <entry></entry> <entry></entry> </row> <row> <entry><option>?:</option></entry> <entry><link linkend="cstrinary">trinary operator</link></entry> <entry>C-style</entry> </row> <row> <entry><option>=</option></entry> <entry><link linkend="eqref">assignment</link></entry> <entry>(do not confuse with equality <firstterm>test</firstterm>)</entry> </row> <row> <entry><option>*= /= %= += -= <<= >>= &=</option></entry> <entry><link linkend="arithopscomb">combination assignment</link></entry> <entry>times-equal, divide-equal, mod-equal, etc.</entry> </row> <row> <entry></entry> <entry></entry> <entry></entry> </row> <row> <entry><option>,</option></entry> <entry><link linkend="commaop">comma</link></entry> <entry>links a sequence of operations</entry> </row> <row> <entry><option></option></entry> <entry></entry> <entry><command>LOWEST PRECEDENCE</command></entry> </row> </tbody> </tgroup> </table> |
Added pad.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 | #!/bin/bash # pad.sh ####################################################### # PAD (xml) file creator #+ Written by Mendel Cooper <thegrendel.abs@gmail.com>. #+ Released to the Public Domain. # # Generates a "PAD" descriptor file for shareware #+ packages, according to the specifications #+ of the ASP. # http://www.asp-shareware.org/pad ####################################################### # Accepts (optional) save filename as a command-line argument. if [ -n "$1" ] then savefile=$1 else savefile=save_file.xml # Default save_file name. fi # ===== PAD file headers ===== HDR1="<?xml version=\"1.0\" encoding=\"Windows-1252\" ?>" HDR2="<XML_DIZ_INFO>" HDR3="<MASTER_PAD_VERSION_INFO>" HDR4="\t<MASTER_PAD_VERSION>1.15</MASTER_PAD_VERSION>" HDR5="\t<MASTER_PAD_INFO>Portable Application Description, or PAD for short, is a data set that is used by shareware authors to disseminate information to anyone interested in their software products. To find out more go to http://www.asp-shareware.org/pad</MASTER_PAD_INFO>" HDR6="</MASTER_PAD_VERSION_INFO>" # ============================ fill_in () { if [ -z "$2" ] then echo -n "$1? " # Get user input. else echo -n "$1 $2? " # Additional query? fi read var # May paste to fill in field. # This shows how flexible "read" can be. if [ -z "$var" ] then echo -e "\t\t<$1 />" >>$savefile # Indent with 2 tabs. return else echo -e "\t\t<$1>$var</$1>" >>$savefile return ${#var} # Return length of input string. fi } check_field_length () # Check length of program description fields. { # $1 = maximum field length # $2 = actual field length if [ "$2" -gt "$1" ] then echo "Warning: Maximum field length of $1 characters exceeded!" fi } clear # Clear screen. echo "PAD File Creator" echo "--- ---- -------" echo # Write File Headers to file. echo $HDR1 >$savefile echo $HDR2 >>$savefile echo $HDR3 >>$savefile echo -e $HDR4 >>$savefile echo -e $HDR5 >>$savefile echo $HDR6 >>$savefile # Company_Info echo "COMPANY INFO" CO_HDR="Company_Info" echo "<$CO_HDR>" >>$savefile fill_in Company_Name fill_in Address_1 fill_in Address_2 fill_in City_Town fill_in State_Province fill_in Zip_Postal_Code fill_in Country # If applicable: # fill_in ASP_Member "[Y/N]" # fill_in ASP_Member_Number # fill_in ESC_Member "[Y/N]" fill_in Company_WebSite_URL clear # Clear screen between sections. # Contact_Info echo "CONTACT INFO" CONTACT_HDR="Contact_Info" echo "<$CONTACT_HDR>" >>$savefile fill_in Author_First_Name fill_in Author_Last_Name fill_in Author_Email fill_in Contact_First_Name fill_in Contact_Last_Name fill_in Contact_Email echo -e "\t</$CONTACT_HDR>" >>$savefile # END Contact_Info clear # Support_Info echo "SUPPORT INFO" SUPPORT_HDR="Support_Info" echo "<$SUPPORT_HDR>" >>$savefile fill_in Sales_Email fill_in Support_Email fill_in General_Email fill_in Sales_Phone fill_in Support_Phone fill_in General_Phone fill_in Fax_Phone echo -e "\t</$SUPPORT_HDR>" >>$savefile # END Support_Info echo "</$CO_HDR>" >>$savefile # END Company_Info clear # Program_Info echo "PROGRAM INFO" PROGRAM_HDR="Program_Info" echo "<$PROGRAM_HDR>" >>$savefile fill_in Program_Name fill_in Program_Version fill_in Program_Release_Month fill_in Program_Release_Day fill_in Program_Release_Year fill_in Program_Cost_Dollars fill_in Program_Cost_Other fill_in Program_Type "[Shareware/Freeware/GPL]" fill_in Program_Release_Status "[Beta, Major Upgrade, etc.]" fill_in Program_Install_Support fill_in Program_OS_Support "[Win9x/Win2k/Linux/etc.]" fill_in Program_Language "[English/Spanish/etc.]" echo; echo # File_Info echo "FILE INFO" FILEINFO_HDR="File_Info" echo "<$FILEINFO_HDR>" >>$savefile fill_in Filename_Versioned fill_in Filename_Previous fill_in Filename_Generic fill_in Filename_Long fill_in File_Size_Bytes fill_in File_Size_K fill_in File_Size_MB echo -e "\t</$FILEINFO_HDR>" >>$savefile # END File_Info clear # Expire_Info echo "EXPIRE INFO" EXPIRE_HDR="Expire_Info" echo "<$EXPIRE_HDR>" >>$savefile fill_in Has_Expire_Info "Y/N" fill_in Expire_Count fill_in Expire_Based_On fill_in Expire_Other_Info fill_in Expire_Month fill_in Expire_Day fill_in Expire_Year echo -e "\t</$EXPIRE_HDR>" >>$savefile # END Expire_Info clear # More Program_Info echo "ADDITIONAL PROGRAM INFO" fill_in Program_Change_Info fill_in Program_Specific_Category fill_in Program_Categories fill_in Includes_JAVA_VM "[Y/N]" fill_in Includes_VB_Runtime "[Y/N]" fill_in Includes_DirectX "[Y/N]" # END More Program_Info echo "</$PROGRAM_HDR>" >>$savefile # END Program_Info clear # Program Description echo "PROGRAM DESCRIPTIONS" PROGDESC_HDR="Program_Descriptions" echo "<$PROGDESC_HDR>" >>$savefile LANG="English" echo "<$LANG>" >>$savefile fill_in Keywords "[comma + space separated]" echo echo "45, 80, 250, 450, 2000 word program descriptions" echo "(may cut and paste into field)" # It would be highly appropriate to compose the following #+ "Char_Desc" fields with a text editor, #+ then cut-and-paste the text into the answer fields. echo echo " |---------------45 characters---------------|" fill_in Char_Desc_45 check_field_length 45 "$?" echo fill_in Char_Desc_80 check_field_length 80 "$?" fill_in Char_Desc_250 check_field_length 250 "$?" fill_in Char_Desc_450 fill_in Char_Desc_2000 echo "</$LANG>" >>$savefile echo "</$PROGDESC_HDR>" >>$savefile # END Program Description clear echo "Done."; echo; echo echo "Save file is: \""$savefile"\"" exit 0 |
Added paragraph-space.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 | #!/bin/bash # paragraph-space.sh # Ver. 2.1, Reldate 29Jul12 [fixup] # Inserts a blank line between paragraphs of a single-spaced text file. # Usage: $0 <FILENAME MINLEN=60 # Change this value? It's a judgment call. # Assume lines shorter than $MINLEN characters ending in a period #+ terminate a paragraph. See exercises below. while read line # For as many lines as the input file has ... do echo "$line" # Output the line itself. len=${#line} if [[ "$len" -lt "$MINLEN" && "$line" =~ [*{\.}]$ ]] # if [[ "$len" -lt "$MINLEN" && "$line" =~ \[*\.\] ]] # An update to Bash broke the previous version of this script. Ouch! # Thank you, Halim Srama, for pointing this out and suggesting a fix. then echo # Add a blank line immediately fi #+ after a short line terminated by a period. done exit # Exercises: # --------- # 1) The script usually inserts a blank line at the end #+ of the target file. Fix this. # 2) Line 17 only considers periods as sentence terminators. # Modify this to include other common end-of-sentence characters, #+ such as ?, !, and ". |
Added param-sub.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 | #!/bin/bash # param-sub.sh # Whether a variable has been declared #+ affects triggering of the default option #+ even if the variable is null. username0= echo "username0 has been declared, but is set to null." echo "username0 = ${username0-`whoami`}" # Will not echo. echo echo username1 has not been declared. echo "username1 = ${username1-`whoami`}" # Will echo. username2= echo "username2 has been declared, but is set to null." echo "username2 = ${username2:-`whoami`}" # ^ # Will echo because of :- rather than just - in condition test. # Compare to first instance, above. # # Once again: variable= # variable has been declared, but is set to null. echo "${variable-0}" # (no output) echo "${variable:-1}" # 1 # ^ unset variable echo "${variable-2}" # 2 echo "${variable:-3}" # 3 exit 0 |
Added patt-matching.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 | #!/bin/bash # patt-matching.sh # Pattern matching using the # ## % %% parameter substitution operators. var1=abcd12345abc6789 pattern1=a*c # * (wild card) matches everything between a - c. echo echo "var1 = $var1" # abcd12345abc6789 echo "var1 = ${var1}" # abcd12345abc6789 # (alternate form) echo "Number of characters in ${var1} = ${#var1}" echo echo "pattern1 = $pattern1" # a*c (everything between 'a' and 'c') echo "--------------" echo '${var1#$pattern1} =' "${var1#$pattern1}" # d12345abc6789 # Shortest possible match, strips out first 3 characters abcd12345abc6789 # ^^^^^ |-| echo '${var1##$pattern1} =' "${var1##$pattern1}" # 6789 # Longest possible match, strips out first 12 characters abcd12345abc6789 # ^^^^^ |----------| echo; echo; echo pattern2=b*9 # everything between 'b' and '9' echo "var1 = $var1" # Still abcd12345abc6789 echo echo "pattern2 = $pattern2" echo "--------------" echo '${var1%pattern2} =' "${var1%$pattern2}" # abcd12345a # Shortest possible match, strips out last 6 characters abcd12345abc6789 # ^^^^ |----| echo '${var1%%pattern2} =' "${var1%%$pattern2}" # a # Longest possible match, strips out last 12 characters abcd12345abc6789 # ^^^^ |-------------| # Remember, # and ## work from the left end (beginning) of string, # % and %% work from the right end. echo exit 0 |
Added pb.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 | #!/bin/bash # pb.sh: phone book # Written by Rick Boivie, and used with permission. # Modifications by ABS Guide author. MINARGS=1 # Script needs at least one argument. DATAFILE=./phonebook # A data file in current working directory #+ named "phonebook" must exist. PROGNAME=$0 E_NOARGS=70 # No arguments error. if [ $# -lt $MINARGS ]; then echo "Usage: "$PROGNAME" data-to-look-up" exit $E_NOARGS fi if [ $# -eq $MINARGS ]; then grep $1 "$DATAFILE" # 'grep' prints an error message if $DATAFILE not present. else ( shift; "$PROGNAME" $* ) | grep $1 # Script recursively calls itself. fi exit 0 # Script exits here. # Therefore, it's o.k. to put #+ non-hashmarked comments and data after this point. # ------------------------------------------------------------------------ Sample "phonebook" datafile: John Doe 1555 Main St., Baltimore, MD 21228 (410) 222-3333 Mary Moe 9899 Jones Blvd., Warren, NH 03787 (603) 898-3232 Richard Roe 856 E. 7th St., New York, NY 10009 (212) 333-4567 Sam Roe 956 E. 8th St., New York, NY 10009 (212) 444-5678 Zoe Zenobia 4481 N. Baker St., San Francisco, SF 94338 (415) 501-1631 # ------------------------------------------------------------------------ $bash pb.sh Roe Richard Roe 856 E. 7th St., New York, NY 10009 (212) 333-4567 Sam Roe 956 E. 8th St., New York, NY 10009 (212) 444-5678 $bash pb.sh Roe Sam Sam Roe 956 E. 8th St., New York, NY 10009 (212) 444-5678 # When more than one argument is passed to this script, #+ it prints *only* the line(s) containing all the arguments. |
Added petals.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 | #!/bin/bash -i # petals.sh ######################################################################### # Petals Around the Rose # # # # Version 0.1 Created by Serghey Rodin # # Version 0.2 Modded by ABS Guide Author # # # # License: GPL3 # # Used in ABS Guide with permission. # # ##################################################################### # hits=0 # Correct guesses. WIN=6 # Mastered the game. ALMOST=5 # One short of mastery. EXIT=exit # Give up early? RANDOM=$$ # Seeds the random number generator from PID of script. # Bones (ASCII graphics for dice) bone1[1]="| |" bone1[2]="| o |" bone1[3]="| o |" bone1[4]="| o o |" bone1[5]="| o o |" bone1[6]="| o o |" bone2[1]="| o |" bone2[2]="| |" bone2[3]="| o |" bone2[4]="| |" bone2[5]="| o |" bone2[6]="| o o |" bone3[1]="| |" bone3[2]="| o |" bone3[3]="| o |" bone3[4]="| o o |" bone3[5]="| o o |" bone3[6]="| o o |" bone="+---------+" # Functions instructions () { clear echo -n "Do you need instructions? (y/n) "; read ans if [ "$ans" = "y" -o "$ans" = "Y" ]; then clear echo -e '\E[34;47m' # Blue type. # "cat document" cat <<INSTRUCTIONSZZZ The name of the game is Petals Around the Rose, and that name is significant. Five dice will roll and you must guess the "answer" for each roll. It will be zero or an even number. After your guess, you will be told the answer for the roll, but . . . that's ALL the information you will get. Six consecutive correct guesses admits you to the Fellowship of the Rose. INSTRUCTIONSZZZ echo -e "\033[0m" # Turn off blue. else clear fi } fortune () { RANGE=7 FLOOR=0 number=0 while [ "$number" -le $FLOOR ] do number=$RANDOM let "number %= $RANGE" # 1 - 6. done return $number } throw () { # Calculate each individual die. fortune; B1=$? fortune; B2=$? fortune; B3=$? fortune; B4=$? fortune; B5=$? calc () { # Function embedded within a function! case "$1" in 3 ) rose=2;; 5 ) rose=4;; * ) rose=0;; esac # Simplified algorithm. # Doesn't really get to the heart of the matter. return $rose } answer=0 calc "$B1"; answer=$(expr $answer + $(echo $?)) calc "$B2"; answer=$(expr $answer + $(echo $?)) calc "$B3"; answer=$(expr $answer + $(echo $?)) calc "$B4"; answer=$(expr $answer + $(echo $?)) calc "$B5"; answer=$(expr $answer + $(echo $?)) } game () { # Generate graphic display of dice throw. throw echo -e "\033[1m" # Bold. echo -e "\n" echo -e "$bone\t$bone\t$bone\t$bone\t$bone" echo -e \ "${bone1[$B1]}\t${bone1[$B2]}\t${bone1[$B3]}\t${bone1[$B4]}\t${bone1[$B5]}" echo -e \ "${bone2[$B1]}\t${bone2[$B2]}\t${bone2[$B3]}\t${bone2[$B4]}\t${bone2[$B5]}" echo -e \ "${bone3[$B1]}\t${bone3[$B2]}\t${bone3[$B3]}\t${bone3[$B4]}\t${bone3[$B5]}" echo -e "$bone\t$bone\t$bone\t$bone\t$bone" echo -e "\n\n\t\t" echo -e "\033[0m" # Turn off bold. echo -n "There are how many petals around the rose? " } # ============================================================== # instructions while [ "$petal" != "$EXIT" ] # Main loop. do game read petal echo "$petal" | grep [0-9] >/dev/null # Filter response for digit. # Otherwise just roll dice again. if [ "$?" -eq 0 ] # If-loop #1. then if [ "$petal" == "$answer" ]; then # If-loop #2. echo -e "\nCorrect. There are $petal petals around the rose.\n" (( hits++ )) if [ "$hits" -eq "$WIN" ]; then # If-loop #3. echo -e '\E[31;47m' # Red type. echo -e "\033[1m" # Bold. echo "You have unraveled the mystery of the Rose Petals!" echo "Welcome to the Fellowship of the Rose!!!" echo "(You are herewith sworn to secrecy.)"; echo echo -e "\033[0m" # Turn off red & bold. break # Exit! else echo "You have $hits correct so far."; echo if [ "$hits" -eq "$ALMOST" ]; then echo "Just one more gets you to the heart of the mystery!"; echo fi fi # Close if-loop #3. else echo -e "\nWrong. There are $answer petals around the rose.\n" hits=0 # Reset number of correct guesses. fi # Close if-loop #2. echo -n "Hit ENTER for the next roll, or type \"exit\" to end. " read if [ "$REPLY" = "$EXIT" ]; then exit fi fi # Close if-loop #1. clear done # End of main (while) loop. ### exit $? # Resources: # --------- # 1) http://en.wikipedia.org/wiki/Petals_Around_the_Rose # (Wikipedia entry.) # 2) http://www.borrett.id.au/computing/petals-bg.htm # (How Bill Gates coped with the Petals Around the Rose challenge.) |
Added pick-card.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 | #!/bin/bash # pick-card.sh # This is an example of choosing random elements of an array. # Pick a card, any card. Suites="Clubs Diamonds Hearts Spades" Denominations="2 3 4 5 6 7 8 9 10 Jack Queen King Ace" # Note variables spread over multiple lines. suite=($Suites) # Read into array variable. denomination=($Denominations) num_suites=${#suite[*]} # Count how many elements. num_denominations=${#denomination[*]} echo -n "${denomination[$((RANDOM%num_denominations))]} of " echo ${suite[$((RANDOM%num_suites))]} # $bozo sh pick-cards.sh # Jack of Clubs # Thank you, "jipe," for pointing out this use of $RANDOM. exit 0 |
Added pid-identifier.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 | #!/bin/bash # pid-identifier.sh: # Gives complete path name to process associated with pid. ARGNO=1 # Number of arguments the script expects. E_WRONGARGS=65 E_BADPID=66 E_NOSUCHPROCESS=67 E_NOPERMISSION=68 PROCFILE=exe if [ $# -ne $ARGNO ] then echo "Usage: `basename $0` PID-number" >&2 # Error message >stderr. exit $E_WRONGARGS fi pidno=$( ps ax | grep $1 | awk '{ print $1 }' | grep $1 ) # Checks for pid in "ps" listing, field #1. # Then makes sure it is the actual process, not the process invoked by this script. # The last "grep $1" filters out this possibility. # # pidno=$( ps ax | awk '{ print $1 }' | grep $1 ) # also works, as Teemu Huovila, points out. if [ -z "$pidno" ] # If, after all the filtering, the result is a zero-length string, then #+ no running process corresponds to the pid given. echo "No such process running." exit $E_NOSUCHPROCESS fi # Alternatively: # if ! ps $1 > /dev/null 2>&1 # then # no running process corresponds to the pid given. # echo "No such process running." # exit $E_NOSUCHPROCESS # fi # To simplify the entire process, use "pidof". if [ ! -r "/proc/$1/$PROCFILE" ] # Check for read permission. then echo "Process $1 running, but..." echo "Can't get read permission on /proc/$1/$PROCFILE." exit $E_NOPERMISSION # Ordinary user can't access some files in /proc. fi # The last two tests may be replaced by: # if ! kill -0 $1 > /dev/null 2>&1 # '0' is not a signal, but # this will test whether it is possible # to send a signal to the process. # then echo "PID doesn't exist or you're not its owner" >&2 # exit $E_BADPID # fi exe_file=$( ls -l /proc/$1 | grep "exe" | awk '{ print $11 }' ) # Or exe_file=$( ls -l /proc/$1/exe | awk '{print $11}' ) # # /proc/pid-number/exe is a symbolic link #+ to the complete path name of the invoking process. if [ -e "$exe_file" ] # If /proc/pid-number/exe exists, then #+ then the corresponding process exists. echo "Process #$1 invoked by $exe_file." else echo "No such process running." fi # This elaborate script can *almost* be replaced by # ps ax | grep $1 | awk '{ print $5 }' # However, this will not work... #+ because the fifth field of 'ps' is argv[0] of the process, #+ not the executable file path. # # However, either of the following would work. # find /proc/$1/exe -printf '%l\n' # lsof -aFn -p $1 -d txt | sed -ne 's/^n//p' # Additional commentary by Stephane Chazelas. exit 0 |
Added poem.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 | #!/bin/bash # poem.sh: Pretty-prints one of the ABS Guide author's favorite poems. # Lines of the poem (single stanza). Line[1]="I do not know which to prefer," Line[2]="The beauty of inflections" Line[3]="Or the beauty of innuendoes," Line[4]="The blackbird whistling" Line[5]="Or just after." # Note that quoting permits embedding whitespace. # Attribution. Attrib[1]=" Wallace Stevens" Attrib[2]="\"Thirteen Ways of Looking at a Blackbird\"" # This poem is in the Public Domain (copyright expired). echo tput bold # Bold print. for index in 1 2 3 4 5 # Five lines. do printf " %s\n" "${Line[index]}" done for index in 1 2 # Two attribution lines. do printf " %s\n" "${Attrib[index]}" done tput sgr0 # Reset terminal. # See 'tput' docs. echo exit 0 # Exercise: # -------- # Modify this script to pretty-print a poem from a text data file. |
Added pr-asc.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 | #!/bin/bash # pr-ascii.sh: Prints a table of ASCII characters. START=33 # Range of printable ASCII characters (decimal). END=127 # Will not work for unprintable characters (> 127). echo " Decimal Hex Character" # Header. echo " ------- --- ---------" for ((i=START; i<=END; i++)) do echo $i | awk '{printf(" %3d %2x %c\n", $1, $1, $1)}' # The Bash printf builtin will not work in this context: # printf "%c" "$i" done exit 0 # Decimal Hex Character # ------- --- --------- # 33 21 ! # 34 22 " # 35 23 # # 36 24 $ # # . . . # # 122 7a z # 123 7b { # 124 7c | # 125 7d } # Redirect the output of this script to a file #+ or pipe it to "more": sh pr-asc.sh | more |
Added prepend.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 | #!/bin/bash # prepend.sh: Add text at beginning of file. # # Example contributed by Kenny Stauffer, #+ and slightly modified by document author. E_NOSUCHFILE=85 read -p "File: " file # -p arg to 'read' displays prompt. if [ ! -e "$file" ] then # Bail out if no such file. echo "File $file not found." exit $E_NOSUCHFILE fi read -p "Title: " title cat - $file <<<$title > $file.new echo "Modified file is $file.new" exit # Ends script execution. from 'man bash': Here Strings A variant of here documents, the format is: <<<word The word is expanded and supplied to the command on its standard input. Of course, the following also works: sed -e '1i\ Title: ' $file |
Added primes.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 | #!/bin/bash # primes.sh: Generate prime numbers, without using arrays. # Script contributed by Stephane Chazelas. # This does *not* use the classic "Sieve of Eratosthenes" algorithm, #+ but instead the more intuitive method of testing each candidate number #+ for factors (divisors), using the "%" modulo operator. LIMIT=1000 # Primes, 2 ... 1000. Primes() { (( n = $1 + 1 )) # Bump to next integer. shift # Next parameter in list. # echo "_n=$n i=$i_" if (( n == LIMIT )) then echo $* return fi for i; do # "i" set to "@", previous values of $n. # echo "-n=$n i=$i-" (( i * i > n )) && break # Optimization. (( n % i )) && continue # Sift out non-primes using modulo operator. Primes $n $@ # Recursion inside loop. return done Primes $n $@ $n # Recursion outside loop. # Successively accumulate #+ positional parameters. # "$@" is the accumulating list of primes. } Primes 1 exit $? # Pipe output of the script to 'fmt' for prettier printing. # Uncomment lines 16 and 24 to help figure out what is going on. # Compare the speed of this algorithm for generating primes #+ with the Sieve of Eratosthenes (ex68.sh). # Exercise: Rewrite this script without recursion. |
Added primes2.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 | #!/bin/bash # primes2.sh # Generating prime numbers the quick-and-easy way, #+ without resorting to fancy algorithms. CEILING=10000 # 1 to 10000 PRIME=0 E_NOTPRIME= is_prime () { local factors factors=( $(factor $1) ) # Load output of `factor` into array. if [ -z "${factors[2]}" ] # Third element of "factors" array: #+ ${factors[2]} is 2nd factor of argument. # If it is blank, then there is no 2nd factor, #+ and the argument is therefore prime. then return $PRIME # 0 else return $E_NOTPRIME # null fi } echo for n in $(seq $CEILING) do if is_prime $n then printf %5d $n fi # ^ Five positions per number suffices. done # For a higher $CEILING, adjust upward, as necessary. echo exit |
Added progress-bar.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 | #!/bin/bash # progress-bar.sh # Author: Dotan Barak (very minor revisions by ABS Guide author). # Used in ABS Guide with permission (thanks!). BAR_WIDTH=50 BAR_CHAR_START="[" BAR_CHAR_END="]" BAR_CHAR_EMPTY="." BAR_CHAR_FULL="=" BRACKET_CHARS=2 LIMIT=100 print_progress_bar() { # Calculate how many characters will be full. let "full_limit = ((($1 - $BRACKET_CHARS) * $2) / $LIMIT)" # Calculate how many characters will be empty. let "empty_limit = ($1 - $BRACKET_CHARS) - ${full_limit}" # Prepare the bar. bar_line="${BAR_CHAR_START}" for ((j=0; j<full_limit; j++)); do bar_line="${bar_line}${BAR_CHAR_FULL}" done for ((j=0; j<empty_limit; j++)); do bar_line="${bar_line}${BAR_CHAR_EMPTY}" done bar_line="${bar_line}${BAR_CHAR_END}" printf "%3d%% %s" $2 ${bar_line} } # Here is a sample of code that uses it. MAX_PERCENT=100 for ((i=0; i<=MAX_PERCENT; i++)); do # usleep 10000 # ... Or run some other commands ... # print_progress_bar ${BAR_WIDTH} ${i} echo -en "\r" done echo "" exit |
Added progress-bar2.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 | #! /bin/bash # progress-bar2.sh # Author: Graham Ewart (with reformatting by ABS Guide author). # Used in ABS Guide with permission (thanks!). # Invoke this script with bash. It doesn't work with sh. interval=1 long_interval=10 { trap "exit" SIGUSR1 sleep $interval; sleep $interval while true do echo -n '.' # Use dots. sleep $interval done; } & # Start a progress bar as a background process. pid=$! trap "echo !; kill -USR1 $pid; wait $pid" EXIT # To handle ^C. echo -n 'Long-running process ' sleep $long_interval echo ' Finished!' kill -USR1 $pid wait $pid # Stop the progress bar. trap EXIT exit $? |
Added protect_literal.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 | #! /bin/bash # protect_literal.sh # set -vx :<<-'_Protect_Literal_String_Doc' Copyright (c) Michael S. Zick, 2003; All Rights Reserved License: Unrestricted reuse in any form, for any purpose. Warranty: None Revision: $ID$ Documentation redirected to the Bash no-operation. Bash will '/dev/null' this block when the script is first read. (Uncomment the above set command to see this action.) Remove the first (Sha-Bang) line when sourcing this as a library procedure. Also comment out the example use code in the two places where shown. Usage: _protect_literal_str 'Whatever string meets your ${fancy}' Just echos the argument to standard out, hard quotes restored. $(_protect_literal_str 'Whatever string meets your ${fancy}') as the right-hand-side of an assignment statement. Does: As the right-hand-side of an assignment, preserves the hard quotes protecting the contents of the literal during assignment. Notes: The strange names (_*) are used to avoid trampling on the user's chosen names when this is sourced as a library. _Protect_Literal_String_Doc # The 'for illustration' function form _protect_literal_str() { # Pick an un-used, non-printing character as local IFS. # Not required, but shows that we are ignoring it. local IFS=$'\x1B' # \ESC character # Enclose the All-Elements-Of in hard quotes during assignment. local tmp=$'\x27'$@$'\x27' # local tmp=$'\''$@$'\'' # Even uglier. local len=${#tmp} # Info only. echo $tmp is $len long. # Output AND information. } # This is the short-named version. _pls() { local IFS=$'x1B' # \ESC character (not required) echo $'\x27'$@$'\x27' # Hard quoted parameter glob } # :<<-'_Protect_Literal_String_Test' # # # Remove the above "# " to disable this code. # # # # See how that looks when printed. echo echo "- - Test One - -" _protect_literal_str 'Hello $user' _protect_literal_str 'Hello "${username}"' echo # Which yields: # - - Test One - - # 'Hello $user' is 13 long. # 'Hello "${username}"' is 21 long. # Looks as expected, but why all of the trouble? # The difference is hidden inside the Bash internal order #+ of operations. # Which shows when you use it on the RHS of an assignment. # Declare an array for test values. declare -a arrayZ # Assign elements with various types of quotes and escapes. arrayZ=( zero "$(_pls 'Hello ${Me}')" 'Hello ${You}' "\'Pass: ${pw}\'" ) # Now list that array and see what is there. echo "- - Test Two - -" for (( i=0 ; i<${#arrayZ[*]} ; i++ )) do echo Element $i: ${arrayZ[$i]} is: ${#arrayZ[$i]} long. done echo # Which yields: # - - Test Two - - # Element 0: zero is: 4 long. # Our marker element # Element 1: 'Hello ${Me}' is: 13 long. # Our "$(_pls '...' )" # Element 2: Hello ${You} is: 12 long. # Quotes are missing # Element 3: \'Pass: \' is: 10 long. # ${pw} expanded to nothing # Now make an assignment with that result. declare -a array2=( ${arrayZ[@]} ) # And print what happened. echo "- - Test Three - -" for (( i=0 ; i<${#array2[*]} ; i++ )) do echo Element $i: ${array2[$i]} is: ${#array2[$i]} long. done echo # Which yields: # - - Test Three - - # Element 0: zero is: 4 long. # Our marker element. # Element 1: Hello ${Me} is: 11 long. # Intended result. # Element 2: Hello is: 5 long. # ${You} expanded to nothing. # Element 3: 'Pass: is: 6 long. # Split on the whitespace. # Element 4: ' is: 1 long. # The end quote is here now. # Our Element 1 has had its leading and trailing hard quotes stripped. # Although not shown, leading and trailing whitespace is also stripped. # Now that the string contents are set, Bash will always, internally, #+ hard quote the contents as required during its operations. # Why? # Considering our "$(_pls 'Hello ${Me}')" construction: # " ... " -> Expansion required, strip the quotes. # $( ... ) -> Replace with the result of..., strip this. # _pls ' ... ' -> called with literal arguments, strip the quotes. # The result returned includes hard quotes; BUT the above processing #+ has already been done, so they become part of the value assigned. # # Similarly, during further usage of the string variable, the ${Me} #+ is part of the contents (result) and survives any operations # (Until explicitly told to evaluate the string). # Hint: See what happens when the hard quotes ($'\x27') are replaced #+ with soft quotes ($'\x22') in the above procedures. # Interesting also is to remove the addition of any quoting. # _Protect_Literal_String_Test # # # Remove the above "# " to disable this code. # # # exit 0 |
Added psub.bash.
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/bash # psub.bash # As inspired by Diego Molina (thanks!). declare -a array0 while read do array0[${#array0[@]}]="$REPLY" done < <( sed -e 's/bash/CRASH-BANG!/' $0 | grep bin | awk '{print $1}' ) # Sets the default 'read' variable, $REPLY, by process substitution, #+ then copies it into an array. echo "${array0[@]}" exit $? # ====================================== # bash psub.bash #!/bin/CRASH-BANG! done #!/bin/CRASH-BANG! |
Added pw.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 | #!/bin/bash # # # Random password generator for Bash 2.x + #+ by Antek Sawicki <tenox@tenox.tc>, #+ who generously gave usage permission to the ABS Guide author. # # ==> Comments added by document author ==> MATRIX="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" # ==> Password will consist of alphanumeric characters. LENGTH="8" # ==> May change 'LENGTH' for longer password. while [ "${n:=1}" -le "$LENGTH" ] # ==> Recall that := is "default substitution" operator. # ==> So, if 'n' has not been initialized, set it to 1. do PASS="$PASS${MATRIX:$(($RANDOM%${#MATRIX})):1}" # ==> Very clever, but tricky. # ==> Starting from the innermost nesting... # ==> ${#MATRIX} returns length of array MATRIX. # ==> $RANDOM%${#MATRIX} returns random number between 1 # ==> and [length of MATRIX] - 1. # ==> ${MATRIX:$(($RANDOM%${#MATRIX})):1} # ==> returns expansion of MATRIX at random position, by length 1. # ==> See {var:pos:len} parameter substitution in Chapter 9. # ==> and the associated examples. # ==> PASS=... simply pastes this result onto previous PASS (concatenation). # ==> To visualize this more clearly, uncomment the following line # echo "$PASS" # ==> to see PASS being built up, # ==> one character at a time, each iteration of the loop. let n+=1 # ==> Increment 'n' for next pass. done echo "$PASS" # ==> Or, redirect to a file, as desired. exit 0 |
Added q-function.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 | #!/bin/bash # Douglas Hofstadter's notorious "Q-series": # Q(1) = Q(2) = 1 # Q(n) = Q(n - Q(n-1)) + Q(n - Q(n-2)), for n>2 # This is a "chaotic" integer series with strange #+ and unpredictable behavior. # The first 20 terms of the series are: # 1 1 2 3 3 4 5 5 6 6 6 8 8 8 10 9 10 11 11 12 # See Hofstadter's book, _Goedel, Escher, Bach: An Eternal Golden Braid_, #+ p. 137, ff. LIMIT=100 # Number of terms to calculate. LINEWIDTH=20 # Number of terms printed per line. Q[1]=1 # First two terms of series are 1. Q[2]=1 echo echo "Q-series [$LIMIT terms]:" echo -n "${Q[1]} " # Output first two terms. echo -n "${Q[2]} " for ((n=3; n <= $LIMIT; n++)) # C-like loop expression. do # Q[n] = Q[n - Q[n-1]] + Q[n - Q[n-2]] for n>2 # Need to break the expression into intermediate terms, #+ since Bash doesn't handle complex array arithmetic very well. let "n1 = $n - 1" # n-1 let "n2 = $n - 2" # n-2 t0=`expr $n - ${Q[n1]}` # n - Q[n-1] t1=`expr $n - ${Q[n2]}` # n - Q[n-2] T0=${Q[t0]} # Q[n - Q[n-1]] T1=${Q[t1]} # Q[n - Q[n-2]] Q[n]=`expr $T0 + $T1` # Q[n - Q[n-1]] + Q[n - Q[n-2]] echo -n "${Q[n]} " if [ `expr $n % $LINEWIDTH` -eq 0 ] # Format output. then # ^ modulo echo # Break lines into neat chunks. fi done echo exit 0 # This is an iterative implementation of the Q-series. # The more intuitive recursive implementation is left as an exercise. # Warning: calculating this series recursively takes a VERY long time #+ via a script. C/C++ would be orders of magnitude faster. |
Added qky.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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 | #!/bin/bash # qky.sh ############################################################## # QUACKEY: a somewhat simplified version of Perquackey [TM]. # # # # Author: Mendel Cooper <thegrendel.abs@gmail.com> # # version 0.1.02 03 May, 2008 # # License: GPL3 # ############################################################## WLIST=/usr/share/dict/word.lst # ^^^^^^^^ Word list file found here. # ASCII word list, one word per line, UNIX format. # A suggested list is the script author's "yawl" word list package. # http://bash.deta.in/yawl-0.3.2.tar.gz # or # http://ibiblio.org/pub/Linux/libs/yawl-0.3.2.tar.gz NONCONS=0 # Word not constructable from letter set. CONS=1 # Constructable. SUCCESS=0 NG=1 FAILURE='' NULL=0 # Zero out value of letter (if found). MINWLEN=3 # Minimum word length. MAXCAT=5 # Maximum number of words in a given category. PENALTY=200 # General-purpose penalty for unacceptable words. total= E_DUP=70 # Duplicate word error. TIMEOUT=10 # Time for word input. NVLET=10 # 10 letters for non-vulnerable. VULET=13 # 13 letters for vulnerable (not yet implemented!). declare -a Words declare -a Status declare -a Score=( 0 0 0 0 0 0 0 0 0 0 0 ) letters=( a n s r t m l k p r b c i d s i d z e w u e t f e y e r e f e g t g h h i t r s c i t i d i j a t a o l a m n a n o v n w o s e l n o s p a q e e r a b r s a o d s t g t i t l u e u v n e o x y m r k ) # Letter distribution table shamelessly borrowed from "Wordy" game, #+ ca. 1992, written by a certain fine fellow named Mendel Cooper. declare -a LS numelements=${#letters[@]} randseed="$1" instructions () { clear echo "Welcome to QUACKEY, the anagramming word construction game."; echo echo -n "Do you need instructions? (y/n) "; read ans if [ "$ans" = "y" -o "$ans" = "Y" ]; then clear echo -e '\E[31;47m' # Red foreground. '\E[34;47m' for blue. cat <<INSTRUCTION1 QUACKEY is a variant of Perquackey [TM]. The rules are the same, but the scoring is simplified and plurals of previously played words are allowed. "Vulnerable" play is not yet implemented, but it is otherwise feature-complete. As the game begins, the player gets 10 letters. The object is to construct valid dictionary words of at least 3-letter length from the letterset. Each word-length category -- 3-letter, 4-letter, 5-letter, ... -- fills up with the fifth word entered, and no further words in that category are accepted. The penalty for too-short (two-letter), duplicate, unconstructable, and invalid (not in dictionary) words is -200. The same penalty applies to attempts to enter a word in a filled-up category. INSTRUCTION1 echo -n "Hit ENTER for next page of instructions. "; read az1 cat <<INSTRUCTION2 The scoring mostly corresponds to classic Perquackey: The first 3-letter word scores 60, plus 10 for each additional one. The first 4-letter word scores 120, plus 20 for each additional one. The first 5-letter word scores 200, plus 50 for each additional one. The first 6-letter word scores 300, plus 100 for each additional one. The first 7-letter word scores 500, plus 150 for each additional one. The first 8-letter word scores 750, plus 250 for each additional one. The first 9-letter word scores 1000, plus 500 for each additional one. The first 10-letter word scores 2000, plus 2000 for each additional one. Category completion bonuses are: 3-letter words 100 4-letter words 200 5-letter words 400 6-letter words 800 7-letter words 2000 8-letter words 10000 This is a simplification of the absurdly baroque Perquackey bonus scoring system. INSTRUCTION2 echo -n "Hit ENTER for final page of instructions. "; read az1 cat <<INSTRUCTION3 Hitting just ENTER for a word entry ends the game. Individual word entry is timed to a maximum of 10 seconds. *** Timing out on an entry ends the game. *** Aside from that, the game is untimed. -------------------------------------------------- Game statistics are automatically saved to a file. -------------------------------------------------- For competitive ("duplicate") play, a previous letterset may be duplicated by repeating the script's random seed, command-line parameter \$1. For example, "qky 7633" specifies the letterset c a d i f r h u s k ... INSTRUCTION3 echo; echo -n "Hit ENTER to begin game. "; read az1 echo -e "\033[0m" # Turn off red. else clear fi clear } seed_random () { # Seed random number generator. if [ -n "$randseed" ] # Can specify random seed. then #+ for play in competitive mode. # RANDOM="$randseed" echo "RANDOM seed set to "$randseed"" else randseed="$$" # Or get random seed from process ID. echo "RANDOM seed not specified, set to Process ID of script ($$)." fi RANDOM="$randseed" echo } get_letset () { element=0 echo -n "Letterset:" for lset in $(seq $NVLET) do # Pick random letters to fill out letterset. LS[element]="${letters[$((RANDOM%numelements))]}" ((element++)) done echo echo "${LS[@]}" } add_word () { wrd="$1" local idx=0 Status[0]="" Status[3]="" Status[4]="" while [ "${Words[idx]}" != '' ] do if [ "${Words[idx]}" = "$wrd" ] then Status[3]="Duplicate-word-PENALTY" let "Score[0]= 0 - $PENALTY" let "Score[1]-=$PENALTY" return $E_DUP fi ((idx++)) done Words[idx]="$wrd" get_score } get_score() { local wlen=0 local score=0 local bonus=0 local first_word=0 local add_word=0 local numwords=0 wlen=${#wrd} numwords=${Score[wlen]} Score[2]=0 Status[4]="" # Initialize "bonus" to 0. case "$wlen" in 3) first_word=60 add_word=10;; 4) first_word=120 add_word=20;; 5) first_word=200 add_word=50;; 6) first_word=300 add_word=100;; 7) first_word=500 add_word=150;; 8) first_word=750 add_word=250;; 9) first_word=1000 add_word=500;; 10) first_word=2000 add_word=2000;; # This category modified from original rules! esac ((Score[wlen]++)) if [ ${Score[wlen]} -eq $MAXCAT ] then # Category completion bonus scoring simplified! case $wlen in 3 ) bonus=100;; 4 ) bonus=200;; 5 ) bonus=400;; 6 ) bonus=800;; 7 ) bonus=2000;; 8 ) bonus=10000;; esac # Needn't worry about 9's and 10's. Status[4]="Category-$wlen-completion***BONUS***" Score[2]=$bonus else Status[4]="" # Erase it. fi let "score = $first_word + $add_word * $numwords" if [ "$numwords" -eq 0 ] then Score[0]=$score else Score[0]=$add_word fi # All this to distinguish last-word score #+ from total running score. let "Score[1] += ${Score[0]}" let "Score[1] += ${Score[2]}" } get_word () { local wrd='' read -t $TIMEOUT wrd # Timed read. echo $wrd } is_constructable () { # This is the most complex and difficult-to-write function. local -a local_LS=( "${LS[@]}" ) # Local copy of letter set. local is_found=0 local idx=0 local pos local strlen local local_word=( "$1" ) strlen=${#local_word} while [ "$idx" -lt "$strlen" ] do is_found=$(expr index "${local_LS[*]}" "${local_word:idx:1}") if [ "$is_found" -eq "$NONCONS" ] # Not constructable! then echo "$FAILURE"; return else ((pos = ($is_found - 1) / 2)) # Compensate for spaces betw. letters! local_LS[pos]=$NULL # Zero out used letters. ((idx++)) # Bump index. fi done echo "$SUCCESS" return } is_valid () { # Surprisingly easy to check if word in dictionary ... fgrep -qw "$1" "$WLIST" # ... courtesy of 'grep' ... echo $? } check_word () { if [ -z "$1" ] then return fi Status[1]="" Status[2]="" Status[3]="" Status[4]="" iscons=$(is_constructable "$1") if [ "$iscons" ] then Status[1]="constructable" v=$(is_valid "$1") if [ "$v" -eq "$SUCCESS" ] then Status[2]="valid" strlen=${#1} if [ ${Score[strlen]} -eq "$MAXCAT" ] # Category full! then Status[3]="Category-$strlen-overflow-PENALTY" return $NG fi case "$strlen" in 1 | 2 ) Status[3]="Two-letter-word-PENALTY" return $NG;; * ) Status[3]="" return $SUCCESS;; esac else Status[3]="Not-valid-PENALTY" return $NG fi else Status[3]="Not-constructable-PENALTY" return $NG fi ### FIXME: Streamline the above code block. } display_words () { local idx=0 local wlen0 clear echo "Letterset: ${LS[@]}" echo "Threes: Fours: Fives: Sixes: Sevens: Eights:" echo "------------------------------------------------------------" while [ "${Words[idx]}" != '' ] do wlen0=${#Words[idx]} case "$wlen0" in 3) ;; 4) echo -n " " ;; 5) echo -n " " ;; 6) echo -n " " ;; 7) echo -n " " ;; 8) echo -n " " ;; esac echo "${Words[idx]}" ((idx++)) done ### FIXME: The word display is pretty crude. } play () { word="Start game" # Dummy word, to start ... while [ "$word" ] # If player just hits return (null word), do #+ then game ends. echo "$word: "${Status[@]}"" echo -n "Last score: [${Score[0]}] TOTAL score: [${Score[1]}]: Next word: " total=${Score[1]} word=$(get_word) check_word "$word" if [ "$?" -eq "$SUCCESS" ] then add_word "$word" else let "Score[0]= 0 - $PENALTY" let "Score[1]-=$PENALTY" fi display_words done # Exit game. ### FIXME: The play () function calls too many other functions. ### This verges on "spaghetti code" !!! } end_of_game () { # Save and display stats. #######################Autosave########################## savefile=qky.save.$$ # ^^ PID of script echo `date` >> $savefile echo "Letterset # $randseed (random seed) ">> $savefile echo -n "Letterset: " >> $savefile echo "${LS[@]}" >> $savefile echo "---------" >> $savefile echo "Words constructed:" >> $savefile echo "${Words[@]}" >> $savefile echo >> $savefile echo "Score: $total" >> $savefile echo "Statistics for this round saved in \""$savefile"\"" ######################################################### echo "Score for this round: $total" echo "Words: ${Words[@]}" } # ---------# instructions seed_random get_letset play end_of_game # ---------# exit $? # TODO: # # 1) Clean up code! # 2) Prettify the display_words () function (maybe with widgets?). # 3) Improve the time-out ... maybe change to untimed entry, #+ but with a time limit for the overall round. # 4) An on-screen countdown timer would be nice. # 5) Implement "vulnerable" mode of play for compatibility with classic #+ version of the game. # 6) Improve save-to-file capability (and maybe make it optional). # 7) Fix bugs!!! # For more info, reference: # http://bash.deta.in/qky.README.html |
Added quote-fetch.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 | #!/bin/bash # quote-fetch.sh: Download a stock quote. E_NOPARAMS=86 if [ -z "$1" ] # Must specify a stock (symbol) to fetch. then echo "Usage: `basename $0` stock-symbol" exit $E_NOPARAMS fi stock_symbol=$1 file_suffix=.html # Fetches an HTML file, so name it appropriately. URL='http://finance.yahoo.com/q?s=' # Yahoo finance board, with stock query suffix. # ----------------------------------------------------------- wget -O ${stock_symbol}${file_suffix} "${URL}${stock_symbol}" # ----------------------------------------------------------- # To look up stuff on http://search.yahoo.com: # ----------------------------------------------------------- # URL="http://search.yahoo.com/search?fr=ush-news&p=${query}" # wget -O "$savefilename" "${URL}" # ----------------------------------------------------------- # Saves a list of relevant URLs. exit $? # Exercises: # --------- # # 1) Add a test to ensure the user running the script is on-line. # (Hint: parse the output of 'ps -ax' for "ppp" or "connect." # # 2) Modify this script to fetch the local weather report, #+ taking the user's zip code as an argument. |
Added ra2ogg.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 | #!/bin/bash # ra2ogg.sh: Convert streaming audio files (*.ra) to ogg. # Uses the "mplayer" media player program: # http://www.mplayerhq.hu/homepage # Uses the "ogg" library and "oggenc": # http://www.xiph.org/ # # This script may need appropriate codecs installed, such as sipr.so ... # Possibly also the compat-libstdc++ package. OFILEPREF=${1%%ra} # Strip off the "ra" suffix. OFILESUFF=wav # Suffix for wav file. OUTFILE="$OFILEPREF""$OFILESUFF" E_NOARGS=85 if [ -z "$1" ] # Must specify a filename to convert. then echo "Usage: `basename $0` [filename]" exit $E_NOARGS fi ########################################################################## mplayer "$1" -ao pcm:file=$OUTFILE oggenc "$OUTFILE" # Correct file extension automatically added by oggenc. ########################################################################## rm "$OUTFILE" # Delete intermediate *.wav file. # If you want to keep it, comment out above line. exit $? # Note: # ---- # On a Website, simply clicking on a *.ram streaming audio file #+ usually only downloads the URL of the actual *.ra audio file. # You can then use "wget" or something similar #+ to download the *.ra file itself. # Exercises: # --------- # As is, this script converts only *.ra filenames. # Add flexibility by permitting use of *.ram and other filenames. # # If you're really ambitious, expand the script #+ to do automatic downloads and conversions of streaming audio files. # Given a URL, batch download streaming audio files (using "wget") #+ and convert them on the fly. |
Added ramdisk.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 | #!/bin/bash # ramdisk.sh # A "ramdisk" is a segment of system RAM memory #+ which acts as if it were a filesystem. # Its advantage is very fast access (read/write time). # Disadvantages: volatility, loss of data on reboot or powerdown, #+ less RAM available to system. # # Of what use is a ramdisk? # Keeping a large dataset, such as a table or dictionary on ramdisk, #+ speeds up data lookup, since memory access is much faster than disk access. E_NON_ROOT_USER=70 # Must run as root. ROOTUSER_NAME=root MOUNTPT=/mnt/ramdisk # Create with mkdir /mnt/ramdisk. SIZE=2000 # 2K blocks (change as appropriate) BLOCKSIZE=1024 # 1K (1024 byte) block size DEVICE=/dev/ram0 # First ram device username=`id -nu` if [ "$username" != "$ROOTUSER_NAME" ] then echo "Must be root to run \"`basename $0`\"." exit $E_NON_ROOT_USER fi if [ ! -d "$MOUNTPT" ] # Test whether mount point already there, then #+ so no error if this script is run mkdir $MOUNTPT #+ multiple times. fi ############################################################################## dd if=/dev/zero of=$DEVICE count=$SIZE bs=$BLOCKSIZE # Zero out RAM device. # Why is this necessary? mke2fs $DEVICE # Create an ext2 filesystem on it. mount $DEVICE $MOUNTPT # Mount it. chmod 777 $MOUNTPT # Enables ordinary user to access ramdisk. # However, must be root to unmount it. ############################################################################## # Need to test whether above commands succeed. Could cause problems otherwise. # Exercise: modify this script to make it safer. echo "\"$MOUNTPT\" now available for use." # The ramdisk is now accessible for storing files, even by an ordinary user. # Caution, the ramdisk is volatile, and its contents will disappear #+ on reboot or power loss. # Copy anything you want saved to a regular directory. # After reboot, run this script to again set up ramdisk. # Remounting /mnt/ramdisk without the other steps will not work. # Suitably modified, this script can by invoked in /etc/rc.d/rc.local, #+ to set up ramdisk automatically at bootup. # That may be appropriate on, for example, a database server. exit 0 |
Added rand-string.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 | #!/bin/bash # rand-string.sh # Generating an 8-character "random" string. if [ -n "$1" ] # If command-line argument present, then #+ then set start-string to it. str0="$1" else # Else use PID of script as start-string. str0="$$" fi POS=2 # Starting from position 2 in the string. LEN=8 # Extract eight characters. str1=$( echo "$str0" | md5sum | md5sum ) # Doubly scramble ^^^^^^ ^^^^^^ #+ by piping and repiping to md5sum. randstring="${str1:$POS:$LEN}" # Can parameterize ^^^^ ^^^^ echo "$randstring" exit $? # bozo$ ./rand-string.sh my-password # 1bdd88c4 # No, this is is not recommended #+ as a method of generating hack-proof passwords. |
Added random-between.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 | #!/bin/bash # random-between.sh # Random number between two specified values. # Script by Bill Gradwohl, with minor modifications by the document author. # Corrections in lines 187 and 189 by Anthony Le Clezio. # Used with permission. randomBetween() { # Generates a positive or negative random number #+ between $min and $max #+ and divisible by $divisibleBy. # Gives a "reasonably random" distribution of return values. # # Bill Gradwohl - Oct 1, 2003 syntax() { # Function embedded within function. echo echo "Syntax: randomBetween [min] [max] [multiple]" echo echo -n "Expects up to 3 passed parameters, " echo "but all are completely optional." echo "min is the minimum value" echo "max is the maximum value" echo -n "multiple specifies that the answer must be " echo "a multiple of this value." echo " i.e. answer must be evenly divisible by this number." echo echo "If any value is missing, defaults area supplied as: 0 32767 1" echo -n "Successful completion returns 0, " echo "unsuccessful completion returns" echo "function syntax and 1." echo -n "The answer is returned in the global variable " echo "randomBetweenAnswer" echo -n "Negative values for any passed parameter are " echo "handled correctly." } local min=${1:-0} local max=${2:-32767} local divisibleBy=${3:-1} # Default values assigned, in case parameters not passed to function. local x local spread # Let's make sure the divisibleBy value is positive. [ ${divisibleBy} -lt 0 ] && divisibleBy=$((0-divisibleBy)) # Sanity check. if [ $# -gt 3 -o ${divisibleBy} -eq 0 -o ${min} -eq ${max} ]; then syntax return 1 fi # See if the min and max are reversed. if [ ${min} -gt ${max} ]; then # Swap them. x=${min} min=${max} max=${x} fi # If min is itself not evenly divisible by $divisibleBy, #+ then fix the min to be within range. if [ $((min/divisibleBy*divisibleBy)) -ne ${min} ]; then if [ ${min} -lt 0 ]; then min=$((min/divisibleBy*divisibleBy)) else min=$((((min/divisibleBy)+1)*divisibleBy)) fi fi # If max is itself not evenly divisible by $divisibleBy, #+ then fix the max to be within range. if [ $((max/divisibleBy*divisibleBy)) -ne ${max} ]; then if [ ${max} -lt 0 ]; then max=$((((max/divisibleBy)-1)*divisibleBy)) else max=$((max/divisibleBy*divisibleBy)) fi fi # --------------------------------------------------------------------- # Now, to do the real work. # Note that to get a proper distribution for the end points, #+ the range of random values has to be allowed to go between #+ 0 and abs(max-min)+divisibleBy, not just abs(max-min)+1. # The slight increase will produce the proper distribution for the #+ end points. # Changing the formula to use abs(max-min)+1 will still produce #+ correct answers, but the randomness of those answers is faulty in #+ that the number of times the end points ($min and $max) are returned #+ is considerably lower than when the correct formula is used. # --------------------------------------------------------------------- spread=$((max-min)) # Omair Eshkenazi points out that this test is unnecessary, #+ since max and min have already been switched around. [ ${spread} -lt 0 ] && spread=$((0-spread)) let spread+=divisibleBy randomBetweenAnswer=$(((RANDOM%spread)/divisibleBy*divisibleBy+min)) return 0 # However, Paulo Marcel Coelho Aragao points out that #+ when $max and $min are not divisible by $divisibleBy, #+ the formula fails. # # He suggests instead the following formula: # rnumber = $(((RANDOM%(max-min+1)+min)/divisibleBy*divisibleBy)) } # Let's test the function. min=-14 max=20 divisibleBy=3 # Generate an array of expected answers and check to make sure we get #+ at least one of each answer if we loop long enough. declare -a answer minimum=${min} maximum=${max} if [ $((minimum/divisibleBy*divisibleBy)) -ne ${minimum} ]; then if [ ${minimum} -lt 0 ]; then minimum=$((minimum/divisibleBy*divisibleBy)) else minimum=$((((minimum/divisibleBy)+1)*divisibleBy)) fi fi # If max is itself not evenly divisible by $divisibleBy, #+ then fix the max to be within range. if [ $((maximum/divisibleBy*divisibleBy)) -ne ${maximum} ]; then if [ ${maximum} -lt 0 ]; then maximum=$((((maximum/divisibleBy)-1)*divisibleBy)) else maximum=$((maximum/divisibleBy*divisibleBy)) fi fi # We need to generate only positive array subscripts, #+ so we need a displacement that that will guarantee #+ positive results. disp=$((0-minimum)) for ((i=${minimum}; i<=${maximum}; i+=divisibleBy)); do answer[i+disp]=0 done # Now loop a large number of times to see what we get. loopIt=1000 # The script author suggests 100000, #+ but that takes a good long while. for ((i=0; i<${loopIt}; ++i)); do # Note that we are specifying min and max in reversed order here to #+ make the function correct for this case. randomBetween ${max} ${min} ${divisibleBy} # Report an error if an answer is unexpected. [ ${randomBetweenAnswer} -lt ${min} -o ${randomBetweenAnswer} -gt ${max} ] \ && echo MIN or MAX error - ${randomBetweenAnswer}! [ $((randomBetweenAnswer%${divisibleBy})) -ne 0 ] \ && echo DIVISIBLE BY error - ${randomBetweenAnswer}! # Store the answer away statistically. answer[randomBetweenAnswer+disp]=$((answer[randomBetweenAnswer+disp]+1)) done # Let's check the results for ((i=${minimum}; i<=${maximum}; i+=divisibleBy)); do [ ${answer[i+disp]} -eq 0 ] \ && echo "We never got an answer of $i." \ || echo "${i} occurred ${answer[i+disp]} times." done exit 0 |
Added random-test.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 | #!/bin/bash # How random is RANDOM? RANDOM=$$ # Reseed the random number generator using script process ID. PIPS=6 # A die has 6 pips. MAXTHROWS=600 # Increase this if you have nothing better to do with your time. throw=0 # Number of times the dice have been cast. ones=0 # Must initialize counts to zero, twos=0 #+ since an uninitialized variable is null, NOT zero. threes=0 fours=0 fives=0 sixes=0 print_result () { echo echo "ones = $ones" echo "twos = $twos" echo "threes = $threes" echo "fours = $fours" echo "fives = $fives" echo "sixes = $sixes" echo } update_count() { case "$1" in 0) ((ones++));; # Since a die has no "zero", this corresponds to 1. 1) ((twos++));; # And this to 2. 2) ((threes++));; # And so forth. 3) ((fours++));; 4) ((fives++));; 5) ((sixes++));; esac } echo while [ "$throw" -lt "$MAXTHROWS" ] do let "die1 = RANDOM % $PIPS" update_count $die1 let "throw += 1" done print_result exit $? # The scores should distribute evenly, assuming RANDOM is random. # With $MAXTHROWS at 600, all should cluster around 100, #+ plus-or-minus 20 or so. # # Keep in mind that RANDOM is a ***pseudorandom*** generator, #+ and not a spectacularly good one at that. # Randomness is a deep and complex subject. # Sufficiently long "random" sequences may exhibit #+ chaotic and other "non-random" behavior. # Exercise (easy): # --------------- # Rewrite this script to flip a coin 1000 times. # Choices are "HEADS" and "TAILS." |
Added random2.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 | #!/bin/bash # random2.sh: Returns a pseudorandom number in the range 0 - 1, #+ to 6 decimal places. For example: 0.822725 # Uses the awk rand() function. AWKSCRIPT=' { srand(); print rand() } ' # Command(s)/parameters passed to awk # Note that srand() reseeds awk's random number generator. echo -n "Random number between 0 and 1 = " echo | awk "$AWKSCRIPT" # What happens if you leave out the 'echo'? exit 0 # Exercises: # --------- # 1) Using a loop construct, print out 10 different random numbers. # (Hint: you must reseed the srand() function with a different seed #+ in each pass through the loop. What happens if you omit this?) # 2) Using an integer multiplier as a scaling factor, generate random numbers #+ in the range of 10 to 100. # 3) Same as exercise #2, above, but generate random integers this time. |
Added read-N.sh.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash # Requires Bash version -ge 4.1 ... num_chars=61 read -N $num_chars var < $0 # Read first 61 characters of script! echo "$var" exit ####### Output of Script ####### #!/bin/bash # Requires Bash version -ge 4.1 ... num_chars=61 |
Added read-novar.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 | #!/bin/bash # read-novar.sh echo # -------------------------- # echo -n "Enter a value: " read var echo "\"var\" = "$var"" # Everything as expected here. # -------------------------- # echo # ------------------------------------------------------------------- # echo -n "Enter another value: " read # No variable supplied for 'read', therefore... #+ Input to 'read' assigned to default variable, $REPLY. var="$REPLY" echo "\"var\" = "$var"" # This is equivalent to the first code block. # ------------------------------------------------------------------- # echo echo "=========================" echo # This example is similar to the "reply.sh" script. # However, this one shows that $REPLY is available #+ even after a 'read' to a variable in the conventional way. # ================================================================= # # In some instances, you might wish to discard the first value read. # In such cases, simply ignore the $REPLY variable. { # Code block. read # Line 1, to be discarded. read line2 # Line 2, saved in variable. } <$0 echo "Line 2 of this script is:" echo "$line2" # # read-novar.sh echo # #!/bin/bash line discarded. # See also the soundcard-on.sh script. exit 0 |
Added read-r.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 | #!/bin/bash echo echo "Enter a string terminated by a \\, then press <ENTER>." echo "Then, enter a second string (no \\ this time), and again press <ENTER>." read var1 # The "\" suppresses the newline, when reading $var1. # first line \ # second line echo "var1 = $var1" # var1 = first line second line # For each line terminated by a "\" #+ you get a prompt on the next line to continue feeding characters into var1. echo; echo echo "Enter another string terminated by a \\ , then press <ENTER>." read -r var2 # The -r option causes the "\" to be read literally. # first line \ echo "var2 = $var2" # var2 = first line \ # Data entry terminates with the first <ENTER>. echo exit 0 |
Added read-redir.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 | #!/bin/bash read var1 <data-file echo "var1 = $var1" # var1 set to the entire first line of the input file "data-file" read var2 var3 <data-file echo "var2 = $var2 var3 = $var3" # Note non-intuitive behavior of "read" here. # 1) Rewinds back to the beginning of input file. # 2) Each variable is now set to a corresponding string, # separated by whitespace, rather than to an entire line of text. # 3) The final variable gets the remainder of the line. # 4) If there are more variables to be set than whitespace-terminated strings # on the first line of the file, then the excess variables remain empty. echo "------------------------------------------------" # How to resolve the above problem with a loop: while read line do echo "$line" done <data-file # Thanks, Heiner Steven for pointing this out. echo "------------------------------------------------" # Use $IFS (Internal Field Separator variable) to split a line of input to # "read", if you do not want the default to be whitespace. echo "List of all users:" OIFS=$IFS; IFS=: # /etc/passwd uses ":" for field separator. while read name passwd uid gid fullname ignore do echo "$name ($fullname)" done </etc/passwd # I/O redirection. IFS=$OIFS # Restore original $IFS. # This code snippet also by Heiner Steven. # Setting the $IFS variable within the loop itself #+ eliminates the need for storing the original $IFS #+ in a temporary variable. # Thanks, Dim Segebart, for pointing this out. echo "------------------------------------------------" echo "List of all users:" while IFS=: read name passwd uid gid fullname ignore do echo "$name ($fullname)" done </etc/passwd # I/O redirection. echo echo "\$IFS still $IFS" exit 0 |
Added readpipe.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 | #!/bin/sh # readpipe.sh # This example contributed by Bjon Eriksson. ### shopt -s lastpipe last="(null)" cat $0 | while read line do echo "{$line}" last=$line done echo echo "++++++++++++++++++++++" printf "\nAll done, last: $last\n" # The output of this line #+ changes if you uncomment line 5. # (Bash, version -ge 4.2 required.) exit 0 # End of code. # (Partial) output of script follows. # The 'echo' supplies extra brackets. ############################################# ./readpipe.sh {#!/bin/sh} {last="(null)"} {cat $0 |} {while read line} {do} {echo "{$line}"} {last=$line} {done} {printf "nAll done, last: $lastn"} All done, last: (null) The variable (last) is set within the loop/subshell but its value does not persist outside the loop. |
Added realname.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 | #!/bin/bash # realname.sh # # From username, gets "real name" from /etc/passwd. ARGCOUNT=1 # Expect one arg. E_WRONGARGS=85 file=/etc/passwd pattern=$1 if [ $# -ne "$ARGCOUNT" ] then echo "Usage: `basename $0` USERNAME" exit $E_WRONGARGS fi file_excerpt () # Scan file for pattern, { #+ then print relevant portion of line. while read line # "while" does not necessarily need [ condition ] do echo "$line" | grep $1 | awk -F":" '{ print $5 }' # Have awk use ":" delimiter. done } <$file # Redirect into function's stdin. file_excerpt $pattern # Yes, this entire script could be reduced to # grep PATTERN /etc/passwd | awk -F":" '{ print $5 }' # or # awk -F: '/PATTERN/ {print $5}' # or # awk -F: '($1 == "username") { print $5 }' # real name from username # However, it might not be as instructive. exit 0 |
Added reassign-stdout.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 | #!/bin/bash # reassign-stdout.sh LOGFILE=logfile.txt exec 6>&1 # Link file descriptor #6 with stdout. # Saves stdout. exec > $LOGFILE # stdout replaced with file "logfile.txt". # ----------------------------------------------------------- # # All output from commands in this block sent to file $LOGFILE. echo -n "Logfile: " date echo "-------------------------------------" echo echo "Output of \"ls -al\" command" echo ls -al echo; echo echo "Output of \"df\" command" echo df # ----------------------------------------------------------- # exec 1>&6 6>&- # Restore stdout and close file descriptor #6. echo echo "== stdout now restored to default == " echo ls -al echo exit 0 |
Added recurse.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 | #!/bin/bash # recurse.sh # Can a script recursively call itself? # Yes, but is this of any practical use? # (See the following.) RANGE=10 MAXVAL=9 i=$RANDOM let "i %= $RANGE" # Generate a random number between 0 and $RANGE - 1. if [ "$i" -lt "$MAXVAL" ] then echo "i = $i" ./$0 # Script recursively spawns a new instance of itself. fi # Each child script does the same, until #+ a generated $i equals $MAXVAL. # Using a "while" loop instead of an "if/then" test causes problems. # Explain why. exit 0 # Note: # ---- # This script must have execute permission for it to work properly. # This is the case even if it is invoked by an "sh" command. # Explain why. |
Added recursion-def.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 | #!/bin/bash # recursion-def.sh # A script that defines "recursion" in a rather graphic way. RECURSIONS=10 r_count=0 sp=" " define_recursion () { ((r_count++)) sp="$sp"" " echo -n "$sp" echo "\"The act of recurring ... \"" # Per 1913 Webster's dictionary. while [ $r_count -le $RECURSIONS ] do define_recursion done } echo echo "Recursion: " define_recursion echo exit $? |
Added recursion-demo.sh.
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/bash # recursion-demo.sh # Demonstration of recursion. RECURSIONS=9 # How many times to recurse. r_count=0 # Must be global. Why? recurse () { var="$1" while [ "$var" -ge 0 ] do echo "Recursion count = "$r_count" +-+ \$var = "$var"" (( var-- )); (( r_count++ )) recurse "$var" # Function calls itself (recurses) done #+ until what condition is met? } recurse $RECURSIONS exit $? |
Added redir1.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 | #!/bin/bash # Redirecting stdin using 'exec'. exec 6<&0 # Link file descriptor #6 with stdin. # Saves stdin. exec < data-file # stdin replaced by file "data-file" read a1 # Reads first line of file "data-file". read a2 # Reads second line of file "data-file." echo echo "Following lines read from file." echo "-------------------------------" echo $a1 echo $a2 echo; echo; echo exec 0<&6 6<&- # Now restore stdin from fd #6, where it had been saved, #+ and close fd #6 ( 6<&- ) to free it for other processes to use. # # <&6 6<&- also works. echo -n "Enter data " read b1 # Now "read" functions as expected, reading from normal stdin. echo "Input read from stdin." echo "----------------------" echo "b1 = $b1" echo exit 0 |
Added redir2.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 | #!/bin/bash # redir2.sh if [ -z "$1" ] then Filename=names.data # Default, if no filename specified. else Filename=$1 fi #+ Filename=${1:-names.data} # can replace the above test (parameter substitution). count=0 echo while [ "$name" != Smith ] # Why is variable $name in quotes? do read name # Reads from $Filename, rather than stdin. echo $name let "count += 1" done <"$Filename" # Redirects stdin to file $Filename. # ^^^^^^^^^^^^ echo; echo "$count names read"; echo exit 0 # Note that in some older shell scripting languages, #+ the redirected loop would run as a subshell. # Therefore, $count would return 0, the initialized value outside the loop. # Bash and ksh avoid starting a subshell *whenever possible*, #+ so that this script, for example, runs correctly. # (Thanks to Heiner Steven for pointing this out.) # However . . . # Bash *can* sometimes start a subshell in a PIPED "while-read" loop, #+ as distinct from a REDIRECTED "while" loop. abc=hi echo -e "1\n2\n3" | while read l do abc="$l" echo $abc done echo $abc # Thanks, Bruno de Oliveira Schneider, for demonstrating this #+ with the above snippet of code. # And, thanks, Brian Onn, for correcting an annotation error. |
Added redir2a.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 | #!/bin/bash # This is an alternate form of the preceding script. # Suggested by Heiner Steven #+ as a workaround in those situations when a redirect loop #+ runs as a subshell, and therefore variables inside the loop # +do not keep their values upon loop termination. if [ -z "$1" ] then Filename=names.data # Default, if no filename specified. else Filename=$1 fi exec 3<&0 # Save stdin to file descriptor 3. exec 0<"$Filename" # Redirect standard input. count=0 echo while [ "$name" != Smith ] do read name # Reads from redirected stdin ($Filename). echo $name let "count += 1" done # Loop reads from file $Filename #+ because of line 20. # The original version of this script terminated the "while" loop with #+ done <"$Filename" # Exercise: # Why is this unnecessary? exec 0<&3 # Restore old stdin. exec 3<&- # Close temporary fd 3. echo; echo "$count names read"; echo exit 0 |
Added redir3.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash # Same as previous example, but with "until" loop. if [ -z "$1" ] then Filename=names.data # Default, if no filename specified. else Filename=$1 fi # while [ "$name" != Smith ] until [ "$name" = Smith ] # Change != to =. do read name # Reads from $Filename, rather than stdin. echo $name done <"$Filename" # Redirects stdin to file $Filename. # ^^^^^^^^^^^^ # Same results as with "while" loop in previous example. exit 0 |
Added redir4.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 | #!/bin/bash if [ -z "$1" ] then Filename=names.data # Default, if no filename specified. else Filename=$1 fi line_count=`wc $Filename | awk '{ print $1 }'` # Number of lines in target file. # # Very contrived and kludgy, nevertheless shows that #+ it's possible to redirect stdin within a "for" loop... #+ if you're clever enough. # # More concise is line_count=$(wc -l < "$Filename") for name in `seq $line_count` # Recall that "seq" prints sequence of numbers. # while [ "$name" != Smith ] -- more complicated than a "while" loop -- do read name # Reads from $Filename, rather than stdin. echo $name if [ "$name" = Smith ] # Need all this extra baggage here. then break fi done <"$Filename" # Redirects stdin to file $Filename. # ^^^^^^^^^^^^ exit 0 |
Added redir4a.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 | #!/bin/bash if [ -z "$1" ] then Filename=names.data # Default, if no filename specified. else Filename=$1 fi Savefile=$Filename.new # Filename to save results in. FinalName=Jonah # Name to terminate "read" on. line_count=`wc $Filename | awk '{ print $1 }'` # Number of lines in target file. for name in `seq $line_count` do read name echo "$name" if [ "$name" = "$FinalName" ] then break fi done < "$Filename" > "$Savefile" # Redirects stdin to file $Filename, # ^^^^^^^^^^^^^^^^^^^^^^^^^^^ and saves it to backup file. exit 0 |
Added redir5.sh.
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/bash if [ -z "$1" ] then Filename=names.data # Default, if no filename specified. else Filename=$1 fi TRUE=1 if [ "$TRUE" ] # if true and if : also work. then read name echo $name fi <"$Filename" # ^^^^^^^^^^^^ # Reads only first line of file. # An "if/then" test has no way of iterating unless embedded in a loop. exit 0 |
Added ref-params.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 | #!/bin/bash # ref-params.sh: Dereferencing a parameter passed to a function. # (Complex Example) ITERATIONS=3 # How many times to get input. icount=1 my_read () { # Called with my_read varname, #+ outputs the previous value between brackets as the default value, #+ then asks for a new value. local local_var echo -n "Enter a value " eval 'echo -n "[$'$1'] "' # Previous value. # eval echo -n "[\$$1] " # Easier to understand, #+ but loses trailing space in user prompt. read local_var [ -n "$local_var" ] && eval $1=\$local_var # "And-list": if "local_var" then set "$1" to its value. } echo while [ "$icount" -le "$ITERATIONS" ] do my_read var echo "Entry #$icount = $var" let "icount += 1" echo done # Thanks to Stephane Chazelas for providing this instructive example. exit 0 |
Added remote.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #!/bin/bash # remote.bash: Using ssh. # This example by Michael Zick. # Used with permission. # Presumptions: # ------------ # fd-2 isn't being captured ( '2>/dev/null' ). # ssh/sshd presumes stderr ('2') will display to user. # # sshd is running on your machine. # For any 'standard' distribution, it probably is, #+ and without any funky ssh-keygen having been done. # Try ssh to your machine from the command-line: # # $ ssh $HOSTNAME # Without extra set-up you'll be asked for your password. # enter password # when done, $ exit # # Did that work? If so, you're ready for more fun. # Try ssh to your machine as 'root': # # $ ssh -l root $HOSTNAME # When asked for password, enter root's, not yours. # Last login: Tue Aug 10 20:25:49 2004 from localhost.localdomain # Enter 'exit' when done. # The above gives you an interactive shell. # It is possible for sshd to be set up in a 'single command' mode, #+ but that is beyond the scope of this example. # The only thing to note is that the following will work in #+ 'single command' mode. # A basic, write stdout (local) command. ls -l # Now the same basic command on a remote machine. # Pass a different 'USERNAME' 'HOSTNAME' if desired: USER=${USERNAME:-$(whoami)} HOST=${HOSTNAME:-$(hostname)} # Now excute the above command-line on the remote host, #+ with all transmissions encrypted. ssh -l ${USER} ${HOST} " ls -l " # The expected result is a listing of your username's home #+ directory on the remote machine. # To see any difference, run this script from somewhere #+ other than your home directory. # In other words, the Bash command is passed as a quoted line #+ to the remote shell, which executes it on the remote machine. # In this case, sshd does ' bash -c "ls -l" ' on your behalf. # For information on topics such as not having to enter a #+ password/passphrase for every command-line, see #+ man ssh #+ man ssh-keygen #+ man sshd_config. exit 0 |
Added reply.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 | #!/bin/bash # reply.sh # REPLY is the default value for a 'read' command. echo echo -n "What is your favorite vegetable? " read echo "Your favorite vegetable is $REPLY." # REPLY holds the value of last "read" if and only if #+ no variable supplied. echo echo -n "What is your favorite fruit? " read fruit echo "Your favorite fruit is $fruit." echo "but..." echo "Value of \$REPLY is still $REPLY." # $REPLY is still set to its previous value because #+ the variable $fruit absorbed the new "read" value. echo exit 0 |
Added resistor-inventory.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 | #!/bin/bash # resistor-inventory.sh # Simple database / table-lookup application. # ============================================================== # # Data B1723_value=470 # Ohms B1723_powerdissip=.25 # Watts B1723_colorcode="yellow-violet-brown" # Color bands B1723_loc=173 # Where they are B1723_inventory=78 # How many B1724_value=1000 B1724_powerdissip=.25 B1724_colorcode="brown-black-red" B1724_loc=24N B1724_inventory=243 B1725_value=10000 B1725_powerdissip=.125 B1725_colorcode="brown-black-orange" B1725_loc=24N B1725_inventory=89 # ============================================================== # echo PS3='Enter catalog number: ' echo select catalog_number in "B1723" "B1724" "B1725" do Inv=${catalog_number}_inventory Val=${catalog_number}_value Pdissip=${catalog_number}_powerdissip Loc=${catalog_number}_loc Ccode=${catalog_number}_colorcode echo echo "Catalog number $catalog_number:" # Now, retrieve value, using indirect referencing. echo "There are ${!Inv} of [${!Val} ohm / ${!Pdissip} watt]\ resistors in stock." # ^ ^ # As of Bash 4.2, you can replace "ohm" with \u2126 (using echo -e). echo "These are located in bin # ${!Loc}." echo "Their color code is \"${!Ccode}\"." break done echo; echo # Exercises: # --------- # 1) Rewrite this script to read its data from an external file. # 2) Rewrite this script to use arrays, #+ rather than indirect variable referencing. # Which method is more straightforward and intuitive? # Which method is easier to code? # Notes: # ----- # Shell scripts are inappropriate for anything except the most simple #+ database applications, and even then it involves workarounds and kludges. # Much better is to use a language with native support for data structures, #+ such as C++ or Java (or even Perl). exit 0 |
Added restricted.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 | #!/bin/bash # Starting the script with "#!/bin/bash -r" #+ runs entire script in restricted mode. echo echo "Changing directory." cd /usr/local echo "Now in `pwd`" echo "Coming back home." cd echo "Now in `pwd`" echo # Everything up to here in normal, unrestricted mode. set -r # set --restricted has same effect. echo "==> Now in restricted mode. <==" echo echo echo "Attempting directory change in restricted mode." cd .. echo "Still in `pwd`" echo echo echo "\$SHELL = $SHELL" echo "Attempting to change shell in restricted mode." SHELL="/bin/ash" echo echo "\$SHELL= $SHELL" echo echo echo "Attempting to redirect output in restricted mode." ls -l /usr/bin > bin.files ls -l bin.files # Try to list attempted file creation effort. echo exit 0 |
Added return-test.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 | #!/bin/bash # return-test.sh # The largest positive value a function can return is 255. return_test () # Returns whatever passed to it. { return $1 } return_test 27 # o.k. echo $? # Returns 27. return_test 255 # Still o.k. echo $? # Returns 255. return_test 257 # Error! echo $? # Returns 1 (return code for miscellaneous error). # ========================================================= return_test -151896 # Do large negative numbers work? echo $? # Will this return -151896? # No! It returns 168. # Version of Bash before 2.05b permitted #+ large negative integer return values. # It happened to be a useful feature. # Newer versions of Bash unfortunately plug this loophole. # This may break older scripts. # Caution! # ========================================================= exit 0 |
Added revposparams.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 | #!/bin/bash # revposparams.sh: Reverse positional parameters. # Script by Dan Jacobson, with stylistic revisions by document author. set a\ b c d\ e; # ^ ^ Spaces escaped # ^ ^ Spaces not escaped OIFS=$IFS; IFS=:; # ^ Saving old IFS and setting new one. echo until [ $# -eq 0 ] do # Step through positional parameters. echo "### k0 = "$k"" # Before k=$1:$k; # Append each pos param to loop variable. # ^ echo "### k = "$k"" # After echo shift; done set $k # Set new positional parameters. echo - echo $# # Count of positional parameters. echo - echo for i # Omitting the "in list" sets the variable -- i -- #+ to the positional parameters. do echo $i # Display new positional parameters. done IFS=$OIFS # Restore IFS. # Question: # Is it necessary to set an new IFS, internal field separator, #+ in order for this script to work properly? # What happens if you don't? Try it. # And, why use the new IFS -- a colon -- in line 17, #+ to append to the loop variable? # What is the purpose of this? exit 0 $ ./revposparams.sh ### k0 = ### k = a b ### k0 = a b ### k = c a b ### k0 = c a b ### k = d e c a b - 3 - d e c a b |
Added rfe.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 | #!/bin/bash # rfe.sh: Renaming file extensions. # # rfe old_extension new_extension # # Example: # To rename all *.gif files in working directory to *.jpg, # rfe gif jpg E_BADARGS=65 case $# in 0|1) # The vertical bar means "or" in this context. echo "Usage: `basename $0` old_file_suffix new_file_suffix" exit $E_BADARGS # If 0 or 1 arg, then bail out. ;; esac for filename in *.$1 # Traverse list of files ending with 1st argument. do mv $filename ${filename%$1}$2 # Strip off part of filename matching 1st argument, #+ then append 2nd argument. done exit 0 |
Added rn.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 | #! /bin/bash # rn.sh # Very simpleminded filename "rename" utility (based on "lowercase.sh"). # # The "ren" utility, by Vladimir Lanin (lanin@csd2.nyu.edu), #+ does a much better job of this. ARGS=2 E_BADARGS=85 ONE=1 # For getting singular/plural right (see below). if [ $# -ne "$ARGS" ] then echo "Usage: `basename $0` old-pattern new-pattern" # As in "rn gif jpg", which renames all gif files in working directory to jpg. exit $E_BADARGS fi number=0 # Keeps track of how many files actually renamed. for filename in *$1* #Traverse all matching files in directory. do if [ -f "$filename" ] # If finds match... then fname=`basename $filename` # Strip off path. n=`echo $fname | sed -e "s/$1/$2/"` # Substitute new for old in filename. mv $fname $n # Rename. let "number += 1" fi done if [ "$number" -eq "$ONE" ] # For correct grammar. then echo "$number file renamed." else echo "$number files renamed." fi exit $? # Exercises: # --------- # What types of files will this not work on? # How can this be fixed? |
Added rnd.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 | #!/bin/bash # rnd.sh: Outputs a 10-digit random number # Script by Stephane Chazelas. head -c4 /dev/urandom | od -N4 -tu4 | sed -ne '1s/.* //p' # =================================================================== # # Analysis # -------- # head: # -c4 option takes first 4 bytes. # od: # -N4 option limits output to 4 bytes. # -tu4 option selects unsigned decimal format for output. # sed: # -n option, in combination with "p" flag to the "s" command, # outputs only matched lines. # The author of this script explains the action of 'sed', as follows. # head -c4 /dev/urandom | od -N4 -tu4 | sed -ne '1s/.* //p' # ----------------------------------> | # Assume output up to "sed" --------> | # is 0000000 1198195154\n # sed begins reading characters: 0000000 1198195154\n. # Here it finds a newline character, #+ so it is ready to process the first line (0000000 1198195154). # It looks at its <range><action>s. The first and only one is # range action # 1 s/.* //p # The line number is in the range, so it executes the action: #+ tries to substitute the longest string ending with a space in the line # ("0000000 ") with nothing (//), and if it succeeds, prints the result # ("p" is a flag to the "s" command here, this is different #+ from the "p" command). # sed is now ready to continue reading its input. (Note that before #+ continuing, if -n option had not been passed, sed would have printed #+ the line once again). # Now, sed reads the remainder of the characters, and finds the #+ end of the file. # It is now ready to process its 2nd line (which is also numbered '$' as #+ it's the last one). # It sees it is not matched by any <range>, so its job is done. # In few word this sed commmand means: # "On the first line only, remove any character up to the right-most space, #+ then print it." # A better way to do this would have been: # sed -e 's/.* //;q' # Here, two <range><action>s (could have been written # sed -e 's/.* //' -e q): # range action # nothing (matches line) s/.* // # nothing (matches line) q (quit) # Here, sed only reads its first line of input. # It performs both actions, and prints the line (substituted) before #+ quitting (because of the "q" action) since the "-n" option is not passed. # =================================================================== # # An even simpler altenative to the above one-line script would be: # head -c4 /dev/urandom| od -An -tu4 exit |
Added rot13.sh.
> > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/bash # rot13.sh: Classic rot13 algorithm, # encryption that might fool a 3-year old # for about 10 minutes. # Usage: ./rot13.sh filename # or ./rot13.sh <filename # or ./rot13.sh and supply keyboard input (stdin) cat "$@" | tr 'a-zA-Z' 'n-za-mN-ZA-M' # "a" goes to "n", "b" to "o" ... # The cat "$@" construct #+ permits input either from stdin or from files. exit 0 |
Added rot13a.sh.
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/bash # rot13a.sh: Same as "rot13.sh" script, but writes output to "secure" file. # Usage: ./rot13a.sh filename # or ./rot13a.sh <filename # or ./rot13a.sh and supply keyboard input (stdin) umask 177 # File creation mask. # Files created by this script #+ will have 600 permissions. OUTFILE=decrypted.txt # Results output to file "decrypted.txt" #+ which can only be read/written # by invoker of script (or root). cat "$@" | tr 'a-zA-Z' 'n-za-mN-ZA-M' > $OUTFILE # ^^ Input from stdin or a file. ^^^^^^^^^^ Output redirected to file. exit 0 |
Added rot14.sh.
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/bash # A version of "rot13" using 'eval'. # Compare to "rot13.sh" example. setvar_rot_13() # "rot13" scrambling { local varname=$1 varvalue=$2 eval $varname='$(echo "$varvalue" | tr a-z n-za-m)' } setvar_rot_13 var "foobar" # Run "foobar" through rot13. echo $var # sbbone setvar_rot_13 var "$var" # Run "sbbone" through rot13. # Back to original variable. echo $var # foobar # This example by Stephane Chazelas. # Modified by document author. exit 0 |
Added rp.sdcard.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 | #!/bin/bash # rp.sdcard.sh # Preparing an SD card with a bootable image for the Raspberry Pi. # $1 = imagefile name # $2 = sdcard (device file) # Otherwise defaults to the defaults, see below. DEFAULTbs=4M # Block size, 4 mb default. DEFAULTif="2013-07-26-wheezy-raspbian.img" # Commonly used distro. DEFAULTsdcard="/dev/mmcblk0" # May be different. Check! ROOTUSER_NAME=root # Must run as root! E_NOTROOT=81 E_NOIMAGE=82 username=$(id -nu) # Who is running this script? if [ "$username" != "$ROOTUSER_NAME" ] then echo "This script must run as root or with root privileges." exit $E_NOTROOT fi if [ -n "$1" ] then imagefile="$1" else imagefile="$DEFAULTif" fi if [ -n "$2" ] then sdcard="$2" else sdcard="$DEFAULTsdcard" fi if [ ! -e $imagefile ] then echo "Image file \"$imagefile\" not found!" exit $E_NOIMAGE fi echo "Last chance to change your mind!"; echo read -s -n1 -p "Hit a key to write $imagefile to $sdcard [Ctl-c to exit]." echo; echo echo "Writing $imagefile to $sdcard ..." dd bs=$DEFAULTbs if=$imagefile of=$sdcard exit $? # Exercises: # --------- # 1) Provide additional error checking. # 2) Have script autodetect device file for SD card (difficult!). # 3) Have script sutodetect image file (*img) in $PWD. |
Added rpm-check.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 | #!/bin/bash # rpm-check.sh # Queries an rpm file for description, listing, #+ and whether it can be installed. # Saves output to a file. # # This script illustrates using a code block. SUCCESS=0 E_NOARGS=65 if [ -z "$1" ] then echo "Usage: `basename $0` rpm-file" exit $E_NOARGS fi { # Begin code block. echo echo "Archive Description:" rpm -qpi $1 # Query description. echo echo "Archive Listing:" rpm -qpl $1 # Query listing. echo rpm -i --test $1 # Query whether rpm file can be installed. if [ "$?" -eq $SUCCESS ] then echo "$1 can be installed." else echo "$1 cannot be installed." fi echo # End code block. } > "$1.test" # Redirects output of everything in block to file. echo "Results of rpm test in file $1.test" # See rpm man page for explanation of options. exit 0 |
Added sam.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 | #!/bin/bash # sam.sh, v. .01a # Still Another Morse (code training script) # With profuse apologies to Sam (F.B.) Morse. # Author: Mendel Cooper # License: GPL3 # Reldate: 05/25/11 # Morse code training script. # Converts arguments to audible dots and dashes. # Note: lowercase input only at this time. # Get the wav files from the source tarball: # http://bash.deta.in/abs-guide-latest.tar.bz2 DOT='soundfiles/dot.wav' DASH='soundfiles/dash.wav' # Maybe move soundfiles to /usr/local/sounds? LETTERSPACE=300000 # Microseconds. WORDSPACE=980000 # Nice and slow, for beginners. Maybe 5 wpm? EXIT_MSG="May the Morse be with you!" E_NOARGS=75 # No command-line args? declare -A morse # Associative array! # ======================================= # morse[a]="dot; dash" morse[b]="dash; dot; dot; dot" morse[c]="dash; dot; dash; dot" morse[d]="dash; dot; dot" morse[e]="dot" morse[f]="dot; dot; dash; dot" morse[g]="dash; dash; dot" morse[h]="dot; dot; dot; dot" morse[i]="dot; dot;" morse[j]="dot; dash; dash; dash" morse[k]="dash; dot; dash" morse[l]="dot; dash; dot; dot" morse[m]="dash; dash" morse[n]="dash; dot" morse[o]="dash; dash; dash" morse[p]="dot; dash; dash; dot" morse[q]="dash; dash; dot; dash" morse[r]="dot; dash; dot" morse[s]="dot; dot; dot" morse[t]="dash" morse[u]="dot; dot; dash" morse[v]="dot; dot; dot; dash" morse[w]="dot; dash; dash" morse[x]="dash; dot; dot; dash" morse[y]="dash; dot; dash; dash" morse[z]="dash; dash; dot; dot" morse[0]="dash; dash; dash; dash; dash" morse[1]="dot; dash; dash; dash; dash" morse[2]="dot; dot; dash; dash; dash" morse[3]="dot; dot; dot; dash; dash" morse[4]="dot; dot; dot; dot; dash" morse[5]="dot; dot; dot; dot; dot" morse[6]="dash; dot; dot; dot; dot" morse[7]="dash; dash; dot; dot; dot" morse[8]="dash; dash; dash; dot; dot" morse[9]="dash; dash; dash; dash; dot" # The following must be escaped or quoted. morse[?]="dot; dot; dash; dash; dot; dot" morse[.]="dot; dash; dot; dash; dot; dash" morse[,]="dash; dash; dot; dot; dash; dash" morse[/]="dash; dot; dot; dash; dot" morse[\@]="dot; dash; dash; dot; dash; dot" # ======================================= # play_letter () { eval ${morse[$1]} # Play dots, dashes from appropriate sound files. # Why is 'eval' necessary here? usleep $LETTERSPACE # Pause in between letters. } extract_letters () { # Slice string apart, letter by letter. local pos=0 # Starting at left end of string. local len=1 # One letter at a time. strlen=${#1} while [ $pos -lt $strlen ] do letter=${1:pos:len} # ^^^^^^^^^^^^ See Chapter 10.1. play_letter $letter echo -n "*" # Mark letter just played. ((pos++)) done } ######### Play the sounds ############ dot() { aplay "$DOT" 2&>/dev/null; } dash() { aplay "$DASH" 2&>/dev/null; } ###################################### no_args () { declare -a usage usage=( $0 word1 word2 ... ) echo "Usage:"; echo echo ${usage[*]} for index in 0 1 2 3 do extract_letters ${usage[index]} usleep $WORDSPACE echo -n " " # Print space between words. done # echo "Usage: $0 word1 word2 ... " echo; echo } # int main() # { clear # Clear the terminal screen. echo " SAM" echo "Still Another Morse code trainer" echo " Author: Mendel Cooper" echo; echo; if [ -z "$1" ] then no_args echo; echo; echo "$EXIT_MSG"; echo exit $E_NOARGS fi echo; echo "$*" # Print text that will be played. until [ -z "$1" ] do extract_letters $1 shift # On to next word. usleep $WORDSPACE echo -n " " # Print space between words. done echo; echo; echo "$EXIT_MSG"; echo exit 0 # } # Exercises: # --------- # 1) Have the script accept either lowercase or uppercase words #+ as arguments. Hint: Use 'tr' . . . # 2) Have the script optionally accept input from a text file. |
Added script-array.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 | #!/bin/bash # script-array.sh: Loads this script into an array. # Inspired by an e-mail from Chris Martin (thanks!). script_contents=( $(cat "$0") ) # Stores contents of this script ($0) #+ in an array. for element in $(seq 0 $((${#script_contents[@]} - 1))) do # ${#script_contents[@]} #+ gives number of elements in the array. # # Question: # Why is seq 0 necessary? # Try changing it to seq 1. echo -n "${script_contents[$element]}" # List each field of this script on a single line. # echo -n "${script_contents[element]}" also works because of ${ ... }. echo -n " -- " # Use " -- " as a field separator. done echo exit 0 # Exercise: # -------- # Modify this script so it lists itself #+ in its original format, #+ complete with whitespace, line breaks, etc. |
Added script-detector.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 | #!/bin/bash # script-detector.sh: Detects scripts within a directory. TESTCHARS=2 # Test first 2 characters. SHABANG='#!' # Scripts begin with a "sha-bang." for file in * # Traverse all the files in current directory. do if [[ `head -c$TESTCHARS "$file"` = "$SHABANG" ]] # head -c2 #! # The '-c' option to "head" outputs a specified #+ number of characters, rather than lines (the default). then echo "File \"$file\" is a script." else echo "File \"$file\" is *not* a script." fi done exit 0 # Exercises: # --------- # 1) Modify this script to take as an optional argument #+ the directory to scan for scripts #+ (rather than just the current working directory). # # 2) As it stands, this script gives "false positives" for #+ Perl, awk, and other scripting language scripts. # Correct this. |
Added sd.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 | #!/bin/bash # sd.sh: Standard Deviation # The Standard Deviation indicates how consistent a set of data is. # It shows to what extent the individual data points deviate from the #+ arithmetic mean, i.e., how much they "bounce around" (or cluster). # It is essentially the average deviation-distance of the #+ data points from the mean. # =========================================================== # # To calculate the Standard Deviation: # # 1 Find the arithmetic mean (average) of all the data points. # 2 Subtract each data point from the arithmetic mean, # and square that difference. # 3 Add all of the individual difference-squares in # 2. # 4 Divide the sum in # 3 by the number of data points. # This is known as the "variance." # 5 The square root of # 4 gives the Standard Deviation. # =========================================================== # count=0 # Number of data points; global. SC=9 # Scale to be used by bc. Nine decimal places. E_DATAFILE=90 # Data file error. # ----------------- Set data file --------------------- if [ ! -z "$1" ] # Specify filename as cmd-line arg? then datafile="$1" # ASCII text file, else #+ one (numerical) data point per line! datafile=sample.dat fi # See example data file, below. if [ ! -e "$datafile" ] then echo "\""$datafile"\" does not exist!" exit $E_DATAFILE fi # ----------------------------------------------------- arith_mean () { local rt=0 # Running total. local am=0 # Arithmetic mean. local ct=0 # Number of data points. while read value # Read one data point at a time. do rt=$(echo "scale=$SC; $rt + $value" | bc) (( ct++ )) done am=$(echo "scale=$SC; $rt / $ct" | bc) echo $am; return $ct # This function "returns" TWO values! # Caution: This little trick will not work if $ct > 255! # To handle a larger number of data points, #+ simply comment out the "return $ct" above. } <"$datafile" # Feed in data file. sd () { mean1=$1 # Arithmetic mean (passed to function). n=$2 # How many data points. sum2=0 # Sum of squared differences ("variance"). avg2=0 # Average of $sum2. sdev=0 # Standard Deviation. while read value # Read one line at a time. do diff=$(echo "scale=$SC; $mean1 - $value" | bc) # Difference between arith. mean and data point. dif2=$(echo "scale=$SC; $diff * $diff" | bc) # Squared. sum2=$(echo "scale=$SC; $sum2 + $dif2" | bc) # Sum of squares. done avg2=$(echo "scale=$SC; $sum2 / $n" | bc) # Avg. of sum of squares. sdev=$(echo "scale=$SC; sqrt($avg2)" | bc) # Square root = echo $sdev # Standard Deviation. } <"$datafile" # Rewinds data file. # ======================================================= # mean=$(arith_mean); count=$? # Two returns from function! std_dev=$(sd $mean $count) echo echo "Number of data points in \""$datafile"\" = $count" echo "Arithmetic mean (average) = $mean" echo "Standard Deviation = $std_dev" echo # ======================================================= # exit # This script could stand some drastic streamlining, #+ but not at the cost of reduced legibility, please. # ++++++++++++++++++++++++++++++++++++++++ # # A sample data file (sample1.dat): # 18.35 # 19.0 # 18.88 # 18.91 # 18.64 # $ sh sd.sh sample1.dat # Number of data points in "sample1.dat" = 5 # Arithmetic mean (average) = 18.756000000 # Standard Deviation = .235338054 # ++++++++++++++++++++++++++++++++++++++++ # |
Added seconds.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 | #!/bin/bash TIME_LIMIT=10 INTERVAL=1 echo echo "Hit Control-C to exit before $TIME_LIMIT seconds." echo while [ "$SECONDS" -le "$TIME_LIMIT" ] do # $SECONDS is an internal shell variable. if [ "$SECONDS" -eq 1 ] then units=second else units=seconds fi echo "This script has been running $SECONDS $units." # On a slow or overburdened machine, the script may skip a count #+ every once in a while. sleep $INTERVAL done echo -e "\a" # Beep! exit 0 |
Added secret-pw.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 | #!/bin/bash # secret-pw.sh: secret password echo echo -n "Enter password " read passwd echo "password is $passwd" echo -n "If someone had been looking over your shoulder, " echo "your password would have been compromised." echo && echo # Two line-feeds in an "and list." stty -echo # Turns off screen echo. # May also be done with # read -sp passwd # A big Thank You to Leigh James for pointing this out. echo -n "Enter password again " read passwd echo echo "password is $passwd" echo stty echo # Restores screen echo. exit 0 # Do an 'info stty' for more on this useful-but-tricky command. |
Added sedappend.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 | #!/bin/bash # Prepends a string at a specified line #+ in files with names ending in "sample" #+ in the current working directory. # 000000000000000000000000000000000000 # This script overwrites files! # Be careful running it in a directory #+ where you have important files!!! # 000000000000000000000000000000000000 # Create a couple of files to operate on ... # 01sample # 02sample # ... etc. # These files must not be empty, else the prepend will not work. lineno=1 # Append at line 1 (prepend). filespec="*sample" # Filename pattern to operate on. string=$(whoami) # Will set your username as string to insert. # It could just as easily be any other string. for file in $filespec # Specify which files to alter. do # ^^^^^^^^^ sed -i ""$lineno"i "$string"" $file # ^^ -i option edits files in-place. # ^ Insert (i) command. echo ""$file" altered!" done echo "Warning: files possibly clobbered!" exit 0 # Exercise: # Add error checking to this script. # It needs it badly. |
Added seeding-random.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 | #!/bin/bash # seeding-random.sh: Seeding the RANDOM variable. # v 1.1, reldate 09 Feb 2013 MAXCOUNT=25 # How many numbers to generate. SEED= random_numbers () { local count=0 local number while [ "$count" -lt "$MAXCOUNT" ] do number=$RANDOM echo -n "$number " let "count++" done } echo; echo SEED=1 RANDOM=$SEED # Setting RANDOM seeds the random number generator. echo "Random seed = $SEED" random_numbers RANDOM=$SEED # Same seed for RANDOM . . . echo; echo "Again, with same random seed ..." echo "Random seed = $SEED" random_numbers # . . . reproduces the exact same number series. # # When is it useful to duplicate a "random" series? echo; echo SEED=2 RANDOM=$SEED # Trying again, but with a different seed . . . echo "Random seed = $SEED" random_numbers # . . . gives a different number series. echo; echo # RANDOM=$$ seeds RANDOM from process id of script. # It is also possible to seed RANDOM from 'time' or 'date' commands. # Getting fancy... SEED=$(head -1 /dev/urandom | od -N 1 | awk '{ print $2 }'| sed s/^0*//) # Pseudo-random output fetched #+ from /dev/urandom (system pseudo-random device-file), #+ then converted to line of printable (octal) numbers by "od", #+ then "awk" retrieves just one number for SEED, #+ finally "sed" removes any leading zeros. RANDOM=$SEED echo "Random seed = $SEED" random_numbers echo; echo exit 0 |
Added self-copy.sh.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash # self-copy.sh # This script copies itself. file_subscript=copy dd if=$0 of=$0.$file_subscript 2>/dev/null # Suppress messages from dd: ^^^^^^^^^^^ exit $? # A program whose only output is its own source code #+ is called a "quine" per Willard Quine. # Does this script qualify as a quine? |
Added self-destruct.sh.
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/bash # self-destruct.sh kill $$ # Script kills its own process here. # Recall that "$$" is the script's PID. echo "This line will not echo." # Instead, the shell sends a "Terminated" message to stdout. exit 0 # Normal exit? No! # After this script terminates prematurely, #+ what exit status does it return? # # sh self-destruct.sh # echo $? # 143 # # 143 = 128 + 15 # TERM signal |
Added self-document.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 | #!/bin/bash # self-document.sh: self-documenting script # Modification of "colm.sh". DOC_REQUEST=70 if [ "$1" = "-h" -o "$1" = "--help" ] # Request help. then echo; echo "Usage: $0 [directory-name]"; echo sed --silent -e '/DOCUMENTATIONXX$/,/^DOCUMENTATIONXX$/p' "$0" | sed -e '/DOCUMENTATIONXX$/d'; exit $DOC_REQUEST; fi : <<DOCUMENTATIONXX List the statistics of a specified directory in tabular format. --------------------------------------------------------------- The command-line parameter gives the directory to be listed. If no directory specified or directory specified cannot be read, then list the current working directory. DOCUMENTATIONXX if [ -z "$1" -o ! -r "$1" ] then directory=. else directory="$1" fi echo "Listing of "$directory":"; echo (printf "PERMISSIONS LINKS OWNER GROUP SIZE MONTH DAY HH:MM PROG-NAME\n" \ ; ls -l "$directory" | sed 1d) | column -t exit 0 |
Added self-exec.sh.
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash # self-exec.sh # Note: Set permissions on this script to 555 or 755, # then call it with ./self-exec.sh or sh ./self-exec.sh. echo echo "This line appears ONCE in the script, yet it keeps echoing." echo "The PID of this instance of the script is still $$." # Demonstrates that a subshell is not forked off. echo "==================== Hit Ctl-C to exit ====================" sleep 1 exec $0 # Spawns another instance of this same script #+ that replaces the previous one. echo "This line will never echo!" # Why not? exit 99 # Will not exit here! # Exit code will not be 99! |
Added self-mailer.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 | #!/bin/sh # self-mailer.sh: Self-mailing script adr=${1:-`whoami`} # Default to current user, if not specified. # Typing 'self-mailer.sh wiseguy@superdupergenius.com' #+ sends this script to that addressee. # Just 'self-mailer.sh' (no argument) sends the script #+ to the person invoking it, for example, bozo@localhost.localdomain. # # For more on the ${parameter:-default} construct, #+ see the "Parameter Substitution" section #+ of the "Variables Revisited" chapter. # ============================================================================ cat $0 | mail -s "Script \"`basename $0`\" has mailed itself to you." "$adr" # ============================================================================ # -------------------------------------------- # Greetings from the self-mailing script. # A mischievous person has run this script, #+ which has caused it to mail itself to you. # Apparently, some people have nothing better #+ to do with their time. # -------------------------------------------- echo "At `date`, script \"`basename $0`\" mailed to "$adr"." exit 0 # Note that the "mailx" command (in "send" mode) may be substituted #+ for "mail" ... but with somewhat different options. |
Added self-source.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 | #!/bin/bash # self-source.sh: a script sourcing itself "recursively." # From "Stupid Script Tricks," Volume II. MAXPASSCNT=100 # Maximum number of execution passes. echo -n "$pass_count " # At first execution pass, this just echoes two blank spaces, #+ since $pass_count still uninitialized. let "pass_count += 1" # Assumes the uninitialized variable $pass_count #+ can be incremented the first time around. # This works with Bash and pdksh, but #+ it relies on non-portable (and possibly dangerous) behavior. # Better would be to initialize $pass_count to 0 before incrementing. while [ "$pass_count" -le $MAXPASSCNT ] do . $0 # Script "sources" itself, rather than calling itself. # ./$0 (which would be true recursion) doesn't work here. Why? done # What occurs here is not actually recursion, #+ since the script effectively "expands" itself, i.e., #+ generates a new section of code #+ with each pass through the 'while' loop', # with each 'source' in line 20. # # Of course, the script interprets each newly 'sourced' "#!" line #+ as a comment, and not as the start of a new script. echo exit 0 # The net effect is counting from 1 to 100. # Very impressive. # Exercise: # -------- # Write a script that uses this trick to actually do something useful. |
Added set-pos.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 | #!/bin/bash variable="one two three four five" set -- $variable # Sets positional parameters to the contents of "$variable". first_param=$1 second_param=$2 shift; shift # Shift past first two positional params. # shift 2 also works. remaining_params="$*" echo echo "first parameter = $first_param" # one echo "second parameter = $second_param" # two echo "remaining parameters = $remaining_params" # three four five echo; echo # Again. set -- $variable first_param=$1 second_param=$2 echo "first parameter = $first_param" # one echo "second parameter = $second_param" # two # ====================================================== set -- # Unsets positional parameters if no variable specified. first_param=$1 second_param=$2 echo "first parameter = $first_param" # (null value) echo "second parameter = $second_param" # (null value) exit 0 |
Added setnew-passwd.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 | #!/bin/bash # setnew-password.sh: For demonstration purposes only. # Not a good idea to actually run this script. # This script must be run as root. ROOT_UID=0 # Root has $UID 0. E_WRONG_USER=65 # Not root? E_NOSUCHUSER=70 SUCCESS=0 if [ "$UID" -ne "$ROOT_UID" ] then echo; echo "Only root can run this script."; echo exit $E_WRONG_USER else echo echo "You should know better than to run this script, root." echo "Even root users get the blues... " echo fi username=bozo NEWPASSWORD=security_violation # Check if bozo lives here. grep -q "$username" /etc/passwd if [ $? -ne $SUCCESS ] then echo "User $username does not exist." echo "No password changed." exit $E_NOSUCHUSER fi echo "$NEWPASSWORD" | passwd --stdin "$username" # The '--stdin' option to 'passwd' permits #+ getting a new password from stdin (or a pipe). echo; echo "User $username's password changed!" # Using the 'passwd' command in a script is dangerous. exit 0 |
Added show-all-colors.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 | #!/bin/bash # show-all-colors.sh # Displays all 256 possible background colors, using ANSI escape sequences. # Author: Chetankumar Phulpagare # Used in ABS Guide with permission. T1=8 T2=6 T3=36 offset=0 for num1 in {0..7} do { for num2 in {0,1} do { shownum=`echo "$offset + $T1 * ${num2} + $num1" | bc` echo -en "\E[0;48;5;${shownum}m color ${shownum} \E[0m" } done echo } done offset=16 for num1 in {0..5} do { for num2 in {0..5} do { for num3 in {0..5} do { shownum=`echo "$offset + $T2 * ${num3} \ + $num2 + $T3 * ${num1}" | bc` echo -en "\E[0;48;5;${shownum}m color ${shownum} \E[0m" } done echo } done } done offset=232 for num1 in {0..23} do { shownum=`expr $offset + $num1` echo -en "\E[0;48;5;${shownum}m ${shownum}\E[0m" } done echo |
Added soundcard-on.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 | #!/bin/bash # soundcard-on.sh # Script author: Mkarcher # http://www.thinkwiki.org/wiki ... # /Script_for_configuring_the_CS4239_sound_chip_in_PnP_mode # ABS Guide author made minor changes and added comments. # Couldn't contact script author to ask for permission to use, but ... #+ the script was released under the FDL, #+ so its use here should be both legal and ethical. # Sound-via-pnp-script for Thinkpad 600E #+ and possibly other computers with onboard CS4239/CS4610 #+ that do not work with the PCI driver #+ and are not recognized by the PnP code of snd-cs4236. # Also for some 770-series Thinkpads, such as the 770x. # Run as root user, of course. # # These are old and very obsolete laptop computers, #+ but this particular script is very instructive, #+ as it shows how to set up and hack device files. # Search for sound card pnp device: for dev in /sys/bus/pnp/devices/* do grep CSC0100 $dev/id > /dev/null && WSSDEV=$dev grep CSC0110 $dev/id > /dev/null && CTLDEV=$dev done # On 770x: # WSSDEV = /sys/bus/pnp/devices/00:07 # CTLDEV = /sys/bus/pnp/devices/00:06 # These are symbolic links to /sys/devices/pnp0/ ... # Activate devices: # Thinkpad boots with devices disabled unless "fast boot" is turned off #+ (in BIOS). echo activate > $WSSDEV/resources echo activate > $CTLDEV/resources # Parse resource settings. { read # Discard "state = active" (see below). read bla port1 read bla port2 read bla port3 read bla irq read bla dma1 read bla dma2 # The "bla's" are labels in the first field: "io," "state," etc. # These are discarded. # Hack: with PnPBIOS: ports are: port1: WSS, port2: #+ OPL, port3: sb (unneeded) # with ACPI-PnP:ports are: port1: OPL, port2: sb, port3: WSS # (ACPI bios seems to be wrong here, the PnP-card-code in snd-cs4236.c #+ uses the PnPBIOS port order) # Detect port order using the fixed OPL port as reference. if [ ${port2%%-*} = 0x388 ] # ^^^^ Strip out everything following hyphen in port address. # So, if port1 is 0x530-0x537 #+ we're left with 0x530 -- the start address of the port. then # PnPBIOS: usual order port=${port1%%-*} oplport=${port2%%-*} else # ACPI: mixed-up order port=${port3%%-*} oplport=${port1%%-*} fi } < $WSSDEV/resources # To see what's going on here: # --------------------------- # cat /sys/devices/pnp0/00:07/resources # # state = active # io 0x530-0x537 # io 0x388-0x38b # io 0x220-0x233 # irq 5 # dma 1 # dma 0 # ^^^ "bla" labels in first field (discarded). { read # Discard first line, as above. read bla port1 cport=${port1%%-*} # ^^^^ # Just want _start_ address of port. } < $CTLDEV/resources # Load the module: modprobe --ignore-install snd-cs4236 port=$port cport=$cport\ fm_port=$oplport irq=$irq dma1=$dma1 dma2=$dma2 isapnp=0 index=0 # See the modprobe manpage. exit $? |
Added soundex.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 | #!/bin/bash # soundex.sh: Calculate "soundex" code for names # ======================================================= # Soundex script # by # Mendel Cooper # thegrendel.abs@gmail.com # reldate: 23 January, 2002 # # Placed in the Public Domain. # # A slightly different version of this script appeared in #+ Ed Schaefer's July, 2002 "Shell Corner" column #+ in "Unix Review" on-line, #+ http://www.unixreview.com/documents/uni1026336632258/ # ======================================================= ARGCOUNT=1 # Need name as argument. E_WRONGARGS=90 if [ $# -ne "$ARGCOUNT" ] then echo "Usage: `basename $0` name" exit $E_WRONGARGS fi assign_value () # Assigns numerical value { #+ to letters of name. val1=bfpv # 'b,f,p,v' = 1 val2=cgjkqsxz # 'c,g,j,k,q,s,x,z' = 2 val3=dt # etc. val4=l val5=mn val6=r # Exceptionally clever use of 'tr' follows. # Try to figure out what is going on here. value=$( echo "$1" \ | tr -d wh \ | tr $val1 1 | tr $val2 2 | tr $val3 3 \ | tr $val4 4 | tr $val5 5 | tr $val6 6 \ | tr -s 123456 \ | tr -d aeiouy ) # Assign letter values. # Remove duplicate numbers, except when separated by vowels. # Ignore vowels, except as separators, so delete them last. # Ignore 'w' and 'h', even as separators, so delete them first. # # The above command substitution lays more pipe than a plumber <g>. } input_name="$1" echo echo "Name = $input_name" # Change all characters of name input to lowercase. # ------------------------------------------------ name=$( echo $input_name | tr A-Z a-z ) # ------------------------------------------------ # Just in case argument to script is mixed case. # Prefix of soundex code: first letter of name. # -------------------------------------------- char_pos=0 # Initialize character position. prefix0=${name:$char_pos:1} prefix=`echo $prefix0 | tr a-z A-Z` # Uppercase 1st letter of soundex. let "char_pos += 1" # Bump character position to 2nd letter of name. name1=${name:$char_pos} # ++++++++++++++++++++++++++ Exception Patch ++++++++++++++++++++++++++++++ # Now, we run both the input name and the name shifted one char #+ to the right through the value-assigning function. # If we get the same value out, that means that the first two characters #+ of the name have the same value assigned, and that one should cancel. # However, we also need to test whether the first letter of the name #+ is a vowel or 'w' or 'h', because otherwise this would bollix things up. char1=`echo $prefix | tr A-Z a-z` # First letter of name, lowercased. assign_value $name s1=$value assign_value $name1 s2=$value assign_value $char1 s3=$value s3=9$s3 # If first letter of name is a vowel #+ or 'w' or 'h', #+ then its "value" will be null (unset). #+ Therefore, set it to 9, an otherwise #+ unused value, which can be tested for. if [[ "$s1" -ne "$s2" || "$s3" -eq 9 ]] then suffix=$s2 else suffix=${s2:$char_pos} fi # ++++++++++++++++++++++ end Exception Patch ++++++++++++++++++++++++++++++ padding=000 # Use at most 3 zeroes to pad. soun=$prefix$suffix$padding # Pad with zeroes. MAXLEN=4 # Truncate to maximum of 4 chars. soundex=${soun:0:$MAXLEN} echo "Soundex = $soundex" echo # The soundex code is a method of indexing and classifying names #+ by grouping together the ones that sound alike. # The soundex code for a given name is the first letter of the name, #+ followed by a calculated three-number code. # Similar sounding names should have almost the same soundex codes. # Examples: # Smith and Smythe both have a "S-530" soundex. # Harrison = H-625 # Hargison = H-622 # Harriman = H-655 # This works out fairly well in practice, but there are numerous anomalies. # # # The U.S. Census and certain other governmental agencies use soundex, # as do genealogical researchers. # # For more information, #+ see the "National Archives and Records Administration home page", #+ http://www.nara.gov/genealogy/soundex/soundex.html # Exercise: # -------- # Simplify the "Exception Patch" section of this script. exit 0 |
Added soundfiles/dash.wav.
cannot compute difference between binary files
Added soundfiles/dot.wav.
cannot compute difference between binary files
Added spam-lookup.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 | #!/bin/bash # spam-lookup.sh: Look up abuse contact to report a spammer. # Thanks, Michael Zick. # Check for command-line arg. ARGCOUNT=1 E_WRONGARGS=85 if [ $# -ne "$ARGCOUNT" ] then echo "Usage: `basename $0` domain-name" exit $E_WRONGARGS fi dig +short $1.contacts.abuse.net -c in -t txt # Also try: # dig +nssearch $1 # Tries to find "authoritative name servers" and display SOA records. # The following also works: # whois -h whois.abuse.net $1 # ^^ ^^^^^^^^^^^^^^^ Specify host. # Can even lookup multiple spammers with this, i.e." # whois -h whois.abuse.net $spamdomain1 $spamdomain2 . . . # Exercise: # -------- # Expand the functionality of this script #+ so that it automatically e-mails a notification #+ to the responsible ISP's contact address(es). # Hint: use the "mail" command. exit $? # spam-lookup.sh chinatietong.com # A known spam domain. # "crnet_mgr@chinatietong.com" # "crnet_tec@chinatietong.com" # "postmaster@chinatietong.com" # For a more elaborate version of this script, #+ see the SpamViz home page, http://www.spamviz.net/index.html. |
Added spawn.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 | #!/bin/bash # spawn.sh PIDS=$(pidof sh $0) # Process IDs of the various instances of this script. P_array=( $PIDS ) # Put them in an array (why?). echo $PIDS # Show process IDs of parent and child processes. let "instances = ${#P_array[*]} - 1" # Count elements, less 1. # Why subtract 1? echo "$instances instance(s) of this script running." echo "[Hit Ctl-C to exit.]"; echo sleep 1 # Wait. sh $0 # Play it again, Sam. exit 0 # Not necessary; script will never get to here. # Why not? # After exiting with a Ctl-C, #+ do all the spawned instances of the script die? # If so, why? # Note: # ---- # Be careful not to run this script too long. # It will eventually eat up too many system resources. # Is having a script spawn multiple instances of itself #+ an advisable scripting technique. # Why or why not? |
Added speech.sh.
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash # Courtesy of: # http://elinux.org/RPi_Text_to_Speech_(Speech_Synthesis) # You must be on-line for this script to work, #+ so you can access the Google translation server. # Of course, mplayer must be present on your computer. speak() { local IFS=+ # Invoke mplayer, then connect to Google translation server. /usr/bin/mplayer -ao alsa -really-quiet -noconsolecontrols \ "http://translate.google.com/translate_tts?tl=en&q="$*"" # Google translates, but can also speak. } LINES=4 spk=$(tail -$LINES $0) # Tail end of same script! speak "$spk" exit # Browns. Nice talking to you. |
Added splitcopy.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 | #!/bin/bash # splitcopy.sh # A script that splits itself into chunks, #+ then reassembles the chunks into an exact copy #+ of the original script. CHUNKSIZE=4 # Size of first chunk of split files. OUTPREFIX=xx # csplit prefixes, by default, #+ files with "xx" ... csplit "$0" "$CHUNKSIZE" # Some comment lines for padding . . . # Line 15 # Line 16 # Line 17 # Line 18 # Line 19 # Line 20 cat "$OUTPREFIX"* > "$0.copy" # Concatenate the chunks. rm "$OUTPREFIX"* # Get rid of the chunks. exit $? |
Added stack.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 | #!/bin/bash # stack.sh: push-down stack simulation # Similar to the CPU stack, a push-down stack stores data items #+ sequentially, but releases them in reverse order, last-in first-out. BP=100 # Base Pointer of stack array. # Begin at element 100. SP=$BP # Stack Pointer. # Initialize it to "base" (bottom) of stack. Data= # Contents of stack location. # Must use global variable, #+ because of limitation on function return range. # 100 Base pointer <-- Base Pointer # 99 First data item # 98 Second data item # ... More data # Last data item <-- Stack pointer declare -a stack push() # Push item on stack. { if [ -z "$1" ] # Nothing to push? then return fi let "SP -= 1" # Bump stack pointer. stack[$SP]=$1 return } pop() # Pop item off stack. { Data= # Empty out data item. if [ "$SP" -eq "$BP" ] # Stack empty? then return fi # This also keeps SP from getting past 100, #+ i.e., prevents a runaway stack. Data=${stack[$SP]} let "SP += 1" # Bump stack pointer. return } status_report() # Find out what's happening. { echo "-------------------------------------" echo "REPORT" echo "Stack Pointer = $SP" echo "Just popped \""$Data"\" off the stack." echo "-------------------------------------" echo } # ======================================================= # Now, for some fun. echo # See if you can pop anything off empty stack. pop status_report echo push garbage pop status_report # Garbage in, garbage out. value1=23; push $value1 value2=skidoo; push $value2 value3=LAST; push $value3 pop # LAST status_report pop # skidoo status_report pop # 23 status_report # Last-in, first-out! # Notice how the stack pointer decrements with each push, #+ and increments with each pop. echo exit 0 # ======================================================= # Exercises: # --------- # 1) Modify the "push()" function to permit pushing # + multiple element on the stack with a single function call. # 2) Modify the "pop()" function to permit popping # + multiple element from the stack with a single function call. # 3) Add error checking to the critical functions. # That is, return an error code, depending on # + successful or unsuccessful completion of the operation, # + and take appropriate action. # 4) Using this script as a starting point, # + write a stack-based 4-function calculator. |
Added str-test.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 | #!/bin/bash # str-test.sh: Testing null strings and unquoted strings, #+ but not strings and sealing wax, not to mention cabbages and kings . . . # Using if [ ... ] # If a string has not been initialized, it has no defined value. # This state is called "null" (not the same as zero!). if [ -n $string1 ] # string1 has not been declared or initialized. then echo "String \"string1\" is not null." else echo "String \"string1\" is null." fi # Wrong result. # Shows $string1 as not null, although it was not initialized. echo # Let's try it again. if [ -n "$string1" ] # This time, $string1 is quoted. then echo "String \"string1\" is not null." else echo "String \"string1\" is null." fi # Quote strings within test brackets! echo if [ $string1 ] # This time, $string1 stands naked. then echo "String \"string1\" is not null." else echo "String \"string1\" is null." fi # This works fine. # The [ ... ] test operator alone detects whether the string is null. # However it is good practice to quote it (if [ "$string1" ]). # # As Stephane Chazelas points out, # if [ $string1 ] has one argument, "]" # if [ "$string1" ] has two arguments, the empty "$string1" and "]" echo string1=initialized if [ $string1 ] # Again, $string1 stands unquoted. then echo "String \"string1\" is not null." else echo "String \"string1\" is null." fi # Again, gives correct result. # Still, it is better to quote it ("$string1"), because . . . string1="a = b" if [ $string1 ] # Again, $string1 stands unquoted. then echo "String \"string1\" is not null." else echo "String \"string1\" is null." fi # Not quoting "$string1" now gives wrong result! exit 0 # Thank you, also, Florian Wisser, for the "heads-up". |
Added string.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 | #!/bin/bash # string.bash --- bash emulation of string(3) library routines # Author: Noah Friedman <friedman@prep.ai.mit.edu> # ==> Used with his kind permission in this document. # Created: 1992-07-01 # Last modified: 1993-09-29 # Public domain # Conversion to bash v2 syntax done by Chet Ramey # Commentary: # Code: #:docstring strcat: # Usage: strcat s1 s2 # # Strcat appends the value of variable s2 to variable s1. # # Example: # a="foo" # b="bar" # strcat a b # echo $a # => foobar # #:end docstring: ###;;;autoload ==> Autoloading of function commented out. function strcat () { local s1_val s2_val s1_val=${!1} # indirect variable expansion s2_val=${!2} eval "$1"=\'"${s1_val}${s2_val}"\' # ==> eval $1='${s1_val}${s2_val}' avoids problems, # ==> if one of the variables contains a single quote. } #:docstring strncat: # Usage: strncat s1 s2 $n # # Line strcat, but strncat appends a maximum of n characters from the value # of variable s2. It copies fewer if the value of variabl s2 is shorter # than n characters. Echoes result on stdout. # # Example: # a=foo # b=barbaz # strncat a b 3 # echo $a # => foobar # #:end docstring: ###;;;autoload function strncat () { local s1="$1" local s2="$2" local -i n="$3" local s1_val s2_val s1_val=${!s1} # ==> indirect variable expansion s2_val=${!s2} if [ ${#s2_val} -gt ${n} ]; then s2_val=${s2_val:0:$n} # ==> substring extraction fi eval "$s1"=\'"${s1_val}${s2_val}"\' # ==> eval $1='${s1_val}${s2_val}' avoids problems, # ==> if one of the variables contains a single quote. } #:docstring strcmp: # Usage: strcmp $s1 $s2 # # Strcmp compares its arguments and returns an integer less than, equal to, # or greater than zero, depending on whether string s1 is lexicographically # less than, equal to, or greater than string s2. #:end docstring: ###;;;autoload function strcmp () { [ "$1" = "$2" ] && return 0 [ "${1}" '<' "${2}" ] > /dev/null && return -1 return 1 } #:docstring strncmp: # Usage: strncmp $s1 $s2 $n # # Like strcmp, but makes the comparison by examining a maximum of n # characters (n less than or equal to zero yields equality). #:end docstring: ###;;;autoload function strncmp () { if [ -z "${3}" -o "${3}" -le "0" ]; then return 0 fi if [ ${3} -ge ${#1} -a ${3} -ge ${#2} ]; then strcmp "$1" "$2" return $? else s1=${1:0:$3} s2=${2:0:$3} strcmp $s1 $s2 return $? fi } #:docstring strlen: # Usage: strlen s # # Strlen returns the number of characters in string literal s. #:end docstring: ###;;;autoload function strlen () { eval echo "\${#${1}}" # ==> Returns the length of the value of the variable # ==> whose name is passed as an argument. } #:docstring strspn: # Usage: strspn $s1 $s2 # # Strspn returns the length of the maximum initial segment of string s1, # which consists entirely of characters from string s2. #:end docstring: ###;;;autoload function strspn () { # Unsetting IFS allows whitespace to be handled as normal chars. local IFS= local result="${1%%[!${2}]*}" echo ${#result} } #:docstring strcspn: # Usage: strcspn $s1 $s2 # # Strcspn returns the length of the maximum initial segment of string s1, # which consists entirely of characters not from string s2. #:end docstring: ###;;;autoload function strcspn () { # Unsetting IFS allows whitspace to be handled as normal chars. local IFS= local result="${1%%[${2}]*}" echo ${#result} } #:docstring strstr: # Usage: strstr s1 s2 # # Strstr echoes a substring starting at the first occurrence of string s2 in # string s1, or nothing if s2 does not occur in the string. If s2 points to # a string of zero length, strstr echoes s1. #:end docstring: ###;;;autoload function strstr () { # if s2 points to a string of zero length, strstr echoes s1 [ ${#2} -eq 0 ] && { echo "$1" ; return 0; } # strstr echoes nothing if s2 does not occur in s1 case "$1" in *$2*) ;; *) return 1;; esac # use the pattern matching code to strip off the match and everything # following it first=${1/$2*/} # then strip off the first unmatched portion of the string echo "${1##$first}" } #:docstring strtok: # Usage: strtok s1 s2 # # Strtok considers the string s1 to consist of a sequence of zero or more # text tokens separated by spans of one or more characters from the # separator string s2. The first call (with a non-empty string s1 # specified) echoes a string consisting of the first token on stdout. The # function keeps track of its position in the string s1 between separate # calls, so that subsequent calls made with the first argument an empty # string will work through the string immediately following that token. In # this way subsequent calls will work through the string s1 until no tokens # remain. The separator string s2 may be different from call to call. # When no token remains in s1, an empty value is echoed on stdout. #:end docstring: ###;;;autoload function strtok () { : } #:docstring strtrunc: # Usage: strtrunc $n $s1 {$s2} {$...} # # Used by many functions like strncmp to truncate arguments for comparison. # Echoes the first n characters of each string s1 s2 ... on stdout. #:end docstring: ###;;;autoload function strtrunc () { n=$1 ; shift for z; do echo "${z:0:$n}" done } # provide string # string.bash ends here # ========================================================================== # # ==> Everything below here added by the document author. # ==> Suggested use of this script is to delete everything below here, # ==> and "source" this file into your own scripts. # strcat string0=one string1=two echo echo "Testing \"strcat\" function:" echo "Original \"string0\" = $string0" echo "\"string1\" = $string1" strcat string0 string1 echo "New \"string0\" = $string0" echo # strlen echo echo "Testing \"strlen\" function:" str=123456789 echo "\"str\" = $str" echo -n "Length of \"str\" = " strlen str echo # Exercise: # -------- # Add code to test all the other string functions above. exit 0 |
Added strip-comments.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 | #!/bin/bash # strip-comment.sh: Strips out the comments (/* COMMENT */) in a C program. E_NOARGS=0 E_ARGERROR=66 E_WRONG_FILE_TYPE=67 if [ $# -eq "$E_NOARGS" ] then echo "Usage: `basename $0` C-program-file" >&2 # Error message to stderr. exit $E_ARGERROR fi # Test for correct file type. type=`file $1 | awk '{ print $2, $3, $4, $5 }'` # "file $1" echoes file type . . . # Then awk removes the first field, the filename . . . # Then the result is fed into the variable "type." correct_type="ASCII C program text" if [ "$type" != "$correct_type" ] then echo echo "This script works on C program files only." echo exit $E_WRONG_FILE_TYPE fi # Rather cryptic sed script: #-------- sed ' /^\/\*/d /.*\*\//d ' $1 #-------- # Easy to understand if you take several hours to learn sed fundamentals. # Need to add one more line to the sed script to deal with #+ case where line of code has a comment following it on same line. # This is left as a non-trivial exercise. # Also, the above code deletes non-comment lines with a "*/" . . . #+ not a desirable result. exit 0 # ---------------------------------------------------------------- # Code below this line will not execute because of 'exit 0' above. # Stephane Chazelas suggests the following alternative: usage() { echo "Usage: `basename $0` C-program-file" >&2 exit 1 } WEIRD=`echo -n -e '\377'` # or WEIRD=$'\377' [[ $# -eq 1 ]] || usage case `file "$1"` in *"C program text"*) sed -e "s%/\*%${WEIRD}%g;s%\*/%${WEIRD}%g" "$1" \ | tr '\377\n' '\n\377' \ | sed -ne 'p;n' \ | tr -d '\n' | tr '\377' '\n';; *) usage;; esac # This is still fooled by things like: # printf("/*"); # or # /* /* buggy embedded comment */ # # To handle all special cases (comments in strings, comments in string #+ where there is a \", \\" ...), #+ the only way is to write a C parser (using lex or yacc perhaps?). exit 0 |
Added stupid-script-tricks.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash # stupid-script-tricks.sh: Don't try this at home, folks. # From "Stupid Script Tricks," Volume I. exit 99 ### Comment out this line if you dare. dangerous_variable=`cat /boot/vmlinuz` # The compressed Linux kernel itself. echo "string-length of \$dangerous_variable = ${#dangerous_variable}" # string-length of $dangerous_variable = 794151 # (Newer kernels are bigger.) # Does not give same count as 'wc -c /boot/vmlinuz'. # echo "$dangerous_variable" # Don't try this! It would hang the script. # The document author is aware of no useful applications for #+ setting a variable to the contents of a binary file. exit 0 |
Added subshell-pitfalls.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 | #!/bin/bash # Pitfalls of variables in a subshell. outer_variable=outer echo echo "outer_variable = $outer_variable" echo ( # Begin subshell echo "outer_variable inside subshell = $outer_variable" inner_variable=inner # Set echo "inner_variable inside subshell = $inner_variable" outer_variable=inner # Will value change globally? echo "outer_variable inside subshell = $outer_variable" # Will 'exporting' make a difference? # export inner_variable # export outer_variable # Try it and see. # End subshell ) echo echo "inner_variable outside subshell = $inner_variable" # Unset. echo "outer_variable outside subshell = $outer_variable" # Unchanged. echo exit 0 # What happens if you uncomment lines 19 and 20? # Does it make a difference? |
Added subshell.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 | #!/bin/bash # subshell.sh echo echo "We are outside the subshell." echo "Subshell level OUTSIDE subshell = $BASH_SUBSHELL" # Bash, version 3, adds the new $BASH_SUBSHELL variable. echo; echo outer_variable=Outer global_variable= # Define global variable for "storage" of #+ value of subshell variable. ( echo "We are inside the subshell." echo "Subshell level INSIDE subshell = $BASH_SUBSHELL" inner_variable=Inner echo "From inside subshell, \"inner_variable\" = $inner_variable" echo "From inside subshell, \"outer\" = $outer_variable" global_variable="$inner_variable" # Will this allow "exporting" #+ a subshell variable? ) echo; echo echo "We are outside the subshell." echo "Subshell level OUTSIDE subshell = $BASH_SUBSHELL" echo if [ -z "$inner_variable" ] then echo "inner_variable undefined in main body of shell" else echo "inner_variable defined in main body of shell" fi echo "From main body of shell, \"inner_variable\" = $inner_variable" # $inner_variable will show as blank (uninitialized) #+ because variables defined in a subshell are "local variables". # Is there a remedy for this? echo "global_variable = "$global_variable"" # Why doesn't this work? echo # ======================================================================= # Additionally ... echo "-----------------"; echo var=41 # Global variable. ( let "var+=1"; echo "\$var INSIDE subshell = $var" ) # 42 echo "\$var OUTSIDE subshell = $var" # 41 # Variable operations inside a subshell, even to a GLOBAL variable #+ do not affect the value of the variable outside the subshell! exit 0 # Question: # -------- # Once having exited a subshell, #+ is there any way to reenter that very same subshell #+ to modify or access the subshell variables? |
Added substring-extraction.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 | #!/bin/bash # substring-extraction.sh String=23skidoo1 # 012345678 Bash # 123456789 awk # Note different string indexing system: # Bash numbers first character of string as 0. # Awk numbers first character of string as 1. echo ${String:2:4} # position 3 (0-1-2), 4 characters long # skid # The awk equivalent of ${string:pos:length} is substr(string,pos,length). echo | awk ' { print substr("'"${String}"'",3,4) # skid } ' # Piping an empty "echo" to awk gives it dummy input, #+ and thus makes it unnecessary to supply a filename. echo "----" # And likewise: echo | awk ' { print index("'"${String}"'", "skid") # 3 } # (skid starts at position 3) ' # The awk equivalent of "expr index" ... exit 0 |
Added sum-product.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 | #!/bin/bash # sum-product.sh # A function may "return" more than one value. sum_and_product () # Calculates both sum and product of passed args. { echo $(( $1 + $2 )) $(( $1 * $2 )) # Echoes to stdout each calculated value, separated by space. } echo echo "Enter first number " read first echo echo "Enter second number " read second echo retval=`sum_and_product $first $second` # Assigns output of function. sum=`echo "$retval" | awk '{print $1}'` # Assigns first field. product=`echo "$retval" | awk '{print $2}'` # Assigns second field. echo "$first + $second = $sum" echo "$first * $second = $product" echo exit 0 |
Added sw.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 | #!/bin/sh # sw.sh # A command-line Stopwatch # Author: Pádraig Brady # http://www.pixelbeat.org/scripts/sw # (Minor reformatting by ABS Guide author.) # Used in ABS Guide with script author's permission. # Notes: # This script starts a few processes per lap, in addition to # the shell loop processing, so the assumption is made that # this takes an insignificant amount of time compared to # the response time of humans (~.1s) (or the keyboard # interrupt rate (~.05s)). # '?' for splits must be entered twice if characters # (erroneously) entered before it (on the same line). # '?' since not generating a signal may be slightly delayed # on heavily loaded systems. # Lap timings on ubuntu may be slightly delayed due to: # https://bugs.launchpad.net/bugs/62511 # Changes: # V1.0, 23 Aug 2005, Initial release # V1.1, 26 Jul 2007, Allow both splits and laps from single invocation. # Only start timer after a key is pressed. # Indicate lap number # Cache programs at startup so there is less error # due to startup delays. # V1.2, 01 Aug 2007, Work around `date` commands that don't have # nanoseconds. # Use stty to change interrupt keys to space for # laps etc. # Ignore other input as it causes problems. # V1.3, 01 Aug 2007, Testing release. # V1.4, 02 Aug 2007, Various tweaks to get working under ubuntu # and Mac OS X. # V1.5, 27 Jun 2008, set LANG=C as got vague bug report about it. export LANG=C ulimit -c 0 # No coredumps from SIGQUIT. trap '' TSTP # Ignore Ctrl-Z just in case. save_tty=`stty -g` && trap "stty $save_tty" EXIT # Restore tty on exit. stty quit ' ' # Space for laps rather than Ctrl-\. stty eof '?' # ? for splits rather than Ctrl-D. stty -echo # Don't echo input. cache_progs() { stty > /dev/null date > /dev/null grep . < /dev/null (echo "import time" | python) 2> /dev/null bc < /dev/null sed '' < /dev/null printf '1' > /dev/null /usr/bin/time false 2> /dev/null cat < /dev/null } cache_progs # To minimise startup delay. date +%s.%N | grep -qF 'N' && use_python=1 # If `date` lacks nanoseconds. now() { if [ "$use_python" ]; then echo "import time; print time.time()" 2>/dev/null | python else printf "%.2f" `date +%s.%N` fi } fmt_seconds() { seconds=$1 mins=`echo $seconds/60 | bc` if [ "$mins" != "0" ]; then seconds=`echo "$seconds - ($mins*60)" | bc` echo "$mins:$seconds" else echo "$seconds" fi } total() { end=`now` total=`echo "$end - $start" | bc` fmt_seconds $total } stop() { [ "$lapped" ] && lap "$laptime" "display" total exit } lap() { laptime=`echo "$1" | sed -n 's/.*real[^0-9.]*\(.*\)/\1/p'` [ ! "$laptime" -o "$laptime" = "0.00" ] && return # Signals too frequent. laptotal=`echo $laptime+0$laptotal | bc` if [ "$2" = "display" ]; then lapcount=`echo 0$lapcount+1 | bc` laptime=`fmt_seconds $laptotal` echo $laptime "($lapcount)" lapped="true" laptotal="0" fi } echo -n "Space for lap | ? for split | Ctrl-C to stop | Space to start...">&2 while true; do trap true INT QUIT # Set signal handlers. laptime=`/usr/bin/time -p 2>&1 cat >/dev/null` ret=$? trap '' INT QUIT # Ignore signals within this script. if [ $ret -eq 1 -o $ret -eq 2 -o $ret -eq 130 ]; then # SIGINT = stop [ ! "$start" ] && { echo >&2; exit; } stop elif [ $ret -eq 3 -o $ret -eq 131 ]; then # SIGQUIT = lap if [ ! "$start" ]; then start=`now` || exit 1 echo >&2 continue fi lap "$laptime" "display" else # eof = split [ ! "$start" ] && continue total lap "$laptime" # Update laptotal. fi done exit $? |
Added symlinks.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 | #!/bin/bash # symlinks.sh: Lists symbolic links in a directory. directory=${1-`pwd`} # Defaults to current working directory, #+ if not otherwise specified. # Equivalent to code block below. # ---------------------------------------------------------- # ARGS=1 # Expect one command-line argument. # # if [ $# -ne "$ARGS" ] # If not 1 arg... # then # directory=`pwd` # current working directory # else # directory=$1 # fi # ---------------------------------------------------------- echo "symbolic links in directory \"$directory\"" for file in "$( find $directory -type l )" # -type l = symbolic links do echo "$file" done | sort # Otherwise file list is unsorted. # Strictly speaking, a loop isn't really necessary here, #+ since the output of the "find" command is expanded into a single word. # However, it's easy to understand and illustrative this way. # As Dominik 'Aeneas' Schnitzer points out, #+ failing to quote $( find $directory -type l ) #+ will choke on filenames with embedded whitespace. # containing whitespace. exit 0 # -------------------------------------------------------- # Jean Helou proposes the following alternative: echo "symbolic links in directory \"$directory\"" # Backup of the current IFS. One can never be too cautious. OLDIFS=$IFS IFS=: for file in $(find $directory -type l -printf "%p$IFS") do # ^^^^^^^^^^^^^^^^ echo "$file" done|sort # And, James "Mike" Conley suggests modifying Helou's code thusly: OLDIFS=$IFS IFS='' # Null IFS means no word breaks for file in $( find $directory -type l ) do echo $file done | sort # This works in the "pathological" case of a directory name having #+ an embedded colon. # "This also fixes the pathological case of the directory name having #+ a colon (or space in earlier example) as well." |
Added symlinks2.sh.
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/bash # symlinks.sh: Lists symbolic links in a directory. OUTFILE=symlinks.list # save-file directory=${1-`pwd`} # Defaults to current working directory, #+ if not otherwise specified. echo "symbolic links in directory \"$directory\"" > "$OUTFILE" echo "---------------------------" >> "$OUTFILE" for file in "$( find $directory -type l )" # -type l = symbolic links do echo "$file" done | sort >> "$OUTFILE" # stdout of loop # ^^^^^^^^^^^^^ redirected to save file. # echo "Output file = $OUTFILE" exit $? |
Added t-out.sh.
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/bash # t-out.sh [time-out] # Inspired by a suggestion from "syngin seven" (thanks). TIMELIMIT=4 # 4 seconds read -t $TIMELIMIT variable <&1 # ^^^ # In this instance, "<&1" is needed for Bash 1.x and 2.x, # but unnecessary for Bash 3+. echo if [ -z "$variable" ] # Is null? then echo "Timed out, variable still unset." else echo "variable = $variable" fi exit 0 |
Added tempfile-name.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 | #!/bin/bash # tempfile-name.sh: temp filename generator BASE_STR=`mcookie` # 32-character magic cookie. POS=11 # Arbitrary position in magic cookie string. LEN=5 # Get $LEN consecutive characters. prefix=temp # This is, after all, a "temp" file. # For more "uniqueness," generate the #+ filename prefix using the same method #+ as the suffix, below. suffix=${BASE_STR:POS:LEN} # Extract a 5-character string, #+ starting at position 11. temp_filename=$prefix.$suffix # Construct the filename. echo "Temp filename = "$temp_filename"" # sh tempfile-name.sh # Temp filename = temp.e19ea # Compare this method of generating "unique" filenames #+ with the 'date' method in ex51.sh. exit 0 |
Added test-cgi.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 | #!/bin/bash # test-cgi.sh # by Michael Zick # Used with permission # May have to change the location for your site. # (At the ISP's servers, Bash may not be in the usual place.) # Other places: /usr/bin or /usr/local/bin # Might even try it without any path in sha-bang. # Disable filename globbing. set -f # Header tells browser what to expect. echo Content-type: text/plain echo echo CGI/1.0 test script report: echo echo environment settings: set echo echo whereis bash? whereis bash echo echo who are we? echo ${BASH_VERSINFO[*]} echo echo argc is $#. argv is "$*". echo # CGI/1.0 expected environment variables. echo SERVER_SOFTWARE = $SERVER_SOFTWARE echo SERVER_NAME = $SERVER_NAME echo GATEWAY_INTERFACE = $GATEWAY_INTERFACE echo SERVER_PROTOCOL = $SERVER_PROTOCOL echo SERVER_PORT = $SERVER_PORT echo REQUEST_METHOD = $REQUEST_METHOD echo HTTP_ACCEPT = "$HTTP_ACCEPT" echo PATH_INFO = "$PATH_INFO" echo PATH_TRANSLATED = "$PATH_TRANSLATED" echo SCRIPT_NAME = "$SCRIPT_NAME" echo QUERY_STRING = "$QUERY_STRING" echo REMOTE_HOST = $REMOTE_HOST echo REMOTE_ADDR = $REMOTE_ADDR echo REMOTE_USER = $REMOTE_USER echo AUTH_TYPE = $AUTH_TYPE echo CONTENT_TYPE = $CONTENT_TYPE echo CONTENT_LENGTH = $CONTENT_LENGTH exit 0 # Here document to give short instructions. :<<-'_test_CGI_' 1) Drop this in your http://domain.name/cgi-bin directory. 2) Then, open http://domain.name/cgi-bin/test-cgi.sh. _test_CGI_ |
Added test-execution-time.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 | #!/bin/bash # test-execution-time.sh # Example by Erik Brandsberg, for testing execution time #+ of certain operations. # Referenced in the "Optimizations" section of "Miscellany" chapter. count=50000 echo "Math tests" echo "Math via \$(( ))" time for (( i=0; i< $count; i++)) do result=$(( $i%2 )) done echo "Math via *expr*:" time for (( i=0; i< $count; i++)) do result=`expr "$i%2"` done echo "Math via *let*:" time for (( i=0; i< $count; i++)) do let result=$i%2 done echo echo "Conditional testing tests" echo "Test via case:" time for (( i=0; i< $count; i++)) do case $(( $i%2 )) in 0) : ;; 1) : ;; esac done echo "Test with if [], no quotes:" time for (( i=0; i< $count; i++)) do if [ $(( $i%2 )) = 0 ]; then : else : fi done echo "Test with if [], quotes:" time for (( i=0; i< $count; i++)) do if [ "$(( $i%2 ))" = "0" ]; then : else : fi done echo "Test with if [], using -eq:" time for (( i=0; i< $count; i++)) do if [ $(( $i%2 )) -eq 0 ]; then : else : fi done exit $? |
Added test-suite.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 | #!/bin/bash # test-suite.sh # A partial Bash compatibility test suite. # Run this on your version of Bash, or some other shell. default_option=FAIL # Tests below will fail unless . . . echo echo -n "Testing " sleep 1; echo -n ". " sleep 1; echo -n ". " sleep 1; echo ". " echo # Double brackets String="Double brackets supported?" echo -n "Double brackets test: " if [[ "$String" = "Double brackets supported?" ]] then echo "PASS" else echo "FAIL" fi # Double brackets and regex matching String="Regex matching supported?" echo -n "Regex matching: " if [[ "$String" =~ R.....matching* ]] then echo "PASS" else echo "FAIL" fi # Arrays test_arr=$default_option # FAIL Array=( If supports arrays will print PASS ) test_arr=${Array[5]} echo "Array test: $test_arr" # Command Substitution csub_test () { echo "PASS" } test_csub=$default_option # FAIL test_csub=$(csub_test) echo "Command substitution test: $test_csub" echo # Completing this script is an exercise for the reader. # Add to the above similar tests for double parentheses, #+ brace expansion, process substitution, etc. exit $? |
Added timed-input.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 | #!/bin/bash # timed-input.sh # TMOUT=3 Also works, as of newer versions of Bash. TIMER_INTERRUPT=14 TIMELIMIT=3 # Three seconds in this instance. # May be set to different value. PrintAnswer() { if [ "$answer" = TIMEOUT ] then echo $answer else # Don't want to mix up the two instances. echo "Your favorite veggie is $answer" kill $! # Kills no-longer-needed TimerOn function #+ running in background. # $! is PID of last job running in background. fi } TimerOn() { sleep $TIMELIMIT && kill -s 14 $$ & # Waits 3 seconds, then sends sigalarm to script. } Int14Vector() { answer="TIMEOUT" PrintAnswer exit $TIMER_INTERRUPT } trap Int14Vector $TIMER_INTERRUPT # Timer interrupt (14) subverted for our purposes. echo "What is your favorite vegetable " TimerOn read answer PrintAnswer # Admittedly, this is a kludgy implementation of timed input. # However, the "-t" option to "read" simplifies this task. # See the "t-out.sh" script. # However, what about timing not just single user input, #+ but an entire script? # If you need something really elegant ... #+ consider writing the application in C or C++, #+ using appropriate library functions, such as 'alarm' and 'setitimer.' exit 0 |
Added timeout.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 | #!/bin/bash # timeout.sh # Written by Stephane Chazelas, #+ and modified by the document author. INTERVAL=5 # timeout interval timedout_read() { timeout=$1 varname=$2 old_tty_settings=`stty -g` stty -icanon min 0 time ${timeout}0 eval read $varname # or just read $varname stty "$old_tty_settings" # See man page for "stty." } echo; echo -n "What's your name? Quick! " timedout_read $INTERVAL your_name # This may not work on every terminal type. # The maximum timeout depends on the terminal. #+ (it is often 25.5 seconds). echo if [ ! -z "$your_name" ] # If name input before timeout ... then echo "Your name is $your_name." else echo "Timed out." fi echo # The behavior of this script differs somewhat from "timed-input.sh." # At each keystroke, the counter resets. exit 0 |
Added tohtml.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 | #!/bin/bash # tohtml.sh [v. 0.2.01, reldate: 04/13/12, a teeny bit less buggy] # Convert a text file to HTML format. # Author: Mendel Cooper # License: GPL3 # Usage: sh tohtml.sh < textfile > htmlfile # Script can easily be modified to accept source and target filenames. # Assumptions: # 1) Paragraphs in (target) text file are separated by a blank line. # 2) Jpeg images (*.jpg) are located in "images" subdirectory. # In the target file, the image names are enclosed in square brackets, # for example, [image01.jpg]. # 3) Emphasized (italic) phrases begin with a space+underscore #+ or the first character on the line is an underscore, #+ and end with an underscore+space or underscore+end-of-line. # Settings FNTSIZE=2 # Small-medium font size IMGDIR="images" # Image directory # Headers HDR01='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">' HDR02='<!-- Converted to HTML by ***tohtml.sh*** script -->' HDR03='<!-- script author: M. Leo Cooper <thegrendel.abs@gmail.com> -->' HDR10='<html>' HDR11='<head>' HDR11a='</head>' HDR12a='<title>' HDR12b='</title>' HDR121='<META NAME="GENERATOR" CONTENT="tohtml.sh script">' HDR13='<body bgcolor="#dddddd">' # Change background color to suit. HDR14a='<font size=' HDR14b='>' # Footers FTR10='</body>' FTR11='</html>' # Tags BOLD="<b>" CENTER="<center>" END_CENTER="</center>" LF="<br>" write_headers () { echo "$HDR01" echo echo "$HDR02" echo "$HDR03" echo echo echo "$HDR10" echo "$HDR11" echo "$HDR121" echo "$HDR11a" echo "$HDR13" echo echo -n "$HDR14a" echo -n "$FNTSIZE" echo "$HDR14b" echo echo "$BOLD" # Everything in bold (more easily readable). } process_text () { while read line # Read one line at a time. do { if [ ! "$line" ] # Blank line? then # Then new paragraph must follow. echo echo "$LF" # Insert two <br> tags. echo "$LF" echo continue # Skip the underscore test. else # Otherwise . . . if [[ "$line" =~ \[*jpg\] ]] # Is a graphic? then # Strip away brackets. temp=$( echo "$line" | sed -e 's/\[//' -e 's/\]//' ) line=""$CENTER" <img src="\"$IMGDIR"/$temp\"> "$END_CENTER" " # Add image tag. # And, center it. fi fi echo "$line" | grep -q _ if [ "$?" -eq 0 ] # If line contains underscore ... then # =================================================== # Convert underscored phrase to italics. temp=$( echo "$line" | sed -e 's/ _/ <i>/' -e 's/_/<\/i> /' | sed -e 's/^_/<i>/' -e 's/_/<\/i>/' ) # Process only underscores prefixed by space, #+ or at beginning or end of line. # Do not convert underscores embedded within a word! line="$temp" # Slows script execution. Can be optimized? # =================================================== fi # echo echo "$line" # echo # Don't want extra blank lines in generated text! } # End while done } # End process_text () write_footers () # Termination tags. { echo "$FTR10" echo "$FTR11" } # main () { # ========= write_headers process_text write_footers # ========= # } exit $? # Exercises: # --------- # 1) Fixup: Check for closing underscore before a comma or period. # 2) Add a test for the presence of a closing underscore #+ in phrases to be italicized. |
Added tree.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 | #!/bin/bash # tree.sh # Written by Rick Boivie. # Used with permission. # This is a revised and simplified version of a script #+ by Jordi Sanfeliu (the original author), and patched by Ian Kjos. # This script replaces the earlier version used in #+ previous releases of the Advanced Bash Scripting Guide. # Copyright (c) 2002, by Jordi Sanfeliu, Rick Boivie, and Ian Kjos. # ==> Comments added by the author of this document. search () { for dir in `echo *` # ==> `echo *` lists all the files in current working directory, #+ ==> without line breaks. # ==> Similar effect to for dir in * # ==> but "dir in `echo *`" will not handle filenames with blanks. do if [ -d "$dir" ] ; then # ==> If it is a directory (-d)... zz=0 # ==> Temp variable, keeping track of # directory level. while [ $zz != $1 ] # Keep track of inner nested loop. do echo -n "| " # ==> Display vertical connector symbol, # ==> with 2 spaces & no line feed # in order to indent. zz=`expr $zz + 1` # ==> Increment zz. done if [ -L "$dir" ] ; then # ==> If directory is a symbolic link... echo "+---$dir" `ls -l $dir | sed 's/^.*'$dir' //'` # ==> Display horiz. connector and list directory name, but... # ==> delete date/time part of long listing. else echo "+---$dir" # ==> Display horizontal connector symbol... # ==> and print directory name. numdirs=`expr $numdirs + 1` # ==> Increment directory count. if cd "$dir" ; then # ==> If can move to subdirectory... search `expr $1 + 1` # with recursion ;-) # ==> Function calls itself. cd .. fi fi fi done } if [ $# != 0 ] ; then cd $1 # Move to indicated directory. #else # stay in current directory fi echo "Initial directory = `pwd`" numdirs=0 search 0 echo "Total directories = $numdirs" exit 0 |
Added tree2.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 | #!/bin/bash # tree2.sh # Lightly modified/reformatted by ABS Guide author. # Included in ABS Guide with permission of script author (thanks!). ## Recursive file/dirsize checking script, by Patsie ## ## This script builds a list of files/directories and their size (du -akx) ## and processes this list to a human readable tree shape ## The 'du -akx' is only as good as the permissions the owner has. ## So preferably run as root* to get the best results, or use only on ## directories for which you have read permissions. Anything you can't ## read is not in the list. #* ABS Guide author advises caution when running scripts as root! ########## THIS IS CONFIGURABLE ########## TOP=5 # Top 5 biggest (sub)directories. MAXRECURS=5 # Max 5 subdirectories/recursions deep. E_BL=80 # Blank line already returned. E_DIR=81 # Directory not specified. ########## DON'T CHANGE ANYTHING BELOW THIS LINE ########## PID=$$ # Our own process ID. SELF=`basename $0` # Our own program name. TMP="/tmp/${SELF}.${PID}.tmp" # Temporary 'du' result. # Convert number to dotted thousand. function dot { echo " $*" | sed -e :a -e 's/\(.*[0-9]\)\([0-9]\{3\}\)/\1,\2/;ta' | tail -c 12; } # Usage: tree <recursion> <indent prefix> <min size> <directory> function tree { recurs="$1" # How deep nested are we? prefix="$2" # What do we display before file/dirname? minsize="$3" # What is the minumum file/dirsize? dirname="$4" # Which directory are we checking? # Get ($TOP) biggest subdirs/subfiles from TMP file. LIST=`egrep "[[:space:]]${dirname}/[^/]*$" "$TMP" | awk '{if($1>'$minsize') print;}' | sort -nr | head -$TOP` [ -z "$LIST" ] && return # Empty list, then go back. cnt=0 num=`echo "$LIST" | wc -l` # How many entries in the list. ## Main loop echo "$LIST" | while read size name; do ((cnt+=1)) # Count entry number. bname=`basename "$name"` # We only need a basename of the entry. [ -d "$name" ] && bname="$bname/" # If it's a directory, append a slash. echo "`dot $size`$prefix +-$bname" # Display the result. # Call ourself recursively if it's a directory #+ and we're not nested too deep ($MAXRECURS). # The recursion goes up: $((recurs+1)) # The prefix gets a space if it's the last entry, #+ or a pipe if there are more entries. # The minimum file/dirsize becomes #+ a tenth of his parent: $((size/10)). # Last argument is the full directory name to check. if [ -d "$name" -a $recurs -lt $MAXRECURS ]; then [ $cnt -lt $num ] \ || (tree $((recurs+1)) "$prefix " $((size/10)) "$name") \ && (tree $((recurs+1)) "$prefix |" $((size/10)) "$name") fi done [ $? -eq 0 ] && echo " $prefix" # Every time we jump back add a 'blank' line. return $E_BL # We return 80 to tell we added a blank line already. } ### ### ### main program ### ### ### rootdir="$@" [ -d "$rootdir" ] || { echo "$SELF: Usage: $SELF <directory>" >&2; exit $E_DIR; } # We should be called with a directory name. echo "Building inventory list, please wait ..." # Show "please wait" message. du -akx "$rootdir" 1>"$TMP" 2>/dev/null # Build a temporary list of all files/dirs and their size. size=`tail -1 "$TMP" | awk '{print $1}'` # What is our rootdirectory's size? echo "`dot $size` $rootdir" # Display rootdirectory's entry. tree 0 "" 0 "$rootdir" # Display the tree below our rootdirectory. rm "$TMP" 2>/dev/null # Clean up TMP file. exit $? |
Added twodim.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 | #!/bin/bash # twodim.sh: Simulating a two-dimensional array. # A one-dimensional array consists of a single row. # A two-dimensional array stores rows sequentially. Rows=5 Columns=5 # 5 X 5 Array. declare -a alpha # char alpha [Rows] [Columns]; # Unnecessary declaration. Why? load_alpha () { local rc=0 local index for i in A B C D E F G H I J K L M N O P Q R S T U V W X Y do # Use different symbols if you like. local row=`expr $rc / $Columns` local column=`expr $rc % $Rows` let "index = $row * $Rows + $column" alpha[$index]=$i # alpha[$row][$column] let "rc += 1" done # Simpler would be #+ declare -a alpha=( A B C D E F G H I J K L M N O P Q R S T U V W X Y ) #+ but this somehow lacks the "flavor" of a two-dimensional array. } print_alpha () { local row=0 local index echo while [ "$row" -lt "$Rows" ] # Print out in "row major" order: do #+ columns vary, #+ while row (outer loop) remains the same. local column=0 echo -n " " # Lines up "square" array with rotated one. while [ "$column" -lt "$Columns" ] do let "index = $row * $Rows + $column" echo -n "${alpha[index]} " # alpha[$row][$column] let "column += 1" done let "row += 1" echo done # The simpler equivalent is # echo ${alpha[*]} | xargs -n $Columns echo } filter () # Filter out negative array indices. { echo -n " " # Provides the tilt. # Explain how. if [[ "$1" -ge 0 && "$1" -lt "$Rows" && "$2" -ge 0 && "$2" -lt "$Columns" ]] then let "index = $1 * $Rows + $2" # Now, print it rotated. echo -n " ${alpha[index]}" # alpha[$row][$column] fi } rotate () # Rotate the array 45 degrees -- { #+ "balance" it on its lower lefthand corner. local row local column for (( row = Rows; row > -Rows; row-- )) do # Step through the array backwards. Why? for (( column = 0; column < Columns; column++ )) do if [ "$row" -ge 0 ] then let "t1 = $column - $row" let "t2 = $column" else let "t1 = $column" let "t2 = $column + $row" fi filter $t1 $t2 # Filter out negative array indices. # What happens if you don't do this? done echo; echo done # Array rotation inspired by examples (pp. 143-146) in #+ "Advanced C Programming on the IBM PC," by Herbert Mayer #+ (see bibliography). # This just goes to show that much of what can be done in C #+ can also be done in shell scripting. } #--------------- Now, let the show begin. ------------# load_alpha # Load the array. print_alpha # Print it out. rotate # Rotate it 45 degrees counterclockwise. #-----------------------------------------------------# exit 0 # This is a rather contrived, not to mention inelegant simulation. # Exercises: # --------- # 1) Rewrite the array loading and printing functions # in a more intuitive and less kludgy fashion. # # 2) Figure out how the array rotation functions work. # Hint: think about the implications of backwards-indexing an array. # # 3) Rewrite this script to handle a non-square array, # such as a 6 X 4 one. # Try to minimize "distortion" when the array is rotated. |
Added unalias.sh.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash # unalias.sh shopt -s expand_aliases # Enables alias expansion. alias llm='ls -al | more' llm echo unalias llm # Unset alias. llm # Error message results, since 'llm' no longer recognized. exit 0 |
Added unit-conversion.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 | #!/bin/bash # unit-conversion.sh # Must have 'units' utility installed. convert_units () # Takes as arguments the units to convert. { cf=$(units "$1" "$2" | sed --silent -e '1p' | awk '{print $2}') # Strip off everything except the actual conversion factor. echo "$cf" } Unit1=miles Unit2=meters cfactor=`convert_units $Unit1 $Unit2` quantity=3.73 result=$(echo $quantity*$cfactor | bc) echo "There are $result $Unit2 in $quantity $Unit1." # What happens if you pass incompatible units, #+ such as "acres" and "miles" to the function? exit 0 # Exercise: Edit this script to accept command-line parameters, # with appropriate error checking, of course. |
Added unprotect_literal.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 | #! /bin/bash # unprotect_literal.sh # set -vx :<<-'_UnProtect_Literal_String_Doc' Copyright (c) Michael S. Zick, 2003; All Rights Reserved License: Unrestricted reuse in any form, for any purpose. Warranty: None Revision: $ID$ Documentation redirected to the Bash no-operation. Bash will '/dev/null' this block when the script is first read. (Uncomment the above set command to see this action.) Remove the first (Sha-Bang) line when sourcing this as a library procedure. Also comment out the example use code in the two places where shown. Usage: Complement of the "$(_pls 'Literal String')" function. (See the protect_literal.sh example.) StringVar=$(_upls ProtectedSringVariable) Does: When used on the right-hand-side of an assignment statement; makes the substitions embedded in the protected string. Notes: The strange names (_*) are used to avoid trampling on the user's chosen names when this is sourced as a library. _UnProtect_Literal_String_Doc _upls() { local IFS=$'x1B' # \ESC character (not required) eval echo $@ # Substitution on the glob. } # :<<-'_UnProtect_Literal_String_Test' # # # Remove the above "# " to disable this code. # # # _pls() { local IFS=$'x1B' # \ESC character (not required) echo $'\x27'$@$'\x27' # Hard quoted parameter glob } # Declare an array for test values. declare -a arrayZ # Assign elements with various types of quotes and escapes. arrayZ=( zero "$(_pls 'Hello ${Me}')" 'Hello ${You}' "\'Pass: ${pw}\'" ) # Now make an assignment with that result. declare -a array2=( ${arrayZ[@]} ) # Which yielded: # - - Test Three - - # Element 0: zero is: 4 long # Our marker element. # Element 1: Hello ${Me} is: 11 long # Intended result. # Element 2: Hello is: 5 long # ${You} expanded to nothing. # Element 3: 'Pass: is: 6 long # Split on the whitespace. # Element 4: ' is: 1 long # The end quote is here now. # set -vx # Initialize 'Me' to something for the embedded ${Me} substitution. # This needs to be done ONLY just prior to evaluating the #+ protected string. # (This is why it was protected to begin with.) Me="to the array guy." # Set a string variable destination to the result. newVar=$(_upls ${array2[1]}) # Show what the contents are. echo $newVar # Do we really need a function to do this? newerVar=$(eval echo ${array2[1]}) echo $newerVar # I guess not, but the _upls function gives us a place to hang #+ the documentation on. # This helps when we forget what a # construction like: #+ $(eval echo ... ) means. # What if Me isn't set when the protected string is evaluated? unset Me newestVar=$(_upls ${array2[1]}) echo $newestVar # Just gone, no hints, no runs, no errors. # Why in the world? # Setting the contents of a string variable containing character #+ sequences that have a meaning in Bash is a general problem in #+ script programming. # # This problem is now solved in eight lines of code #+ (and four pages of description). # Where is all this going? # Dynamic content Web pages as an array of Bash strings. # Content set per request by a Bash 'eval' command #+ on the stored page template. # Not intended to replace PHP, just an interesting thing to do. ### # Don't have a webserver application? # No problem, check the example directory of the Bash source; #+ there is a Bash script for that also. # _UnProtect_Literal_String_Test # # # Remove the above "# " to disable this code. # # # exit 0 |
Added unset.sh.
> > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/bash # unset.sh: Unsetting a variable. variable=hello # Initialized. echo "variable = $variable" unset variable # Unset. # In this particular context, #+ same effect as: variable= echo "(unset) variable = $variable" # $variable is null. if [ -z "$variable" ] # Try a string-length test. then echo "\$variable has zero length." fi exit 0 |
Added upperconv.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 | #!/bin/bash # upperconv.sh # Converts a specified input file to uppercase. E_FILE_ACCESS=70 E_WRONG_ARGS=71 if [ ! -r "$1" ] # Is specified input file readable? then echo "Can't read from input file!" echo "Usage: $0 input-file output-file" exit $E_FILE_ACCESS fi # Will exit with same error #+ even if input file ($1) not specified (why?). if [ -z "$2" ] then echo "Need to specify output file." echo "Usage: $0 input-file output-file" exit $E_WRONG_ARGS fi exec 4<&0 exec < $1 # Will read from input file. exec 7>&1 exec > $2 # Will write to output file. # Assumes output file writable (add check?). # ----------------------------------------------- cat - | tr a-z A-Z # Uppercase conversion. # ^^^^^ # Reads from stdin. # ^^^^^^^^^^ # Writes to stdout. # However, both stdin and stdout were redirected. # Note that the 'cat' can be omitted. # ----------------------------------------------- exec 1>&7 7>&- # Restore stout. exec 0<&4 4<&- # Restore stdin. # After restoration, the following line prints to stdout as expected. echo "File \"$1\" written to \"$2\" as uppercase conversion." exit 0 |
Added usage-message.sh.
> > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/bash # usage-message.sh : ${1?"Usage: $0 ARGUMENT"} # Script exits here if command-line parameter absent, #+ with following error message. # usage-message.sh: 1: Usage: usage-message.sh ARGUMENT echo "These two lines echo only if command-line parameter given." echo "command-line parameter = \"$1\"" exit 0 # Will exit here only if command-line parameter present. # Check the exit status, both with and without command-line parameter. # If command-line parameter present, then "$?" is 0. # If not, then "$?" is 1. |
Added usb.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 | #!/bin/bash # ==> usb.sh # ==> Script for mounting and installing pen/keychain USB storage devices. # ==> Runs as root at system startup (see below). # ==> # ==> Newer Linux distros (2004 or later) autodetect # ==> and install USB pen drives, and therefore don't need this script. # ==> But, it's still instructive. # This code is free software covered by GNU GPL license version 2 or above. # Please refer to http://www.gnu.org/ for the full license text. # # Some code lifted from usb-mount by Michael Hamilton's usb-mount (LGPL) #+ see http://users.actrix.co.nz/michael/usbmount.html # # INSTALL # ------- # Put this in /etc/hotplug/usb/diskonkey. # Then look in /etc/hotplug/usb.distmap, and copy all usb-storage entries #+ into /etc/hotplug/usb.usermap, substituting "usb-storage" for "diskonkey". # Otherwise this code is only run during the kernel module invocation/removal #+ (at least in my tests), which defeats the purpose. # # TODO # ---- # Handle more than one diskonkey device at one time (e.g. /dev/diskonkey1 #+ and /mnt/diskonkey1), etc. The biggest problem here is the handling in #+ devlabel, which I haven't yet tried. # # AUTHOR and SUPPORT # ------------------ # Konstantin Riabitsev, <icon linux duke edu>. # Send any problem reports to my email address at the moment. # # ==> Comments added by ABS Guide author. SYMLINKDEV=/dev/diskonkey MOUNTPOINT=/mnt/diskonkey DEVLABEL=/sbin/devlabel DEVLABELCONFIG=/etc/sysconfig/devlabel IAM=$0 ## # Functions lifted near-verbatim from usb-mount code. # function allAttachedScsiUsb { find /proc/scsi/ -path '/proc/scsi/usb-storage*' -type f | xargs grep -l 'Attached: Yes' } function scsiDevFromScsiUsb { echo $1 | awk -F"[-/]" '{ n=$(NF-1); print "/dev/sd" substr("abcdefghijklmnopqrstuvwxyz", n+1, 1) }' } if [ "${ACTION}" = "add" ] && [ -f "${DEVICE}" ]; then ## # lifted from usbcam code. # if [ -f /var/run/console.lock ]; then CONSOLEOWNER=`cat /var/run/console.lock` elif [ -f /var/lock/console.lock ]; then CONSOLEOWNER=`cat /var/lock/console.lock` else CONSOLEOWNER= fi for procEntry in $(allAttachedScsiUsb); do scsiDev=$(scsiDevFromScsiUsb $procEntry) # Some bug with usb-storage? # Partitions are not in /proc/partitions until they are accessed #+ somehow. /sbin/fdisk -l $scsiDev >/dev/null ## # Most devices have partitioning info, so the data would be on #+ /dev/sd?1. However, some stupider ones don't have any partitioning #+ and use the entire device for data storage. This tries to #+ guess semi-intelligently if we have a /dev/sd?1 and if not, then #+ it uses the entire device and hopes for the better. # if grep -q `basename $scsiDev`1 /proc/partitions; then part="$scsiDev""1" else part=$scsiDev fi ## # Change ownership of the partition to the console user so they can #+ mount it. # if [ ! -z "$CONSOLEOWNER" ]; then chown $CONSOLEOWNER:disk $part fi ## # This checks if we already have this UUID defined with devlabel. # If not, it then adds the device to the list. # prodid=`$DEVLABEL printid -d $part` if ! grep -q $prodid $DEVLABELCONFIG; then # cross our fingers and hope it works $DEVLABEL add -d $part -s $SYMLINKDEV 2>/dev/null fi ## # Check if the mount point exists and create if it doesn't. # if [ ! -e $MOUNTPOINT ]; then mkdir -p $MOUNTPOINT fi ## # Take care of /etc/fstab so mounting is easy. # if ! grep -q "^$SYMLINKDEV" /etc/fstab; then # Add an fstab entry echo -e \ "$SYMLINKDEV\t\t$MOUNTPOINT\t\tauto\tnoauto,owner,kudzu 0 0" \ >> /etc/fstab fi done if [ ! -z "$REMOVER" ]; then ## # Make sure this script is triggered on device removal. # mkdir -p `dirname $REMOVER` ln -s $IAM $REMOVER fi elif [ "${ACTION}" = "remove" ]; then ## # If the device is mounted, unmount it cleanly. # if grep -q "$MOUNTPOINT" /etc/mtab; then # unmount cleanly umount -l $MOUNTPOINT fi ## # Remove it from /etc/fstab if it's there. # if grep -q "^$SYMLINKDEV" /etc/fstab; then grep -v "^$SYMLINKDEV" /etc/fstab > /etc/.fstab.new mv -f /etc/.fstab.new /etc/fstab fi fi exit 0 |
Added userlist.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 | #!/bin/bash # userlist.sh PASSWORD_FILE=/etc/passwd n=1 # User number for name in $(awk 'BEGIN{FS=":"}{print $1}' < "$PASSWORD_FILE" ) # Field separator = : ^^^^^^ # Print first field ^^^^^^^^ # Get input from password file /etc/passwd ^^^^^^^^^^^^^^^^^ do echo "USER #$n = $name" let "n += 1" done # USER #1 = root # USER #2 = bin # USER #3 = daemon # ... # USER #33 = bozo exit $? # Discussion: # ---------- # How is it that an ordinary user, or a script run by same, #+ can read /etc/passwd? (Hint: Check the /etc/passwd file permissions.) # Is this a security hole? Why or why not? |
Added usrmnt.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 | #!/bin/bash # usrmnt.sh, written by Anthony Richardson # Used in ABS Guide with permission. # usage: usrmnt.sh # description: mount device, invoking user must be listed in the # MNTUSERS group in the /etc/sudoers file. # ---------------------------------------------------------- # This is a usermount script that reruns itself using sudo. # A user with the proper permissions only has to type # usermount /dev/fd0 /mnt/floppy # instead of # sudo usermount /dev/fd0 /mnt/floppy # I use this same technique for all of my #+ sudo scripts, because I find it convenient. # ---------------------------------------------------------- # If SUDO_COMMAND variable is not set we are not being run through #+ sudo, so rerun ourselves. Pass the user's real and group id . . . if [ -z "$SUDO_COMMAND" ] then mntusr=$(id -u) grpusr=$(id -g) sudo $0 $* exit 0 fi # We will only get here if we are being run by sudo. /bin/mount $* -o uid=$mntusr,gid=$grpusr exit 0 # Additional notes (from the author of this script): # ------------------------------------------------- # 1) Linux allows the "users" option in the /etc/fstab # file so that any user can mount removable media. # But, on a server, I like to allow only a few # individuals access to removable media. # I find using sudo gives me more control. # 2) I also find sudo to be more convenient than # accomplishing this task through groups. # 3) This method gives anyone with proper permissions # root access to the mount command, so be careful # about who you allow access. # You can get finer control over which access can be mounted # by using this same technique in separate mntfloppy, mntcdrom, # and mntsamba scripts. |
Added var-match.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 | #!/bin/bash # var-match.sh: # Demo of pattern replacement at prefix / suffix of string. v0=abc1234zip1234abc # Original variable. echo "v0 = $v0" # abc1234zip1234abc echo # Match at prefix (beginning) of string. v1=${v0/#abc/ABCDEF} # abc1234zip1234abc # |-| echo "v1 = $v1" # ABCDEF1234zip1234abc # |----| # Match at suffix (end) of string. v2=${v0/%abc/ABCDEF} # abc1234zip123abc # |-| echo "v2 = $v2" # abc1234zip1234ABCDEF # |----| echo # ---------------------------------------------------- # Must match at beginning / end of string, #+ otherwise no replacement results. # ---------------------------------------------------- v3=${v0/#123/000} # Matches, but not at beginning. echo "v3 = $v3" # abc1234zip1234abc # NO REPLACEMENT. v4=${v0/%123/000} # Matches, but not at end. echo "v4 = $v4" # abc1234zip1234abc # NO REPLACEMENT. exit 0 |
Added vartrace.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 | #!/bin/bash trap 'echo "VARIABLE-TRACE> \$variable = \"$variable\""' DEBUG # Echoes the value of $variable after every command. variable=29; line=$LINENO echo " Just initialized \$variable to $variable in line number $line." let "variable *= 3"; line=$LINENO echo " Just multiplied \$variable by 3 in line number $line." exit 0 # The "trap 'command1 . . . command2 . . .' DEBUG" construct is #+ more appropriate in the context of a complex script, #+ where inserting multiple "echo $variable" statements might be #+ awkward and time-consuming. # Thanks, Stephane Chazelas for the pointer. Output of script: VARIABLE-TRACE> $variable = "" VARIABLE-TRACE> $variable = "29" Just initialized $variable to 29. VARIABLE-TRACE> $variable = "29" VARIABLE-TRACE> $variable = "87" Just multiplied $variable by 3. VARIABLE-TRACE> $variable = "87" |
Added viewdata.sh.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash # viewdata.sh # Conversion of VIEWDATA.BAT to shell script. DATAFILE=/home/bozo/datafiles/book-collection.data ARGNO=1 # @ECHO OFF Command unnecessary here. if [ $# -lt "$ARGNO" ] # IF !%1==! GOTO VIEWDATA then less $DATAFILE # TYPE C:\MYDIR\BOOKLIST.TXT | MORE else grep "$1" $DATAFILE # FIND "%1" C:\MYDIR\BOOKLIST.TXT fi exit 0 # :EXIT0 # GOTOs, labels, smoke-and-mirrors, and flimflam unnecessary. # The converted script is short, sweet, and clean, #+ which is more than can be said for the original. |
Added weirdvars.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 | #!/bin/bash # weirdvars.sh: Echoing weird variables. echo var="'(]\\{}\$\"" echo $var # '(]\{}$" echo "$var" # '(]\{}$" Doesn't make a difference. echo IFS='\' echo $var # '(] {}$" \ converted to space. Why? echo "$var" # '(]\{}$" # Examples above supplied by Stephane Chazelas. echo var2="\\\\\"" echo $var2 # " echo "$var2" # \\" echo # But ... var2="\\\\"" is illegal. Why? var3='\\\\' echo "$var3" # \\\\ # Strong quoting works, though. # ************************************************************ # # As the first example above shows, nesting quotes is permitted. echo "$(echo '"')" # " # ^ ^ # At times this comes in useful. var1="Two bits" echo "\$var1 = "$var1"" # $var1 = Two bits # ^ ^ # Or, as Chris Hiestand points out ... if [[ "$(du "$My_File1")" -gt "$(du "$My_File2")" ]] # ^ ^ ^ ^ ^ ^ ^ ^ then ... fi # ************************************************************ # |
Added wf.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 | #!/bin/bash # wf.sh: Crude word frequency analysis on a text file. # This is a more efficient version of the "wf2.sh" script. # Check for input file on command-line. ARGS=1 E_BADARGS=85 E_NOFILE=86 if [ $# -ne "$ARGS" ] # Correct number of arguments passed to script? then echo "Usage: `basename $0` filename" exit $E_BADARGS fi if [ ! -f "$1" ] # Check if file exists. then echo "File \"$1\" does not exist." exit $E_NOFILE fi ######################################################## # main () sed -e 's/\.//g' -e 's/\,//g' -e 's/ /\ /g' "$1" | tr 'A-Z' 'a-z' | sort | uniq -c | sort -nr # ========================= # Frequency of occurrence # Filter out periods and commas, and #+ change space between words to linefeed, #+ then shift characters to lowercase, and #+ finally prefix occurrence count and sort numerically. # Arun Giridhar suggests modifying the above to: # . . . | sort | uniq -c | sort +1 [-f] | sort +0 -nr # This adds a secondary sort key, so instances of #+ equal occurrence are sorted alphabetically. # As he explains it: # "This is effectively a radix sort, first on the #+ least significant column #+ (word or string, optionally case-insensitive) #+ and last on the most significant column (frequency)." # # As Frank Wang explains, the above is equivalent to #+ . . . | sort | uniq -c | sort +0 -nr #+ and the following also works: #+ . . . | sort | uniq -c | sort -k1nr -k ######################################################## exit 0 # Exercises: # --------- # 1) Add 'sed' commands to filter out other punctuation, #+ such as semicolons. # 2) Modify the script to also filter out multiple spaces and #+ other whitespace. |
Added wf2.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 | #!/bin/bash # wf2.sh: Crude word frequency analysis on a text file. # Uses 'xargs' to decompose lines of text into single words. # Compare this example to the "wf.sh" script later on. # Check for input file on command-line. ARGS=1 E_BADARGS=85 E_NOFILE=86 if [ $# -ne "$ARGS" ] # Correct number of arguments passed to script? then echo "Usage: `basename $0` filename" exit $E_BADARGS fi if [ ! -f "$1" ] # Does file exist? then echo "File \"$1\" does not exist." exit $E_NOFILE fi ##################################################### cat "$1" | xargs -n1 | \ # List the file, one word per line. tr A-Z a-z | \ # Shift characters to lowercase. sed -e 's/\.//g' -e 's/\,//g' -e 's/ /\ /g' | \ # Filter out periods and commas, and #+ change space between words to linefeed, sort | uniq -c | sort -nr # Finally remove duplicates, prefix occurrence count #+ and sort numerically. ##################################################### # This does the same job as the "wf.sh" example, #+ but a bit more ponderously, and it runs more slowly (why?). exit $? |
Added wgetter2.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | #!/bin/bash # wgetter2.bash # Author: Little Monster [monster@monstruum.co.uk] # ==> Used in ABS Guide with permission of script author. # ==> This script still needs debugging and fixups (exercise for reader). # ==> It could also use some additional editing in the comments. # This is wgetter2 -- #+ a Bash script to make wget a bit more friendly, and save typing. # Carefully crafted by Little Monster. # More or less complete on 02/02/2005. # If you think this script can be improved, #+ email me at: monster@monstruum.co.uk # ==> and cc: to the author of the ABS Guide, please. # This script is licenced under the GPL. # You are free to copy, alter and re-use it, #+ but please don't try to claim you wrote it. # Log your changes here instead. # ======================================================================= # changelog: # 07/02/2005. Fixups by Little Monster. # 02/02/2005. Minor additions by Little Monster. # (See after # +++++++++++ ) # 29/01/2005. Minor stylistic edits and cleanups by author of ABS Guide. # Added exit error codes. # 22/11/2004. Finished initial version of second version of wgetter: # wgetter2 is born. # 01/12/2004. Changed 'runn' function so it can be run 2 ways -- # either ask for a file name or have one input on the CL. # 01/12/2004. Made sensible handling of no URL's given. # 01/12/2004. Made loop of main options, so you don't # have to keep calling wgetter 2 all the time. # Runs as a session instead. # 01/12/2004. Added looping to 'runn' function. # Simplified and improved. # 01/12/2004. Added state to recursion setting. # Enables re-use of previous value. # 05/12/2004. Modified the file detection routine in the 'runn' function # so it's not fooled by empty values, and is cleaner. # 01/02/2004. Added cookie finding routine from later version (which # isn't ready yet), so as not to have hard-coded paths. # ======================================================================= # Error codes for abnormal exit. E_USAGE=67 # Usage message, then quit. E_NO_OPTS=68 # No command-line args entered. E_NO_URLS=69 # No URLs passed to script. E_NO_SAVEFILE=70 # No save filename passed to script. E_USER_EXIT=71 # User decides to quit. # Basic default wget command we want to use. # This is the place to change it, if required. # NB: if using a proxy, set http_proxy = yourproxy in .wgetrc. # Otherwise delete --proxy=on, below. # ==================================================================== CommandA="wget -nc -c -t 5 --progress=bar --random-wait --proxy=on -r" # ==================================================================== # -------------------------------------------------------------------- # Set some other variables and explain them. pattern=" -A .jpg,.JPG,.jpeg,.JPEG,.gif,.GIF,.htm,.html,.shtml,.php" # wget's option to only get certain types of file. # comment out if not using today=`date +%F` # Used for a filename. home=$HOME # Set HOME to an internal variable. # In case some other path is used, change it here. depthDefault=3 # Set a sensible default recursion. Depth=$depthDefault # Otherwise user feedback doesn't tie in properly. RefA="" # Set blank referring page. Flag="" # Default to not saving anything, #+ or whatever else might be wanted in future. lister="" # Used for passing a list of urls directly to wget. Woptions="" # Used for passing wget some options for itself. inFile="" # Used for the run function. newFile="" # Used for the run function. savePath="$home/w-save" Config="$home/.wgetter2rc" # This is where some variables can be stored, #+ if permanently changed from within the script. Cookie_List="$home/.cookielist" # So we know where the cookies are kept . . . cFlag="" # Part of the cookie file selection routine. # Define the options available. Easy to change letters here if needed. # These are the optional options; you don't just wait to be asked. save=s # Save command instead of executing it. cook=c # Change cookie file for this session. help=h # Usage guide. list=l # Pass wget the -i option and URL list. runn=r # Run saved commands as an argument to the option. inpu=i # Run saved commands interactively. wopt=w # Allow to enter options to pass directly to wget. # -------------------------------------------------------------------- if [ -z "$1" ]; then # Make sure we get something for wget to eat. echo "You must at least enter a URL or option!" echo "-$help for usage." exit $E_NO_OPTS fi # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ # added added added added added added added added added added added added if [ ! -e "$Config" ]; then # See if configuration file exists. echo "Creating configuration file, $Config" echo "# This is the configuration file for wgetter2" > "$Config" echo "# Your customised settings will be saved in this file" >> "$Config" else source $Config # Import variables we set outside the script. fi if [ ! -e "$Cookie_List" ]; then # Set up a list of cookie files, if there isn't one. echo "Hunting for cookies . . ." find -name cookies.txt >> $Cookie_List # Create the list of cookie files. fi # Isolate this in its own 'if' statement, #+ in case we got interrupted while searching. if [ -z "$cFlag" ]; then # If we haven't already done this . . . echo # Make a nice space after the command prompt. echo "Looks like you haven't set up your source of cookies yet." n=0 # Make sure the counter #+ doesn't contain random values. while read; do Cookies[$n]=$REPLY # Put the cookie files we found into an array. echo "$n) ${Cookies[$n]}" # Create a menu. n=$(( n + 1 )) # Increment the counter. done < $Cookie_List # Feed the read statement. echo "Enter the number of the cookie file you want to use." echo "If you won't be using cookies, just press RETURN." echo echo "I won't be asking this again. Edit $Config" echo "If you decide to change at a later date" echo "or use the -${cook} option for per session changes." read if [ ! -z $REPLY ]; then # User didn't just press return. Cookie=" --load-cookies ${Cookies[$REPLY]}" # Set the variable here as well as in the config file. echo "Cookie=\" --load-cookies ${Cookies[$REPLY]}\"" >> $Config fi echo "cFlag=1" >> $Config # So we know not to ask again. fi # end added section end added section end added section end added section # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ # Another variable. # This one may or may not be subject to variation. # A bit like the small print. CookiesON=$Cookie # echo "cookie file is $CookiesON" # For debugging. # echo "home is ${home}" # For debugging. # Got caught with this one! wopts() { echo "Enter options to pass to wget." echo "It is assumed you know what you're doing." echo echo "You can pass their arguments here too." # That is to say, everything passed here is passed to wget. read Wopts # Read in the options to be passed to wget. Woptions=" $Wopts" # ^ Why the leading space? # Assign to another variable. # Just for fun, or something . . . echo "passing options ${Wopts} to wget" # Mainly for debugging. # Is cute. return } save_func() { echo "Settings will be saved." if [ ! -d $savePath ]; then # See if directory exists. mkdir $savePath # Create the directory to save things in #+ if it isn't already there. fi Flag=S # Tell the final bit of code what to do. # Set a flag since stuff is done in main. return } usage() # Tell them how it works. { echo "Welcome to wgetter. This is a front end to wget." echo "It will always run wget with these options:" echo "$CommandA" echo "and the pattern to match: $pattern \ (which you can change at the top of this script)." echo "It will also ask you for recursion depth, \ and if you want to use a referring page." echo "Wgetter accepts the following options:" echo "" echo "-$help : Display this help." echo "-$save : Save the command to a file $savePath/wget-($today) \ instead of running it." echo "-$runn : Run saved wget commands instead of starting a new one -" echo "Enter filename as argument to this option." echo "-$inpu : Run saved wget commands interactively --" echo "The script will ask you for the filename." echo "-$cook : Change the cookies file for this session." echo "-$list : Tell wget to use URL's from a list instead of \ from the command-line." echo "-$wopt : Pass any other options direct to wget." echo "" echo "See the wget man page for additional options \ you can pass to wget." echo "" exit $E_USAGE # End here. Don't process anything else. } list_func() # Gives the user the option to use the -i option to wget, #+ and a list of URLs. { while [ 1 ]; do echo "Enter the name of the file containing URL's (press q to change your mind)." read urlfile if [ ! -e "$urlfile" ] && [ "$urlfile" != q ]; then # Look for a file, or the quit option. echo "That file does not exist!" elif [ "$urlfile" = q ]; then # Check quit option. echo "Not using a url list." return else echo "using $urlfile." echo "If you gave url's on the command-line, I'll use those first." # Report wget standard behaviour to the user. lister=" -i $urlfile" # This is what we want to pass to wget. return fi done } cookie_func() # Give the user the option to use a different cookie file. { while [ 1 ]; do echo "Change the cookies file. Press return if you don't want to change it." read Cookies # NB: this is not the same as Cookie, earlier. # There is an 's' on the end. # Bit like chocolate chips. if [ -z "$Cookies" ]; then # Escape clause for wusses. return elif [ ! -e "$Cookies" ]; then echo "File does not exist. Try again." # Keep em going . . . else CookiesON=" --load-cookies $Cookies" # File is good -- use it! return fi done } run_func() { if [ -z "$OPTARG" ]; then # Test to see if we used the in-line option or the query one. if [ ! -d "$savePath" ]; then # If directory doesn't exist . . . echo "$savePath does not appear to exist." echo "Please supply path and filename of saved wget commands:" read newFile until [ -f "$newFile" ]; do # Keep going till we get something. echo "Sorry, that file does not exist. Please try again." # Try really hard to get something. read newFile done # ----------------------------------------------------------------------- # if [ -z ( grep wget ${newfile} ) ]; then # Assume they haven't got the right file and bail out. # echo "Sorry, that file does not contain wget commands. Aborting." # exit # fi # # This is bogus code. # It doesn't actually work. # If anyone wants to fix it, feel free! # ----------------------------------------------------------------------- filePath="${newFile}" else echo "Save path is $savePath" echo "Please enter name of the file which you want to use." echo "You have a choice of:" ls $savePath # Give them a choice. read inFile until [ -f "$savePath/$inFile" ]; do # Keep going till #+ we get something. if [ ! -f "${savePath}/${inFile}" ]; then # If file doesn't exist. echo "Sorry, that file does not exist. Please choose from:" ls $savePath # If a mistake is made. read inFile fi done filePath="${savePath}/${inFile}" # Make one variable . . . fi else filePath="${savePath}/${OPTARG}" # Which can be many things . . . fi if [ ! -f "$filePath" ]; then # If a bogus file got through. echo "You did not specify a suitable file." echo "Run this script with the -${save} option first." echo "Aborting." exit $E_NO_SAVEFILE fi echo "Using: $filePath" while read; do eval $REPLY echo "Completed: $REPLY" done < $filePath # Feed the actual file we are using into a 'while' loop. exit } # Fish out any options we are using for the script. # This is based on the demo in "Learning The Bash Shell" (O'Reilly). while getopts ":$save$cook$help$list$runn:$inpu$wopt" opt do case $opt in $save) save_func;; # Save some wgetter sessions for later. $cook) cookie_func;; # Change cookie file. $help) usage;; # Get help. $list) list_func;; # Allow wget to use a list of URLs. $runn) run_func;; # Useful if you are calling wgetter from, #+ for example, a cron script. $inpu) run_func;; # When you don't know what your files are named. $wopt) wopts;; # Pass options directly to wget. \?) echo "Not a valid option." echo "Use -${wopt} to pass options directly to wget," echo "or -${help} for help";; # Catch anything else. esac done shift $((OPTIND - 1)) # Do funky magic stuff with $#. if [ -z "$1" ] && [ -z "$lister" ]; then # We should be left with at least one URL #+ on the command-line, unless a list is #+ being used -- catch empty CL's. echo "No URL's given! You must enter them on the same line as wgetter2." echo "E.g., wgetter2 http://somesite http://anothersite." echo "Use $help option for more information." exit $E_NO_URLS # Bail out, with appropriate error code. fi URLS=" $@" # Use this so that URL list can be changed if we stay in the option loop. while [ 1 ]; do # This is where we ask for the most used options. # (Mostly unchanged from version 1 of wgetter) if [ -z $curDepth ]; then Current="" else Current=" Current value is $curDepth" fi echo "How deep should I go? \ (integer: Default is $depthDefault.$Current)" read Depth # Recursion -- how far should we go? inputB="" # Reset this to blank on each pass of the loop. echo "Enter the name of the referring page (default is none)." read inputB # Need this for some sites. echo "Do you want to have the output logged to the terminal" echo "(y/n, default is yes)?" read noHide # Otherwise wget will just log it to a file. case $noHide in # Now you see me, now you don't. y|Y ) hide="";; n|N ) hide=" -b";; * ) hide="";; esac if [ -z ${Depth} ]; then # User accepted either default or current depth, #+ in which case Depth is now empty. if [ -z ${curDepth} ]; then # See if a depth was set on a previous iteration. Depth="$depthDefault" # Set the default recursion depth if nothing #+ else to use. else Depth="$curDepth" # Otherwise, set the one we used before. fi fi Recurse=" -l $Depth" # Set how deep we want to go. curDepth=$Depth # Remember setting for next time. if [ ! -z $inputB ]; then RefA=" --referer=$inputB" # Option to use referring page. fi WGETTER="${CommandA}${pattern}${hide}${RefA}${Recurse}\ ${CookiesON}${lister}${Woptions}${URLS}" # Just string the whole lot together . . . # NB: no embedded spaces. # They are in the individual elements so that if any are empty, #+ we don't get an extra space. if [ -z "${CookiesON}" ] && [ "$cFlag" = "1" ] ; then echo "Warning -- can't find cookie file" # This should be changed, #+ in case the user has opted to not use cookies. fi if [ "$Flag" = "S" ]; then echo "$WGETTER" >> $savePath/wget-${today} # Create a unique filename for today, or append to it if it exists. echo "$inputB" >> $savePath/site-list-${today} # Make a list, so it's easy to refer back to, #+ since the whole command is a bit confusing to look at. echo "Command saved to the file $savePath/wget-${today}" # Tell the user. echo "Referring page URL saved to the file$ \ savePath/site-list-${today}" # Tell the user. Saver=" with save option" # Stick this somewhere, so it appears in the loop if set. else echo "*****************" echo "*****Getting*****" echo "*****************" echo "" echo "$WGETTER" echo "" echo "*****************" eval "$WGETTER" fi echo "" echo "Starting over$Saver." echo "If you want to stop, press q." echo "Otherwise, enter some URL's:" # Let them go again. Tell about save option being set. read case $REPLY in # Need to change this to a 'trap' clause. q|Q ) exit $E_USER_EXIT;; # Exercise for the reader? * ) URLS=" $REPLY";; esac echo "" done exit 0 |
Added wh-loopc.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 | #!/bin/bash # wh-loopc.sh: Count to 10 in a "while" loop. LIMIT=10 # 10 iterations. a=1 while [ "$a" -le $LIMIT ] do echo -n "$a " let "a+=1" done # No surprises, so far. echo; echo # +=================================================================+ # Now, we'll repeat with C-like syntax. ((a = 1)) # a=1 # Double parentheses permit space when setting a variable, as in C. while (( a <= LIMIT )) # Double parentheses, do #+ and no "$" preceding variables. echo -n "$a " ((a += 1)) # let "a+=1" # Yes, indeed. # Double parentheses permit incrementing a variable with C-like syntax. done echo # C and Java programmers can feel right at home in Bash. exit 0 |
Added what.sh.
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/bash # What are all those mysterious binaries in /usr/X11R6/bin? DIRECTORY="/usr/X11R6/bin" # Try also "/bin", "/usr/bin", "/usr/local/bin", etc. for file in $DIRECTORY/* do whatis `basename $file` # Echoes info about the binary. done exit 0 # Note: For this to work, you must create a "whatis" database #+ with /usr/sbin/makewhatis. # You may wish to redirect output of this script, like so: # ./what.sh >>whatis.db # or view it a page at a time on stdout, # ./what.sh | less |
Added whx.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 | #!/bin/bash # whx.sh: "whois" spammer lookup # Author: Walter Dnes # Slight revisions (first section) by ABS Guide author. # Used in ABS Guide with permission. # Needs version 3.x or greater of Bash to run (because of =~ operator). # Commented by script author and ABS Guide author. E_BADARGS=85 # Missing command-line arg. E_NOHOST=86 # Host not found. E_TIMEOUT=87 # Host lookup timed out. E_UNDEF=88 # Some other (undefined) error. HOSTWAIT=10 # Specify up to 10 seconds for host query reply. # The actual wait may be a bit longer. OUTFILE=whois.txt # Output file. PORT=4321 if [ -z "$1" ] # Check for (required) command-line arg. then echo "Usage: $0 domain name or IP address" exit $E_BADARGS fi if [[ "$1" =~ [a-zA-Z][a-zA-Z]$ ]] # Ends in two alpha chars? then # It's a domain name && #+ must do host lookup. IPADDR=$(host -W $HOSTWAIT $1 | awk '{print $4}') # Doing host lookup #+ to get IP address. # Extract final field. else IPADDR="$1" # Command-line arg was IP address. fi echo; echo "IP Address is: "$IPADDR""; echo if [ -e "$OUTFILE" ] then rm -f "$OUTFILE" echo "Stale output file \"$OUTFILE\" removed."; echo fi # Sanity checks. # (This section needs more work.) # =============================== if [ -z "$IPADDR" ] # No response. then echo "Host not found!" exit $E_NOHOST # Bail out. fi if [[ "$IPADDR" =~ ^[;;] ]] # ;; Connection timed out; no servers could be reached. then echo "Host lookup timed out!" exit $E_TIMEOUT # Bail out. fi if [[ "$IPADDR" =~ [(NXDOMAIN)]$ ]] # Host xxxxxxxxx.xxx not found: 3(NXDOMAIN) then echo "Host not found!" exit $E_NOHOST # Bail out. fi if [[ "$IPADDR" =~ [(SERVFAIL)]$ ]] # Host xxxxxxxxx.xxx not found: 2(SERVFAIL) then echo "Host not found!" exit $E_NOHOST # Bail out. fi # ======================== Main body of script ======================== AFRINICquery() { # Define the function that queries AFRINIC. Echo a notification to the #+ screen, and then run the actual query, redirecting output to $OUTFILE. echo "Searching for $IPADDR in whois.afrinic.net" whois -h whois.afrinic.net "$IPADDR" > $OUTFILE # Check for presence of reference to an rwhois. # Warn about non-functional rwhois.infosat.net server #+ and attempt rwhois query. if grep -e "^remarks: .*rwhois\.[^ ]\+" "$OUTFILE" then echo " " >> $OUTFILE echo "***" >> $OUTFILE echo "***" >> $OUTFILE echo "Warning: rwhois.infosat.net was not working \ as of 2005/02/02" >> $OUTFILE echo " when this script was written." >> $OUTFILE echo "***" >> $OUTFILE echo "***" >> $OUTFILE echo " " >> $OUTFILE RWHOIS=`grep "^remarks: .*rwhois\.[^ ]\+" "$OUTFILE" | tail -n 1 |\ sed "s/\(^.*\)\(rwhois\..*\)\(:4.*\)/\2/"` whois -h ${RWHOIS}:${PORT} "$IPADDR" >> $OUTFILE fi } APNICquery() { echo "Searching for $IPADDR in whois.apnic.net" whois -h whois.apnic.net "$IPADDR" > $OUTFILE # Just about every country has its own internet registrar. # I don't normally bother consulting them, because the regional registry #+ usually supplies sufficient information. # There are a few exceptions, where the regional registry simply #+ refers to the national registry for direct data. # These are Japan and South Korea in APNIC, and Brasil in LACNIC. # The following if statement checks $OUTFILE (whois.txt) for the presence #+ of "KR" (South Korea) or "JP" (Japan) in the country field. # If either is found, the query is re-run against the appropriate #+ national registry. if grep -E "^country:[ ]+KR$" "$OUTFILE" then echo "Searching for $IPADDR in whois.krnic.net" whois -h whois.krnic.net "$IPADDR" >> $OUTFILE elif grep -E "^country:[ ]+JP$" "$OUTFILE" then echo "Searching for $IPADDR in whois.nic.ad.jp" whois -h whois.nic.ad.jp "$IPADDR"/e >> $OUTFILE fi } ARINquery() { echo "Searching for $IPADDR in whois.arin.net" whois -h whois.arin.net "$IPADDR" > $OUTFILE # Several large internet providers listed by ARIN have their own #+ internal whois service, referred to as "rwhois". # A large block of IP addresses is listed with the provider #+ under the ARIN registry. # To get the IP addresses of 2nd-level ISPs or other large customers, #+ one has to refer to the rwhois server on port 4321. # I originally started with a bunch of "if" statements checking for #+ the larger providers. # This approach is unwieldy, and there's always another rwhois server #+ that I didn't know about. # A more elegant approach is to check $OUTFILE for a reference #+ to a whois server, parse that server name out of the comment section, #+ and re-run the query against the appropriate rwhois server. # The parsing looks a bit ugly, with a long continued line inside #+ backticks. # But it only has to be done once, and will work as new servers are added. #@ ABS Guide author comment: it isn't all that ugly, and is, in fact, #@+ an instructive use of Regular Expressions. if grep -E "^Comment: .*rwhois.[^ ]+" "$OUTFILE" then RWHOIS=`grep -e "^Comment:.*rwhois\.[^ ]\+" "$OUTFILE" | tail -n 1 |\ sed "s/^\(.*\)\(rwhois\.[^ ]\+\)\(.*$\)/\2/"` echo "Searching for $IPADDR in ${RWHOIS}" whois -h ${RWHOIS}:${PORT} "$IPADDR" >> $OUTFILE fi } LACNICquery() { echo "Searching for $IPADDR in whois.lacnic.net" whois -h whois.lacnic.net "$IPADDR" > $OUTFILE # The following if statement checks $OUTFILE (whois.txt) for #+ the presence of "BR" (Brasil) in the country field. # If it is found, the query is re-run against whois.registro.br. if grep -E "^country:[ ]+BR$" "$OUTFILE" then echo "Searching for $IPADDR in whois.registro.br" whois -h whois.registro.br "$IPADDR" >> $OUTFILE fi } RIPEquery() { echo "Searching for $IPADDR in whois.ripe.net" whois -h whois.ripe.net "$IPADDR" > $OUTFILE } # Initialize a few variables. # * slash8 is the most significant octet # * slash16 consists of the two most significant octets # * octet2 is the second most significant octet slash8=`echo $IPADDR | cut -d. -f 1` if [ -z "$slash8" ] # Yet another sanity check. then echo "Undefined error!" exit $E_UNDEF fi slash16=`echo $IPADDR | cut -d. -f 1-2` # ^ Period specified as 'cut" delimiter. if [ -z "$slash16" ] then echo "Undefined error!" exit $E_UNDEF fi octet2=`echo $slash16 | cut -d. -f 2` if [ -z "$octet2" ] then echo "Undefined error!" exit $E_UNDEF fi # Check for various odds and ends of reserved space. # There is no point in querying for those addresses. if [ $slash8 == 0 ]; then echo $IPADDR is '"This Network"' space\; Not querying elif [ $slash8 == 10 ]; then echo $IPADDR is RFC1918 space\; Not querying elif [ $slash8 == 14 ]; then echo $IPADDR is '"Public Data Network"' space\; Not querying elif [ $slash8 == 127 ]; then echo $IPADDR is loopback space\; Not querying elif [ $slash16 == 169.254 ]; then echo $IPADDR is link-local space\; Not querying elif [ $slash8 == 172 ] && [ $octet2 -ge 16 ] && [ $octet2 -le 31 ];then echo $IPADDR is RFC1918 space\; Not querying elif [ $slash16 == 192.168 ]; then echo $IPADDR is RFC1918 space\; Not querying elif [ $slash8 -ge 224 ]; then echo $IPADDR is either Multicast or reserved space\; Not querying elif [ $slash8 -ge 200 ] && [ $slash8 -le 201 ]; then LACNICquery "$IPADDR" elif [ $slash8 -ge 202 ] && [ $slash8 -le 203 ]; then APNICquery "$IPADDR" elif [ $slash8 -ge 210 ] && [ $slash8 -le 211 ]; then APNICquery "$IPADDR" elif [ $slash8 -ge 218 ] && [ $slash8 -le 223 ]; then APNICquery "$IPADDR" # If we got this far without making a decision, query ARIN. # If a reference is found in $OUTFILE to APNIC, AFRINIC, LACNIC, or RIPE, #+ query the appropriate whois server. else ARINquery "$IPADDR" if grep "whois.afrinic.net" "$OUTFILE"; then AFRINICquery "$IPADDR" elif grep -E "^OrgID:[ ]+RIPE$" "$OUTFILE"; then RIPEquery "$IPADDR" elif grep -E "^OrgID:[ ]+APNIC$" "$OUTFILE"; then APNICquery "$IPADDR" elif grep -E "^OrgID:[ ]+LACNIC$" "$OUTFILE"; then LACNICquery "$IPADDR" fi fi #@ --------------------------------------------------------------- # Try also: # wget http://logi.cc/nw/whois.php3?ACTION=doQuery&DOMAIN=$IPADDR #@ --------------------------------------------------------------- # We've now finished the querying. # Echo a copy of the final result to the screen. cat $OUTFILE # Or "less $OUTFILE" . . . exit 0 #@ ABS Guide author comments: #@ Nothing fancy here, but still a very useful tool for hunting spammers. #@ Sure, the script can be cleaned up some, and it's still a bit buggy, #@+ (exercise for reader), but all the same, it's a nice piece of coding #@+ by Walter Dnes. #@ Thank you! |
Added wipedir.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 | #!/bin/bash E_WRONG_DIRECTORY=85 clear # Clear the screen. TargetDirectory=/home/bozo/projects/GreatAmericanNovel cd $TargetDirectory echo "Deleting stale files in $TargetDirectory." if [ "$PWD" != "$TargetDirectory" ] then # Keep from wiping out wrong directory by accident. echo "Wrong directory!" echo "In $PWD, rather than $TargetDirectory!" echo "Bailing out!" exit $E_WRONG_DIRECTORY fi rm -rf * rm .[A-Za-z0-9]* # Delete dotfiles. # rm -f .[^.]* ..?* to remove filenames beginning with multiple dots. # (shopt -s dotglob; rm -f *) will also work. # Thanks, S.C. for pointing this out. # A filename (`basename`) may contain all characters in the 0 - 255 range, #+ except "/". # Deleting files beginning with weird characters, such as - #+ is left as an exercise. (Hint: rm ./-weirdname or rm -- -weirdname) result=$? # Result of delete operations. If successful = 0. echo ls -al # Any files left? echo "Done." echo "Old files deleted in $TargetDirectory." echo # Various other operations here, as necessary. exit $result |
Added words.data.
> > > > > > > > > > > > > > > > > > > > > > > > > | 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 | syzygy nogood filesystem alltold orangutan nekulturno madeupword tasteless coredump hazmat ziggurat haystack abracadbra advanced bash scripting guide lowercase bremsstrahlung abcdef duplicity kitsch avoirdupois radicand end |
Added wr-ps.bash.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #!/bin/bash # wr-ps.bash: while-read loop with process substitution. # This example contributed by Tomas Pospisek. # (Heavily edited by the ABS Guide author.) echo echo "random input" | while read i do global=3D": Not available outside the loop." # ... because it runs in a subshell. done echo "\$global (from outside the subprocess) = $global" # $global (from outside the subprocess) = echo; echo "--"; echo while read i do echo $i global=3D": Available outside the loop." # ... because it does NOT run in a subshell. done < <( echo "random input" ) # ^ ^ echo "\$global (using process substitution) = $global" # Random input # $global (using process substitution) = 3D: Available outside the loop. echo; echo "##########"; echo # And likewise . . . declare -a inloop index=0 cat $0 | while read line do inloop[$index]="$line" ((index++)) # It runs in a subshell, so ... done echo "OUTPUT = " echo ${inloop[*]} # ... nothing echoes. echo; echo "--"; echo declare -a outloop index=0 while read line do outloop[$index]="$line" ((index++)) # It does NOT run in a subshell, so ... done < <( cat $0 ) echo "OUTPUT = " echo ${outloop[*]} # ... the entire script echoes. exit $? |
Added wstrings.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 | #!/bin/bash # wstrings.sh: "word-strings" (enhanced "strings" command) # # This script filters the output of "strings" by checking it #+ against a standard word list file. # This effectively eliminates gibberish and noise, #+ and outputs only recognized words. # =========================================================== # Standard Check for Script Argument(s) ARGS=1 E_BADARGS=85 E_NOFILE=86 if [ $# -ne $ARGS ] then echo "Usage: `basename $0` filename" exit $E_BADARGS fi if [ ! -f "$1" ] # Check if file exists. then echo "File \"$1\" does not exist." exit $E_NOFILE fi # =========================================================== MINSTRLEN=3 # Minimum string length. WORDFILE=/usr/share/dict/linux.words # Dictionary file. # May specify a different word list file #+ of one-word-per-line format. # For example, the "yawl" word-list package, # http://bash.deta.in/yawl-0.3.2.tar.gz wlist=`strings "$1" | tr A-Z a-z | tr '[:space:]' Z | \ tr -cs '[:alpha:]' Z | tr -s '\173-\377' Z | tr Z ' '` # Translate output of 'strings' command with multiple passes of 'tr'. # "tr A-Z a-z" converts to lowercase. # "tr '[:space:]'" converts whitespace characters to Z's. # "tr -cs '[:alpha:]' Z" converts non-alphabetic characters to Z's, #+ and squeezes multiple consecutive Z's. # "tr -s '\173-\377' Z" converts all characters past 'z' to Z's #+ and squeezes multiple consecutive Z's, #+ which gets rid of all the weird characters that the previous #+ translation failed to deal with. # Finally, "tr Z ' '" converts all those Z's to whitespace, #+ which will be seen as word separators in the loop below. # *********************************************************************** # Note the technique of feeding/piping the output of 'tr' back to itself, #+ but with different arguments and/or options on each successive pass. # *********************************************************************** for word in $wlist # Important: # $wlist must not be quoted here. # "$wlist" does not work. # Why not? do strlen=${#word} # String length. if [ "$strlen" -lt "$MINSTRLEN" ] # Skip over short strings. then continue fi grep -Fw $word "$WORDFILE" # Match whole words only. # ^^^ # "Fixed strings" and #+ "whole words" options. done exit $? |