Advance Bash Scripting Guide
Advance Bash Scripting Guide
<thegrendel@theriver.com> 5.0 24 June 2007 Revision History Revision 4.2 10 Dec 2006 'SPARKLEBERRY' release: Important Update. Revision 4.3 29 Apr 2007 'INKBERRY' release: Minor Update. Revision 5.0 24 Jun 2007 'SERVICEBERRY' release: Major Update.
This tutorial assumes no previous knowledge of scripting or programming, but progresses rapidly toward an intermediate/advanced level of instruction . . . all the while sneaking in little snippets of UNIX wisdom and lore. It serves as a textbook, a manual for selfstudy, and a reference and source of knowledge on shell scripting techniques. The exercises and heavilycommented examples invite active reader participation, under the premise that the only way to really learn scripting is to write scripts. This book is suitable for classroom use as a general introduction to programming concepts.
The latest update of this document, as an archived, bzip2ed "tarball" including both the SGML source and rendered HTML, may be downloaded from the author's home site. A pdf version is also available ( pdf mirror site). See the change log for a revision history.
Dedication
For Anita, the source of all the magic
Table of Contents
Chapter 1. Why Shell Programming?...............................................................................................................1 Chapter 2. Starting Off With a ShaBang.......................................................................................................3 2.1. Invoking the script............................................................................................................................6 2.2. Preliminary Exercises.......................................................................................................................6 Part 2. Basics.......................................................................................................................................................7 Chapter 3. Special Characters...........................................................................................................................8 Chapter 4. Introduction to Variables and Parameters ..................................................................................26 4.1. Variable Substitution......................................................................................................................26 4.2. Variable Assignment......................................................................................................................29 . 4.3. Bash Variables Are Untyped..........................................................................................................30 4.4. Special Variable Types...................................................................................................................31 Chapter 5. Quoting...........................................................................................................................................36 5.1. Quoting Variables...........................................................................................................................36 5.2. Escaping..........................................................................................................................................38 Chapter 6. Exit and Exit Status.......................................................................................................................43 Chapter 7. Tests................................................................................................................................................45 7.1. Test Constructs...............................................................................................................................45 7.2. File test operators............................................................................................................................51 7.3. Other Comparison Operators..........................................................................................................54 7.4. Nested if/then Condition Tests.......................................................................................................59 7.5. Testing Your Knowledge of Tests..................................................................................................60 Chapter 8. Operations and Related Topics....................................................................................................61 8.1. Operators.........................................................................................................................................61 8.2. Numerical Constants.......................................................................................................................67 Part 3. Beyond the Basics.................................................................................................................................69 Chapter 9. Variables Revisited........................................................................................................................70 9.1. Internal Variables............................................................................................................................70 9.2. Manipulating Strings .......................................................................................................................87 9.2.1. Manipulating strings using awk............................................................................................93 9.2.2. Further Discussion .................................................................................................................94 9.3. Parameter Substitution....................................................................................................................94 9.4. Typing variables: declare or typeset.............................................................................................103 9.5. Indirect References.......................................................................................................................105 9.6. $RANDOM: generate random integer..........................................................................................108 9.7. The Double Parentheses Construct...............................................................................................117
Table of Contents
Chapter 10. Loops and Branches..................................................................................................................120 10.1. Loops..........................................................................................................................................120 10.2. Nested Loops..............................................................................................................................132 10.3. Loop Control...............................................................................................................................133 10.4. Testing and Branching................................................................................................................136 Chapter 11. Command Substitution.............................................................................................................144 Chapter 12. Arithmetic Expansion................................................................................................................150 Chapter 13. Recess Time................................................................................................................................151 Part 4. Commands..........................................................................................................................................152 Chapter 14. Internal Commands and Builtins.............................................................................................160 14.1. Job Control Commands..............................................................................................................187 Chapter 15. External Filters, Programs and Commands...........................................................................191 15.1. Basic Commands........................................................................................................................191 15.2. Complex Commands ...................................................................................................................196 15.3. Time / Date Commands..............................................................................................................206 15.4. Text Processing Commands ........................................................................................................209 15.5. File and Archiving Commands...................................................................................................229 15.6. Communications Commands......................................................................................................246 15.7. Terminal Control Commands.....................................................................................................260 15.8. Math Commands.........................................................................................................................261 15.9. Miscellaneous Commands..........................................................................................................270 Chapter 16. System and Administrative Commands..................................................................................283 16.1. Analyzing a System Script..........................................................................................................311 Part 5. Advanced Topics .................................................................................................................................313 Chapter 17. Regular Expressions..................................................................................................................315 17.1. A Brief Introduction to Regular Expressions ..............................................................................315 17.2. Globbing.....................................................................................................................................318 Chapter 18. Here Documents.........................................................................................................................320 18.1. Here Strings................................................................................................................................330 Chapter 19. I/O Redirection ...........................................................................................................................333 19.1. Using exec ...................................................................................................................................336 19.2. Redirecting Code Blocks............................................................................................................339 19.3. Applications................................................................................................................................344 Chapter 20. Subshells.....................................................................................................................................346
ii
Table of Contents
Chapter 21. Restricted Shells.........................................................................................................................351 Chapter 22. Process Substitution ...................................................................................................................353 Chapter 23. Functions....................................................................................................................................356 23.1. Complex Functions and Function Complexities.........................................................................358 23.2. Local Variables...........................................................................................................................369 23.2.1. Local variables help make recursion possible...................................................................370 23.3. Recursion Without Local Variables............................................................................................371 Chapter 24. Aliases.........................................................................................................................................373 Chapter 25. List Constructs...........................................................................................................................376 Chapter 26. Arrays.........................................................................................................................................379 Chapter 27. /dev and /proc.............................................................................................................................406 27.1. /dev ..............................................................................................................................................406 27.2. /proc............................................................................................................................................408 Chapter 28. Of Zeros and Nulls.....................................................................................................................414 Chapter 29. Debugging...................................................................................................................................418 Chapter 30. Options........................................................................................................................................428 Chapter 31. Gotchas.......................................................................................................................................430 Chapter 32. Scripting With Style..................................................................................................................438 32.1. Unofficial Shell Scripting Stylesheet..........................................................................................438 Chapter 33. Miscellany...................................................................................................................................441 33.1. Interactive and noninteractive shells and scripts......................................................................441 33.2. Shell Wrappers............................................................................................................................442 33.3. Tests and Comparisons: Alternatives ..........................................................................................446 33.4. Recursion....................................................................................................................................447 33.5. "Colorizing" Scripts....................................................................................................................449 33.6. Optimizations..............................................................................................................................462 33.7. Assorted Tips..............................................................................................................................463 33.8. Security Issues............................................................................................................................473 33.8.1. Infected Shell Scripts .........................................................................................................473 33.8.2. Hiding Shell Script Source................................................................................................473 33.8.3. Writing Secure Shell Scripts.............................................................................................474 33.9. Portability Issues.........................................................................................................................474 33.10. Shell Scripting Under Windows...............................................................................................475
iii
Table of Contents
Chapter 34. Bash, versions 2 and 3...............................................................................................................476 34.1. Bash, version 2............................................................................................................................476 34.2. Bash, version 3............................................................................................................................480 34.2.1. Bash, version 3.1...............................................................................................................482 Chapter 35. Endnotes.....................................................................................................................................484 35.1. Author's Note..............................................................................................................................484 35.2. About the Author........................................................................................................................484 35.3. Where to Go For Help .................................................................................................................484 35.4. Tools Used to Produce This Book..............................................................................................485 35.4.1. Hardware...........................................................................................................................485 35.4.2. Software and Printware.....................................................................................................485 35.5. Credits.........................................................................................................................................485 35.6. Disclaimer...................................................................................................................................487 Bibliography....................................................................................................................................................488 Appendix A. Contributed Scripts..................................................................................................................495 Appendix B. Reference Cards........................................................................................................................642 Appendix C. A Sed and Awk MicroPrimer ................................................................................................647 C.1. Sed................................................................................................................................................647 C.2. Awk..............................................................................................................................................650 Appendix D. Exit Codes With Special Meanings.........................................................................................653 Appendix E. A Detailed Introduction to I/O and I/O Redirection.............................................................654 Appendix F. CommandLine Options..........................................................................................................656 F.1. Standard CommandLine Options...............................................................................................656 F.2. Bash CommandLine Options.....................................................................................................657 Appendix G. Important Files.........................................................................................................................659 Appendix H. Important System Directories.................................................................................................660 Appendix I. Localization................................................................................................................................662 Appendix J. History Commands...................................................................................................................666 Appendix K. A Sample .bashrc File..............................................................................................................667 Appendix L. Converting DOS Batch Files to Shell Scripts.........................................................................679 Appendix M. Exercises...................................................................................................................................683 M.1. Analyzing Scripts........................................................................................................................683 M.2. Writing Scripts............................................................................................................................684 iv
Table of Contents
Appendix N. Revision History.......................................................................................................................693 Appendix O. Mirror Sites ...............................................................................................................................695 Appendix P. To Do List..................................................................................................................................696 Appendix Q. Copyright..................................................................................................................................698 Appendix R. ASCII Table..............................................................................................................................700 Index....................................................................................................................................................700 Notes ..............................................................................................................................................729
Advanced BashScripting Guide Need direct access to system hardware Need port or socket I/O Need to use libraries or interface with legacy code Proprietary, closedsource applications (shell scripts put the source code right out in the open for all the world to see) If any of the above applies, consider a more powerful scripting language perhaps Perl, Tcl, Python, Ruby or possibly a highlevel compiled language such as C, C++, or Java. Even then, prototyping the application as a shell script might still be a useful development step.
We will be using Bash, an acronym for "BourneAgain shell" and a pun on Stephen Bourne's now classic Bourne shell. Bash has become a de facto standard for shell scripting on all flavors of UNIX. Most of the principles this book covers apply equally well to scripting with other shells, such as the Korn Shell, from which Bash derives some of its features, [2] and the C Shell and its variants. (Note that C Shell programming is not recommended due to certain inherent problems, as pointed out in an October, 1993 Usenet post by Tom Christiansen.) 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 was 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 (scriptname.sh or scriptname.bash), [3] give them execute permission (chmod u+rx scriptname), then run them to see what happens. Should the source archive not be available, then cutandpaste from the HTML, pdf, or text 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. Unless otherwise noted, the author of this book wrote the example scripts that follow.
There is nothing unusual here, only a set of commands that could just as easily be invoked one by one from the command line on the console or in an xterm. The advantages of placing the commands in a script go beyond not having to retype them time and again. The script becomes a tool, and can easily be modified or customized for a particular application.
echo "Logs cleaned up." exit # The right and proper method of "exiting" from a script.
Now that's beginning to look like a real script. But we can go even farther . . .
Only users with $UID 0 have root privileges. Default number of lines saved. Can't change directory? Nonroot 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 if command line argument present (nonempty). 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=65 case "$1" "" ) *[!09]*) * ) esac # Nonnumerical argument (bad arg format)
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 # Saves last section of message log file. mv mesg.temp messages # Becomes new log directory.
# cat /dev/null > messages #* No longer needed, as the above method is safer. cat /dev/null > wtmp # echo "Logs cleaned up." ': > wtmp' and '> wtmp' have the same effect.
exit 0 # A zero return value from the script upon exit #+ indicates success to the shell.
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 refining previously written scripts for increased effectiveness.
The shabang ( #!) 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 #! is actually a twobyte [4] magic number, a special marker that designates a file type, or in this case an executable shell script (type man magic for more details on this fascinating topic). Immediately following the shabang is a path name. 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 (line following the shabang line), ignoring comments. [5]
#!/bin/sh #!/bin/bash #!/usr/bin/perl #!/usr/bin/tcl #!/bin/sed f #!/usr/awk f
Each of the above script header lines calls a different command interpreter, be it /bin/sh, the default shell (bash in a Linux system) or otherwise. [6] Using #!/bin/sh, the default Bourne shell in most commercial variants of UNIX, makes the script portable to nonLinux machines, though you sacrifice Bashspecific features. The script will, however, conform to the POSIX [7] sh standard. Note that the path given at the "shabang" must be correct, otherwise an error message usually "Command not found" will be the only result of running the script. #! 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 #!, since the variable assignment line, lines=50, uses a shellspecific construct. [8] Note again that #!/bin/sh invokes the default shell interpreter, which defaults to /bin/bash on a Linux machine. This tutorial encourages a modular approach to constructing a script. Make note of and collect "boilerplate" code snippets that might be useful in future scripts. Eventually you can 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.
E_WRONG_ARGS=65 script_parameters="a h m z"
if [ $# ne $Number_of_expected_args ] then echo "Usage: `basename $0` $script_parameters" # `basename $0` is the script's filename. exit $E_WRONG_ARGS fi
Many times, you will write a script that carries out one particular task. The first script in this chapter is an example of this. Later, it might occur to you to generalize the script to do other, similar tasks. Replacing the literal ("hardwired") constants by variables is a step in that direction, as is replacing repetitive code blocks by functions.
Part 2. Basics
Table of Contents 3. Special Characters 4. Introduction to Variables and Parameters 4.1. Variable Substitution 4.2. Variable Assignment 4.3. Bash Variables Are Untyped 4.4. Special Variable Types 5. Quoting 5.1. Quoting Variables 5.2. Escaping 6. Exit and Exit Status 7. Tests 7.1. Test Constructs 7.2. File test operators 7.3. Other Comparison Operators 7.4. Nested if/then Condition Tests 7.5. Testing Your Knowledge of Tests 8. Operations and Related Topics 8.1. Operators 8.2. Numerical Constants
Part 2. Basics
A command may not follow a comment on the same line. There is no method of terminating the comment, in order for "live code" to begin on the same line. Use a new line for the next command. Of course, an escaped # in an echo statement does not begin a comment. Likewise, a # appears in certain parameter substitution constructs and in numerical constant expressions.
echo echo echo echo "The # here does not begin a comment." 'The # here does not begin a comment.' The \# here does not begin a comment. The # here begins a comment. # Parameter substitution, not a comment. # Base conversion, not a comment.
The standard quoting and escape characters (" ' \) escape the #. Certain pattern matching operations also use the #. ; Command separator [semicolon]. Permits putting two or more commands on the same line.
echo hello; echo there
if [ x "$filename" ]; then
# Note that "if" and "then" need separation. # Why? echo "File $filename exists."; cp $filename $filename.bak else echo "File $filename not found."; touch $filename fi; echo "File test complete."
Note that the ";" sometimes needs to be escaped. ;; Terminator in a case option [double semicolon]. Chapter 3. Special Characters 8
. "dot" command [period]. Equivalent to source (see Example 1422). This is a bash builtin. . "dot", as a component of a filename. When working with filenames, a dot is the prefix of a "hidden" file, a file that an ls will not normally show.
bash$ touch .hiddenfile bash$ ls l total 10 rwrr 1 bozo rwrr 1 bozo rwrr 1 bozo
4034 Jul 18 22:04 data1.addressbook 4602 May 25 13:58 data1.addressbook.bak 877 Dec 17 2000 employment.addressbook
2 52 1 1 1 1
29 29 18 25 17 29
When considering directory names, a single dot represents the current working directory, and two dots denote the parent directory.
bash$ pwd /home/bozo/projects bash$ cd . bash$ pwd /home/bozo/projects bash$ cd .. bash$ pwd /home/bozo/
The dot often appears as the destination (directory) of a file movement command.
bash$ cp /home/bozo/current_work/junk/* .
. "dot" character match. When matching characters, as part of a regular expression, a "dot" matches a single character. " partial quoting [double quote]. "STRING" preserves (from interpretation) most of the special characters within STRING. See also Chapter 5. ' full quoting [single quote]. 'STRING' preserves all special characters within STRING. This is a stronger form of quoting than using ". See also Chapter 5. Chapter 3. Special Characters 9
Advanced BashScripting Guide , comma operator. The comma operator links together a series of arithmetic operations. All are evaluated, but only the last one is returned.
let "t2 = ((a = 9, 15 / 3))" # Set "a = 9" and "t2 = 15 / 3"
\ escape [backslash]. A quoting mechanism for single characters. \X "escapes" the character X. This has the effect of "quoting" X, equivalent to 'X'. The \ may be used to quote " and ', so they are expressed literally. See Chapter 5 for an indepth explanation of escaped characters. / Filename path separator [forward slash]. Separates the components of a filename (as in /home/bozo/projects/Makefile). This is also the division arithmetic operator. ` command substitution. The `command` construct makes available the output of command for assignment to a variable. This is also known as backquotes or backticks. : null command [colon]. This is the shell equivalent of a "NOP" (no op, a donothing operation). It may be considered a synonym for the shell builtin true. The ":" command is itself a Bash builtin, and its exit status is "true" (0).
: echo $?
# 0
Endless loop:
while : do operation1 operation2 ... operationn done # Same as: # while true # do # ... # done
Provide a placeholder where a binary operation is expected, see Example 82 and default parameters.
: ${username=`whoami`} # ${username=`whoami`}
10
Provide a placeholder where a command is expected in a here document. See Example 1810. Evaluate string of variables using parameter substitution (as in Example 915).
: ${HOSTNAME?} ${USER?} ${MAIL?} # Prints error message #+ if one or more of essential environmental variables not set.
Variable expansion / substring replacement. In combination with the > redirection operator, truncates a file to zero length, without changing its permissions. If the file did not previously exist, creates it.
: > data.xxx # File "data.xxx" now empty.
# Same effect as cat /dev/null >data.xxx # However, this does not fork a new process, since ":" is a builtin.
See also Example 1514. In combination with the >> redirection operator, has no effect on a preexisting target file (: >> target_file). If the file did not previously exist, creates it. This applies to regular files, not pipes, symlinks, and certain special files. May be used to begin a comment line, although this is not recommended. Using # 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 :.
: This is a comment that generates an error, ( if [ $x eq 3] ).
The ":" also serves as a field separator, in /etc/passwd, and in the $PATH variable.
bash$ echo $PATH /usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/sbin:/usr/sbin:/usr/games
! reverse (or negate) the sense of a test or exit status [bang]. The ! operator inverts the exit status of the command to which it is applied (see Example 62). It also inverts the meaning of a test operator. This can, for example, change the sense of "equal" ( = ) to "notequal" ( != ). The ! operator is a Bash keyword. In a different context, the ! also appears in indirect variable references. In yet another context, from the command line, the ! invokes the Bash history mechanism (see Appendix J). Note that within a script, the history mechanism is disabled. * wild card [asterisk]. The * character serves as a "wild card" for filename expansion in globbing. By itself, it matches every filename in a given directory.
bash$ echo * absbook.sgml adddrive.sh agram.sh alias.sh
The * also represents any number (or zero) characters in a regular expression. Chapter 3. Special Characters 11
Advanced BashScripting Guide * arithmetic operator. In the context of arithmetic operations, the * denotes multiplication. A double asterisk, **, is the exponentiation operator. ? test operator. Within certain expressions, the ? indicates a test for a condition.
In a double parentheses construct, the ? can serve as an element of a Cstyle trinary operator, ?:.
(( var0 = var1<98?9:21 )) # ^ ^ # # # # # # if [ "$var1" lt 98 ] then var0=9 else var0=21 fi
In a parameter substitution expression, the ? tests whether a variable has been set. ? wild card. The ? character serves as a singlecharacter "wild card" for filename expansion in globbing, as well as representing one character in an extended regular expression. $ Variable substitution (contents of a variable).
var1=5 var2=23skidoo echo $var1 echo $var2 # 5 # 23skidoo
A $ prefixing a variable name indicates the value the variable holds. $ endofline. In a regular expression, a "$" addresses the end of a line of text. ${} Parameter substitution. $*, $@ positional parameters. $? exit status variable. The $? variable holds the exit status of a command, a function, or of the script itself. $$ process ID variable. The $$ variable holds the process ID [12] of the script in which it appears. () command group.
(a=hello; echo $a)
A listing of commands within parentheses starts a subshell. Variables inside parentheses, within the subshell, are not visible to the rest of the script. The parent process, the script, cannot read variables created in Chapter 3. Special Characters 12
array initialization.
Array=(element1 element2 element3)
A command may act upon a commaseparated list of file specs within braces. [13] Filename expansion (globbing) applies to the file specs between the braces. No spaces allowed within the braces unless the spaces are quoted or escaped. echo {file1,file2}\ :{\ A," B",' C'} file1 : A file1 : B file1 : C file2 : A file2 : B file2 : C {a..z} Extended Brace expansion.
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 # Echoes characters between a and z. echo {0..3} # 0 1 2 3 # Echoes characters between 0 and 3.
The {a..z} extended brace expansion construction is a feature introduced in version 3 of Bash. {} Block of code [curly brackets]. Also referred to as an inline group, this construct, in effect, creates an anonymous function (a function without a name). However, unlike in a "standard" function, the variables inside a code block remain visible to the remainder of the script.
bash$ { local a; a=123; } bash: local: can only be used in a function
# a = 321
13
Advanced BashScripting Guide The code block enclosed in braces may have I/O redirected to and from it.
exit 0 # Now, how do you parse the separate fields of each line? # Hint: use awk, or . . . # . . . HansJoerg Diers suggests using the "set" Bash builtin.
SUCCESS=0 E_NOARGS=65 if [ z "$1" ] then echo "Usage: `basename $0` rpmfile" 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."
14
Unlike a command group within (parentheses), as above, a code block enclosed by {braces} will not normally launch a subshell. [14] {} placeholder for text. Used after xargs i (replace strings option). The {} double curly brackets are a placeholder for output text.
ls . | xargs i t cp ./{} $1 # ^^ ^^ # From "ex42.sh" (copydir.sh) example.
{} \; pathname. Mostly used in find constructs. This is not a shell builtin. The ";" ends the exec option of a find command sequence. It needs to be escaped to protect it from interpretation by the shell. [] test. Test expression between [ ]. Note that [ is part of the shell builtin test (and a synonym for it), not a link to the external command /usr/bin/test. [[ ]] test. Test expression between [[ ]]. This is a shell keyword. See the discussion on the [[ ... ]] construct. [] array element. In the context of an array, brackets set off the numbering of each element of that array.
Array[1]=slot_1 echo ${Array[1]}
[] range of characters. As part of a regular expression, brackets delineate a range of characters to match. (( )) integer expansion. Expand and evaluate integer expression between (( )). Chapter 3. Special Characters 15
Advanced BashScripting Guide See the discussion on the (( ... )) construct. > &> >& >> < <> redirection. scriptname >filename redirects the output of scriptname to file filename. Overwrite filename if it already exists.
command &>filename redirects both the stdout and the stderr of command to filename.
command >&2 redirects stdout of command to stderr. scriptname >>filename appends the output of scriptname to file filename. If filename does not already exist, it is created.
[i]<>filename opens file filename for reading and writing, and assigns file descriptor i to it. If filename does not exist, it is created. process substitution. (command)> <(command) In a different context, the "<" and ">" characters act as string comparison operators. In yet another context, the "<" and ">" characters act as integer comparison operators. See also Example 159. << redirection used in a here document. <<< redirection used in a here string. <, > ASCII comparison.
veg1=carrots veg2=tomatoes if [[ "$veg1" < "$veg2" ]] then echo "Although $veg1 precede $veg2 in the dictionary," echo n "this does not necessarily imply anything " echo "about my culinary preferences." else echo "What kind of dictionary are you using, anyhow?" fi
\<, \> word boundary in a regular expression. bash$ grep '\<the\>' textfile Chapter 3. Special Characters 16
Advanced BashScripting Guide | pipe. Passes the output (stdout of a previous command to the input (stdin) of the next one, or to the shell. This is a method of chaining commands together.
echo ls l | sh # Passes the output of "echo ls l" to the shell, #+ with the same result as a simple "ls l".
cat *.lst | sort | uniq # Merges and sorts all ".lst" files, then deletes duplicate lines.
A pipe, as a classic method of interprocess communication, sends the stdout of one process to the stdin of another. In a typical case, a command, such as cat or echo, pipes a stream of data to a "filter" (a command that transforms its input) for processing. cat $filename1 $filename2 | grep $search_word For an interesting note on the complexity of using UNIX pipes, see the UNIX FAQ, Part 3. The output of a command or commands may be piped to a script.
#!/bin/bash # uppercase.sh : Changes input to uppercase. tr 'az' 'AZ' # Letter ranges must be quoted #+ to prevent filename generation from singleletter filenames. exit 0
The stdout of each process in a pipe must be read as the stdin of the next. If this is not the case, the data stream will block, and the pipe will not behave as expected.
cat file1 file2 | ls l | sort # The output from "cat file1 file2" disappears.
A pipe runs as a child process, and therefore cannot alter script variables.
variable="initial_value" echo "new_value" | read variable echo "variable = $variable" # variable = initial_value
If one of the commands in the pipe aborts, this prematurely terminates execution of the pipe. Called a broken pipe, this condition sends a SIGPIPE signal. >| force redirection (even if the noclobber option is set). This will forcibly overwrite an existing file. ||
17
Advanced BashScripting Guide OR logical operator. In a test construct, the || operator causes a return of 0 (success) if either of the linked test conditions is true. & Run job in background. A command followed by an & will run in the background.
bash$ sleep 10 & [1] 850 [1]+ Done
sleep 10
Within a script, commands and even loops may run in the background.
# ====================================================== # 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.
18
Advanced BashScripting Guide A command run in the background within a script may cause the script to hang, waiting for a keystroke. Fortunately, there is a remedy for this. && AND logical operator. In a test construct, the && operator causes a return of 0 (success) only if both the linked test conditions are true. option, prefix. Option flag for a command or filter. Prefix for an operator. COMMAND [Option1][Option2][...] ls al sort dfu $filename
if [ $file1 ot $file2 ] then echo "File $file1 is older than $file2." fi if [ "$a" eq "$b" ] then echo "$a is equal to $b." fi if [ "$c" eq 24 a "$d" eq 47 ] then echo "$c equals 24 and $d equals 47." fi
The doubledash prefixes long (verbatim) options to commands. sort ignoreleadingblanks Used with a Bash builtin, it means the end of options to that particular command. It is also used in conjunction with set. set $variable (as in Example 1418) redirection from/to stdin or stdout [dash].
(cd /source/directory && tar cf . ) | (cd /dest/directory && tar xpvf ) # Move entire file tree from one directory to another # [courtesy Alan Cox <a.cox@swansea.ac.uk>, with a minor change] # 1) cd /source/directory # Source directory, where the files to be moved are. # 2) && # "Andlist": if the 'cd' operation successful, # then execute the next command. # 3) tar cf . # The 'c' option 'tar' archiving command creates a new archive, # the 'f' (file) option, followed by '' designates the target file
19
# More elegant than, but equivalent to: # cd source/directory # tar cf . | (cd ../dest/directory; tar xpvf ) # # Also having same effect: # cp a /source/directory/* /dest/directory # Or: # cp a /source/directory/* /source/directory/.[^.]* /dest/directory # If there are hidden files in /source/directory. bunzip2 c linux2.6.16.tar.bz2 | tar xvf # uncompress tar file | then pass it to "tar" # If "tar" has not been patched to handle "bunzip2", #+ this needs to be done in two discrete steps, using a pipe. # The purpose of the exercise is to unarchive "bzipped" kernel source.
Note that in this context the "" is not itself a Bash operator, but rather an option recognized by certain UNIX utilities that write to stdout, such as tar, cat, etc.
bash$ echo "whatever" | cat whatever
Where a filename is expected, redirects output to stdout (sometimes seen with tar cf), or accepts input from stdin, rather than from a file. This is a method of using a fileoriented utility as a filter in a pipe.
bash$ file Usage: file [bciknvzL] [f namefile] [m magicfiles] file...
By itself on the command line, file fails with an error message. Add a "" for a more useful result. This causes the shell to await user input.
bash$ file abc standard input:
ASCII text
bash$ file
20
Now the command accepts input from stdin and analyzes it. The "" can be used to pipe stdout to other commands. This permits such stunts as prepending lines to a file. Using diff to compare a file with a section of another: grep Linux file1 | diff file2 Finally, a realworld example using with tar.
# 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
Filenames beginning with "" may cause problems when coupled with the "" redirection operator. A script should check for this and add an appropriate prefix to such filenames, for example ./FILENAME, $PWD/FILENAME, or $PATHNAME/FILENAME. If the value of a variable begins with a , this may likewise create problems. Chapter 3. Special Characters 21
previous working directory. A cd command changes to the previous working directory. This uses the $OLDPWD environmental variable. Do not confuse the "" used in this sense with the "" redirection operator just discussed. The interpretation of the "" depends on the context in which it appears. Minus. Minus sign in an arithmetic operation. = Equals. Assignment operator
a=28 echo $a
# 28
In a different context, the "=" is a string comparison operator. + Plus. Addition arithmetic operator. In a different context, the + is a Regular Expression operator. + Option. Option flag for a command or filter. Certain commands and builtins use the + to enable certain options and the to disable them. % modulo. Modulo (remainder of a division) arithmetic operation. In a different context, the % is a pattern matching operator. ~ home directory [tilde]. This corresponds to the $HOME internal variable. ~bozo is bozo's home directory, and ls ~bozo lists the contents of it. ~/ is the current user's home directory, and ls ~/ lists the contents of it.
bash$ echo ~bozo /home/bozo bash$ echo ~ /home/bozo bash$ echo ~/ /home/bozo/ bash$ echo ~: /home/bozo: bash$ echo ~nonexistentuser ~nonexistentuser
~+ current working directory. This corresponds to the $PWD internal variable. ~ previous working directory. This corresponds to the $OLDPWD internal variable. Chapter 3. Special Characters 22
Advanced BashScripting Guide =~ regular expression match. This operator was introduced with version 3 of Bash. ^ beginningofline. In a regular expression, a "^" addresses the beginning of a line of text. Control Characters change the behavior of the terminal or text display. A control character is a CONTROL + key combination (pressed simultaneously). A control character may also be written in octal or hexadecimal notation, following an escape. Control characters are not normally useful inside a script. CtlB Backspace (nondestructive). CtlC Break. Terminate a foreground job. CtlD Log out from a shell (similar to exit). "EOF" (end of file). This also terminates input from stdin. When typing text on the console or in an xterm window, CtlD erases the character under the cursor. When there are no characters present, CtlD logs out of the session, as expected. In an xterm window, this has the effect of closing the window. CtlG "BEL" (beep). On some oldtime teletype terminals, this would actually ring a bell. CtlH "Rubout" (destructive backspace). Erases characters the cursor backs over while backspacing.
#!/bin/bash # Embedding CtlH in a string. a="^H^H" echo "abcdef" echo echo n "abcdef$a " # Space at end ^ echo echo n "abcdef$a" # No space at end echo; echo # Constantin Hagemeier suggests trying: # a=$'\010\010' # a=$'\b\b' # Two CtlH's backspaces # ctlV ctlH, using vi/vim # abcdef # abcd f ^ Backspaces twice. # abcdef ^ Doesn't backspace (why?). # Results may not be quite as expected.
23
CtlI Horizontal tab. CtlJ Newline (line feed). In a script, may also be expressed in octal notation '\012' or in hexadecimal '\x0a'. CtlK Vertical tab. When typing text on the console or in an xterm window, CtlK erases from the character under the cursor to end of line. Within a script, CtlK may behave differently, as in Lee Lee Maschmeyer's example, below. CtlL Formfeed (clear the terminal screen). In a terminal, this has the same effect as the clear command. When sent to a printer, a CtlL causes an advance to end of the paper sheet. CtlM Carriage return.
#!/bin/bash # Thank you, Lee Maschmeyer, for this example. read n 1 s p \ $'ControlM leaves cursor at beginning of this line. Press Enter. \x0d' # Of course, '0d' is the hex equivalent of ControlM. echo >&2 # The 's' makes anything typed silent, #+ so it is necessary to go to new line explicitly. read n 1 s p $'ControlJ leaves cursor on next line. \x0a' # '0a' is the hex equivalent of ControlJ, linefeed. echo >&2 ### read n 1 s p $'And ControlK\x0bgoes straight down.' echo >&2 # ControlK is vertical tab. # A better example of the effect of a vertical tab is: var=$'\x0aThis is the bottom line\x0bThis is the top line\x0a' echo "$var" # This works the same way as the above example. However: echo "$var" | col # This causes the right end of the line to be higher than the left end. # It also explains why we started and ended with a line feed #+ to avoid a garbled screen. # As Lee Maschmeyer explains: # # In the [first vertical tab example] . . . the vertical tab #+ makes the printing go straight down without a carriage return.
24
exit 0
CtlQ Resume (XON). This resumes stdin in a terminal. CtlS Suspend (XOFF). This freezes stdin in a terminal. (Use CtlQ to restore input.) CtlU Erase a line of input, from the cursor backward to beginning of line. In some settings, CtlU erases the entire line of input, regardless of cursor position. CtlV When inputting text, CtlV permits inserting control characters. For example, the following two are equivalent:
echo e '\x0a' echo <CtlV><CtlJ>
CtlV is primarily useful from within a text editor. CtlW When typing text on the console or in an xterm window, CtlW erases from the character under the cursor backwards to the first instance of whitespace. In some settings, CtlW erases backwards to first nonalphanumeric character. CtlZ Pause a foreground job. Whitespace functions as a separator, separating commands or variables. Whitespace consists of either spaces, tabs, blank lines, or any combination thereof. [15] In some contexts, such as variable assignment, whitespace is not permitted, and results in a syntax error. Blank lines have no effect on the action of a script, and are therefore useful for visually separating functional sections. $IFS, the special variable separating fields of input to certain commands, defaults to whitespace.
25
The only time a variable appears "naked" without the $ prefix is when declared or assigned, when unset, when exported, or in the special case of a variable representing a signal (see Example 295). Assignment may be with an = (as in var1=27), in a read statement, and at the head of a loop (for var2 in 1 2 3). Enclosing a referenced value in double quotes (" ") does not interfere with variable substitution. This is called partial quoting, sometimes referred to as "weak quoting." Using single quotes (' ') causes the variable name to be used literally, and no substitution will take place. This is full quoting, sometimes referred to as "strong quoting." See Chapter 5 for a detailed discussion. Note that $variable is actually a simplified alternate form of ${variable}. In contexts where the $variable syntax causes an error, the longer form may work (see Section 9.3, below).
26
echo hello # hello # Not a variable reference, just the string "hello" . . . echo $hello # 375 # ^ This *is* a variable reference. echo ${hello} # 375 # Also a variable reference, as above. # Quoting . . . echo "$hello" echo "${hello}" echo hello="A B C D" echo $hello # A B C D echo "$hello" # A B C D # As you see, echo $hello and echo "$hello" # Why? # ======================================= # 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.
# 375 # 375
hello= # Setting it to a null value. echo "\$hello (null value) = $hello" # 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 echo echo "var1=$var1 var3=$V3 var2=$var2 var3=$var3"
27
An uninitialized variable has a "null" value no assigned value at all (not zero!). Using a variable before assigning a value to it will usually cause problems. It is nevertheless possible to perform arithmetic operations on an uninitialized variable.
echo "$uninitialized" let "uninitialized += 5" echo "$uninitialized" # # #+ # # (blank line) # Add 5 to it. # 5
Conclusion: An uninitialized variable has no value, however it acts as if it were 0 in an arithmetic operation. This is undocumented (and probably nonportable) behavior.
28
29
exit 0
Variable assignment using the $(...) mechanism (a newer method than backquotes). This is actually a form of command substitution.
# From /etc/rc.d/rc.local R=$(cat /etc/redhatrelease) arch=$(uname m)
b=${a/23/BB} echo "b = $b" declare i b echo "b = $b" let "b += 1" echo "b = $b" echo c=BB34 echo "c = $c"
# # # # #
Substitute "BB" for "23". This transforms $b into a string. b = BB35 Declaring it an integer doesn't help. b = BB35
# BB35 + 1 = # b = 1
# c = BB34
30
# What about null variables? 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.
Untyped variables are both a blessing and a curse. They permit more flexibility in scripting (enough rope to hang yourself!) and make it easier to grind out lines of code. However, they permit errors to creep in and encourage sloppy programming habits. The burden is on the programmer to keep track of what type the script variables are. Bash will not do it for you.
31
Advanced BashScripting Guide (Thank you, Stphane Chazelas for the clarification, and for providing the above example.) If a script sets environmental variables, they need to be "exported", that is, reported to the environment local to the script. This is the function of the export command.
A script can export variables only to child processes, that is, only to commands or processes which that particular script initiates. A script invoked from the command line cannot export variables back to the command line environment. Child processes cannot export variables back to the parent processes that spawned them. Definition: A child process is a subprocess launched by another process, its parent. positional parameters arguments passed to the script from the command line: $0, $1, $2, $3 . . . $0 is the name of the script itself, $1 is the first argument, $2 the second, $3 the third, and so forth. [17] After $9, the arguments must be enclosed in brackets, for example, ${10}, ${11}, ${12}. The special variables $* and $@ denote all the positional parameters.
32
if [ n "${10}" ] # Parameters > $9 must be enclosed in {brackets}. then echo "Parameter #10 is ${10}" fi echo "" echo "All the commandline parameters are: "$*"" if [ $# lt "$MINPARAMS" ] then echo echo "This script needs at least $MINPARAMS commandline arguments!" fi echo exit 0
Bracket notation for positional parameters leads to a fairly simple way of referencing the last argument passed to a script on the command line. This also requires indirect referencing.
args=$# # Number of args passed. lastarg=${!args} # Or: lastarg=${!#} # (Thanks, Chris Monson.) # Note that lastarg=${!$#} doesn't work.
Some scripts can perform different operations, depending on which name they are invoked with. For this to work, the script needs to check $0, the name it was invoked by. There must also exist symbolic links to all the alternate names of the script. See Example 152.
If a script expects a command line parameter but is invoked without one, this may cause a null variable assignment, 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.
variable1_=$1_ # Rather than variable1=$1 # This will prevent an error, even if positional parameter is absent. critical_argument01=$variable1_ # The extra character can be stripped off later, like so. variable1=${variable1_/_/} # Side effects only if $variable1_ begins with an underscore. # This uses one of the parameter substitution templates discussed later. # (Leaving out the replacement pattern results in a deletion.) # A more straightforward way of dealing with this is #+ to simply test whether expected positional parameters have been passed. if [ z $1 ] then exit $E_MISSING_POS_PARAM fi
# However, as Fabian Kreutz points out, #+ the above method may have unexpected sideeffects. # A better method is parameter substitution: # ${1:$DefaultVal}
33
E_NOARGS=65
if [ z "$1" ] then echo "Usage: `basename $0` [domainname]" exit $E_NOARGS fi # Check script case `basename "wh" ) "whripe") "whradb") "whcw" ) * ) esac exit $? name and call proper server. $0` in # Or: case ${0##*/} in whois $1@whois.ripe.net;; whois $1@whois.ripe.net;; whois $1@whois.radb.net;; whois $1@whois.cw.net;; echo "Usage: `basename $0` [domainname]";;
The shift command reassigns the positional parameters, in effect shifting them to the left one notch. $1 < $2, $2 < $3, $3 < $4, etc. The old $1 disappears, but $0 (the script name) does not change. If you use a large number of positional parameters to a script, shift lets you access those past 10, although {bracket} notation also permits this.
34
The shift command can take a numerical parameter indicating how many positions to shift.
#!/bin/bash # shiftpast.sh shift 3 # Shift 3 positions. # n=3; shift $n # Has the same effect. echo "$1" exit 0
$ sh shiftpast.sh 1 2 3 4 5 4
The shift command works in a similar fashion on parameters passed to a function. See Example 3315.
35
Chapter 5. Quoting
Quoting means just that, bracketing a string in quotes. This has the effect of protecting special characters in the string from reinterpretation or expansion by the shell or shell script. (A character is "special" if it has an interpretation other than its literal meaning, such as the wild card character *.)
bash$ ls l [Vv]* rwrwr 1 bozo bozo rwrwr 1 bozo bozo rwrwr 1 bozo bozo
324 Apr 2 15:05 VIEWDATA.BAT 507 May 4 14:25 vartrace.sh 539 Apr 14 17:11 viewdata.sh
In everyday speech or writing, when we "quote" a phrase, we set it apart and give it special meaning. In a Bash script, when we quote a string, we set it apart and protect its literal meaning. Certain programs and utilities reinterpret or expand special characters in a quoted string. An important use of quoting is protecting a commandline parameter from the shell, but still letting the calling program expand it.
bash$ grep '[Ff]irst' *.txt file1.txt:This is the first line of file1.txt. file2.txt:This is the First line of file2.txt.
Note that the unquoted grep [Ff]irst *.txt works under the Bash shell. [18] Quoting can also suppress echo's "appetite" for newlines.
bash$ echo $(ls l) total 8 rwrwr 1 bo bo 13 Aug 21 12:57 t.sh rwrwr 1 bo bo 78 Aug 21 12:57 u.sh
bash$ echo "$(ls l)" total 8 rwrwr 1 bo bo 13 Aug 21 12:57 t.sh rwrwr 1 bo bo 78 Aug 21 12:57 u.sh
Use double quotes to prevent word splitting. [21] An argument enclosed in double quotes presents itself as a single word, even if it contains whitespace separators.
variable1="a variable containing five words" COMMAND This is $variable1 # Executes COMMAND with 7 arguments: # "This" "is" "a" "variable" "containing" "five" "words"
Chapter 5. Quoting
36
variable2=""
# Empty.
COMMAND $variable2 $variable2 $variable2 # Executes COMMAND with no arguments. COMMAND "$variable2" "$variable2" "$variable2" # Executes COMMAND with 3 empty arguments. COMMAND "$variable2 $variable2 $variable2" # Executes COMMAND with 1 argument (2 spaces). # Thanks, Stphane Chazelas.
Enclosing the arguments to an echo statement in double quotes is necessary only when word splitting or preservation of whitespace is an issue. Example 51. Echoing Weird Variables
#!/bin/bash # weirdvars.sh: Echoing weird variables. var="'(]\\{}\$\"" echo $var # '(]\{}$" echo "$var" # '(]\{}$" echo IFS='\' echo $var echo "$var"
Single quotes (' ') operate similarly to double quotes, but do not permit referencing variables, since the special meaning of $ is turned off. Within single quotes, every special character except ' gets interpreted literally. Consider single quotes ("full quoting") to be a stricter method of quoting than double quotes ("partial quoting"). Since even the escape character (\) gets a literal interpretation within single quotes, trying to enclose a single quote within single quotes will not yield the expected result.
echo "Why can't I write 's between single quotes" echo # The roundabout method. echo 'Why can'\''t I write '"'"'s between single quotes' # || || || # Three singlequoted strings, with escaped and quoted single quotes between. # This example courtesy of Stphane Chazelas.
Chapter 5. Quoting
37
5.2. Escaping
Escaping is a method of quoting single characters. The escape (\) preceding a character tells the shell to interpret that character literally. With certain commands and utilities, such as echo and sed, escaping a character may have the opposite effect it can toggle on a special meaning for that character. Special meanings of certain escaped characters used with echo and sed \n means newline \r means return \t means tab \v means vertical tab \b means backspace \a means "alert" (beep or flash) \0xx translates to the octal ASCII equivalent of 0xx
echo "\v\v\v\v" # Prints \v\v\v\v literally. # Use the e option with 'echo' to print escaped characters.
Chapter 5. Quoting
38
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 BEEP" echo $'\n' # Newline. echo $'\a' # Alert (beep). echo "===============" echo "QUOTATION MARKS" # Version 2 and later of Bash permits using the $'\nnn' construct. # Note that in this case, '\nnn' is an octal value. echo $'\t \042 \t' # Quote (") framed by tabs. # 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 "===============" echo
# Assigning ASCII characters to a variable. # quote=$'\042' # " assigned to a variable. echo "$quote This is a 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' echo $ABC echo; echo escape=$'\033' # 033 is octal for escape. echo "\"escape\" echoes as $escape" # no visible output. echo; echo exit 0 # 101, 102, 103 are octal A, B, C.
See Example 341 for another example of the $' ' string expansion construct. \" gives the quote its literal meaning
Chapter 5. Quoting
39
\$ gives the dollar sign its literal meaning (variable name following \$ will not be referenced)
echo "\$variable01" # results in $variable01
# Whereas . . . echo "\" # Invokes secondary prompt from the command line. # In a script, gives an error message.
The behavior of \ depends on whether it is itself escaped, quoted, or appearing within command substitution or a here document.
# # # # # # # # # # # # # # # # Simple escaping and quoting z \z \z \\z \z \z Command substitution z z \z \z \z \\z \z \z
# \z
# \z
Elements of a string assigned to a variable may be escaped, but the escape character alone may not be assigned to a variable.
variable=\ echo "$variable" # Will not work gives an error message: # test.sh: : command not found # A "naked" escape cannot safely be assigned to a variable. # # What actually happens here is that the "\" escapes the newline and #+ the effect is variable=echo "$variable"
Chapter 5. Quoting
40
# 23skidoo # This works, since the second line #+ is a valid variable assignment.
variable=\ # \^ escape followed by space echo "$variable" # space variable=\\ echo "$variable"
# \
variable=\\\ echo "$variable" # Will not work gives an error message: # test.sh: \: command not found # # First escape escapes second one, but the third one is left "naked", #+ with same result as first instance, above. variable=\\\\ echo "$variable"
The escape also provides a means of writing a multiline command. Normally, each separate line constitutes a different command, but an escape at the end of a line escapes the newline character, and the command sequence continues on to the next line.
(cd /source/directory && tar cf . ) | \ (cd /dest/directory && tar xpvf ) # Repeating Alan Cox's directory tree copy command, # but split into two lines for increased legibility. # As an alternative: tar cf C /source/directory . | tar xpvf C /dest/directory # See note below. # (Thanks, Stphane Chazelas.)
If a script line ends with a |, a pipe character, then a \, 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 Chapter 5. Quoting 41
Chapter 5. Quoting
42
The equivalent of a bare exit is exit $? or even just omitting the exit.
#!/bin/bash COMMAND_1 . . . # Will exit with status of last command. COMMAND_LAST exit $? #!/bin/bash COMMAND1 . . . # Will exit with status of last command. COMMAND_LAST
43
Advanced BashScripting Guide $? reads the exit status of the last command executed. After a function returns, $? gives the exit status of the last command executed in the function. This is Bash's way of giving functions a "return value." After a script terminates, a $? from the command line gives the exit status of the script, that is, the last command executed in the script, which is, by convention, 0 on success or an integer in the range 1 255 on error.
# By convention, an 'exit 0' indicates success, #+ while a nonzero exit value means an error or anomalous condition.
$? is especially useful for testing the result of a command in a script (see Example 1533 and Example 1518). The !, the logical not qualifier, reverses the outcome of a test or command, and this affects its exit status. Example 62. Negating a condition using !
true # The "true" builtin. echo "exit status of \"true\" = $?"
# 0
! true echo "exit status of \"! true\" = $?" # 1 # Note that the "!" needs a space between it and the command. # !true leads to a "command not found" error # # The '!' operator prefixing a command invokes the Bash history mechanism. true !true # No error this time, but no negation either. # It just repeats the previous command (true). # Thanks, Stphane Chazelas and Kristopher Newsome.
Certain exit status codes have reserved meanings and should not be userspecified in a script.
44
Chapter 7. Tests
Every reasonably complete programming language can test for a condition, then act according to the result of the test. Bash has the test command, various bracket and parenthesis operators, and the if/then construct.
An if can test any command, not just conditions enclosed within brackets.
if cmp a b &> /dev/null # Suppress output. then echo "Files a and b are identical." else echo "Files a and b differ." fi # The very useful "ifgrep" construct: # if grep q Bash file then echo "File contains at least one occurrence of Bash." fi word=Linux letter_sequence=inu if echo "$word" | grep q "$letter_sequence" # The "q" option to grep suppresses output. then echo "$letter_sequence found in $word" else echo "$letter_sequence not found in $word" fi
Chapter 7. Tests
45
Chapter 7. Tests
46
xyz=
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.
Chapter 7. Tests
47
echo exit 0
When if and then are on same line in a condition test, a semicolon must terminate the if statement. Both if and then are keywords. Keywords (or commands) begin statements, and before a new statement on the same line begins, the old one must terminate.
if [ x "$filename" ]; then
Else if and elif elif elif is a contraction for else if. The effect is to nest an inner if/then construct within an outer one.
if [ condition1 ] then command1 command2 command3 elif [ condition2 ] # Same as else if then command4 command5 else defaultcommand fi
Chapter 7. Tests
48
Advanced BashScripting Guide The if test conditiontrue construct is the exact equivalent of if [ conditiontrue ]. As it happens, the left bracket, [ , is a token which invokes the test command. The closing right bracket, ] , in an if/test should not therefore be strictly necessary, however newer versions of Bash require it.
The test command is a Bash builtin which tests file types and compares strings. Therefore, in a Bash script, test does not call the external /usr/bin/test binary, which is part of the shutils package. Likewise, [ does not call /usr/bin/[, which is linked to /usr/bin/test.
bash$ type test test is a shell builtin bash$ type '[' [ is a shell builtin bash$ type '[[' [[ is a shell keyword bash$ type ']]' ]] is a shell keyword bash$ type ']' bash: type: ]: not found
If, for some reason, you wish to use /usr/bin/test in a Bash script, then specify it by full pathname. Example 72. Equivalence of test, /usr/bin/test, [ ], and /usr/bin/[
#!/bin/bash echo if test z "$1" then echo "No commandline arguments." else echo "First commandline argument is $1." fi echo if /usr/bin/test z "$1" # Equivalent to "test" builtin. # ^^^^^^^^^^^^^ # Specifying full pathname. then echo "No commandline arguments." else echo "First commandline 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 closebracket with an error message. then echo "No commandline arguments." else echo "First commandline argument is $1." fi
Chapter 7. Tests
49
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 commandline arguments." else echo "First commandline argument is $1." fi echo exit 0
The [[ ]] construct is the more versatile Bash version of [ ]. This is the extended test command, adopted from ksh88. No filename expansion or word splitting takes place between [[ and ]], but there is parameter expansion and command substitution.
file=/etc/passwd if [[ e $file ]] then echo "Password file exists." fi
Using the [[ ... ]] test construct, rather than [ ... ] can prevent many logic errors in scripts. For example, the &&, ||, <, and > operators work within a [[ ]] test, despite giving an error within a [ ] construct. Following an if, neither the test command nor the test brackets ( [ ] or [[ ]] ) are strictly necessary.
dir=/home/bozo if cd "$dir" 2>/dev/null; then echo "Now in $dir." else echo "Can't change to $dir." fi # "2>/dev/null" hides error message.
The "if COMMAND" construct returns the exit status of COMMAND. Similarly, a condition within test brackets may stand alone without an if, when used in combination with a list construct.
var1=20 var2=22 [ "$var1" ne "$var2" ] && echo "$var1 is not equal to $var2" home=/home/bozo [ d "$home" ] || echo "$home directory does not exist."
The (( )) construct expands and evaluates an arithmetic expression. If the expression evaluates as zero, it returns an exit status of 1, or "false". A nonzero expression returns an exit status of 0, or "true". This is in Chapter 7. Tests 50
Advanced BashScripting Guide marked contrast to using the test and [ ] constructs previously discussed.
# 1
# 0 # true # 0 # false # 1 # 0 # 1 # Division o.k. # 0 # Division result < 1. # Rounded off to 0. # 1 # Illegal division by 0. # 1
(( 1 / 0 )) 2>/dev/null # ^^^^^^^^^^^ echo "Exit status of \"(( 1 / 0 ))\" is $?." # What effect does the "2>/dev/null" have? # What would happen if it were removed? # Try removing it, then rerunning the script. exit 0
Advanced BashScripting Guide d file is a directory b file is a block device (floppy, cdrom, etc.) c file is a character device (keyboard, modem, sound card, etc.) p file is a pipe h file is a symbolic link L file is a symbolic link S file is a socket t file (descriptor) is associated with a terminal device This test option may be used to check whether the stdin ([ t 0 ]) or stdout ([ t 1 ]) in a given script is a terminal. r file has read permission (for the user running the test) w file has write permission (for the user running the test) x file has execute permission (for the user running the test) g setgroupid (sgid) flag set on file or directory If a directory has the sgid 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. u setuserid (suid) flag set on file A binary owned by root with setuserid flag set runs with root privileges, even when an ordinary user invokes it. [23] This is useful for executables (such as pppd and cdrecord) that need to access system hardware. Lacking the suid flag, these binaries could not be invoked by a nonroot user.
rwsrxrt 1 root 178236 Oct 2 2000 /usr/sbin/pppd
A file with the suid flag set shows an s in its permissions. k sticky bit set Commonly known as the sticky bit, the savetextmode 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. [24] If set on a directory, it restricts write permission. Setting the sticky bit adds a t to the permissions on the file or directory listing.
Chapter 7. Tests
52
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 /tmp. (The owner of the directory or root can, of course, delete or rename files there.) O you are owner of file G groupid of file same as yours N file modified since it was last read f1 nt f2 file f1 is newer than f2 f1 ot f2 file f1 is older than f2 f1 ef f2 files f1 and f2 are hard links to the same file ! "not" reverses the sense of the tests above (returns true if condition absent).
# If no args are passed to the script set directoriestosearch #+ to current directory. Otherwise set the directoriestosearch #+ to the args passed. ###################### [ $# eq 0 ] && directorys=`pwd` || directorys=$@
# #+ # #+
function linkchk to check the directory it is passed that are links and don't exist, then print them quoted. the elements in the directory is a subdirectory then subdirectory to the linkcheck function.
Chapter 7. Tests
53
Example 281, Example 107, Example 103, Example 283, and Example A1 also illustrate uses of the file test operators.
Advanced BashScripting Guide le is less than or equal to if [ "$a" le "$b" ] < is less than (within double parentheses) (("$a" < "$b")) <= is less than or equal to (within double parentheses) (("$a" <= "$b")) > is greater than (within double parentheses) (("$a" > "$b")) >= is greater than or equal to (within double parentheses) (("$a" >= "$b")) string comparison = is equal to if [ "$a" = "$b" ] == is equal to if [ "$a" == "$b" ] This is a synonym for =. The == comparison operator behaves differently within a doublebrackets test than within single brackets.
[[ $a == z* ]] [[ $a == "z*" ]] [ $a == z* ] [ "$a" == "z*" ] # True if $a starts with an "z" (pattern matching). # True if $a is equal to z* (literal matching). # File globbing and word splitting take place. # True if $a is equal to z* (literal matching).
!= is not equal to if [ "$a" != "$b" ] This operator uses pattern matching within a [[ ... ]] construct. < Chapter 7. Tests 55
Advanced BashScripting Guide is less than, in ASCII alphabetical order if [[ "$a" < "$b" ]] if [ "$a" \< "$b" ] Note that the "<" needs to be escaped within a [ ] construct. > is greater than, in ASCII alphabetical order if [[ "$a" > "$b" ]] if [ "$a" \> "$b" ] Note that the ">" needs to be escaped within a [ ] construct. See Example 2611 for an application of this comparison operator. n string is not "null." The n test absolutely requires that the string be quoted within the test brackets. Using an unquoted string with ! z, or even just the unquoted string alone within test brackets (see Example 76) normally works, however, this is an unsafe practice. Always quote a tested string. [25] z string is "null, " that is, has zero length
Chapter 7. Tests
56
# 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
# Lets 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 ("$string1"). # # As Stephane Chazelas points out,
Chapter 7. Tests
57
echo
string1=initialized if [ $string1 ] # Again, $string1 stands naked. 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 naked. 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 "headsup".
Chapter 7. Tests
58
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.
compound comparison a logical and exp1 a exp2 returns true if both exp1 and exp2 are true. o logical or exp1 o exp2 returns true if either exp1 or exp2 are true. These are similar to the Bash comparison operators && and ||, used within double brackets.
[[ condition1 && condition2 ]]
The o and a operators work with the test command or occur within single test brackets.
if [ "$exp1" a "$exp2" ]
Refer to Example 83, Example 2616, and Example A30 to see compound comparison operators in action.
Chapter 7. Tests
59
Explain the test constructs in the above snippet, then examine an updated version of the file, /etc/X11/xinit/xinitrc, and analyze the if/then test constructs there. You may need to refer ahead to the discussions of grep, sed, and regular expressions.
Chapter 7. Tests
60
Do not confuse the "=" assignment operator with the = test operator.
# = as a test operator
if [ "$string1" = "$string2" ] then command fi # if [ "X$string1" = "X$string2" ] is safer, #+ to prevent an error message should one of the variables be empty. # (The prepended "X" characters cancel out.)
# z = 125
61
Advanced BashScripting Guide This operator finds use in, among other things, generating numbers within a specific range (see Example 925 and Example 928) and formatting program output (see Example 2615 and Example A6). It can even be used to generate prime numbers, (see Example A16). Modulo turns up surprisingly often in various numerical recipes.
# # Argument check ARGS=2 E_BADARGS=65 if [ $# ne "$ARGS" ] then echo "Usage: `basename $0` firstnumber secondnumber" exit $E_BADARGS fi #
gcd () { dividend=$1 divisor=$2 # Arbitrary assignment. #! It doesn't matter which of the two is larger. # Why not? # If uninitialized variable used in loop, #+ it results in an error message #+ on the first pass through loop.
remainder=1
until [ "$remainder" eq 0 ] do let "remainder = $dividend % $divisor" dividend=$divisor # Now repeat with 2 smallest numbers. divisor=$remainder done # Euclid's algorithm } # Last $dividend is the gcd.
62
# Exercise : # # Check commandline arguments to make sure they are integers, #+ and exit the script with an appropriate error message if not. exit 0
+= "plusequal" (increment variable by a constant) let "var += 5" results in var being incremented by 5. = "minusequal" (decrement variable by a constant) *= "timesequal" (multiply variable by a constant) let "var *= 4" results in var being multiplied by 4. /= "slashequal" (divide variable by a constant) %= "modequal" (remainder of dividing variable by a constant) Arithmetic operators often occur in an expr or let expression.
: $((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.
63
# (( ++n )
also works.
Integer variables in Bash are actually signed long (32bit) integers, in the range of 2147483648 to 2147483647. An operation that takes a variable outside these limits will give an erroneous result.
a=2147483646 echo "a = $a" let "a+=1" echo "a = $a" let "a+=1" echo "a = $a"
# # # # # #
a = 2147483646 Increment "a". a = 2147483647 increment "a" again, past the limit. a = 2147483648 ERROR (out of range)
Bash does not understand floating point arithmetic. It treats numbers containing a decimal point as strings.
a=1.5 let "b = $a + 1.3" # Error. # t2.sh: let: b = 1.5 + 1.3: syntax error in expression # (error token is ".5 + 1.3") echo "b = $b" # b=1
Use bc in scripts that that need floating point calculations or math library functions. bitwise operators. The bitwise operators seldom make an appearance in shell scripts. Their chief use seems to be manipulating and testing values read from ports or sockets. "Bit flipping" is more relevant to compiled languages, such as C and C++, which run fast enough to permit its use on the fly. bitwise operators
64
Advanced BashScripting Guide << bitwise left shift (multiplies by 2 for each shift position) <<= "leftshiftequal" let "var <<= 2" results in var leftshifted 2 bits (multiplied by 4) >> bitwise right shift (divides by 2 for each shift position) >>= "rightshiftequal" (inverse of <<=) & bitwise and &= "bitwise andequal" | bitwise OR |= "bitwise ORequal" ~ bitwise negate ! bitwise NOT ^ bitwise XOR ^= "bitwise XORequal" logical operators && and (logical)
if [ $condition1 ] && [ $condition2 ] # Same as: if [ $condition1 a $condition2 ] # Returns true if both condition1 and condition2 hold true... if [[ $condition1 && $condition2 ]] # Also works. # Note that && operator not permitted within [ ... ] construct.
&& may also, depending on context, be used in an and list to concatenate commands. || or (logical)
if [ $condition1 ] || [ $condition2 ] # Same as: if [ $condition1 o $condition2 ] # Returns true if either condition1 or condition2 holds true... if [[ $condition1 || $condition2 ]] # Also works. # Note that || operator not permitted within [ ... ] construct.
Bash tests the exit status of each statement linked with a logical operator.
65
Advanced BashScripting Guide Example 83. Compound Condition Tests Using && and ||
#!/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 doublebracket iftest is more flexible #+ than the singlebracket 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
66
miscellaneous operators , comma operator The comma operator chains together two or more arithmetic operations. All the operations are evaluated (with possible side effects), but only the last operation is returned.
let "t1 = ((5 + 3, 7 1, 15 4))" echo "t1 = $t1" # t1 = 11 let "t2 = ((a = 9, 15 / 3))" echo "t2 = $t2 a = $a" # Set "a" and calculate "t2". # t2 = 5 a = 9
The comma operator finds use mainly in for loops. See Example 1012.
# 32
# Octal: numbers preceded by '0' (zero) let "oct = 032" echo "octal number = $oct" # Expresses result in decimal. #
# 26
# Hexadecimal: numbers preceded by '0x' or '0X' let "hex = 0x32" echo "hexadecimal number = $hex" # 50 echo $((0x9abc)) # 39612 # ^^ ^^ doubleparentheses arithmetic expansion/evaluation # Expresses result in decimal.
67
# 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" let "b32 = 32#77" echo "base32 number = $b32"
# 31181
# 231
let "b64 = 64#@_" echo "base64 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 0 # Thanks, Rich Bartell and Stephane Chazelas, for clarification.
68
69
$BASH_ENV an environmental variable pointing to a Bash startup file to be read when a script is invoked $BASH_SUBSHELL a variable indicating the subshell level. This is a new addition to Bash, version 3. See Example 201 for usage. $BASH_VERSINFO[n] a 6element array containing version information about the installed release of Bash. This is similar to $BASH_VERSION, below, but a bit more detailed.
# Bash version info: for n in 0 1 2 3 4 5 do echo "BASH_VERSINFO[$n] = ${BASH_VERSINFO[$n]}" done # # # # # # BASH_VERSINFO[0] BASH_VERSINFO[1] BASH_VERSINFO[2] BASH_VERSINFO[3] BASH_VERSINFO[4] BASH_VERSINFO[5] = = = = = = 3 00 14 1 release i386redhatlinuxgnu # # # # # # # Major version no. Minor version no. Patch level. Build version. Release status. Architecture (same as $MACHTYPE).
Checking $BASH_VERSION is a good method of determining which shell is running. $SHELL does not necessarily give the correct answer. $DIRSTACK the top value in the directory stack (affected by pushd and popd) Chapter 9. Variables Revisited 70
Advanced BashScripting Guide This builtin variable corresponds to the dirs command, however dirs shows the entire contents of the directory stack. $EDITOR the default editor invoked by a script, usually vi or emacs. $EUID "effective" user ID number Identification number of whatever identity the current user has assumed, perhaps by means of su. The $EUID is not necessarily the same as the $UID. $FUNCNAME name of the current function
xyz23 () { echo "$FUNCNAME now executing." } xyz23 echo "FUNCNAME = $FUNCNAME" # FUNCNAME = # Null value outside a function.
$GLOBIGNORE A list of filename patterns to be excluded from matching in globbing. $GROUPS groups current user belongs to This is a listing (array) of the group id numbers for current user, as recorded in /etc/passwd and /etc/group.
root# echo $GROUPS 0
$HOME home directory of the user, usually /home/username (see Example 915) $HOSTNAME The hostname command assigns the system host name at bootup in an init script. However, the gethostname() function sets the Bash internal variable $HOSTNAME. See also Example 915. $HOSTTYPE host type Like $MACHTYPE, identifies the system hardware.
bash$ echo $HOSTTYPE i686
Advanced BashScripting Guide internal field separator This variable determines how Bash recognizes fields, or word boundaries, when it interprets character strings.
$IFS defaults to whitespace (space, tab, and newline), but may be changed, for example, to parse a commaseparated data file. Note that $* uses the first character held in $IFS. See Example 51.
bash$ echo "$IFS" (With $IFS set to default, a blank line displays.)
bash$ echo "$IFS" | cat vte ^I$ $ (Show whitespace here space, ^I [horizontal tab], and newline and display "$" at endofline.)
bash$ bash c 'set w x y z; IFS=":;"; echo "$*"' w:x:y:z (Read commands from string and assign any arguments to pos params.)
$IFS does not handle whitespace the same as it does other characters. Example 91. $IFS and whitespace
#!/bin/bash # $IFS treats whitespace differently than other characters. output_args_one_per_line() { for arg do echo "[$arg]" done } echo; echo "IFS=\" \"" echo "" IFS=" " var=" a b c " output_args_one_per_line $var # # [a] # [b] # [c]
b c
"`
72
# The same thing happens with the "FS" field separator in awk. # Thank you, Stephane Chazelas. echo exit 0
(Many thanks, Stphane Chazelas, for clarification and examples.) See also Example 1538, Example 107, and Example 1814 for instructive examples of using $IFS. $IGNOREEOF ignore EOF: how many endoffiles (controlD) the shell will ignore before logging out. $LC_COLLATE Often set in the .bashrc or /etc/profile files, this variable controls collation order in filename expansion and pattern matching. If mishandled, LC_COLLATE can cause unexpected results in filename globbing. 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, ls [AM]* would match both File1.txt and file1.txt. To revert to the customary behavior of bracket matching, set LC_COLLATE to C by an export LC_COLLATE=C in /etc/profile and/or ~/.bashrc. $LC_CTYPE This internal variable controls character interpretation in globbing and pattern matching. $LINENO 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.
# *** BEGIN DEBUG BLOCK *** last_cmd_arg=$_ # Save it. echo "At line number $LINENO, variable \"v1\" = $v1" echo "Last command argument processed = $last_cmd_arg" # *** END DEBUG BLOCK ***
Advanced BashScripting Guide old working directory ("OLDprintworkingdirectory", previous directory you were in) $OSTYPE operating system type
bash$ echo $OSTYPE linux
$PATH path to binaries, usually /usr/bin/, /usr/X11R6/bin/, /usr/local/bin, etc. When given a command, the shell automatically does a hash table search on the directories listed in the path for the executable. The path is stored in the environmental variable, $PATH, a list of directories, separated by colons. Normally, the system stores the $PATH definition in /etc/profile and/or ~/.bashrc (see Appendix G).
bash$ echo $PATH /bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin:/sbin:/usr/sbin
PATH=${PATH}:/opt/bin appends the /opt/bin 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 $PATH (a child process, such as a script, may not change the environment of the parent process, the shell).
The current "working directory", ./, is usually omitted from the $PATH as a security measure. $PIPESTATUS Array variable holding exit status(es) of last executed foreground pipe. Interestingly enough, this does not necessarily give the same result as the exit status of the last executed command.
bash$ echo $PIPESTATUS 0 bash$ ls al | bogus_command bash: bogus_command: command not found bash$ echo $PIPESTATUS 141 bash$ ls al | bogus_command bash: bogus_command: command not found bash$ echo $? 127
The members of the $PIPESTATUS array hold the exit status of each respective command executed in a pipe. $PIPESTATUS[0] holds the exit status of the first command in the pipe, $PIPESTATUS[1] the exit status of the second command, and so on. The $PIPESTATUS variable may contain an erroneous 0 value in a login shell (in releases prior to 3.0 of Bash).
tcsh% bash bash$ who | grep nobody | sort bash$ echo ${PIPESTATUS[*]} 0
74
Advanced BashScripting Guide The above lines contained in a script would produce the expected 0 1 0 output. Thank you, Wayne Pollock for pointing this out and supplying the above example. The $PIPESTATUS variable gives unexpected results in some contexts.
bash$ echo $BASH_VERSION 3.00.14(1)release bash$ $ ls | bogus_command | wc bash: bogus_command: command not found 0 0 0 bash$ echo ${PIPESTATUS[@]} 141 127 0
Chet Ramey attributes the above output to the behavior of ls. If ls writes to a pipe whose output is not read, then SIGPIPE kills it, and its exit status is 141. Otherwise its exit status is 0, as expected. This likewise is the case for tr. $PIPESTATUS is a "volatile" variable. It needs to be captured immediately after the pipe in question, before any other command intervenes.
bash$ $ ls | bogus_command | wc bash: bogus_command: command not found 0 0 0 bash$ echo ${PIPESTATUS[@]} 0 127 0 bash$ echo ${PIPESTATUS[@]} 0
The pipefail option may be useful in cases where $PIPESTATUS does not give the desired information. $PPID The $PPID of a process is the process ID (pid) of its parent process. [26] Compare this with the pidof command. $PROMPT_COMMAND A variable holding a command to be executed just before the primary prompt, $PS1 is to be displayed. $PS1 This is the main prompt, seen at the command line. $PS2 The secondary prompt, seen when additional input is expected. It displays as ">". $PS3 The tertiary prompt, displayed in a select loop (see Example 1029). $PS4 The quartenary prompt, shown at the beginning of each line of output when invoking a script with the x option. It displays as "+". Chapter 9. Variables Revisited 75
Advanced BashScripting Guide $PWD working directory (directory you are in at the time) This is the analog to the pwd builtin command.
#!/bin/bash E_WRONG_DIRECTORY=73 clear # Clear 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 .[AZaz09]* # 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. # Filenames may contain all characters in the 0 255 range, except "/". # Deleting files beginning with weird characters is left as an exercise. # Various other operations here, as necessary. echo echo "Done." echo "Old files deleted in $TargetDirectory." echo
exit 0
$REPLY The default value when a variable is not supplied to read. Also applicable to select menus, but only supplies the item number of the variable chosen, not the value of the variable itself.
#!/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
76
$SHLVL Shell level, how deeply Bash is nested. [27] If, at the command line, $SHLVL is 1, then in a script it will increment to 2. This variable is not affected by subshells. Use $BASH_SUBSHELL when you need an indication of subshell nesting. $TMOUT If the $TMOUT environmental variable is set to a nonzero value time, then the shell prompt will time out after $time seconds. This will cause a logout.
77
Advanced BashScripting Guide As of version 2.05b of Bash, it is now possible to use $TMOUT in a script in combination with read.
# Works in scripts for Bash, versions 2.05b and later. TMOUT=3 # Prompt times out at three seconds.
echo "What is your favorite song?" echo "Quickly now, you only have $TMOUT seconds to answer!" read song if [ z "$song" ] then song="(no answer)" # Default response. fi echo "Your favorite song is $song."
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 trap (see Example 295) the interrupt generated by the timing loop (whew!).
TIMELIMIT=3
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 14 }
78
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 "tout.sh", below. # 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
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
79
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.x. echo if [ z "$variable" ] # Is null? then echo "Timed out, variable still unset." else echo "variable = $variable" fi exit 0
$UID user ID number current user's user identification number, as recorded in /etc/passwd This is the current user's real id, even if she has temporarily assumed another identity through su. $UID is a readonly variable, not subject to change from the command line or within a script, and is the counterpart to the id builtin.
Am I root or not?
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
80
See also Example 23. The variables $ENV, $LOGNAME, $MAIL, $TERM, $USER, and $USERNAME are not Bash builtins. These are, however, often set as environmental variables in one of the Bash startup files. $SHELL, the name of the user's login shell, may be set from /etc/passwd or in an "init" script, and it is likewise not a Bash builtin.
tcsh% echo $LOGNAME bozo tcsh% echo $SHELL /bin/tcsh tcsh% echo $TERM rxvt bash$ echo $LOGNAME bozo bash$ echo $SHELL /bin/tcsh bash$ echo $TERM rxvt
Positional Parameters $0, $1, $2, etc. positional parameters, passed from command line to script, passed to a function, or set to a variable (see Example 45 and Example 1416) $# number of command line arguments [28] or positional parameters (see Example 332) $* All of the positional parameters, seen as a single word "$*" must be quoted. $@ Same as $*, 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. Of course, "$@" should be quoted.
81
Advanced BashScripting Guide Example 96. arglist: Listing arguments with $* and $@
#!/bin/bash # arglist.sh # Invoke this script with several arguments, such as "one two three". E_BADARGS=65 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
Following a shift, the $@ holds the remaining commandline parameters, lacking the previous $1, which was lost.
#!/bin/bash # Invoke with ./scriptname 1 2 3 4 5 echo "$@" shift echo "$@" # 1 2 3 4 5 # 2 3 4 5
82
# Each "shift" loses parameter $1. # "$@" then contains the remaining parameters.
The $@ special parameter finds use as a tool for filtering input into shell scripts. The cat "$@" construction accepts input to a script either from stdin or from files given as parameters to the script. See Example 1522 and Example 1523. The $* and $@ parameters sometimes display inconsistent and puzzling behavior, depending on the setting of $IFS. Example 97. Inconsistent $* and $@ behavior
#!/bin/bash # Erratic behavior of the "$*" and "$@" internal Bash variables, #+ depending on whether they are quoted or not. # Inconsistent handling of word splitting and linefeeds.
set "First one" "second" "third:one" "" "Fifth: :one" # Setting the script arguments, $1, $2, 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 "$*"
83
84
The $@ and $* parameters differ only when between double quotes. Example 98. $* and $@ when $IFS is empty
#!/bin/bash # If $IFS set, but empty, #+ then "$*" and "$@" do not echo positional params as expected. mecho () # Echo positional parameters. { echo "$1,$2,$3"; }
# The behavior of $* and $@ when $IFS is empty depends #+ on whatever Bash or sh version being run. # It is therefore inadvisable to depend on this "feature" in a script.
85
Other Special Parameters $ Flags passed to script (using set). See Example 1416. This was originally a ksh 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 selftest whether it is interactive. $! PID (process ID) of last job run in background
LOG=$0.log COMMAND1="sleep 100" echo "Logging PIDs background commands for script: $0" >> "$LOG" # So they can be monitored, and killed as necessary. echo >> "$LOG" # Logging commands. echo n "PID of \"$COMMAND1\": ${COMMAND1} & echo $! >> "$LOG" # PID of "sleep 100": 1506 " >> "$LOG"
Or, alternately:
# This example by Matthew Sage. # Used with permission. TIMEOUT=30 count=0 # Timeout value in seconds
possibly_hanging_job & { while ((count < TIMEOUT )); do eval '[ ! d "/proc/$!" ] && ((count = TIMEOUT))' # /proc is where information about running processes is found. # "d" tests whether it exists (whether directory exists). # So, we're waiting for the job in question to show up. ((count++)) sleep 1 done eval '[ d "/proc/$!" ] && kill 15 $!' # If the hanging job is running, kill it.
86
# :
$? Exit status of a command, function, or the script itself (see Example 237) $$ Process ID of the script itself. The $$ variable often finds use in scripts to construct "unique" temp file names (see Example A13, Example 296, Example 1529, and Example 1427). This is usually simpler than invoking mktemp.
87
len=${#line} if [ "$len" lt "$MINLEN" ] then echo # Add a blank line after short line. fi done exit 0
Length of Matching Substring at Beginning of String expr match "$string" '$substring' $substring is a regular expression. expr "$string" : '$substring' $substring is a regular expression.
stringZ=abcABC123ABCabc # || echo `expr match "$stringZ" 'abc[AZ]*.2'` echo `expr "$stringZ" : 'abc[AZ]*.2'` # 8 # 8
Index expr index $string $substring Numerical position in $string of first character in $substring that matches.
stringZ=abcABC123ABCabc echo `expr index "$stringZ" C12`
# 6 # C position. # 3
echo `expr index "$stringZ" 1c` # 'c' (in #3 position) matches before '1'.
This is the near equivalent of strchr() in C. Substring Extraction ${string:position} Extracts substring from $string at $position. If the $string parameter is "*" or "@", then this extracts the positional parameters, [29] starting at $position. ${string:position:length} Extracts $length characters of substring from $string at $position.
88
# Is it possible to index from the right end of the string? echo ${stringZ:4} # abcABC123ABCabc # Defaults to full string, as in ${parameter:default}. # However . . . echo ${stringZ:(4)} # Cabc echo ${stringZ: 4} # Cabc # Now, it works. # Parentheses or added space "escape" the position parameter. # Thank you, Dan Jacobson, for pointing this out.
If the $string parameter is "*" or "@", then this extracts a maximum of $length positional parameters, starting at $position.
echo ${*:2} echo ${@:2} echo ${*:2:3} # Echoes second and following positional parameters. # Same as above. # Echoes three positional parameters, starting at second.
expr substr $string $position $length Extracts $length characters from $string starting at $position.
stringZ=abcABC123ABCabc # 123456789...... # 1based indexing. echo `expr substr $stringZ 1 2` echo `expr substr $stringZ 4 3` # ab # ABC
expr match "$string" '\($substring\)' Extracts $substring at beginning of $string, where $substring is a regular expression. expr "$string" : '\($substring\)' Extracts $substring at beginning of $string, where $substring is a regular expression.
stringZ=abcABC123ABCabc # ======= echo `expr match "$stringZ" '\(.[bc]*[AZ]..[09]\)'` echo `expr "$stringZ" : '\(.[bc]*[AZ]..[09]\)'` echo `expr "$stringZ" : '\(.......\)'` # All of the above forms give an identical result. # abcABC1 # abcABC1 # abcABC1
expr match "$string" '.*\($substring\)' Extracts $substring at end of $string, where $substring is a regular expression. expr "$string" : '.*\($substring\)' Extracts $substring at end of $string, where $substring is a regular expression. Chapter 9. Variables Revisited 89
Substring Removal ${string#substring} Strips shortest match of $substring from front of $string. ${string##substring} Strips longest match of $substring from front of $string.
stringZ=abcABC123ABCabc # || # || echo ${stringZ#a*C} # 123ABCabc # Strip out shortest match between 'a' and 'C'. echo ${stringZ##a*C} # abc # Strip out longest match between 'a' and 'C'.
${string%substring} Strips shortest match of $substring from back of $string. For example:
# Rename all filenames in $PWD with "TXT" suffix to a "txt" suffix. # For example, "file1.TXT" becomes "file1.txt" . . . SUFF=TXT suff=txt for i in $(ls *.$SUFF) do mv f $i ${i%.$SUFF}.$suff # Leave unchanged everything *except* the shortest pattern match #+ starting from the righthandside of the variable $i . . . done ### This could be condensed into a "oneliner" if desired. # Thank you, Rory Winston.
Example 911. Converting graphic file formats, with filename change Chapter 9. Variables Revisited 90
# If directory name given as a script argument... # Otherwise use current working directory.
# Assumes all files in the target directory are MacPaint image files, #+ with a ".mac" filename suffix. for file in $directory/* do filename=${file%.*c} # Filename globbing.
# 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.
OFILEPREF=${1%%ra} # Strip off the "ra" suffix. OFILESUFF=wav # Suffix for wav file. OUTFILE="$OFILEPREF""$OFILESUFF" E_NOARGS=65 if [ z "$1" ] # Must specify a filename to convert. then echo "Usage: `basename $0` [filename]" exit $E_NOARGS
91
########################################################################## 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 audio file, the *.ra 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.
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 }
92
Substring Replacement ${string/substring/replacement} Replace first match of $substring with $replacement. ${string//substring/replacement} Replace all matches of $substring with $replacement.
stringZ=abcABC123ABCabc echo ${stringZ/abc/xyz} # xyzABC123ABCabc # Replaces first match of 'abc' with 'xyz'. # xyzABC123ABCxyz # Replaces all matches of 'abc' with # 'xyz'.
echo ${stringZ//abc/xyz}
${string/#substring/replacement} If $substring matches front end of $string, substitute $replacement for $substring. ${string/%substring/replacement} If $substring matches back end of $string, substitute $replacement for $substring.
stringZ=abcABC123ABCabc echo ${stringZ/#abc/XYZ} # XYZABC123ABCabc # Replaces frontend match of 'abc' with 'XYZ'. # abcABC123ABCXYZ # Replaces backend match of 'abc' with 'XYZ'.
echo ${stringZ/%abc/XYZ}
${parameterdefault}, ${parameter:default} If parameter not set, use default. Chapter 9. Variables Revisited 94
${parameterdefault} and ${parameter:default} are almost equivalent. The extra : makes a difference only when parameter has been declared, but is null.
#!/bin/bash # paramsub.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 "${variable0}" echo "${variable:1}" # ^ unset variable echo "${variable2}" echo "${variable:3}" exit 0 # 2 # 3 # (no output) # 1
The default parameter construct finds use in providing "missing" commandline arguments in scripts.
DEFAULT_FILENAME=generic.data filename=${1:$DEFAULT_FILENAME} # If not otherwise specified, the following command block operates #+ on the file "generic.data". # # Commands follow.
See also Example 34, Example 282, and Example A6. Chapter 9. Variables Revisited 95
Advanced BashScripting Guide Compare this method with using an and list to supply a default commandline argument. ${parameter=default}, ${parameter:=default} If parameter not set, set it to default. Both forms nearly equivalent. The : makes a difference only when $parameter has been declared and is null, [30] as above.
echo ${username=`whoami`} # Variable "username" is now set to `whoami`.
${parameter+alt_value}, ${parameter:+alt_value} If parameter set, use alt_value, else use null string. Both forms nearly equivalent. The : makes a difference only when parameter has been declared and is null, see below.
echo "###### \${parameter+alt_value} ########" echo a=${param1+xyz} echo "a = $a" param2= a=${param2+xyz} echo "a = $a" param3=123 a=${param3+xyz} echo "a = $a"
# a =
# a = xyz
# a = xyz
echo echo "###### \${parameter:+alt_value} ########" echo a=${param4:+xyz} echo "a = $a"
# a =
param5= a=${param5:+xyz} echo "a = $a" # a = # Different result from param6=123 a=${param6:+xyz} echo "a = $a"
a=${param5+xyz}
# a = xyz
${parameter?err_msg}, ${parameter:?err_msg} If parameter set, use it, else print err_msg. Both forms nearly equivalent. The : makes a difference only when parameter has been declared and is null, as above.
96
: ${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=ValueofThisVariable # 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."} # If ZZXy23AB has not been set, #+ then the script terminates with an error message. # You can specify the error message. # : ${variablename?"ERROR MESSAGE"}
# 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
97
# Check the exit status, both with and without commandline parameter. # If commandline parameter present, then "$?" is 0. # If not, then "$?" is 1.
Parameter substitution and/or expansion. The following expressions are the complement to the match in expr string operations (see Example 159). These particular ones are used mostly in parsing file path names. Variable length / Substring removal ${#var} String length (number of characters in $var). For an array, ${#array} is the length of the first element in the array. Exceptions: ${#*} and ${#@} give the number of positional parameters. For an array, ${#array[*]} and ${#array[@]} give the number of elements in the array. Example 917. Length of a variable
#!/bin/bash # length.sh E_NO_ARGS=65 if [ $# eq 0 ] # Must have commandline args to demo script. then echo "Please invoke this script with one or more commandline 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 commandline arguments passed to script = ${#@}" echo "Number of commandline arguments passed to script = ${#*}" exit 0
${var#Pattern}, ${var##Pattern}
98
Advanced BashScripting Guide ${var#Pattern} Remove from $var the shortest part of $Pattern that matches the front end of $var.
${var##Pattern} Remove from $var the longest part of $Pattern that matches the front end of $var. A usage illustration from Example A7:
# Function from "daysbetween.sh" example. leading zero(s) from argument passed. # Strips
strip_leading_zero () # Strip possible leading zero(s) { #+ from argument passed. return=${1#0} # The "1" refers to "$1" passed arg. } # The "0" is what to remove from "$1" strips zeros.
${var%Pattern}, ${var%%Pattern} $var%Pattern} Remove from $var the shortest part of $Pattern that matches the back end of $var.
$var%%Pattern} Remove from $var the longest part of $Pattern that matches the back end of $var. Version 2 of Bash added additional options.
99
var1=abcd12345abc6789 pattern1=a*c # * (wild card) matches everything between a c. echo echo "var1 = $var1" echo "var1 = ${var1}"
# abcd12345abc6789 # 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}" # # Shortest possible match, strips out last 6 characters # ^^^^ echo '${var1%%pattern2} =' "${var1%%$pattern2}" # # Longest possible match, strips out last 12 characters # ^^^^
# Remember, # and ## work from the left end (beginning) of string, # % and %% work from the right end. echo exit 0
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. ;;
100
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
Variable expansion / Substring replacement These constructs have been adopted from ksh. ${var:pos} Variable var expanded, starting from offset pos. ${var:pos:len} Expansion to a max of len characters of variable var, from offset pos. See Example A14 for an example of the creative use of this operator. ${var/Pattern/Replacement} First match of Pattern, within var replaced with Replacement. If Replacement is omitted, then the first match of Pattern is replaced by nothing, that is, deleted. ${var//Pattern/Replacement} Global replacement. All matches of Pattern, within var replaced with Replacement. As above, if Replacement is omitted, then all occurrences of Pattern are replaced by nothing, that is, deleted.
var1 = $t"
t=${var1%**} echo "var1 (with everything from the last on stripped out) = $t" echo # path_name=/home/bozo/ideas/thoughts.for.today
101
${var/#Pattern/Replacement} If prefix of var matches Pattern, then substitute Replacement for Pattern. ${var/%Pattern/Replacement} If suffix of var matches Pattern, then substitute Replacement for Pattern.
# Match at prefix (beginning) of string. v1=${v0/#abc/ABCDEF} # abc1234zip1234abc # || echo "v1 = $v1" # ABCDEF1234zip1234abc # ||
102
${!varprefix*}, ${!varprefix@} Matches names of all previously declared variables beginning with varprefix.
xyz23=whatever xyz24= a=${!xyz*} echo "a = $a" a=${!xyz@} echo "a = $a" # # # # Expands to *names* of declared variables beginning with "xyz". a = xyz23 xyz24 Same as above. a = xyz23 xyz24
(declare r var1 works the same as readonly var1) This is the rough equivalent of the C const type qualifier. An attempt to change the value of a readonly variable fails with an error message. i integer
declare i number # The script will treat subsequent occurrences of "number" as an integer. number=3 echo "Number = $number"
# Number = 3
103
Certain arithmetic operations are permitted for declared integer variables without the need for expr or let.
n=6/3 echo "n = $n" declare i n n=6/3 echo "n = $n"
# n = 6/3
# n = 2
a array
declare a indices
A declare f line with no arguments in a script causes a listing of all the functions previously defined in that script.
declare f function_name
This declares a variable as available for exporting outside the environment of the script itself. x var=$value
declare x var3=373
The declare command permits assigning a value to a variable in the same statement as setting its properties.
104
However . . .
foo (){ declare FOO="bar" } bar () { foo echo $FOO } bar # Prints nothing.
# a = letter_of_alphabet
# Now a = z
# Now, let's try changing the secondorder 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.)
# Another method is the ${!t} notation, discussed in "Bash, version 2" section. # See also ex78.sh. exit 0
Of what practical use is indirect referencing of variables? It gives Bash a little of the functionality of pointers in C, for instance, in table lookup. And, it also has some other very interesting applications. . . . Nils Radtke shows how to build "dynamic" variable names and evaluate their contents. This can be useful when sourcing configuration files.
#!/bin/bash
106
# 172.16.0.100
# Consider the following snippet given a variable named getSparc, #+ but no such variable getIa64: chkMirrorArchs () { arch="$1"; if [ "$(eval "echo \${$(echo get$(echo ne $arch | sed 's/^\(.\).*/\1/g' | tr 'az' 'AZ'; echo $arch | sed 's/^.\(.*\)/\1/g')):false}")" = true ] then return 0; else return 1; fi; } getSparc="true" unset getIa64 chkMirrorArchs sparc echo $? # 0 # True chkMirrorArchs Ia64 echo $? # 1 # False # # # # # Notes: Even the tobesubstituted variable name part is built explicitly. The parameters to the chkMirrorArchs calls are all lower case. The variable name is composed of two parts: "get" and "Sparc" . . .
107
# Begin awk script. # awk " { total += \$${column_number} # indirect reference } END { print total } " "$filename" # # End awk script. # Indirect variable reference avoids the hassles #+ of referencing a shell variable within the embedded awk script. # Thanks, Stephane Chazelas.
exit 0
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). Fortunately, the ${!variable} notation introduced with version 2 of Bash (see Example 342 and Example A23) makes indirect referencing more intuitive. 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, an ugly kludge.
108
$number"
# 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 echo
$number"
# Let's examine a simple alternative to the above loop, namely # let "number = $RANDOM + $FLOOR" # That would eliminate the whileloop 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
109
# 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
110
suite=($Suites) denomination=($Denominations)
num_suites=${#suite[*]} # Count how many elements. num_denominations=${#denomination[*]} echo n "${denomination[$((RANDOM%num_denominations))]} of " echo ${suite[$((RANDOM%num_suites))]}
# Thank you, "jipe," for pointing out this use of $RANDOM. exit 0
Jipe points out a set of techniques for generating random numbers within a range.
# Generate random number between 6 and 30. rnumber=$((RANDOM%25+6))
# Generate random number in the same 6 30 range, #+ but the number must be evenly divisible by 3. rnumber=$(((RANDOM%30/3+1)*3)) # # # Note that this will not work all the time. It fails if $RANDOM%30 returns 0. Frank Wang suggests the following alternative: rnumber=$(( RANDOM%27/3*3+6 ))
Bill Gradwohl came up with an improved formula that works for positive numbers.
rnumber=$(((RANDOM%(maxmin+divisibleBy))/divisibleBy*divisibleBy+min))
Here Bill presents a versatile function that returns a random number between two specified values.
randomBetween() { # Generates a positive or negative random number #+ between $min and $max #+ and divisible by $divisibleBy.
111
syntax() { # Function echo echo echo echo n echo echo echo echo n echo echo echo echo echo n echo echo echo n echo echo n echo }
embedded within function. "Syntax: randomBetween [min] [max] [multiple]" "Expects up to 3 passed parameters, " "but all are completely optional." "min is the minimum value" "max is the maximum value" "multiple specifies that the answer must be " "a multiple of this value." " i.e. answer must be evenly divisible by this number." "If any value is missing, defaults area supplied as: 0 32767 1" "Successful completion returns 0, " "unsuccessful completion returns" "function syntax and 1." "The answer is returned in the global variable " "randomBetweenAnswer" "Negative values for any passed parameter are " "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=$((0divisibleBy)) # Sanity check. if [ $# gt 3 o ${divisibleBy} eq 0 o 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
112
# 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(maxmin)+divisibleBy, not just abs(maxmin)+1. # The slight increase will produce the proper distribution for the #+ end points. # #+ #+ #+ # Changing the formula to use abs(maxmin)+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=$((maxmin)) # Omair Eshkenazi points out that this test is unnecessary, #+ since max and min have already been switched around. [ ${spread} lt 0 ] && spread=$((0spread)) let spread+=divisibleBy randomBetweenAnswer=$(((RANDOM%spread)/divisibleBy*divisibleBy+min)) return 0 # #+ #+ # # # } # Let's test the function. min=14 max=20 divisibleBy=3 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%(maxmin+1)+min)/divisibleBy*divisibleBy))
# 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
113
# 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=$((0minimum)) 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+displacement]} eq 0 ] \ && echo "We never got an answer of $i." \ || echo "${i} occurred ${answer[i+displacement]} times." done
exit 0
Just how random is $RANDOM? The best way to test this is to write a script that tracks the distribution of "random" numbers generated by $RANDOM. Let's roll a $RANDOM die a few times . . .
114
Advanced BashScripting Guide Example 928. Rolling a single die with RANDOM
#!/bin/bash # How random is RANDOM? RANDOM=$$ PIPS=6 MAXTHROWS=600 throw=0 ones=0 twos=0 threes=0 fours=0 fives=0 sixes=0 # Reseed the random number generator using script process ID. # A die has 6 pips. # Increase this if you have nothing better to do with your time. # Throw count. # Must initialize counts to zero, #+ since an uninitialized variable is null, not zero.
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) let "ones += 1";; # Since die has no "zero", this corresponds to 1. 1) let "twos += 1";; # And this to 2, etc. 2) let "threes += 1";; 3) let "fours += 1";; 4) let "fives += 1";; 5) let "sixes += 1";; esac } echo
while [ "$throw" lt "$MAXTHROWS" ] do let "die1 = RANDOM % $PIPS" update_count $die1 let "throw += 1" done print_result exit 0 # # # # #+ The scores should distribute fairly evenly, assuming RANDOM is fairly random. With $MAXTHROWS at 600, all should cluster around 100, plusorminus 20 or so. Keep in mind that RANDOM is a pseudorandom generator, and not a spectacularly good one at that.
115
As we have seen in the last example, it is best to reseed the RANDOM generator each time it is invoked. Using the same seed for RANDOM repeats the same series of numbers. [32] (This mirrors the behavior of the random() function in C.)
random_numbers () { count=0 while [ "$count" lt "$MAXCOUNT" ] do number=$RANDOM echo n "$number " let "count += 1" done } echo; echo RANDOM=1 random_numbers echo; echo RANDOM=1 random_numbers # Same seed for RANDOM... # ...reproduces the exact same number series. # # When is it useful to duplicate a "random" number series? # Setting RANDOM seeds the random number generator.
echo; echo RANDOM=2 random_numbers 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 }') # Pseudorandom output fetched #+ from /dev/urandom (system pseudorandom devicefile), #+ then converted to line of printable (octal) numbers by "od", #+ finally "awk" retrieves just one number for SEED. RANDOM=$SEED # Trying again, but with a different seed... # gives a different number series.
116
The /dev/urandom pseudodevice file provides a method of generating much more "random" pseudorandom numbers than the $RANDOM variable. dd if=/dev/urandom of=targetfile bs=1 count=XX creates a file of wellscattered pseudorandom numbers. However, assigning these numbers to a variable in a script requires a workaround, such as filtering through od (as in above example, Example 1513, and Example A37), or using dd (see Example 1556), or even piping to md5sum (see Example 3314).
There are also other ways to generate pseudorandom numbers in a script. Awk provides a convenient means of doing this.
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 fail to do this?) # 2) Using an integer multiplier as a scaling factor, generate random numbers #+ in the range between 10 and 100. # 3) Same as exercise #2, above, but generate random integers this time.
The date command also lends itself to generating pseudorandom integer sequences.
Advanced BashScripting Guide mechanism for allowing Cstyle manipulation of variables in Bash, for example, (( var++ )).
echo (( a = 23 )) # Setting a value, Cstyle, #+ with spaces on both sides of the "=". echo "a (initial value) = $a" (( a++ )) # Postincrement 'a', Cstyle. echo "a (after a++) = $a" (( a )) # Postdecrement 'a', Cstyle. echo "a (after a) = $a"
(( ++a )) # Preincrement 'a', Cstyle. echo "a (after ++a) = $a" (( a )) # Predecrement 'a', Cstyle. echo "a (after a) = $a" echo ######################################################## # Note that, as in C, pre and postdecrement operators #+ have slightly different sideeffects. n=1; let n && echo "True" || echo "False" n=1; let n && echo "True" || echo "False" # False # True
# Thanks, Jeroen Domburg. ######################################################## echo (( t = a<45?7:11 )) # Cstyle trinary operator. # ^ ^ ^ echo "If a < 45, then t = 7, else t = 11." echo "t = $t " # Yes! echo
# # Easter Egg alert! # # Chet Ramey seems to have snuck a bunch of undocumented Cstyle #+ 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 now out. # See also "for" and "while" loops using the ((...)) construct.
118
119
10.1. Loops
A loop is a block of code that iterates [33] a list of commands as long as the loop control condition is true. for loops for arg in [list] This is the basic looping construct. It differs significantly from its C counterpart.
for arg in [list] do command(s)... done During each pass through the loop, arg takes on the value of each successive variable in the list.
for arg in "$var1" # In pass 1 of the # In pass 2 of the # In pass 3 of the # ... # In pass N of the "$var2" "$var3" ... "$varN" loop, arg = $var1 loop, arg = $var2 loop, arg = $var3 loop, arg = $varN
If do is on same line as for, there needs to be a semicolon after list. for arg in [list] ; do
120
Each [list] element may contain multiple parameters. This is useful when processing parameters in groups. In such cases, use the set command (see Example 1416) to force parsing of each [list] element and assignment of each component to the positional parameters.
Example 102. for loop with two parameters in each [list] element
#!/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 #two done $2,000,000 miles from the sun" tabsconcatenate zeroes onto parameter $2
121
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 $9 " 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
If the [list] in a for loop contains wildcards (* and ?) used in filename expansion, then globbing takes place.
122
Advanced BashScripting Guide Omitting the in [list] part of a for loop causes the loop to operate on $@ the positional parameters. A particularly clever illustration of this is Example A16. See also Example 1417.
It is possible to use command substitution to generate the [list] in a for loop. See also Example 1550, Example 1010 and Example 1544.
Example 106. Generating the [list] in a for loop with command substitution
#!/bin/bash # forloopcmd.sh: forloop with [list] #+ generated by command substitution. NUMBERS="9 7 3 8 37.53" for number in `echo $NUMBERS` do echo n "$number " done echo exit 0 # for number in 9 7 3 8 37.53
Here is a somewhat more complex example of using command substitution to create the [list].
123
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 "./bingrep.sh mem /bin/ls" #+ to exercise this script. exit 0
# # # # #
exit 0 # # # Exercise: How is it that an ordinary user (or a script run by same)
124
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 0 # # # #+ Exercise (easy): Convert this script to take commandline parameters for $directory and $fstring.
directory=${1`pwd`} # Defaults to current working directory, #+ if not otherwise specified. # Equivalent to code block below. # # ARGS=1 # Expect one commandline 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 )" do echo "$file" # type l = symbolic links
125
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."
The stdout of a loop may be redirected to a file, as this slight modification to the previous example shows.
echo "symbolic links in directory \"$directory\"" > "$OUTFILE" echo "" >> "$OUTFILE" for file in "$( find $directory type l )" do # type l = symbolic links
126
There is an alternative syntax to a for loop that will look very familiar to C programmers. This requires double parentheses.
See also Example 2615, Example 2616, and Example A6. Now, a for loop used in a "reallife" context.
Example 1013. Using efax in batch mode Chapter 10. Loops and Branches 127
ne $EXPECTED_ARGS ] for proper number of command line args. "Usage: `basename $0` phone# textfile" $E_BADARGS
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
# 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 forloop 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.
while This construct tests for a condition at the top of a loop, and keeps looping as long as that condition is true (returns a 0 exit status). In contrast to a for loop, a while loop finds use in situations where the number of loop repetitions is not known beforehand. while [ condition ] do command(s)... done The bracket construct in a while loop is nothing more than our old friend, the test brackets used in an if/then test. In fact, a while loop can legally use the more versatile double brackets construct (while [[ condition ]]).
128
Advanced BashScripting Guide As is the case with for loops, placing the do on the same line as the condition test requires a semicolon. while [ condition ] ; do Note that the test brackets are not mandatory in a while loop. See, for example, the getopts construct.
A while loop may have multiple conditions. Only the final condition determines when the loop terminates. This necessitates a slightly different loop syntax, however.
129
As with a for loop, a while loop may employ Cstyle syntax by using the double parentheses construct (see also Example 931).
130
Advanced BashScripting Guide Inside its test brackets, a while loop can call a function.
t=0 condition () { ((t++)) if [ $t lt 5 ] then return 0 # true else return 1 # false fi } while condition # ^^^^^^^^^ # Function call four loop iterations. do echo "Still going: t = $t" done # # # # Still Still Still Still going: going: going: going: t t t t = = = = 1 2 3 4
Similar to the iftest construct, a while loop can omit the test brackets.
while condition do ... done
By coupling the power of the read command with a while loop, we get the handy while read construct, useful for reading and parsing files.
cat $filename | while read line do ... done # Supply input from a file. # As long as there is another line to read ...
A while loop may have its stdin redirected to a file by a < at its end. A while loop may have its stdin supplied by a pipe. until This construct tests for a condition at the top of a loop, and keeps looping as long as that condition is false (opposite of while loop). Chapter 10. Loops and Branches 131
Advanced BashScripting Guide until [ conditionistrue ] do command(s)... done Note that an until loop tests for the terminating condition at the top of the loop, differing from a similar construct in some programming languages. As is the case with for loops, placing the do on the same line as the condition test requires a semicolon. until [ conditionistrue ] ; do
How to choose between a for loop or a while loop or until loop? In C, you would typically use a for loop when the number of loop iterations is known beforehand. With Bash, however, the situation is fuzzier. The Bash for 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.
132
See Example 2611 for an illustration of nested while loops, and Example 2613 to see a while loop nested inside an until loop.
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.
133
The break command may optionally take a parameter. A plain break terminates only the innermost loop in which it is embedded, but a break N breaks out of N levels of loop.
"
# 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
134
The continue command, similar to break, optionally takes a parameter. A plain continue cuts short the current iteration within its loop and begins the next. A continue N terminates all remaining iterations at its loop level and continues with the next iteration at the loop, N levels above.
# for inner in 1 2 3 4 5 6 7 8 9 10 # inner loop do if [ "$inner" eq 7 ] 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 never echo. done # done echo; echo # Exercise: # Come up with a meaningful use for "continue N" in a script. exit 0
135
The continue N construct is difficult to understand and tricky to use in any meaningful context. It is probably best avoided.
136
Advanced BashScripting Guide case "$variable" in "$condition1" ) command... ;; "$condition2" ) command... ;; esac
Quoting the variables is not mandatory, since word splitting does not take place. Each test line ends with a right paren ). Each condition block ends with a double semicolon ;;. The entire case block terminates with an esac (case spelled backwards). Example 1024. Using case
#!/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";; [09] ) 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 [az] and [AZ]. 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
137
read person case "$person" in # Note variable is quoted. "E" | "e" ) # Accept upper or lowercase input. echo echo "Roland Evans" echo "4321 Floppy Dr." echo "Hardscrabble, CO 80753" echo "(303) 7349874" echo "(303) 7349892 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) 5332814" echo "(212) 5339972 fax" echo "milliej@loisaida.com" echo "Exgirlfriend" 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
138
Advanced BashScripting Guide An exceptionally clever use of case involves testing for commandline parameters.
#! /bin/bash case "$1" in "") echo "Usage: ${0##*/} <filename>"; exit $E_PARAM;; # No commandline parameters, # or first parameter empty. # Note that ${0##*/} is ${var##pattern} param substitution. # Net result is $0. *) FILENAME=./$1;; #+ #+ #+ #+ * ) FILENAME=$1;; esac # If filename passed as argument ($1) starts with a dash, replace it with ./$1 so further commands don't interpret it as an option.
# Otherwise, $1.
while [ $# gt 0 ]; do # Until you run out of parameters . . . case "$1" in d|debug) # "d" or "debug" parameter? DEBUG=1 ;; c|conf) CONFFILE="$2" shift if [ ! f $CONFFILE ]; then echo "Error: Supplied file doesn't exist!" exit $E_CONFFILE # File not found error. fi ;; esac shift # Check next set of parameters. done # From Stefano Falsetto's "Log2Rot" script, #+ part of his "rottlog" package. # Used with permission.
139
exit 0
140
isalpha2 () # Tests whether *entire string* is alphabetic. { [ $# eq 1 ] || return $FAILURE case $1 in *[!azAZ]*|"") 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 *[!09]*|"") return $FAILURE;; *) return $SUCCESS;; esac }
check_var () # Frontend to isalpha (). { if isalpha "$@" then echo "\"$*\" begins with an alpha character." if isalpha2 "$@" then # No point in testing if first char is nonalpha. echo "\"$*\" contains only alpha characters." else echo "\"$*\" contains at least one nonalpha character." fi else echo "\"$*\" begins with a nonalpha character." # Also "nonalpha" if no argument passed. fi echo } digit_check () # Frontend to isdigit (). { if isdigit "$@" then echo "\"$*\" contains only digits [0 9]." else echo "\"$*\" has at least one nondigit character." fi echo }
141
# Command substitution.
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
# 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.
select The select construct, adopted from the Korn Shell, is yet another tool for building menus. select variable [in list] do command... break done This prompts the user to enter one of the choices presented in the variable list. Note that select uses the PS3 prompt (#? ) by default, but that this may be changed.
142
If in list is omitted, then select uses the list of command line arguments ($@) passed to the script or to the function in which the select construct is embedded. Compare this to the behavior of a for variable [in list] construct with the in list omitted. Example 1030. Creating menus using select in a function
#!/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 tomatoes spinach # $1 $2 $3 $4 $5 $6 # passed to choice_of() function exit 0
143
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 for loop.
rm `cat filename` # "filename" contains a list of files to delete. # # S. C. points out that "arg list too long" error might result. # Better is xargs rm < filename # ( covers those cases where "filename" begins with a "" ) textfile_listing=`ls *.txt` # Variable contains names of all *.txt files in current working directory. echo $textfile_listing textfile_listing2=$(ls *.txt) echo $textfile_listing2 # Same result. # # # # # # # # # The alternative form of command substitution.
A possible problem with putting a list of files into a single string is that a newline may creep in. A safer way to assign a list of files to a parameter is with an array. shopt s nullglob # If no match, filename expands to nothing. textfile_listing=( *.txt ) Thanks, S.C.
Command substitution invokes a subshell. Command substitution may result in word splitting.
COMMAND `echo a b` COMMAND "`echo a b`" COMMAND `echo` COMMAND "`echo`" # 2 args: a and b # 1 arg: "a b" # no arg # one empty arg
# Thanks, S.C.
Even when there is no word splitting, command substitution can remove trailing newlines.
# cd "`pwd`" # However... # This should always work.
144
# Disable "canonical" mode for terminal. # Also, disable *local* echo. key=$(dd bs=1 count=1 2> /dev/null) # Using 'dd' to get a keypress. stty "$old_tty_setting" # Restore old setting. echo "You hit ${#key} key." # ${#variable} = number of characters in $variable # # Hit any key except RETURN, and the output is "You hit 1 key." # Hit RETURN, and it's "You hit 0 key." # The newline gets eaten in the command substitution. Thanks, S.C.
Using echo to output an unquoted variable set with command substitution removes trailing newlines characters from the output of the reassigned command(s). This can cause unpleasant surprises.
dir_listing=`ls l` echo $dir_listing
# unquoted
# Expecting a nicely ordered directory listing. # However, what you get is: # total 3 rwrwr 1 bozo bozo 30 May 13 17:15 1.txt rwrwr 1 bozo # bozo 51 May 15 20:57 t2.sh rwxrxrx 1 bozo bozo 217 Mar 5 21:13 wi.sh # The newlines disappeared.
echo "$dir_listing" # quoted # rwrwr 1 bozo 30 May 13 17:15 1.txt # rwrwr 1 bozo 51 May 15 20:57 t2.sh # rwxrxrx 1 bozo 217 Mar 5 21:13 wi.sh
Command substitution even permits setting a variable to the contents of a file, using either redirection or the cat command.
variable1=`<file1` variable2=`cat file2` # # # #+ Set "variable1" to contents of "file1". Set "variable2" to contents of "file2". This, however, forks a new process, so the line of code executes slower than the above version.
Note:
145
if [ f /fsckoptions ]; then fsckoptions=`cat /fsckoptions` ... fi # # if [ e "/proc/ide/${disk[$device]}/media" ] ; then hdmedia=`cat /proc/ide/${disk[$device]}/media` ... fi # # if [ ! n "`uname r | grep ""`" ]; then ktag="`cat /proc/version`" ... fi # # if [ $usb = "1" ]; then sleep 5 mouseoutput=`cat /proc/bus/usb/devices 2>/dev/null|grep E "^I.*Cls=03.*Prot=02"` kbdoutput=`cat /proc/bus/usb/devices 2>/dev/null|grep E "^I.*Cls=03.*Prot=01"` ... fi
Do not set a variable to the contents of a long text file unless you have a very good reason for doing so. Do not set a variable to the contents of a binary file, even as a joke.
dangerous_variable=`cat /boot/vmlinuz`
echo "stringlength of \$dangerous_variable = ${#dangerous_variable}" # stringlength of $dangerous_variable = 794151 # (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
Notice that a buffer overrun does not occur. This is one instance where an interpreted language, such as Bash, provides more protection from programmer mistakes than a compiled language. Chapter 11. Command Substitution 146
Advanced BashScripting Guide Command substitution permits setting a variable to the output of a loop. The key to this is grabbing the output of an echo command within the loop.
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 #+ within a variable declaration. exit 0
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 stdout (like a wellbehaved UNIX tool should) and assigning that output to a variable.
#include <stdio.h> /* "Hello, world." C program */
int main() { printf( "Hello, world." ); return (0); } bash$ gcc o hello hello.c
147
Advanced BashScripting Guide The $(...) form has superseded backticks for command substitution.
output=$(sed n /"$1"/p $file) # From "grp.sh" example.
# Setting a variable to the contents of a text file. File_contents1=$(cat $file1) File_contents2=$(<$file2) # Bash permits this also.
The $(...) form of command substitution treats a double backslash in a different way than `...`.
bash$ echo `echo \\`
E_NOARGS=66 E_BADARG=67 MINLEN=7 if [ z "$1" ] then echo "Usage $0 LETTERSET" exit $E_NOARGS # Script needs a commandline 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[*]} echo
148
# echo "${Anagrams[*]}"
# Look ahead to the "Arrays" chapter for enlightenment on #+ what's going on here. # See also the agram.sh script for an example of anagram finding. exit $?
Examples of command substitution in shell scripts: 1. Example 107 2. Example 1026 3. Example 929 4. Example 153 5. Example 1520 6. Example 1516 7. Example 1550 8. Example 1013 9. Example 1010 10. Example 1530 11. Example 198 12. Example A17 13. Example 272 14. Example 1543 15. Example 1544 16. Example 1545
149
Arithmetic expansion with double parentheses, and using let The use of backticks (backquotes) in arithmetic expansion has been superseded by double parentheses ((...)) and $((...)) and also by the very convenient let construction.
z=$(($z+3)) z=$((z+3))
# # #+ #+
# You may also use operations within double parentheses without assignment. n=0 echo "n = $n" (( n += 1 )) # (( $n += 1 )) is incorrect! echo "n = $n"
# n = 0 # Increment. # n = 1
# Quotes permit the use of spaces in variable assignment. # The 'let' operator actually performs arithmetic evaluation, #+ rather than expansion.
Examples of arithmetic expansion in scripts: 1. Example 159 2. Example 1014 3. Example 261 4. Example 2611 5. Example A17
150
Fellow Linux user, greetings! You are reading something which will bring you luck and good fortune. Just email a copy of this document to 10 of your friends. Before making the copies, send a 100line Bash script to the first person on the list at the bottom of this letter. Then delete their name and add yours to the bottom of the list. Don't break the chain! Make the copies within 48 hours. Wilfred P. of Brooklyn failed to send out his ten copies and woke the next morning to find his job description changed to "COBOL programmer." Howard L. of Newport News sent out his ten copies and within a month had enough hardware to build a 100node Beowulf cluster dedicated to playing Tuxracer. Amelia V. of Chicago laughed at this letter and broke the chain. Shortly thereafter, a fire broke out in her terminal and she now spends her days writing documentation for MS Windows. Don't break the chain! Send out your ten copies today!
Courtesy 'NIX "fortune cookies", with some alterations and many apologies
151
Part 4. Commands
Mastering the commands on your Linux machine is an indispensable prelude to writing effective shell scripts. This section covers the following commands: . (See also source) ac adduser agetty agrep ar arch at autoload awk (See also Using awk for math operations) badblocks banner basename batch bc bg bind bison builtin bzgrep bzip2 cal caller cat cd chattr chfn chgrp chkconfig chmod chown chroot cksum clear clock cmp col colrm column comm command compress Part 4. Commands 152
Advanced BashScripting Guide cp cpio cron crypt csplit cu cut date dc dd debugfs declare depmod df dialog diff diff3 diffstat dig dirname dirs disown dmesg doexec dos2unix du dump dumpe2fs e2fsck echo egrep enable enscript env eqn eval exec exit (Related topic: exit status) expand export expr factor false fdformat fdisk fg fgrep file find finger flex Part 4. Commands 153
Advanced BashScripting Guide flock fmt fold free fsck ftp fuser getopt getopts gettext getty gnomemount grep groff groupmod groups (Related topic: the $GROUPS variable) gs gzip halt hash hdparm head help hexdump host hostid hostname (Related topic: the $HOSTNAME variable) hwclock iconv id (Related topic: the $UID variable) ifconfig info infocmp init insmod install ip ipcalc iwconfig jobs join jot kill killall last lastcomm lastlog ldd less let lex Part 4. Commands 154
Advanced BashScripting Guide ln locate lockfile logger logname logout logrotate look losetup lp ls lsdev lsmod lsof lspci lsusb ltrace lynx m4 mail mailto make MAKEDEV man mcookie md5sum mesg mimencode mkbootdisk mkdir mke2fs mkfifo mknod mkswap mktemp mmencode modinfo modprobe more mount msgfmt mv nc netconfig netstat newgrp nice nl nm nmap nohup Part 4. Commands 155
Advanced BashScripting Guide nslookup objdump od passwd paste patch (Related topic: diff) pathchk pgrep pidof ping pkill popd pr printenv printf procinfo ps pstree ptx pushd pwd (Related topic: the $PWD variable) quota rcp rdev rdist read readelf readlink readonly reboot recode renice reset restore rev rlogin rm rmdir rmmod route rpm rpm2cpio rsh rsync runlevel runparts rx rz sar scp script Part 4. Commands 156
Advanced BashScripting Guide sdiff sed seq service set setquota setserial setterm sha1sum shar shopt shred shutdown size skill sleep slocate snice sort source sox split sq ssh stat strace strings strip stty su sudo sum suspend swapoff swapon sx sync sz tac tail tar tbl tcpdump tee telinit telnet Tex texexec time times tmpwatch Part 4. Commands 157
Advanced BashScripting Guide top touch tput tr traceroute true tset tsort tty tune2fs type typeset ulimit umask umount uname unarc unarj uncompress unexpand uniq units unrar unset unsq unzip uptime usbmodules useradd userdel usermod users usleep uucp uudecode uuencode uux vacation vdir vmstat vrfy w wait wall watch wc wget whatis whereis which who Part 4. Commands 158
Advanced BashScripting Guide whoami whois write xargs yacc yes zcat zdiff zdump zegrep zfgrep zgrep zip Table of Contents 14. Internal Commands and Builtins 14.1. Job Control Commands 15. External Filters, Programs and Commands 15.1. Basic Commands 15.2. Complex Commands 15.3. Time / Date Commands 15.4. Text Processing Commands 15.5. File and Archiving Commands 15.6. Communications Commands 15.7. Terminal Control Commands 15.8. Math Commands 15.9. Miscellaneous Commands 16. System and Administrative Commands 16.1. Analyzing a System Script
Part 4. Commands
159
When a command or the shell itself initiates (or spawns) a new subprocess to carry out a task, this is called forking. This new process is the child, and the process that forked it off is the parent. While the child process is doing its work, the parent process is still executing. Note that while a parent process gets the process ID of the child process, and can thus pass arguments to it, the reverse is not true. This can create problems that are subtle and hard to track down.
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 CtlC to exit.]"; echo
sleep 1 sh $0 exit 0
# Wait. # Play it again, Sam. # Not necessary; script will never get to here. # Why not?
# After exiting with a CtlC, #+ 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?
Generally, a Bash builtin does not fork a subprocess when it executes within a script. An external system command or filter in a script usually will fork a subprocess. A builtin may be a synonym to a system command of the same name, but Bash reimplements it internally. For example, the Bash echo command is not the same as /bin/echo, although their behavior is almost identical. Chapter 14. Internal Commands and Builtins 160
A keyword is a reserved 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, "for", "while", "do", and "!" are keywords. Similar to a builtin, a keyword is hardcoded into Bash, but unlike a builtin, a keyword is not in itself a command, but a subunit of a larger command structure. [38] I/O echo prints (to stdout) an expression or variable (see Example 41).
echo Hello echo $a
An echo requires the e option to print escaped characters. See Example 52. Normally, each echo command prints a terminal newline, but the n option suppresses this.
An echo, in combination with command substitution can set a variable. a=`echo "HELLO" | tr AZ az` See also Example 1520, Example 153, Example 1543, and Example 1544. Be aware that echo `command` deletes any linefeeds that the output of command generates. The $IFS (internal field separator) variable normally contains \n (linefeed) as one of its set of whitespace characters. Bash therefore splits the output of command at linefeeds into arguments to echo. Then echo outputs these arguments, separated by spaces.
bash$ ls l /usr/share/apps/kjezz/sounds rwrr 1 root root 1407 Nov 7 2000 reflect.au rwrr 1 root root 362 Nov 7 2000 seconds.au
bash$ echo `ls l /usr/share/apps/kjezz/sounds` total 40 rwrr 1 root root 716 Nov 7 2000 reflect.au rwrr 1 root root ...
161
This command is a shell builtin, and not the same as /bin/echo, although its behavior is similar.
bash$ type a echo echo is a shell builtin echo is /bin/echo
printf The printf, formatted print, command is an enhanced echo. It is a limited variant of the C language printf() library function, and its syntax is somewhat different. printf formatstring... parameter... This is the Bash builtin version of the /bin/printf or /usr/bin/printf command. See the printf manpage (of the system command) for indepth coverage. Chapter 14. Internal Commands and Builtins 162
Advanced BashScripting Guide Older versions of Bash may not support printf. Example 142. printf in action
#!/bin/bash # printf demo PI=3.14159265358979 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 printf "\n"
# It even rounds off correctly. # Prints a line feed, # Equivalent to 'echo' . . . # Inserts tab (\t).
printf "Constant = \t%d\n" $DecimalConstant 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" 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
163
read "Reads" the value of a variable from stdin, that is, interactively fetches input from the keyboard. The a option lets read get array variables (see Example 266).
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
A read without an associated variable assigns its input to the dedicated variable $REPLY.
164
# 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 read line2 } <$0 echo "Line 2 of echo "$line2" echo
# Line 1, to be discarded. # Line 2, saved in variable. this script is:" # # readnovar.sh # #!/bin/bash line discarded.
Normally, inputting a \ suppresses a newline during input to a read. The r option causes an inputted \ to be interpreted literally.
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>.
165
The read command has some interesting options that permit echoing a prompt and even reading keystrokes without hitting ENTER.
# Read a keypress without hitting ENTER. read s n1 p "Hit a key " keypress echo; echo "Keypress was "\"$keypress\""." # s option means do not echo input. # n N option means accept only N characters of input. # p option means echo the following prompt before reading input. # Using these options is tricky, since they need to be in the correct order.
The n option to read also allows detection of the arrow keys and certain of the other unusual keys.
166
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 ;; $downarrow) echo "You ;; $leftarrow) echo "You ;; $rightarrow) echo "You ;; esac
pressed uparrow"
pressed downarrow"
pressed leftarrow"
pressed rightarrow"
167
The n option to read will not detect the ENTER (newline) key. The t option to read permits timed input (see Example 94).
The read command may also "read" its variable value from a file redirected to stdin. If the file contains more than one line, only the first line is assigned to the variable. If read has more than one parameter, then each of these variables gets assigned a successive whitespacedelineated string. Caution!
168
# 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
Piping output to a read, using echo to set variables will fail. Yet, piping the output of cat seems to work.
169
All done, last:(null) The variable (last) is set within the subshell but unset outside.
The gendiff script, usually found in /usr/bin on many Linux distros, pipes the output of find to a while read construct.
find $1 \( name "*$2" o name ".*$2" \) print | while read f; do . . .
It is possible to paste text into the input field of a read. See Example A38. Filesystem cd The familiar cd change directory command finds use in scripts where execution of a command requires being in a specified directory.
(cd /source/directory && tar cf . ) | (cd /dest/directory && tar xpvf )
[from the previously cited example by Alan Cox] The P (physical) option to cd causes it to ignore symbolic links. cd changes to $OLDPWD, the previous working directory.
The cd command does not function as expected when presented with two forward slashes.
bash$ cd // bash$ pwd //
The output should, of course, be /. This is a problem both from the command line and in a script. pwd Print Working Directory. This gives the user's (or script's) current directory (see Example 149). The effect is identical to reading the value of the builtin variable $PWD. pushd, popd, dirs 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 stack is used to keep track of directory names. Options allow various manipulations of the directory stack. pushd dirname pushes the path dirname onto the directory stack and simultaneously changes the current working directory to dirname Chapter 14. Internal Commands and Builtins 170
Advanced BashScripting Guide popd removes (pops) the top directory path name off the directory stack and simultaneously changes the current working directory to that directory popped from the stack. dirs lists the contents of the directory stack (compare this with the $DIRSTACK variable). A successful pushd or popd will automatically invoke dirs. Scripts that require various changes to the current working directory without hardcoding the directory name changes can make good use of these commands. Note that the implicit $DIRSTACK array variable, accessible from within a script, holds the contents of the directory stack.
Variables let The let command carries out arithmetic operations on variables. In many cases, it functions as a less complex version of expr.
171
let "a %= 8" # Equivalent to let "a = a % 8" echo "270 modulo 8 = $a (270 / 8 = 33, remainder $a)" # 6 echo exit 0
eval eval arg1 [arg2] ... [argN] Combines the arguments in an expression or list of expressions and evaluates them. Any variables contained within the expression are expanded. The result translates into a command. This can be useful for code generation from the command line or within a script.
bash$ process=xterm bash$ show_process="eval ps ax | grep $process" bash$ $show_process 1867 tty1 S 0:02 xterm 2779 tty1 S 0:00 xterm 2886 pts/1 S 0:00 grep xterm
# When LF's not preserved, it may make it easier to parse output, #+ using utilities such as "awk". echo echo "===========================================================" echo # Now, showing how to "expand" a variable using "eval" . . .
172
exit 0
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 ++ )) done exit $? # ================================================= # On to the next.
173
# The following operations must be done as root user. chmod 666 /dev/ttyS3 # Restore read+write 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..ttyS3 # # #+ #+ # Remove the serial port lock file. Why?
Note: Depending on the hardware and even the kernel version, the modem port on your machine may be different /dev/ttyS1 or /dev/ttyS2.
exit 0 # 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 . . .
174
Rory Winston contributed the following instance of how useful eval can be.
The eval command can be risky, and normally should be avoided when there exists a reasonable alternative. An eval $COMMANDS executes the contents of COMMANDS, which may contain such unpleasant surprises as rm rf *. Running an eval on unfamiliar code written by persons unknown is living dangerously. set The set command changes the value of internal script variables/options. One use for this is to toggle option flags which help determine the behavior of the script. Another application for it is to reset the positional parameters that a script sees as the result of a command (set `command`). The script can then parse the fields of the command output.
175
set `uname a` # Sets the positional parameters to the output # of the command `uname a` echo $_ # unknown # Flags set in script. 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
Spaces escaped Spaces not escaped Saving old IFS and setting new one.
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 # echo echo $# # echo echo for i do echo $i done # Display new positional parameters. Set new positional parameters. Count of positional parameters.
# Omitting the "in list" sets the variable i #+ to the positional parameters.
176
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?
Invoking set without any options or arguments simply lists all the environmental and other variables that have been initialized.
bash$ set AUTHORCOPY=/home/bozo/posts BASH=/bin/bash BASH_VERSION=$'2.05.8(1)release' ... XAUTHORITY=/home/bozo/.Xauthority _=/etc/bashrc variable22=abc variable23=xzy
Using set with the option explicitly assigns the contents of a variable to the positional parameters. If no variable follows the it unsets the positional parameters.
177
# one # two
# ====================================================== set # Unsets positional parameters if no variable specified. first_param=$1 second_param=$2 echo "first parameter = $first_param" echo "second parameter = $second_param" exit 0
See also Example 102 and Example 1552. unset The unset command deletes a shell variable, effectively setting it to null. Note that this command does not affect positional parameters.
bash$ unset PATH bash$ echo $PATH bash$
if [ z "$variable" ] # Try a stringlength test. then echo "\$variable has zero length." fi exit 0
Advanced BashScripting Guide The export [39] command makes available variables to all child processes of the running script or shell. One important use of the export command is in startup files, to initialize and make accessible environmental variables to subsequent user processes. Unfortunately, there is no way to export variables back to the parent process, to the process that called or invoked the script or shell.
ARGS=2 E_WRONGARGS=65 if [ $# ne "$ARGS" ] # Check for proper no. of command line args. then echo "Usage: `basename $0` filename columnnumber" 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
It is possible to initialize and export variables in the same operation, as in export var1=xxx. However, as Greg Keraunen points out, in certain situations this may have a different effect than setting a variable, then exporting it.
bash$ export var=(a b); echo ${var[0]} (a b)
179
declare, typeset The declare and typeset commands specify and/or restrict properties of variables. readonly Same as declare r, sets a variable as readonly, or, in effect, as a constant. Attempts to change the variable fail with an error message. This is the shell analog of the C language const type qualifier. getopts This powerful tool parses commandline arguments passed to the script. This is the Bash analog of the getopt external command and the getopt library function familiar to C programmers. It permits passing and concatenating multiple options [40] and associated arguments to a script (for example scriptname abc e /usr/local).
The getopts construct uses two implicit variables. $OPTIND is the argument pointer (OPTion INDex) and $OPTARG (OPTion ARGument) the (optional) argument attached to an option. A colon following the option name in the declaration tags that option as having an associated argument. A getopts construct usually comes packaged in a while loop, which processes the options and arguments one at a time, then increments the implicit $OPTIND variable to step to the next.
1. The arguments passed from the command line to the script must be preceded by a minus (). It is the prefixed that lets getopts recognize commandline arguments as options. In fact, getopts will not process arguments without the prefixed , and will terminate option processing at the first argument encountered lacking them. 2. The getopts template differs slightly from the standard while loop, in that it lacks condition brackets. 3. The getopts construct replaces the deprecated getopt external command.
while getopts ":abcde:fg" Option # Initial declaration. # a, b, c, d, e, f, and g are the options (flags) expected. # The : after option 'e' shows it will have an argument passed with it. do case $Option in a ) # Do something with variable 'a'. b ) # Do something with variable 'b'. ... e) # Do something with 'e', and also with $OPTARG, # which is the associated argument passed with option 'e'. ... g ) # Do something with variable 'g'. esac done shift $(($OPTIND 1)) # Move argument pointer to next. # All this is not nearly as complicated as it looks <grin>.
180
Advanced BashScripting Guide Example 1421. Using getopts to read the options/arguments passed to a script
#!/bin/bash # 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=65 if [ $# eq "$NO_ARGS" ] # Script invoked with no commandline args? then echo "Usage: `basename $0` options (mnopqrs)" exit $E_OPTERROR # Exit and explain usage, if no argument(s) given. fi # Usage: scriptname options # Note: dash () necessary
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 0 # 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."
181
Advanced BashScripting Guide Script Behavior source, . (dot command) This command, when invoked from the command line, executes a script. Within a script, a source filename loads the file filename. Sourcing a file (dotcommand) imports code into the script, appending to the script (same effect as the #include directive in a C program). The net result is the same as if the "sourced" 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.
exit 0
File datafile for Example 1422, above. Must be present in same directory.
# This is a data file loaded by a script. # Files of this type may contain variables, functions, etc. # It may be loaded with a 'source' or '.' command by a shell script. # Let's initialize some variables. variable1=22 variable2=474 variable3=5 variable4=97 message1="Hello, how are you?" message2="Enough for now. Goodbye." print_message () { # Echoes any message passed to it. if [ z "$1" ] then return 1 # Error, if argument missing. fi
182
If the sourced file is itself an executable script, then it will run, then return control to the script that called it. A sourced executable script may use a return for this purpose.
It is even possible for a script to source itself, though this does not seem to have any practical applications.
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 nonportable (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.
183
# Exercise: # # Write a script that uses this trick to actually do something useful.
exit Unconditionally terminates a script. [41] The exit command may optionally take an integer argument, which is returned to the shell as the exit status of the script. It is good practice to end all but the simplest scripts with an exit 0, indicating a successful run. If a script terminates with an exit lacking an argument, the exit status of the script is the exit status of the last command executed in the script, not counting the exit. This is equivalent to an exit $?. An exit command may also be used to terminate a subshell. exec This shell builtin replaces the current process with a specified command. Normally, when the shell encounters a command, it forks off a child process to actually execute the command. Using the exec builtin, the shell does not fork, and the command exec'ed replaces the shell. When used in a script, therefore, it forces an exit from the script when the exec'ed command terminates. [42]
# # The following lines never execute. echo "This echo will never echo." exit 99 # # #+ # This script will not exit here. Check exit value after script terminates with an 'echo $?'. It will *not* be 99.
184
An exec also serves to reassign file descriptors. For example, exec <zzzfile replaces stdin with the file zzzfile. The exec option to find is not the same as the exec shell builtin. shopt This command permits changing shell options on the fly (see Example 241 and Example 242). It often appears in the Bash startup files, but also has its uses in scripts. Needs version 2 or later of Bash.
shopt s cdspell # Allows minor misspelling of directory names with 'cd' cd /hpme pwd # Oops! Mistyped '/home'. # /home # The shell corrected the misspelling.
caller Putting a caller command inside a function echoes to stdout information about the caller of that function.
#!/bin/bash function1 () { # Inside function1 (). caller 0 # Tell me about it. } function1 # Line 9 of script.
Line number that the function was called from. Invoked from "main" part of script. Name of calling script.
A caller command can also return caller information from a script sourced within another script. Analogous to a function, this is a "subroutine call." You may find this command useful in debugging. Commands true A command that returns a successful (zero) exit status, but does nothing else.
185
# Endless loop while true # alias for ":" do operation1 operation2 ... operationn # Need a way to break out of loop or script will hang. done
false A command that returns an unsuccessful exit status, but does nothing else.
bash$ false bash$ echo $? 1
# Testing "false" if false then echo "false evaluates \"true\"" else echo "false evaluates \"false\"" fi # false evaluates "false"
# Looping while "false" (null loop) while false do # The following code will not execute. operation1 operation2 ... operationn # Nothing happens! done
type [cmd] Similar to the which external command, type cmd identifies "cmd." Unlike which, type is a Bash builtin. The useful a option to type identifies keywords and builtins, and also locates system commands with identical names.
bash$ type '[' [ is a shell builtin bash$ type a '[' [ is a shell builtin [ is /usr/bin/[
Advanced BashScripting Guide Record the path name of specified commands in the shell hash table [43] so the shell or script will not need to search the $PATH on subsequent calls to those commands. When hash is called with no arguments, it simply lists the commands that have been hashed. The r option resets the hash table. bind The bind builtin displays or modifies readline [44] key bindings. help Gets a short usage summary of a shell builtin. This is the counterpart to whatis, but for builtins.
bash$ help exit 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.
"1" is the job number (jobs are maintained by the current shell). "1384" is the PID or process ID number (processes are maintained by the system). To kill this job/process, either a kill %1 or a kill 1384 works. Thanks, S.C. disown Remove job(s) from the shell's table of active jobs. fg, bg The fg command switches a job running in the background into the foreground. The bg command restarts a suspended job, and runs it in the background. If no job number is specified, then the fg or bg command acts upon the currently running job. wait 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 exit status of waitedfor command. You may use the wait command to prevent a script from exiting before a background job finishes executing (this would create a dreaded orphan process).
187
Advanced BashScripting Guide Example 1426. Waiting for a process to finish before proceeding
#!/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` findstring" 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
Optionally, wait can take a job identifier as an argument, for example, wait%1 or wait $PPID. See the job id table.
Within a script, running a command in the background with an ampersand (&) may cause the script to hang until ENTER is hit. This seems to occur with commands that write to stdout. It can be a major annoyance.
#!/bin/bash # test.sh ls l & echo "Done." bash$ ./test.sh Done. [bozo@localhost testscripts]$ total 1 rwxrxrx 1 bozo bozo _
188
Redirecting the output of the command to a file or even to /dev/null also takes care of this problem. suspend This has a similar effect to ControlZ, but it suspends the shell (the shell's parent process should resume it at an appropriate time). logout Exit a login shell, optionally specifying an exit status. times Gives statistics on the system time used in executing commands, in the following form:
0m0.020s 0m0.020s
This capability is of very limited value, since it is uncommon to profile and benchmark shell scripts. kill Forcibly terminate a process by sending it an appropriate terminate signal (see Example 166).
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 selfdestruct.sh # echo $? # 143 # # 143 = 128 + 15 # TERM signal
kill l lists all the signals (as does the file /usr/include/asm/signal.h). A kill 9 is a sure kill, which will usually terminate a process that stubbornly refuses to die with a plain kill. Sometimes, a kill 15 works. A "zombie" process, that is, a child process that has terminated, but that the parent process has not (yet) killed, cannot be killed by a loggedon user you can't kill something that is already Chapter 14. Internal Commands and Builtins 189
Advanced BashScripting Guide dead but init will generally clean it up sooner or later. killall The killall command kills a running process by name, rather than by process ID. If there are multiple instances of a particular command running, then doing a killall on that command will terminate them all. This refers to the killall command in /usr/bin, not the killall script in /etc/rc.d/init.d. command The command directive disables aliases and functions for the command immediately following it.
bash$ command ls
This is one of three shell directives that effect script command processing. The others are builtin and enable. builtin Invoking builtin BUILTIN_COMMAND runs the command BUILTIN_COMMAND as a shell builtin, temporarily disabling both functions and external system commands with the same name. enable This either enables or disables a shell builtin command. As an example, enable n kill disables the shell builtin kill, so that when Bash subsequently encounters kill, it invokes the external command /bin/kill. The a option to enable lists all the shell builtins, indicating whether or not they are enabled. The f filename option lets enable load a builtin as a shared library (DLL) module from a properly compiled object file. [45]. autoload This is a port to Bash of the ksh autoloader. With autoload in place, a function with an autoload declaration will load from an external file at its first invocation. [46] This saves system resources. Note that autoload is not a part of the core Bash installation. It needs to be loaded in with enable f (see above).
Table 141. Job identifiers Notation %N %S %?S %% %+ % $! Meaning Job number [N] Invocation (command line) of job begins with string S Invocation (command line) of job contains within it string S "current" job (last job stopped in foreground or started in background) "current" job (last job stopped in foreground or started in background) Last job Last background process
190
bash$ echo $? 2
Example 151. Using ls to create a table of contents for burning a CDR disk
#!/bin/bash # ex40.sh (burncd.sh) # Script to automate burning a CDR.
SPEED=2 # May use higher speed if your hardware supports it. IMAGEFILE=cdimage.iso CONTENTSFILE=contents DEVICE=cdrom # DEVICE="0,0" For older versions of cdrecord 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.
191
cat, tac cat, an acronym for concatenate, lists a file to stdout. When combined with redirection (> or >>), it is commonly used to concatenate files.
# Uses of 'cat' cat filename cat file.1 file.2 file.3 > file.123
The n option to cat inserts consecutive numbers before all lines of the target file(s). The b option numbers only the nonblank lines. The v option echoes nonprintable characters, using ^ notation. The s option squeezes multiple consecutive blank lines into a single blank line. See also Example 1526 and Example 1522. In a pipe, it may be more efficient to redirect the stdin to a file, rather than to cat the file.
cat filename | tr az AZ tr az AZ < filename # Same effect, but starts one less process, #+ and also dispenses with the pipe.
tac, is the inverse of cat, listing a file backwards from its end. rev reverses each line of a file, and outputs to stdout. This does not have the same effect as tac, as it preserves the order of the lines, but flips each one around (mirror image).
bash$ cat file1.txt This is line 1. This is line 2.
192
cp This is the file copy command. cp file1 file2 copies file1 to file2, overwriting file2 if it already exists (see Example 156). Particularly useful are the a archive flag (for copying an entire directory tree), the u update flag (which prevents overwriting identicallynamed newer files), and the r and R recursive flags.
cp u source_dir/* dest_dir # "Synchronize" dest_dir to source_dir #+ by copying over all newer and not previously existing files.
mv This is the file move command. It is equivalent to a combination of cp and rm. It may be used to move multiple files to a directory, or even to rename a directory. For some examples of using mv in a script, see Example 919 and Example A2. When used in a noninteractive script, mv takes the f (force) option to bypass user input. When a directory is moved to a preexisting directory, it becomes a subdirectory of the destination directory.
bash$ mv source_directory target_directory bash$ ls lF target_directory total 1 drwxrwxrx 2 bozo bozo
rm Delete (remove) a file or files. The f option forces removal of even readonly files, and is useful for bypassing user input in a script. The rm command will, by itself, fail to remove filenames beginning with a dash.
bash$ rm badname rm: invalid option b Try `rm help' for more information.
One way to accomplish this is to preface the filename to be removed with a dotslash .
bash$ rm ./badname
When used with the recursive flag r, this command removes files all the way down the directory tree from the current directory. A careless rm rf * can wipe out a big chunk of a directory structure. rmdir Chapter 15. External Filters, Programs and Commands 193
Advanced BashScripting Guide Remove directory. The directory must be empty of all files including "invisible" dotfiles [47] for this command to succeed. mkdir Make directory, creates a new directory. For example, mkdir p project/programs/December creates the named directory. The p option automatically creates any necessary parent directories. chmod Changes the attributes of an existing file or directory (see Example 1413).
chmod +x filename # Makes "filename" executable for all users. chmod u+s filename # Sets "suid" bit on "filename" permissions. # An ordinary user may execute "filename" with same privileges as the file's owner. # (This does not apply to shell scripts.) chmod 644 filename # Makes "filename" readable/writable to owner, readable to others # (octal mode). chmod 444 filename # Makes "filename" readonly for all. # Modifying the file (for example, with a text editor) #+ not allowed for a user who does not own the file (except for root), #+ and even the file owner must force a filesave #+ if she modifies the file. # Same restrictions apply for deleting the file. chmod 1777 directoryname # Gives everyone read, write, and execute permission in directory, #+ however also sets the "sticky bit". # This means that only the owner of the directory, #+ owner of the file, and, of course, root #+ can delete any particular file in that directory. chmod 111 directoryname # Gives everyone executeonly permission in a directory. # This means that you can execute and READ the files in that directory #+ (execute permission necessarily includes read permission #+ because you can't execute a file without being able to read it). # But you can't list the files or search for them with the "find" command. # These restrictions do not apply to root. chmod 000 directoryname # No permissions at all for that directory. # Can't read, write, or execute files in it. # Can't even list files in it or "cd" to it. # But, you can rename (mv) the directory #+ or delete it (rmdir) if it is empty. # You can even symlink to files in the directory, #+ but you can't read, write, or execute the symlinks. # These restrictions do not apply to root.
chattr Change file attributes. This is analogous to chmod above, but with different options and a different invocation syntax, and it works only on an ext2 filesystem.
194
Advanced BashScripting Guide One particularly interesting chattr option is i. A chattr +i filename marks the file as immutable. The file cannot be modified, linked to, or deleted, not even by root. This file attribute can be set or removed only by root. In a similar fashion, the a option marks the file as append only.
root# chattr +i file1.txt
root# rm file1.txt rm: remove writeprotected regular file `file1.txt'? y rm: cannot remove `file1.txt': Operation not permitted
If a file has the s (secure) attribute set, then when it is deleted its block is zeroed out on the disk. If a file has the u (undelete) attribute set, then when it is deleted, its contents can still be retrieved (undeleted). If a file has the c (compress) attribute set, then it will automatically be compressed on writes to disk, and uncompressed on reads. The file attributes set with chattr do not show in a file listing (ls l). ln Creates links to preexistings files. A "link" is a reference to a file, an alternate name for it. The ln command permits referencing the linked file by more than one name and is a superior alternative to aliasing (see Example 46). The ln creates only a reference, a pointer to the file only a few bytes in size.
The ln command is most often used with the s, symbolic or "soft" link flag. Advantages of using the s flag are that it permits linking across file systems or to directories. The syntax of the command is a bit tricky. For example: ln s oldfile newfile links the previously existing oldfile to the newly created link, newfile. If a file named newfile has previously existed, an error message will result. Which type of link to use? As John Macdonald explains it: 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.
195
Advanced BashScripting Guide 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.
HELLO_CALL=65 GOODBYE_CALL=66 if [ $0 = "./goodbye" ] then echo "Goodbye!" # Some other goodbyetype commands, as appropriate. exit $GOODBYE_CALL fi echo "Hello!" # Some other hellotype commands, as appropriate. exit $HELLO_CALL
man, info These commands access the manual and information pages on system commands and installed utilities. When available, the info pages usually contain more detailed descriptions than do the man pages.
If COMMAND contains {}, then find substitutes the full path name of the selected file for "{}".
196
The exec option to find should not be confused with the exec shell builtin. Example 153. Badname, eliminate file names in current directory containing bad characters and whitespace.
#!/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 deepsixed. done
197
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 {} \; # ^^
198
for file in $( find "$directory" perm "$permissions" ) do ls ltF author "$file" done
See Example 1528, Example 34, and Example 109 for scripts using find. Its manpage provides more detail on this complex and powerful command. xargs 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 backquotes. In situations where command substitution fails with a too many arguments error, substituting xargs often works. [48] Normally, xargs reads from stdin or from a pipe, but it can also be given the output of a file. The default command for xargs is echo. This means that input piped to xargs may have linefeeds and other whitespace characters stripped out.
bash$ ls l total 0 rwrwr rwrwr
1 bozo 1 bozo
bozo bozo
bash$ ls l | xargs total 0 rwrwr 1 bozo bozo 0 Jan 29 23:58 file1 rwrwr 1 bozo bozo 0 Jan...
bash$ find ~/mail type f | xargs grep "Linux" ./misc:UserAgent: slrn/0.9.8.1 (Linux) ./sentmailjul2005: hosted by the Linux Documentation Project. ./sentmailjul2005: (Linux Documentation Project Site, rtf version) ./sentmailjul2005: Subject: Criticism of Bozo's Windows/Linux article ./sentmailjul2005: while mentioning that the Linux ext2/ext3 filesystem . . .
ls | xargs p l gzip gzips every file in current directory, one at a time, prompting before each operation.
199
Advanced BashScripting Guide An interesting xargs option is n NN, which limits to NN the number of arguments passed. ls | xargs n 8 echo lists the files in the current directory in 8 columns. Another useful option is 0, in combination with find print0 or grep lZ. This allows handling arguments containing whitespace or quotes. find / type f print0 | xargs 0 grep liwZ GUI | xargs 0 rm f grep rliwZ GUI / | xargs 0 rm f Either of the above will remove any file containing "GUI". (Thanks, S.C.) Example 155. Logfile: Using xargs to monitor system log
#!/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.
200
Advanced BashScripting Guide Example 156. Copying files in current directory to another
#!/bin/bash # copydir.sh # Copy (verbose) all files in current directory ($PWD) #+ to directory specified on command line. E_NOARGS=65 if [ z "$1" ] # Exit if no argument given. then echo "Usage: `basename $0` directorytocopyto" 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
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
201
exit $? # The "killall" command has the same effect as this script, #+ but using it is not quite as educational.
# Check for input file on command line. ARGS=1 E_BADARGS=65 E_NOFILE=66 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
######################################################## cat "$1" | xargs n1 | \ # List the file, one word per line. tr AZ az | \ # 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 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 0
202
Advanced BashScripting Guide expr Allpurpose 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. expr 3 + 5 returns 8 expr 5 % 3 returns 2 expr 1 / 0 returns the error message, expr: division by zero Illegal arithmetic operations not allowed. expr 5 \* 3 returns 15 The multiplication operator must be escaped when used in an arithmetic expression with expr. y=`expr $y + 1` Increment a variable, with the same effect as let y=y+1 and y=$(($y+1)). This is an example of arithmetic expansion. z=`expr substr $string $position $length` Extract substring of $length characters, starting at $position. Example 159. Using expr
#!/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 #
203
# Test equality. # 0 ( $x ne $y )
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\"."
204
The : operator can substitute for match. For example, b=`expr $a : [09]*` is the exact equivalent of b=`expr match $a [09]*` in the above listing.
#!/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" : '[09]*'`." # # echo echo "The digits at the beginning of \"$a\" are `expr "$a" : '\([09]*\)'`." # == == 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 ^^ # (actually means skip over one or more of any characters until specified #+ substring) echo exit 0
205
Advanced BashScripting Guide The above script illustrates how expr uses the escaped parentheses \( ... \) grouping operator in tandem with regular expression parsing to match a substring. Here is a another example, this time from "real life."
# Strip the whitespace from the beginning and end. LRFDATE=`expr "$LRFDATE" : '[[:space:]]*\(.*\)[[:space:]]*$'` # From Peter Knowles' "booklistgen.sh" script #+ for converting files to Sony Librie format. # (http://booklistgensh.peterknowles.com)
Perl, sed, and awk have far superior string parsing facilities. A short sed or awk "subroutine" within a script (see Section 33.2) is an attractive alternative to expr. See Section 9.2 for more on using expr in string operations.
206
The date command has quite a number of output options. For example %N gives the nanosecond portion of the current time. One interesting use for this is to generate sixdigit random integers.
date +%N | sed e 's/000$//' e 's/^0//' ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ # Strip off leading and trailing zeroes, if present.
# The 'TZ' parameter permits overriding the default time zone. date # Mon Mar 28 21:42:16 MST 2005 TZ=EST date # Mon Mar 28 23:42:16 EST 2005 # Thanks, Frank Kannemann and Pete Sjoberg, for the tip.
SixDaysAgo=$(date date='6 days ago') OneMonthAgo=$(date date='1 month ago') OneYearAgo=$(date date='1 year ago')
See also Example 34. zdump Time zone dump: echoes the time in a specified time zone.
bash$ zdump EST EST Tue Sep 18 22:09:22 2001 EST
time Outputs very verbose timing statistics for executing a command. time ls l / gives something like this:
0.00user 0.01system 0:00.05elapsed 16%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (149major+27minor)pagefaults 0swaps
See also the very similar times command in the previous section. As of version 2.0 of Bash, time became a shell reserved word, with slightly altered behavior in a pipeline. touch 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 touch zzz will create a new file of zero length, named zzz, assuming that zzz did not previously exist. Timestamping empty files in this way is useful for storing date information, for example in keeping track of modification times on a project. The touch command is equivalent to : >> newfile or >> newfile (for ordinary files). Chapter 15. External Filters, Programs and Commands 207
Advanced BashScripting Guide Before doing a cp u (copy/update), use touch to update the time stamp of files you don't wish overwritten. As an example, if the directory /home/bozo/tax_audit contains the files spreadsheet051606.data, spreadsheet051706.data, and spreadsheet051806.data, then doing a touch spreadsheet*.data will protect these files from being overwritten by files with the same names during a cp u /home/bozo/financial_info/spreadsheet*data /home/bozo/tax_audit. at The at job control command executes a given set of commands at a specified time. Superficially, it resembles cron, however, at is chiefly useful for onetime execution of a command set. at 2pm January 15 prompts for a set of commands to execute at that time. These commands should be shellscript compatible, since, for all practical purposes, the user is typing in an executable shell script a line at a time. Input terminates with a CtlD. Using either the f option or input redirection (<), at reads a command list from a file. This file is an executable shell script, though it should, of course, be noninteractive. Particularly clever is including the runparts command in the file to execute a different set of scripts.
bash$ at 2:30 am Friday < atjobs.list job 2 at 20001027 02:30
batch The batch job control command is similar to at, but it runs a command list when the system load drops below .8. Like at, it can read commands from a file with the f option.
The concept of batch processing dates back to the era of mainframe computers. It means running a set of commands without user intervention. cal Prints a neatly formatted monthly calendar to stdout. Will do current year or a large range of past and future years. sleep This is the shell equivalent of a wait loop. 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 Example 296.
sleep 3 # Pauses 3 seconds.
The sleep command defaults to seconds, but minute, hours, or days may also be specified.
sleep 3 h # Pauses 3 hours!
The watch command may be a better choice than sleep for running commands at timed intervals. usleep Chapter 15. External Filters, Programs and Commands 208
Advanced BashScripting Guide Microsleep (the u may be read as the Greek mu, or micro prefix). This is the same as sleep, above, but "sleeps" in microsecond intervals. It can be used for finegrained timing, or for polling an ongoing process at very frequent intervals.
usleep 30 # Pauses 30 microseconds.
This command is part of the Red Hat initscripts / rcscripts package. The usleep command does not provide particularly accurate timing, and is therefore unsuitable for critical timing loops. hwclock, clock The hwclock command accesses or adjusts the machine's hardware clock. Some options require root privileges. The /etc/rc.d/rc.sysinit startup file uses hwclock to set the system time from the hardware clock at bootup. The clock command is a synonym for hwclock.
The useful c option prefixes each line of the input file with its number of occurrences.
bash$ cat testfile 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.
bash$ uniq c testfile 1 This line occurs only once. 2 This line occurs twice.
209
bash$ sort testfile | uniq c | sort nr 3 This line occurs three times. 2 This line occurs twice. 1 This line occurs only once.
The sort INPUTFILE | uniq c | sort nr command string produces a frequency of occurrence listing on the INPUTFILE file (the nr options to sort 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.
# Check for input file on command line. ARGS=1 E_BADARGS=65 E_NOFILE=66 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 'AZ' 'az' | 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 caseinsensitive)
210
bash$ ./wf.sh testfile 6 this 6 occurs 6 line 3 times 3 three 2 twice 1 only 1 once
expand, unexpand The expand filter converts tabs to spaces. It is often used in a pipe. The unexpand filter converts spaces to tabs. This reverses the effect of expand. cut A tool for extracting fields from files. It is similar to the print $N command set in awk, but more limited. It may be simpler to use cut in a script than awk. Particularly important are the d (delimiter) and f (field specifier) options. Using cut to obtain a listing of the mounted filesystems:
cut d ' ' f1,2 /etc/mtab
211
cut d ' ' f2,3 filename is equivalent to awk F'[ ]' '{ print $2, $3 }' filename It is even possible to specify a linefeed as a delimiter. The trick is to actually embed a linefeed (RETURN) in the command sequence.
bash$ cut d' ' f3,7,19 testfile This is line 3 of testfile. This is line 7 of testfile. This is line 19 of testfile.
Thank you, Jaka Kranjc, for pointing this out. See also Example 1544. paste Tool for merging together different files into a single, multicolumn file. In combination with cut, useful for creating system log files. join Consider this a specialpurpose cousin of paste. This powerful utility allows merging two files in a meaningful fashion, which essentially creates a simple version of a relational database. The join command operates on exactly two files, but pastes together only those lines with a common tagged field (usually a numerical label), and writes the result to stdout. The files to be joined should be sorted according to the tagged field for the matchups to work properly.
File: 1.data 100 Shoes 200 Laces 300 Socks File: 2.data 100 $40.00 200 $1.00 300 $2.00 bash$ join 1.data 2.data File: 1.data 2.data 100 Shoes $40.00 200 Laces $1.00
212
The tagged field appears only once in the output. head lists the beginning of a file to stdout. The default is 10 lines, but this can be changed. The command has a number of interesting options. Example 1512. Which files are scripts?
#!/bin/bash # scriptdetector.sh: Detects scripts within a directory. TESTCHARS=2 SHABANG='#!' # Test first 2 characters. # Scripts begin with a "shabang."
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.
213
# 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 1 action 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 rightmost 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 nothing (matches line) nothing (matches line) action s/.* // 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. # =================================================================== #
214
See also Example 1536. tail lists the (tail) end of a file to stdout. The default is 10 lines, but this can be changed. Commonly used to keep track of changes to a system logfile, using the f option, which outputs lines appended to the file.
To list a specific line of a text file, pipe the output of head to tail n 1. For example head n 8 database.txt | tail n 1 lists the 8th line of the file database.txt. To set a variable to a given block of a text file:
var=$(head n $m $filename | tail n $n) # filename = name of file # m = from beginning of file, number of lines to end of block # n = number of lines to set variable to (trim from end of block)
Newer implementations of tail deprecate the older tail $LINES filename usage. The standard tail n $LINES filename is correct. See also Example 155, Example 1536 and Example 296. grep A multipurpose file search tool that uses Regular Expressions. It was originally a command/filter in the venerable ed line editor: g/re/p global regular expression print. grep pattern [file...] Search the target file(s) for occurrences of pattern, where pattern may be literal text or a Regular Expression.
215
The i option causes a caseinsensitive search. The w option matches only whole words. The l option lists only the files in which matches were found, but not the matching lines. The r (recursive) option searches files in the current working directory and all subdirectories below it. The n option lists the matching lines, together with line numbers.
bash$ grep n Linux osinfo.txt 2:This is a file containing information about Linux. 6:The GPL governs the distribution of the Linux operating system.
The c (count) option gives a numerical count of matches, rather than actually listing the matches.
grep c txt *.sgml # (number of occurrences of "txt" in "*.sgml" files)
# grep cz . # ^ dot # means count (c) zeroseparated (z) items matching "." # that is, nonempty ones (containing at least 1 character). # printf 'a b\nc d\n\n\n\n\n\000\n\000e\000\000\nf' | grep cz . printf 'a b\nc d\n\n\n\n\n\000\n\000e\000\000\nf' | grep cz '$' printf 'a b\nc d\n\n\n\n\n\000\n\000e\000\000\nf' | grep cz '^' # printf 'a b\nc d\n\n\n\n\n\000\n\000e\000\000\nf' | grep c '$' # By default, newline chars (\n) separate items to match. # Note that the z option is GNU "grep" specific.
# 3 # 5 # 5 # 9
# Thanks, S.C.
The color (or colour) option marks the matching string in color (on the console or in an xterm window). Since grep prints out each entire line containing the matching pattern, this lets you see exactly what is being matched. See also the o option, which shows only the matching portion of the line(s). Chapter 15. External Filters, Programs and Commands 216
Advanced BashScripting Guide Example 1515. Printing out the From lines in stored email messages
#!/bin/bash # from.sh # Emulates the useful "from" utility in Solaris, BSD, etc. # Echoes the "From" header line in all messages #+ in your email directory.
# No quoting of variable. Why? # Show file, plus extra context lines #+ and display "From" in color. # "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 $? # Might wish to pipe the output of this script to 'more' or #+ redirect it to a file . . .
When invoked with more than one target file given, grep specifies which file contains matches.
bash$ grep Linux osinfo.txt misc.txt 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.
To force grep to show the filename when searching only one target file, simply give /dev/null as the second file.
bash$ grep Linux osinfo.txt /dev/null osinfo.txt:This is a file containing information about Linux. osinfo.txt:The GPL governs the distribution of the Linux operating system.
If there is a successful match, grep returns an exit status of 0, which makes it useful in a condition test in a script, especially in combination with the q option to suppress output.
SUCCESS=0 word=Linux filename=data.file grep q "$word" "$filename" # if grep lookup succeeds
if [ $? eq $SUCCESS ] # if grep q "$word" "$filename" can replace lines 5 7. then echo "$word found in $filename" else echo "$word not found in $filename" fi
Example 296 demonstrates how to use grep to search for a word pattern in a system logfile. Chapter 15. External Filters, Programs and Commands 217
How can grep search for two (or more) separate patterns? What if you want grep to display all lines in a file or files that contain both "pattern1" and "pattern2"? One method is to pipe the result of grep pattern1 to grep pattern2. For example, given the following file:
# Filename: tstfile This This This This Here is a sample file. is an ordinary text file. file does not contain any unusual text. file is not unusual. is some text.
Now, let's search this file for lines containing both "file" and "text" . . .
bash$ grep file tstfile # 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.
218
egrep extended grep is the same as grep E. This uses a somewhat different, extended set of Regular Expressions, which can make the search a bit more flexible. It also allows the boolean | (or) operator.
bash $ egrep 'matches|Matches' file.txt Line 1 matches. Line 3 Matches. Line 4 contains matches, but also Matches
fgrep fast grep is the same as grep F. It does a literal string search (no Regular Expressions), which usually speeds things up a bit. On some Linux distros, egrep and fgrep are symbolic links to, or aliases for grep, but invoked with the E and F options, respectively. Example 1517. Looking up definitions in Webster's 1913 Dictionary
#!/bin/bash # dictlookup.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 (only LF at end of line) before using it with this script. Store the file in plain, uncompressed ASCII. Set DEFAULT_DICTFILE variable below to path/filename.
E_BADARGS=65 MAXCONTEXTLINES=50 # Maximum number of lines to show. DEFAULT_DICTFILE="/usr/share/dict/webster1913dict.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 '/^[AZ]/p') ]] # Must at least specify word to look up, and #+ it must start with an uppercase letter. then echo "Usage: `basename $0` Wordtodefine [dictionaryfile]" echo echo "Note: Word to look up must start with capital letter,"
219
# 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,/^[AZ]/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 0 # # # # # # # # # # # # # 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" . . . 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.
agrep (approximate grep) extends the capabilities of grep 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.
To search compressed files, use zgrep, zegrep, or zfgrep. These also work on noncompressed files, though slower than plain grep, egrep, fgrep. They are handy for searching through a mixed set of files, some compressed, some not.
220
Advanced BashScripting Guide To search bzipped files, use bzgrep. look The command look works like grep, but does a lookup on a "dictionary," a sorted word list. By default, look searches for a match in /usr/dict/words, but a different dictionary file may be specified.
# 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
sed, awk Scripting languages especially suited for parsing text files and command output. May be embedded singly or in combination in pipes and shell scripts. sed Noninteractive "stream editor", permits using many ex commands in batch mode. It finds many uses in shell scripts. awk Programmable file extractor and formatter, good for manipulating and/or extracting fields (columns) in structured text files. Its syntax is similar to C. Chapter 15. External Filters, Programs and Commands 221
wc w gives only the word count. wc l gives only the line count. wc c gives only the byte count. wc m gives only the character count. wc L gives only the length of the longest line. Using wc to count how many .txt files are in current working directory:
$ ls *.txt | wc l # Will work as long as none of the "*.txt" files #+ have a linefeed embedded in their name. # # # # Alternative ways of doing this are: find . maxdepth 1 name \*.txt print0 | grep cz . (shopt s nullglob; set *.txt; echo $#) Thanks, S.C.
Using wc to total up the size of all the files whose names begin with letters in the range d h
bash$ wc [dh]* | grep total | awk '{print $3}' 71832
Using wc to count the instances of the word "Linux" in the main source file for this book.
bash$ grep Linux absbook.sgml | wc l 50
See also Example 1536 and Example 198. Certain commands include some of the functionality of wc as options.
... | grep foo | wc l # This frequently used construct can be more concisely rendered. ... | grep c foo # Just use the "c" (or "count") option of grep. # Thanks, S.C.
tr character translation filter. Must use quoting and/or brackets, as appropriate. Quotes prevent the shell from reinterpreting the special characters in tr command sequences. Brackets should be quoted to prevent expansion by the shell. Chapter 15. External Filters, Programs and Commands 222
Advanced BashScripting Guide Either tr "AZ" "*" <filename or tr AZ \* <filename changes all the uppercase letters in filename to asterisks (writes to stdout). On some systems this may not work, but tr AZ '[**]' will.
The squeezerepeats (or s) option deletes all but the first instance of a string of consecutive characters. This option is useful for removing excess whitespace.
bash$ echo "XXXXX" | tr squeezerepeats 'X' X
The c "complement" option inverts the character set to match. With this option, tr acts only upon those characters not matching the specified set.
bash$ echo "acfdeb123" | tr c bd + +c+d+b++++
223
for filename in * do fname=`basename $filename` n=`echo $fname | tr AZ az` if [ "$fname" != "$n" ] 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 $?
224
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 ControlD. # Otherwise, specify filename as commandline parameter. cat "$@" | tr "az" "AZ" | tr "AZ" "$key" # | to uppercase | encrypt # Will work on lowercase, uppercase, or mixedcase quotes. # Passes nonalphabetic characters through unchanged.
# Try this script with something like: # "Nothing so needs reforming as other people's habits." # Mark Twain #
225
# This simpleminded cipher can be broken by an average 12year old #+ using only pencil and paper. exit 0 # # # #+ Exercise: Modify the script so that it will either encrypt or decrypt, depending on commandline argument(s).
tr variants The tr utility has two historic variants. The BSD version does not use brackets (tr az AZ), but the SysV one does (tr '[az]' '[AZ]'). The GNU version of tr resembles the BSD one. fold A filter that wraps lines of input to a specified width. This is especially useful with the s option, which breaks lines at word spaces (see Example 1524 and Example A1). fmt Simpleminded file formatter, used as a filter in a pipe to "wrap" long lines of text output.
See also Example 155. A powerful alternative to fmt is Kamil Toman's par utility, available from http://www.cs.berkeley.edu/~amc/Par/. col 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 col is in filtering the output from certain text processing utilities, such as groff and tbl. column Column formatter. This filter transforms listtype text output into a "prettyprinted" table by inserting tabs at appropriate places. Chapter 15. External Filters, Programs and Commands 226
Advanced BashScripting Guide Example 1525. Using column to format a directory listing
#!/bin/bash # This is a slight modification of the example file in the "column" man page.
(printf "PERMISSIONS LINKS OWNER GROUP SIZE MONTH DAY HH:MM PROGNAME\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" prettyprints a table. exit 0
colrm Column removal filter. This removes columns (characters) from a file and writes the file, lacking the range of specified columns, back to stdout. colrm 2 4 <filename removes the second through fourth characters from each line of the text file filename. If the file contains tabs or nonprintable characters, this may cause unpredictable behavior. In such cases, consider using expand and unexpand in a pipe preceding colrm. nl Line numbering filter: nl filename lists filename to stdout, but inserts consecutive numbers at the beginning of each nonblank line. If filename omitted, operates on stdin. The output of nl is very similar to cat b, since, by default nl does not list blank lines.
cat n `basename $0` # The difference is that 'cat n' numbers the blank lines. # Note that 'nl ba' will also do so. exit 0 #
pr Print formatting filter. This will paginate files (or stdout) 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 pr command combines much of the functionality of nl, paste, fold, column, and expand. Chapter 15. External Filters, Programs and Commands 227
Advanced BashScripting Guide pr o 5 width=65 fileZZZ | more gives a nice paginated listing to screen of fileZZZ with margins set at 5 and 65. A particularly useful option is d, forcing doublespacing (same effect as sed G). gettext The GNU gettext package is a set of utilities for localizing 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. The gettext program works on shell scripts. See the info page. msgfmt A program for generating binary message catalogs. It is used for localization. iconv A utility for converting file(s) to a different encoding (character set). Its chief use is for localization.
# Convert a string from UTF8 to UTF16 and print to the BookList function write_utf8_string { STRING=$1 BOOKLIST=$2 echo n "$STRING" | iconv f UTF8 t UTF16 | \ cut b 3 | tr d \\n >> "$BOOKLIST" } # From Peter Knowles' "booklistgen.sh" script #+ for converting files to Sony Librie format. # (http://booklistgensh.peterknowles.com)
recode Consider this a fancier version of iconv, above. This very versatile utility for converting a file to a different encoding scheme. Note that recode> is not part of the standard Linux installation. TeX, gs TeX and Postscript are text markup languages used for preparing copy for printing or formatted video display. TeX 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. Ghostscript (gs) is a GPLed Postscript interpreter. texexec Utility for processing TeX and pdf files. Found in /usr/bin on many Linux distros, it is actually a shell wrapper that calls Perl to invoke Tex.
texexec pdfarrange result=Concatenated.pdf *pdf # #+ # # Concatenates all the pdf files in the current working directory into the merged file, Concatenated.pdf . . . (The pdfarrange option repaginates a pdf file. See also pdfcombine.) The above command line could be parameterized and put into a shell script.
enscript Utility for converting plain text file to PostScript For example, enscript filename.txt p filename.ps produces the PostScript output file filename.ps. groff, tbl, eqn Chapter 15. External Filters, Programs and Commands 228
Advanced BashScripting Guide Yet another text markup and display formatting language is groff. This is the enhanced GNU version of the venerable UNIX roff/troff display and typesetting package. Manpages use groff. The tbl table processing utility is considered part of groff, as its function is to convert table markup into groff commands. The eqn equation processing utility is likewise part of groff, and its function is to convert equation markup into groff commands.
lex, yacc The lex lexical analyzer produces programs for pattern matching. This has been replaced by the nonproprietary flex on Linux systems.
The yacc utility creates a parser based on a set of specifications. This has been replaced by the nonproprietary bison on Linux systems.
Advanced BashScripting Guide The standard UNIX archiving utility. [50] Originally a Tape ARchiving 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 stdout (see Example 34). GNU tar has been patched to accept various compression filters, for example: tar czvf archive_name.tar.gz *, which recursively archives and gzips all files in a directory tree except dotfiles in the current working directory ($PWD). [51] Some useful tar options: 1. c create (a new archive) 2. x extract (files from existing archive) 3. delete delete (files from existing archive) This option will not work on magnetic tape devices. 4. r append (files to existing archive) 5. A append (tar files to existing archive) 6. t list (contents of existing archive) 7. u update archive 8. d compare archive with specified filesystem 9. z gzip the archive (compress or uncompress, depending on whether combined with the c or x) option 10. j bzip2 the archive It may be difficult to recover data from a corrupted gzipped tar archive. When archiving important files, make multiple backups. shar Shell archiving utility. The files in a shell archive are concatenated without compression, and the resultant archive is essentially a shell script, complete with #!/bin/sh header, and containing all the necessary unarchiving commands. Shar archives still show up in Usenet newsgroups, but otherwise shar has been pretty well replaced by tar/gzip. The unshar command unpacks shar archives. ar Creation and manipulation utility for archives, mainly used for binary object file libraries. rpm The Red Hat Package Manager, or rpm utility provides a wrapper for source or binary archives. It includes commands for installing and checking the integrity of packages, among other things. A simple rpm i package_name.rpm usually suffices to install a package, though there are many more options available. rpm qf identifies which package a file originates from.
bash$ rpm qf /bin/ls coreutils5.2.131
rpm qa gives a complete list of all installed rpm packages on a given system. An rpm qa package_name lists only the package(s) corresponding to package_name.
230
bash$ rpm qa docbook | grep docbook docbookdtd31sgml1.010 docbookstyledsssl1.643 docbookdtd30sgml1.010 docbookdtd40sgml1.011 docbookutilspdf0.6.92 docbookdtd41sgml1.010 docbookutils0.6.92
cpio This specialized archiving copy command (copy input and output) is rarely seen any more, having been supplanted by tar/gzip. 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 tar.
231
# Exercise: # # Add code to check the exit status ($?) of the 'find | cpio' pipe #+ and output appropriate error messages if anything went wrong. exit $?
TEMPFILE=$$.cpio
# # # #+ # #
Tempfile with "unique" name. $$ is process ID of script. Converts rpm archive into cpio archive. Unpacks cpio archive. Deletes cpio archive.
# Exercise: # Add check for whether 1) "targetfile" exists and #+ 2) it is an rpm archive. # Hint: Parse output of 'file' command.
Compression gzip The standard GNU/UNIX compression utility, replacing the inferior and proprietary compress. The corresponding decompression command is gunzip, which is the equivalent of gzip d. The c option sends the output of gzip to stdout. This is useful when piping to other commands. The zcat filter decompresses a gzipped file to stdout, as possible input to a pipe or redirection. This is, in effect, a cat command that works on compressed files (including files processed with the older compress utility). The zcat command is equivalent to gzip dc. On some commercial UNIX systems, zcat is a synonym for uncompress c, and will not work on gzipped files. See also Example 77. bzip2 Chapter 15. External Filters, Programs and Commands 232
Advanced BashScripting Guide An alternate compression utility, usually more efficient (but slower) than gzip, especially on large files. The corresponding decompression command is bunzip2. Newer versions of tar have been patched with bzip2 support. compress, uncompress This is an older, proprietary compression utility found in commercial UNIX distributions. The more efficient gzip has largely replaced it. Linux distributions generally include a compress workalike for compatibility, although gunzip can unarchive files treated with compress. The znew command transforms compressed files into gzipped ones. sq Yet another compression (squeeze) utility, a filter that works only on sorted ASCII word lists. It uses the standard invocation syntax for a filter, sq < inputfile > outputfile. Fast, but not nearly as efficient as gzip. The corresponding uncompression filter is unsq, invoked like sq. The output of sq may be piped to gzip for further compression. zip, unzip Crossplatform file archiving and compression utility compatible with DOS pkzip.exe. "Zipped" archives seem to be a more common medium of file exchange on the Internet than "tarballs." unarc, unarj, unrar These Linux utilities permit unpacking archives compressed with the DOS arc.exe, arj.exe, and rar.exe programs. File Information file A utility for identifying file types. The command file filename will return a file specification for filename, such as ascii text or data. It references the magic numbers found in /usr/share/magic, /etc/magic, or /usr/lib/magic, depending on the Linux/UNIX distribution. The f option causes file to run in batch mode, to read from a designated file a list of filenames to analyze. The z option, when used on a compressed target file, forces an attempt to analyze the uncompressed file type.
bash$ file test.tar.gz test.tar.gz: gzip compressed data, deflated, last modified: Sun Sep 16 13:34:51 2001, os: Unix bash file z test.tar.gz test.tar.gz: GNU tar archive (gzip compressed data, deflated, last modified: Sun Sep 16 13:34:51 2001, os: Unix)
# Find sh and Bash scripts in a given directory: DIRECTORY=/usr/local/bin KEYWORD=Bourne # Bourne and BourneAgain shell scripts file $DIRECTORY/* | fgrep $KEYWORD
233
# 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 nontrivial exercise. # Also, the above code deletes noncomment lines with a "*/" . . . #+ not a desirable result. exit 0
# # Code below this line will not execute because of 'exit 0' above.
234
exit 0
which which command gives the full path to "command." This is useful for finding out whether a particular command or utility is installed on the system. $bash which rm
/usr/bin/rm
For an interesting use of this command, see Example 3314. whereis Similar to which, above, whereis command gives the full path to "command," but also to its manpage. $bash whereis rm
rm: /bin/rm /usr/share/man/man1/rm.1.bz2
whatis whatis command looks up "command" in the whatis database. This is useful for identifying system commands and important configuration files. Consider it a simplified man command. $bash whatis whatis
whatis (1) search the whatis database for complete words
235
See also Example 103. vdir Show a detailed directory listing. The effect is similar to ls lb. This is one of the GNU fileutils.
bash$ vdir total 10 rwrr rwrr rwrr bash ls l total 10 rwrr rwrr rwrr
4034 Jul 18 22:04 data1.xrolo 4602 May 25 13:58 data1.xrolo.bak 877 Dec 17 2000 employment.xrolo
4034 Jul 18 22:04 data1.xrolo 4602 May 25 13:58 data1.xrolo.bak 877 Dec 17 2000 employment.xrolo
locate, slocate The locate command searches for files using a database stored for just that purpose. The slocate command is the secure version of locate (which may be aliased to slocate). $bash locate hickson
/usr/lib/xephem/catalogs/hickson.edb
strings Use the strings 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 (strings imagefile | more might show something like JFIF, which would identify the file as a jpeg graphic). In a script, you would probably parse the output of strings with grep or sed. See Example 107 and Example 109.
Example 1532. An "improved" strings command Chapter 15. External Filters, Programs and Commands 236
MINSTRLEN=3 WORDFILE=/usr/share/dict/linux.words
# # # #+ #+
Minimum string length. Dictionary file. May specify a different word list file of onewordperline format.
wlist=`strings "$1" | tr AZ az | 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 AZ az" converts to lowercase. # "tr '[:space:]'" converts whitespace characters to Z's. # "tr cs '[:alpha:]' Z" converts nonalphabetic 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 the output of 'tr' back to itself, but with different arguments and/or options on each pass. ****************************************************************
# # # #
Important: $wlist must not be quoted here. "$wlist" does not work. Why not?
do
237
# Match whole words only. # "Fixed strings" and #+ "whole words" options.
done
exit $?
Comparison diff, patch diff: flexible file comparison utility. It compares the target files linebyline sequentially. In some applications, such as comparing word dictionaries, it may be helpful to filter the files through sort and uniq before piping them to diff. diff file1 file2 outputs the lines in the files that differ, with carets showing which file each particular line belongs to. The sidebyside option to diff outputs each compared file, line by line, in separate columns, with nonmatching lines marked. The c and u options likewise make the output of the command easier to interpret. There are available various fancy frontends for diff, such as sdiff, wdiff, xdiff, and mgdiff. The diff command returns an exit status of 0 if the compared files are identical, and 1 if they differ. This permits use of diff in a test construct within a shell script (see below). A common use for diff is generating difference files to be used with patch The e option outputs files suitable for ed or ex scripts.
patch: flexible versioning utility. Given a difference file generated by diff, patch can upgrade a previous version of a package to a newer version. It is much more convenient to distribute a relatively small "diff" file than the entire body of a newly revised package. Kernel "patches" have become the preferred method of distributing the frequent releases of the Linux kernel.
patch p1 <patchfile # Takes all the changes listed in 'patchfile' # and applies them to the files referenced therein. # This upgrades to a newer version of the package.
238
Advanced BashScripting Guide The diff command can also recursively compare directories (for the filenames present).
bash$ diff r ~/notes1 ~/notes2 Only in /home/bozo/notes1: file02 Only in /home/bozo/notes1: file03 Only in /home/bozo/notes2: file04
Use diffstat to create a histogram (pointdistribution graph) of output from diff. diff3 An extended version of diff 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.
bash$ diff3 file1 file2 file3 ==== 1:1c This is line 1 of "file1". 2:1c This is line 1 of "file2". 3:1c This is line 1 of "file3"
sdiff 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. cmp The cmp command is a simpler version of diff, above. Whereas diff reports the differences between two files, cmp merely shows at what point they differ. Like diff, cmp 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. Example 1533. Using cmp to compare two files within a script.
#!/bin/bash ARGS=2 # Two args to script expected. E_BADARGS=65 E_UNREADABLE=66 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."
239
Use zcmp on gzipped files. comm Versatile file comparison utility. The files must be sorted for this to be useful. comm options firstfile secondfile comm file1 file2 outputs three columns: column 1 = lines unique to file1 column 2 = lines unique to file2 column 3 = lines common to both. The options allow suppressing output of one or more columns. 1 suppresses column 1 2 suppresses column 2 3 suppresses column 3 12 suppresses both columns 1 and 2, etc. This command is useful for comparing "dictionaries" or word lists sorted text files with one word per line. Utilities basename Strips the path information from a file name, printing only the file name. The construction basename $0 lets the script know its name, that is, the name it was invoked by. This can be used for "usage" messages if, for example a script is called with missing arguments:
echo "Usage: `basename $0` arg1 arg2 ... argn"
dirname Strips the basename from a filename, printing only the path information. basename and dirname 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 Example A7).
240
exit 0
split, csplit These are utilities for splitting a file into smaller chunks. They are usually used for splitting up large files in order to back them up on floppies or preparatory to emailing or uploading them. The csplit command splits a file according to context, the split occuring where patterns are matched. Encoding and Encryption sum, cksum, md5sum, sha1sum These are utilities for generating checksums. A checksum is a number 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 md5sum (message digest 5 checksum) command, or better yet, the newer sha1sum (Secure Hash Algorithm).
bash$ cksum /boot/vmlinuz 1670054224 804083 /boot/vmlinuz bash$ echo n "Top Secret" | cksum 3391003827 10
/boot/vmlinuz
The cksum command shows the size, in bytes, of its target, whether file or stdout. The md5sum and sha1sum commands display a dash when they receive their input from stdout. Example 1535. Checking file integrity
#!/bin/bash # fileintegrity.sh: Checking whether files in a given directory # have been tampered with. E_DIR_NOMATCH=70 E_BAD_DBFILE=71
241
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
242
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 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/. # Do the actual work.
Also see Example A19 and Example 3314 for creative uses of the md5sum command. There have been reports that the 128bit md5sum can be cracked, so the more secure 160bit sha1sum is a welcome new addition to the checksum toolkit. Some security consultants think that even sha1sum can be compromised. So, what's next a 512bit checksum utility?
bash$ md5sum testfile e181e2c8720c60522c4c4c981108e367
testfile
243
shred Securely erase a file by overwriting it multiple times with random bit patterns before deleting it. This command has the same effect as Example 1556, but does it in a more thorough and elegant manner. This is one of the GNU fileutils. Advanced forensic technology may still be able to recover the contents of a file, even after application of shred. uuencode This utility encodes binary files (images, sound files, compressed files, etc.) into ASCII characters, making them suitable for transmission in the body of an email message or in a newsgroup posting. This is especially useful where MIME (multimedia) encoding is not available. uudecode This reverses the encoding, decoding uuencoded files back into the original binaries.
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
The fold s command may be useful (possibly in a pipe) to process long uudecoded text messages downloaded from Usenet newsgroups. mimencode, mmencode
244
Advanced BashScripting Guide The mimencode and mmencode commands process multimediaencoded email attachments. Although mail user agents (such as pine or kmail) normally handle this automatically, these particular utilities permit manipulating such attachments manually from the command line or in batch processing mode by means of a shell script. crypt At one time, this was the standard UNIX file encryption utility. [52] Politically motivated government regulations prohibiting the export of encryption software resulted in the disappearance of crypt 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 cruft (see Example A4). Miscellaneous mktemp Create a temporary file [53] with a "unique" filename. When invoked from the command line without additional arguments, it creates a zerolength file in the /tmp directory.
bash$ mktemp /tmp/tmp.zzsvql3154
PREFIX=filename tempfile=`mktemp $PREFIX.XXXXXX` # ^^^^^^ Need at least 6 placeholders #+ in the filename template. # If no filename template supplied, #+ "tmp.XXXXXXXXXX" is the default. echo "tempfile name = $tempfile" # tempfile name = filename.QA2ZpY # or something similar... # #+ # #+ Creates a file of that name in the current working directory with 600 file permissions. A "umask 177" is therefore unnecessary, but it's good programming practice anyhow.
make Utility for building and compiling binary packages. This can also be used for any set of operations that is triggered by incremental changes in source files. The make command checks a Makefile, a list of file dependencies and operations to be carried out. The make utility is, in effect, a powerful scripting language similar in many ways to Bash, but with the capability of recognizing dependencies. For indepth coverage of this useful tool set, see the GNU software documentation site. install Special purpose file copying command, similar to cp, 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 Makefiles (in the make install : section). It could likewise find use in installation scripts. dos2unix This utility, written by Benjamin Lin and collaborators, converts DOSformatted text files (lines terminated by CRLF) to UNIX format (lines terminated by LF only), and viceversa. Chapter 15. External Filters, Programs and Commands 245
Advanced BashScripting Guide ptx The ptx [targetfile] command outputs a permuted index (crossreference list) of the targetfile. This may be further filtered and formatted in a pipe, if necessary. more, less Pagers that display a text file or stream to stdout, one screenful at a time. These may be used to filter the output of stdout . . . or of a script. An interesting application of more is to "test drive" a command sequence, to forestall potentially unpleasant consequences.
ls /home/bozo | awk '{print "rm rf " $1}' | more # ^^^^ # Testing the effect of the following (disastrous) command line: # ls /home/bozo | awk '{print "rm rf " $1}' | sh # Hand off to the shell to execute . . . ^^
ipcalc Displays IP information for a host. With the h option, ipcalc does a reverse DNS lookup, finding the name of the host (server) from the IP address.
bash$ ipcalc h 202.92.42.236 HOSTNAME=surfacemail.com
nslookup Do an Internet "name server lookup" on a host by IP address. This is essentially equivalent to ipcalc h or dig x . The command may be run either interactively or noninteractively, i.e., from within a script. The nslookup command has allegedly been "deprecated," but it is still useful.
bash$ nslookup sil 66.97.104.180 nslookup kuhleersparnis.ch Server: 135.116.137.2 Address: 135.116.137.2#53 Nonauthoritative answer: Name: kuhleersparnis.ch
Advanced BashScripting Guide Domain Information Groper. Similar to nslookup, dig does an Internet "name server lookup" on a host. May be run either interactively or noninteractively, i.e., from within a script. Some interesting options to dig are +time=N for setting a query timeout to N seconds, +nofail for continuing to query servers until a reply is received, and x for doing a reverse address lookup. Compare the output of dig x with ipcalc h and nslookup.
bash$ dig x 81.9.6.2 ;; 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.inaddr.arpa. ;; AUTHORITY SECTION: 6.9.81.inaddr.arpa. 3600 2002031705 900 600 86400 3600 ;; ;; ;; ;;
IN
PTR
IN
SOA
ns.eltel.net. noc.eltel.net.
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
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 emails a notification
247
# For a more elaborate version of this script, #+ see the SpamViz home page, http://www.spamviz.net/index.html.
# 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>
248
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} 'sblxbl.spamhaus.org') # See: http://ordb.org (Open mail relays) echo n ' ordb.org says: ' echo $(chk_adr ${rev_dns} 'relays.ordb.org')
249
For a much more elaborate version of the above script, see Example A29. traceroute 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 grep or sed in a pipe.
bash$ traceroute 81.9.6.2 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 * ...
ping Broadcast an "ICMP ECHO_REQUEST" 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.
250
A successful ping returns an exit status of 0. This can be tested for in a script.
HNAME=nastyspammer.com # HNAME=$HOST # Debug: test for localhost. count=2 # Send only two pings. if [[ `ping c $count "$HNAME"` ]] then echo ""$HNAME" still up and broadcasting spam your way." else echo ""$HNAME" seems to be down. Pity." fi
whois Perform a DNS (Domain Name System) lookup. The h option permits specifying which particular whois server to query. See Example 46 and Example 1537. finger Retrieve information about users on a network. Optionally, this command can display a user's ~/.plan, ~/.project, and ~/.forward files, if present.
bash$ finger Login Name bozo Bozo Bozeman bozo Bozo Bozeman bozo Bozo Bozeman
Idle 8
Office Phone
bash$ finger bozo Login: bozo Directory: /home/bozo Office: 2355 Clown St., 5431234 On since Fri Aug 31 20:13 (MST) on On since Fri Aug 31 20:13 (MST) on On since Fri Aug 31 20:13 (MST) on On since Fri Aug 31 20:31 (MST) on No mail. No Plan.
Name: Bozo Bozeman Shell: /bin/bash tty1 pts/0 pts/1 pts/2 1 hour 38 minutes idle 12 seconds idle 1 hour 16 minutes idle
Out of security considerations, many networks disable finger and its associated daemon. [54] chfn Change information disclosed by the finger command. vrfy Verify an Internet email address. This command seems to be missing from newer Linux distros. Remote Host Access
251
Advanced BashScripting Guide sx, rx The sx and rx command set serves to transfer files to and from a remote host using the xmodem protocol. These are generally part of a communications package, such as minicom. sz, rz The sz and rz command set serves to transfer files to and from a remote host using the zmodem protocol. Zmodem has certain advantages over xmodem, such as faster transmission rate and resumption of interrupted file transfers. Like sx and rx, these are generally part of a communications package. ftp Utility and protocol for uploading / downloading files to or from a remote host. An ftp session can be automated in a script (see Example 186, Example A4, and Example A13). uucp, uux, cu uucp: UNIX to UNIX copy. This is a communications package for transferring files between UNIX servers. A shell script is an effective way to handle a uucp command sequence. Since the advent of the Internet and email, uucp 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 uucp is that it is faulttolerant, so even if there is a service interruption the copy operation will resume where it left off when the connection is restored. uux: UNIX to UNIX execute. Execute a command on a remote system. This command is part of the uucp package. cu: Call Up a remote system and connect as a simple terminal. It is a sort of dumbeddown version of telnet. This command is part of the uucp package. telnet Utility and protocol for connecting to a remote host. The telnet protocol contains security holes and should therefore probably be avoided. Its use within a shell script is not recommended. wget The wget utility noninteractively retrieves or downloads files from a Web or ftp site. It works well in a script.
wget p http://www.xyz23.com/file01.html # The p or pagerequisite option causes wget to fetch all files #+ required to display the specified page. wget r ftp://ftp.xyz24.net/~bozo/project_files/ O $SAVEFILE # The r option recursively follows and retrieves all links #+ on the specified site. wget c ftp://ftp.xyz25.net/bozofiles/filename.tar.bz2 # The c option lets wget resume an interrupted download. # This works with ftp servers and many HTTP sites.
252
E_NOPARAMS=66 if [ z "$1" ] # Must specify a stock (symbol) to fetch. then echo "Usage: `basename $0` stocksymbol" 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=ushnews&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 online. # (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.
See also Example A31 and Example A32. lynx The lynx Web and file browser can be used inside a script (with the dump option) to retrieve a file from a Web or ftp site noninteractively.
lynx dump http://www.xyz23.com/file01.html >$SAVEFILE
With the traversal option, lynx starts at the HTTP URL specified as an argument, then "crawls" through all links located on that particular server. Used together with the crawl option, outputs page text to a log file. rlogin Remote login, initates a session on a remote host. This command has security issues, so use ssh instead. rsh Remote shell, executes command(s) on a remote host. This has security issues, so use ssh instead. rcp Remote copy, copies files between two different networked machines. rsync Chapter 15. External Filters, Programs and Commands 253
Advanced BashScripting Guide Remote synchronize, updates (synchronizes) files between two different networked machines.
bash$ rsync a ~/sourcedir/*txt /node1/subdirectory/
# # # #+
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/fedoralinuxcore/updates/ # URL=rsync://ftp.kddilabs.jp/fedora/core/updates/ # URL=rsync://rsync.planetmirror.com/fedoralinuxcore/updates/ DEST=${1:/var/www/html/fedora/updates/} LOG=/tmp/repoupdate$(/bin/date +%Y%m%d).txt PID_FILE=/var/run/${0##*/}.pid E_RETURN=65 # Something unexpected happened.
# # # #
OPTS="rtv deleteexcluded deleteafter partial" # rsync include pattern # Leading slash causes absolute path name match. INCLUDE=( "/4/i386/kdei18nChinese*" # ^ ^ # 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/kdei18n*" "/4/i386/openoffice.orglangpack*" "/4/i386/*i586.rpm"
254
# # )
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##*/}.$$ trap "{ rm f $TMP 2>/dev/null }" EXIT } # Store refined download list.
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.
255
RET=$?
[ "$RET" ne 0 ] && { echo "List retrieving failed with code $RET" exit $E_RETURN } echo "done"; echo } # Real rsync download part. get_file () { echo "Downloading..."
256
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
See also Example A33. Using rcp, rsync, and similar utilities with security implications in a shell script may not be advisable. Consider, instead, using ssh, scp, or an expect script. ssh Secure shell, logs onto a remote host and executes commands there. This secure replacement for telnet, rlogin, rcp, and rsh uses identity authentication and encryption. See its manpage for details.
# #
Presumptions:
257
# 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 sshkeygen #+ man sshd_config. exit 0
258
Advanced BashScripting Guide Within a loop, ssh may cause unexpected behavior. According to a Usenet post in the comp.unix shell archives, ssh inherits the loop's stdin. To remedy this, pass ssh either the n or f option. Thanks, Jason Bechtel, for pointing this out. scp Secure copy, similar in function to rcp, copies files between two different networked machines, but does so using authentication, and with a security level similar to ssh. Local Network write This is a utility for terminaltoterminal communication. It allows sending lines from your terminal (console or xterm) to that of another user. The mesg command may, of course, be used to disable write access to a terminal Since write is interactive, it would not normally find use in a script. netconfig A commandline utility for configuring a network adapter (using DHCP). This command is native to Red Hat centric Linux distros. Mail mail Send or read email messages. This strippeddown commandline mail client works fine as a command embedded in a script.
259
mailto Similar to the mail command, mailto sends email messages from the command line or in a script. However, mailto also permits sending MIME (multimedia) messages. vacation This utility automatically replies to emails that the intended recipient is on vacation and temporarily unavailable. It runs on a network, in conjunction with sendmail, and is not applicable to a dialup POPmail account.
Issuing a tput cup X Y moves the cursor to the (X,Y) coordinates in the current terminal. A clear to erase the terminal screen would normally precede this. Note that stty offers a more powerful command set for controlling a terminal. infocmp This command prints out extensive information about the current terminal. It references the terminfo database.
bash$ infocmp # 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, ...
reset Reset terminal parameters and clear text screen. As with clear, the cursor and prompt reappear in the upper lefthand corner of the terminal. clear The clear command simply clears the text screen at the console or in an xterm. 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 Example 1025. script
260
Advanced BashScripting Guide 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.
bc Bash can't handle floating point calculations, and it lacks operators for certain important mathematical functions. Fortunately, bc comes to the rescue. Not just a versatile, arbitrary precision calculation utility, bc offers many of the facilities of a programming language. bc has a syntax vaguely resembling C. Since it is a fairly wellbehaved UNIX utility, and may therefore be used in a pipe, bc comes in handy in scripts.
Here is a simple template for using bc to calculate a script variable. This uses command substitution.
variable=$(echo "OPTIONS; OPERATIONS" | bc)
# #+ #+ #+ #+ #
This is a modification of code in the "mcalc" (mortgage calculator) package, by Jeff Schmidt and Mendel Cooper (yours truly, the author of the ABS Guide). http://www.ibiblio.org/pub/Linux/apps/financial/mcalc1.6.tar.gz
[15k]
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
261
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^$term1)/($interest_rate1)" | bc) # Because . . . # The algorithm behind the loop #+ is actually a sum of geometric proportion series. # The sum formula is e0(1q^n)/(1q), #+ where e0 is the first element and q=e(n+1)/e(n) #+ and n is the number of elements. #
262
exit 0
input to permit commas in principal amount. input to permit interest to be entered as percent or decimal. are really ambitious, this script to print complete amortization tables.
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 } # ==> Function to print usage message. Msg () { for i # ==> in [list] missing. do echo "$PN: $i" >&2 done
263
# 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: : 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 # ==> More error checking for illegal input might be useful. shift done if [ $# gt 0 ] then PrintBases "$@" else while read line :g'
264
exit 0
An alternate method of invoking bc involves using a here document embedded within a command substitution block. This is especially appropriate when a script needs to pass a list of options and commands to bc.
variable=`bc << LIMIT_STRING options statements operations LIMIT_STRING ` ...or...
# 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
265
# 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 echoandcapture: echo "$hyp" } hyp=$(hypotenuse 3.68 7.31) echo "hypotenuse = $hyp" # 8.184039344
exit 0
266
DIMENSION=10000
# Length of each side of the plot. # Also sets ceiling for random integers generated. # Fire this many shots. # 10000 or more would be better, but would take too long. # Scaling factor to approximate PI.
MAXSHOTS=1000 PMULTIPLIER=4.0
get_random () { SEED=$(head n 1 /dev/urandom | od N 1 | awk '{ RANDOM=$SEED # #+ let "rnum = $RANDOM % $DIMENSION" # echo $rnum }
print $2 }') From "seedingrandom.sh" example script. Range less than 10000.
distance= # Declare global variable. hypotenuse () # Calculate hypotenuse of a right triangle. { # From "altbc.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. # This diminshes the accuracy of the simulation, unfortunately. }
# main() { # Initialize variables. shots=0 splashes=0 thuds=0 Pi=0 while [ "$shots" lt do "$MAXSHOTS" ] # Main loop.
xCoord=$(get_random) yCoord=$(get_random) hypotenuse $xCoord $yCoord ((shots++)) printf printf printf printf "#%4d " $shots "Xc = %4d " $xCoord "Yc = %4d " $yCoord "Distance = %5d " $distance
# #+ # #+
if [ "$distance" le "$DIMENSION" ]
267
"
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 . . . # Probably due to roundoff error and imperfect randomness of $RANDOM. echo # } exit 0 # #+ # # # # #+ One might well wonder whether a shell script is appropriate for an application as complex and computationintensive as a simulation. There 1) As 2) To it are at least two justifications. a proof of concept: to show it can be done. prototype and test the algorithms before rewriting in a compiled highlevel language.
dc The dc (desk calculator) utility is stackoriented and uses RPN ("Reverse Polish Notation"). Like bc, it has much of the power of a programming language. Most persons avoid dc, since it requires nonintuitive RPN input. Yet, it has its uses.
268
Studying the info page for dc is a painful path to understanding its intricacies. There seems to be a small, select group of dc wizards who delight in showing off their mastery of this powerful, but arcane utility.
bash$ echo "16i[q]sa[ln0=aln100%Pln100/snlbx]sbA0D68736142snlbxq" | dc" Bash
awk Yet another way of doing floating point math in a script is using awk's builtin math functions in a shell wrapper.
269
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 echoandpipe is an easy way of passing shell parameters to awk. exit 0 # Exercise: Rewrite this script using 'bc' rather than awk. # Which method is more intuitive?
Example 1550. Using seq to generate loop arguments Chapter 15. External Filters, Programs and Commands 270
COUNT=80
for a in `seq $COUNT` # or 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
A simpler example:
# Create a set of 10 files, #+ named file.1, file.2 . . . file.10. COUNT=10 PREFIX=file for filename in `seq $COUNT`
271
# How many letters specified (as commandline 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 # echo "$1" \> `cat $FILE | tr cd "$1" | wc c` # else echo "$1 is not a single char." fi done exit $? #
272
getopt The getopt command parses commandline options preceded by a dash. This external command corresponds to the getopts Bash builtin. Using getopt permits handling long options by means of the l flag, and this also allows parameter reshuffling.
exit 0
See Example 913 for a simplified emulation of getopt. runparts The runparts command [55] executes all the scripts in a target directory, sequentially in ASCIIsorted filename order. Of course, the scripts need to have execute permission. Chapter 15. External Filters, Programs and Commands 273
Advanced BashScripting Guide The cron daemon invokes runparts to run the scripts in the /etc/cron.* directories. yes In its default behavior the yes command feeds a continuous string of the character y followed by a line feed to stdout. A controlc terminates the run. A different output string may be specified, as in yes different string, which would continually output different string to stdout. One might well ask the purpose of this. From the command line or in a script, the output of yes can be redirected or piped into a program expecting user input. In effect, this becomes a sort of poor man's version of expect. yes | fsck /dev/hda1 runs fsck noninteractively (careful!). yes | rm r dirname has same effect as rm rf dirname (careful!). Caution advised when piping yes to a potentially dangerous system command, such as fsck or fdisk. It might have unintended consequences. The yes command parses variables. For example:
bash$ yes $BASH_VERSION 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 . . .
This "feature" may not be particularly useful. banner Prints arguments as a large vertical banner to stdout, using an ASCII character (default '#'). This may be redirected to a printer for hardcopy. printenv Show all the environmental variables set for a particular user.
bash$ printenv | grep HOME HOME=/home/bozo
lp The lp and lpr commands send file(s) to the print queue, to be printed as hard copy. [56] These commands trace the origin of their names to the line printers of another era. bash$ lp file1.txt or bash lp <file1.txt It is often useful to pipe the formatted output from pr to lp. bash$ pr options file1.txt | lp Formatting packages, such as groff and Ghostscript may send their output directly to lp. bash$ groff Tascii file.tr | lp bash$ gs options | lp file.ps Chapter 15. External Filters, Programs and Commands 274
Advanced BashScripting Guide Related commands are lpq, for viewing the print queue, and lprm, for removing jobs from the print queue. tee [UNIX borrows an idea from the plumbing trade.] This is a redirection operator, but with a difference. Like the plumber's tee, it permits "siponing off" to a file 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.
(redirection) |> to file | ==========================|==================== command > command > |tee > command > > output of pipe ===============================================
(The file check.file contains the concatenated sorted "listfiles," before the duplicate lines are removed by uniq.) mkfifo This obscure command creates a named pipe, a temporary firstinfirstout buffer for transferring data between processes. [57] Typically, one process writes to the FIFO, and the other reads from it. See Example A15.
#!/bin/bash # This short script by Omair Eshkenazi. # Used in ABS Guide with permission (thanks!). mkfifo pipe1 mkfifo pipe2 (cut d' ' f1 | tr "az" "AZ") >pipe2 <pipe1 & ls l | tr s ' ' | cut d' ' f3,9 | tee pipe1 | cut d' ' f2 | paste pipe2 rm f pipe1 rm f pipe2 # No need to kill background processes when script terminates (why not?). exit $? Now, invoke the script and explain the output: sh mkfifoexample.sh 4830.tar.gz pipe1 BOZO pipe2 BOZO mkfifoexample.sh Mixed.msg BOZO BOZO
BOZO
pathchk 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. Chapter 15. External Filters, Programs and Commands 275
Advanced BashScripting Guide Unfortunately, pathchk does not return a recognizable error code, and it is therefore pretty much useless in a script. Consider instead the file test operators. dd This is the somewhat obscure and much feared data duplicator command. Originally a utility for exchanging data on magnetic tapes between UNIX minicomputers and IBM mainframes, this command still has its uses. The dd command simply copies a file (or stdin/stdout), but with conversions. Possible conversions are ASCII/EBCDIC, [58] upper/lower case, swapping of byte pairs between input and output, and skipping and/or truncating the head or tail of the input file.
# Converting a file to all uppercase: dd if=$filename conv=ucase > $filename.uppercase # lcase # For lower case conversion
Some basic options to dd are: if=INFILE INFILE is the source file. of=OUTFILE OUTFILE is the target file, the file that will have the data written to it. bs=BLOCKSIZE This is the size of each block of data being read and written, usually a power of 2. skip=BLOCKS How many blocks of data to skip in INFILE before starting to copy. This is useful when the INFILE has "garbage" or garbled data in its header or when it is desirable to copy only a portion of the INFILE. seek=BLOCKS How many blocks of data to skip in OUTFILE before starting to copy, leaving blank data at beginning of OUTFILE. count=BLOCKS Copy only this many blocks of data, rather than the entire INFILE. conv=CONVERSION Type of conversion to be applied to INFILE data before copying operation. A dd help lists all the options this powerful utility takes.
276
keypresses=4
# 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
277
The dd command can copy raw data and disk images to and from devices, such as floppies and tape drives (Example A5). A common use is creating boot floppies. dd if=kernelimage of=/dev/fd0H1440 Similarly, dd can copy the entire contents of a floppy, even one formatted with a "foreign" OS, to the hard drive as an image file. dd if=/dev/fd0 of=/home/bozo/projects/floppy.img
Other applications of dd include initializing temporary swap files (Example 282) and ramdisks (Example 283). It can even do a lowlevel copy of an entire hard drive partition, although this is not necessarily recommended. People (with presumably nothing better to do with their time) are constantly thinking of interesting applications of dd.
PASSES=7
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
278
flength=$(ls l "$file" | awk '{print $5}') pass_count=1 chmod u+w "$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 sync
# Finally, delete scrambled and shredded file. # Flush buffers a final time.
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" filedeletion package does a much more thorough job #+ of file shredding than this simple script. # http://www.ibiblio.org/pub/Linux/utils/file/wipe2.0.0.tar.bz2 # For an indepth analysis on the topic of file deletion and security, #+ see Peter Gutmann's paper, #+ "Secure Deletion of Data From Magnetic and SolidState Memory".
279
See also the dd thread entry in the bibliography. od The od, or octal dump filter converts input (or files) to octal (base8) or other bases. This is useful for viewing or processing binary data files or otherwise unreadable system device files, such as /dev/urandom, and as a filter for binary data.
head c4 /dev/urandom | od N4 tu4 | sed ne '1s/.* //p' # Sample output: 1324725719, 3918166450, 2989231420, etc. # From rnd.sh example script, by Stphane Chazelas
See also Example 929 and Example A37. hexdump Performs a hexadecimal, octal, decimal, or ASCII dump of a binary file. This command is the rough equivalent of od, above, but not nearly as useful. May be used to view the contents of a binary file, in combination with dd and less.
dd if=/bin/ls | hexdump C | less # The C option nicely formats the output in tabular form.
objdump Displays information about an object file or binary executable in either hexadecimal form or as a disassembled listing (with the d option).
bash$ objdump d /bin/ls /bin/ls: file format elf32i386 Disassembly of section .init: 080490bc <.init>: 80490bc: 55 80490bd: 89 e5 . . .
push mov
%ebp %esp,%ebp
mcookie This command generates a "magic cookie," a 128bit (32character) pseudorandom hexadecimal number, normally used as an authorization "signature" by the X server. This also available for use in a script as a "quick 'n dirty" random number.
random000=$(mcookie)
The mcookie command gives yet another way to generate a "unique" filename.
temp filename generator # 32character magic cookie. # Arbitrary position in magic cookie string.
280
suffix=${BASE_STR:POS:LEN} # Extract a 5character string, #+ starting at position 11. temp_filename=$prefix.$suffix # Construct the filename. echo "Temp filename = "$temp_filename"" # sh tempfilename.sh # Temp filename = temp.e19ea # Compare this method of generating "unique" filenames #+ with the 'date' method in ex51.sh. exit 0
units This utility converts between different units of measure. While normally invoked in interactive mode, units may find use in a script.
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
m4 A hidden treasure, m4 is a powerful macro processing filter, [59] virtually a complete language. Although originally written as a preprocessor for RatFor, m4 turned out to be useful as a standalone utility. In fact, m4 combines some of the functionality of eval, tr, and awk, in addition to its extensive macro expansion facilities. Chapter 15. External Filters, Programs and Commands 281
Advanced BashScripting Guide The April, 2002 issue of Linux Journal has a very nice article on m4 and its uses.
# 7 # A01 # 01Z
# #
23 33
doexec The doexec command enables passing an arbitrary list of arguments to a binary executable. In particular, passing argv[0] (which corresponds to $0 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. For example, the /usr/local/bin directory might contain a binary called "aaa". Invoking doexec /usr/local/bin/aaa list would list all those files in the current working directory beginning with an "a", while invoking (the same executable with) doexec /usr/local/bin/aaa delete would delete those files. 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:
case `basename $0` in "name1" ) do_something;; "name2" ) do_something_else;; "name3" ) do_yet_another_thing;; * ) bail_out;; esac
dialog The dialog family of tools provide a method of calling interactive "dialog" boxes from a script. The more elaborate variations of dialog gdialog, Xdialog, and kdialog actually invoke XWindows widgets. See Example 3319. sox The sox, or "sound exchange" command plays and performs transformations on sound files. In fact, the /usr/bin/play executable (now deprecated) is nothing but a shell wrapper for sox. For example, sox soundfile.wav soundfile.au changes a WAV sound file into a (Sun audio format) AU sound file. Shell scripts are ideally suited for batchprocessing sox operations on sound files. For examples, see the Linux Radio Timeshift HOWTO and the MP3do Project.
282
chown, chgrp The chown command changes the ownership of a file or files. This command is a useful method that root 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. [60]
root# chown bozo *.txt
The chgrp command changes the group ownership of a file or files. You must be owner of the file(s) as well as a member of the destination group (or root) to use this operation.
chgrp recursive dunderheads *.data # The "dunderheads" group will now own all the "*.data" files #+ all the way down the $PWD directory tree (that's what "recursive" means).
useradd, userdel The useradd administrative command adds a user account to the system and creates a home directory for that particular user, if so specified. The corresponding userdel command removes a user account from the system [61] and deletes associated files. The adduser command is a synonym for useradd and is usually a symbolic link to it. usermod 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. groupmod Modify a given group. The group name and/or ID number may be changed using this command. id The id 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 $UID, $EUID, and $GROUPS internal Bash variables.
bash$ id uid=501(bozo) gid=501(bozo) groups=501(bozo),22(cdrom),80(cdwriter),81(audio)
283
The id command shows the effective IDs only when they differ from the real ones. Also see Example 95. who Show all users logged on to the system.
bash$ who bozo tty1 bozo pts/0 bozo pts/1 bozo pts/2
The m gives detailed information about only the current user. Passing any two arguments to who is the equivalent of who m, as in who am i or who The Man.
bash$ who m localhost.localdomain!bozo
pts/2
Apr 27 17:49
w Show all logged on users and the processes belonging to them. This is an extended version of who. The output of w may be piped to grep to find a specific user and/or process.
bash$ w | grep startx bozo tty1
4:22pm
6:41
4.47s
0.45s
startx
logname Show current user's login name (as found in /var/run/utmp). This is a nearequivalent to whoami, above.
bash$ logname bozo bash$ whoami bozo
However . . .
bash$ su Password: ...... bash# whoami root bash# logname bozo
While logname prints the name of the logged in user, whoami gives the name of the user attached to the current process. As we have just seen, sometimes these are not the same. Chapter 16. System and Administrative Commands 284
Advanced BashScripting Guide su Runs a program or script as a substitute user. su rjones starts a shell as user rjones. A naked su defaults to root. See Example A15. sudo Runs a command as root (or another user). This may be used in a script, thus permitting a regular user to run the script.
#!/bin/bash # Some commands. sudo cp /root/secretfile /home/bozo/secret # Some more commands.
The file /etc/sudoers holds the names of users permitted to invoke sudo. passwd Sets, changes, or manages a user's password. The passwd command can be used in a script, but probably should not be.
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"
285
The passwd command's l, u, and d options permit locking, unlocking, and deleting a user's password. Only root may use these options. ac Show users' logged in time, as read from /var/log/wtmp. This is one of the GNU accounting utilities.
bash$ ac total
68.08
last List last logged in users, as read from /var/log/wtmp. This command can also show remote logins. For example, to show the last few times the system rebooted:
bash$ last reboot reboot system boot 2.6.91.667 reboot system boot 2.6.91.667 reboot system boot 2.6.91.667 reboot system boot 2.6.91.667 . . . wtmp begins Tue Feb 1 12:50:09 2005
Fri Feb 4 18:18 Fri Feb 4 15:20 Fri Feb 4 12:56 Thu Feb 3 21:08
newgrp Change user's group ID 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. Kurt Glaesemann points out that the newgrp command could prove helpful in setting the default group permissions for files a user writes. However, the chgrp command might be more convenient for this purpose. Terminals tty Echoes the name of the current user's terminal. Note that each separate xterm window counts as a different terminal.
bash$ tty /dev/pts/1
stty 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.
286
echo "Your name is $name." stty echo read echo erase '#' n "What is your name? " name "Your name is $name." # # Set "hashmark" (#) as erase character. Use # to erase last character typed.
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?
n "Enter password " passwd "password is $passwd" n "If someone had been looking over your shoulder, " "your password would have been compromised." # Two linefeeds in an "and list."
stty echo
echo n "Enter password again " read passwd echo echo "password is $passwd" echo stty echo exit 0 # Do an 'info stty' for more on this usefulbuttricky command. # Restores screen echo.
287
terminals and modes Normally, a terminal works in the canonical 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 ENTER key, this sends all the stored keystrokes to the program running. There is even a basic line editor inside the terminal.
bash$ stty a 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
Using canonical mode, it is possible to redefine the special keys for the local terminal line editor.
bash$ cat > filexxx wha<ctlW>I<ctlH>foo bar<ctlU>hello world<ENTER> <ctlD> bash$ cat filexxx hello world bash$ wc c < filexxx 12
The process controlling the terminal receives only 12 characters (11 alphabetic ones, plus a newline), although the user hit 26 keys. In noncanonical ("raw") mode, every key hit (including special editing keys such as ctlH) sends a character immediately to the controlling process. The Bash prompt disables both icanon and echo, since it replaces the basic terminal line editor with its own more elaborate one. For example, when you hit ctlA at the Bash prompt, there's no ^A echoed by the terminal, but Bash gets a \1 character, interprets it, and moves the cursor to the begining of the line. Stphane Chazelas setterm Set certain terminal attributes. This command writes to its terminal's stdout a string that changes the behavior of that terminal.
288
The setterm command can be used within a script to change the appearance of text written to stdout, although there are certainly better tools available for this purpose.
setterm bold on echo bold hello setterm bold off echo normal hello
tset Show or initialize terminal settings. This is a less capable version of stty.
bash$ tset r Terminal type is xtermxfree86. Kill is controlU (^U). Interrupt is controlC (^C).
setserial Set or display serial port parameters. This command must be run by root and is usually found in a system setup script.
# From /etc/pcmcia/serial script: IRQ=`setserial /dev/$DEVICE | sed e 's/.*IRQ: //'` setserial /dev/$DEVICE irq 0 ; setserial /dev/$DEVICE irq $IRQ
getty, agetty The initialization process for a terminal uses getty or agetty to set it up for login by a user. These commands are not used within user shell scripts. Their scripting counterpart is stty. mesg Enables or disables write access to the current user's terminal. Disabling access would prevent another user on the network to write to the terminal. 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 multiuser network, you might therefore wish to disable write access to your terminal when you need to avoid interruptions. wall This is an acronym for "write all," 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 Example 181).
bash$ wall System going down for maintenance in 5 minutes! Broadcast message from bozo (pts/1) Sun Jul 8 13:53:27 2001... System going down for maintenance in 5 minutes!
If write access to a particular terminal has been disabled with mesg, then wall cannot send a message to that terminal. Information and Statistics Chapter 16. System and Administrative Commands 289
Advanced BashScripting Guide uname Output system specifications (OS, kernel version, etc.) to stdout. Invoked with the a option, gives verbose system info (see Example 155). The s option shows only the OS type.
bash$ uname Linux bash$ uname s Linux
bash$ uname a Linux iron.bozo 2.6.151.2054_FC5 #1 Tue Mar 14 15:48:33 EST 2006 i686 i686 i386 GNU/Linux
lastcomm Gives information about previous commands, as stored in the /var/account/pacct file. Command name and user name can be specified by options. This is one of the GNU accounting utilities. lastlog List the last login time of all system users. This references the /var/log/lastlog file.
bash$ lastlog root tty1 bin daemon ... bozo tty1
Fri Dec 7 18:43:21 0700 2001 **Never logged in** **Never logged in** Sat Dec 8 21:14:29 0700 2001
Fri Dec
This command will fail if the user invoking it does not have read permission for the /var/log/lastlog file. lsof 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, lsof may be piped to grep and/or awk to parse and analyze its results.
bash$ lsof COMMAND PID init 1 init 1 init 1 cardmgr 213 ...
NODE NAME 30303 /sbin/init 8069 /lib/ld2.1.3.so 8075 /lib/libc2.1.3.so 30357 /sbin/cardmgr
290
Advanced BashScripting Guide The lsof 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 lsof helps determine which files are still open on that filesystem. The i option lists open network socket files, and this can help trace intrusion or hack attempts.
bash$ lsof an i tcp 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 ...
strace System trace: diagnostic and debugging tool for tracing system calls and signals. This command and ltrace, following, are useful for diagnosing why a given program or package fails to run . . . perhaps due to missing libraries or related causes.
bash$ strace df execve("/bin/df", ["df"], [/* 45 vars */]) = 0 uname({sys="Linux", node="bozo.localdomain", ...}) = 0 brk(0) = 0x804f5e4 ...
This is the Linux equivalent of the Solaris truss command. ltrace Library trace: diagnostic and debugging tool that traces library calls invoked by a given command.
bash$ ltrace df __libc_start_main(0x804a910, 1, 0xbfb589a4, 0x804fb70, 0x804fb68 <unfinished ...>: setlocale(6, "") = "en_US.UTF8" bindtextdomain("coreutils", "/usr/share/locale") = "/usr/share/locale" textdomain("coreutils") = "coreutils" __cxa_atexit(0x804b650, 0, 0, 0x8052bf0, 0xbfb58908) = 0 getenv("DF_BLOCK_SIZE") = NULL ...
nmap Network mapper 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.
#!/bin/bash SERVER=$HOST PORT_NUMBER=25 # localhost.localdomain (127.0.0.1). # SMTP port.
nmap $SERVER | grep w "$PORT_NUMBER" # Is that particular port open? # grep w matches whole words only, #+ so this wouldn't match port 1025, for example. exit 0 # 25/tcp open smtp
nc
291
Advanced BashScripting Guide The nc (netcat) 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 scriptbased HTTP clients and servers.
bash$ nc localhost.localdomain 25 220 localhost.localdomain ESMTP Sendmail 8.13.1/8.13.1; Thu, 31 Mar 2005 15:41:35 0700
292
# 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/ncX.XX/scripts directory.
And, of course, there's Dr. Andrew Tridgell's notorious oneline script in the BitKeeper Affair:
echo clone | nc thunk.org 5000 > e2fsprogs.dat
free Shows memory and cache usage in tabular form. The output of this command lends itself to parsing, using grep, awk or Perl. The procinfo command shows all the information that free does, and much more.
bash$ free total Mem: 30504 /+ buffers/cache: Swap: 68540 used 28624 10640 3128 free 1880 19864 65412 shared 15820 buffers 1608 cached 16376
procinfo Extract and list information and statistics from the /proc pseudofilesystem. This gives a very extensive and detailed listing.
bash$ procinfo | grep Bootup Bootup: Wed Mar 21 15:15:50 2001
du Show (disk) file usage, recursively. Defaults to current working directory, unless otherwise specified. Chapter 16. System and Administrative Commands 293
Used Available Use% Mounted on 92607 166547 36% / 123951 87085 59% /home 1075744 261488 80% /usr
dmesg Lists all system bootup messages to stdout. Handy for debugging and ascertaining which device drivers were installed and which system interrupts in use. The output of dmesg may, of course, be parsed with grep, sed, or awk from within a script.
bash$ dmesg | grep hda Kernel command line: ro root=/dev/hda2 hda: IBMDLGA23080, ATA DISK drive hda: 6015744 sectors (3080 MB) w/96KiB Cache, CHS=746/128/63 hda: hda1 hda2 hda3 < hda5 hda6 hda7 > hda4
stat Gives detailed and verbose statistics on a given file (even a directory or device file) or set of files.
bash$ stat test.cru File: "test.cru" Size: 49970 Allocated Blocks: 100 Filetype: Regular File Mode: (0664/rwrwr) 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
If the target file does not exist, stat returns an error message.
bash$ stat nonexistentfile nonexistentfile: No such file or directory
In a script, you can use stat to extract information about files (and filesystems) and set variables accordingly.
#!/bin/bash # fileinfo2.sh # Per suggestion of Jol Bourquard and . . . # http://www.linuxquestions.org/questions/showthread.php?t=410766
FILENAME=testfile.txt file_name=$(stat c%n "$FILENAME") # Same as "$FILENAME" of course. file_owner=$(stat c%U "$FILENAME") file_size=$(stat c%s "$FILENAME") # Certainly easier than using "ls l $FILENAME"
294
exit 0 sh fileinfo2.sh File File File File File File name: owner: size: inode: type: access rights: testfile.txt bozo 418 1730378 regular file rwrwr
free 11040
buff 2636
si 0
swap so 0
bi 33
io system bo in 7 271
cs 88
us 8
cpu sy id 3 89
netstat Show current network statistics and information, such as routing tables and active connections. This utility accesses information in /proc/net (Chapter 27). See Example 273. netstat r is equivalent to route.
bash$ netstat Active Internet connections (w/o servers) Proto RecvQ SendQ Local Address Foreign Address State Active UNIX domain sockets (w/o servers) Proto RefCnt Flags Type State INode Path unix 11 [ ] DGRAM 906 /dev/log unix 3 [ ] STREAM CONNECTED 4514 /tmp/.X11unix/X0 unix 3 [ ] STREAM CONNECTED 4513 . . .
A netstat lptu shows sockets that are listening to ports, and the associated processes. This can be useful for determining whether a computer has been hacked or compromised. uptime Shows how long the system has been running, along with associated statistics.
bash$ uptime 10:28pm up 1:57,
3 users,
295
Advanced BashScripting Guide A load average 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, then system performance is significantly degraded. hostname Lists the system's host name. This command sets the host name in an /etc/rc.d setup script (/etc/rc.d/rc.sysinit or similar). It is equivalent to uname n, and a counterpart to the $HOSTNAME internal variable.
bash$ hostname localhost.localdomain bash$ echo $HOSTNAME localhost.localdomain
Similar to the hostname command are the domainname, dnsdomainname, nisdomainname, and ypdomainname commands. Use these to display or set the system DNS or NIS/YP domain name. Various options to hostname also perform these functions. hostid Echo a 32bit hexadecimal numerical identifier for the host machine.
bash$ hostid 7f0100
This command allegedly fetches a "unique" serial number for a particular system. Certain product registration procedures use this number to brand a particular user license. Unfortunately, hostid only returns the machine network address in hexadecimal, with pairs of bytes transposed. The network address of a typical nonnetworked Linux machine, is found in /etc/hosts.
bash$ cat /etc/hosts 127.0.0.1
localhost.localdomain localhost
As it happens, transposing the bytes of 127.0.0.1, we get 0.127.1.0, which translates in hex to 007f0100, the exact equivalent of what hostid returns, above. There exist only a few million other Linux machines with this identical hostid. sar Invoking sar (System Activity Reporter) gives a very detailed rundown on system statistics. The Santa Cruz Operation ("Old" SCO) released sar as Open Source in June, 1999. This command is not part of the base Linux distribution, but may be obtained as part of the sysstat utilities package, written by Sebastien Godard.
bash$ sar Linux 2.4.9 (brooks.seringas.fr) 10:30:00 10:40:00 10:50:00 11:00:00 Average: 14:32:30 CPU all all all all %user 2.21 3.36 1.12 2.23
09/26/03 %nice 10.90 0.00 0.00 3.63 %system 65.48 72.36 80.77 72.87 %iowait 0.00 0.00 0.00 0.00 %idle 21.41 24.28 18.11 21.27
LINUX RESTART
296
readelf Show information and statistics about a designated elf binary. This is part of the binutils package.
bash$ readelf h /bin/bash 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) . . .
size The size [/path/to/binary] command gives the segment sizes of a binary executable or archive file. This is mainly of use to programmers.
bash$ size /bin/bash text data bss 495971 22496 17392
dec 535859
System Logs logger Appends a usergenerated message to the system log (/var/log/messages). You do not have to be root to invoke logger.
logger Experiencing instability in network connection at 23:10, 05/21. # Now, do a 'tail /var/log/messages'.
logrotate This utility manages the system log files, rotating, compressing, deleting, and/or emailing them, as appropriate. This keeps the /var/log from getting cluttered with old log files. Usually cron runs logrotate on a daily basis. Adding an appropriate entry to /etc/logrotate.conf makes it possible to manage personal log files, as well as systemwide ones.
297
Advanced BashScripting Guide Stefano Falsetto has created rottlog, which he considers to be an improved version of logrotate. Job Control ps Process Statistics: lists currently executing processes by owner and PID (process ID). This is usually invoked with ax or aux options, and may be piped to grep or sed to search for a specific process (see Example 1413 and Example 272).
bash$ 295 ? ps ax | grep sendmail S 0:00 sendmail: accepting connections on port 25
To display system processes in graphical "tree" format: ps afjx or ps ax forest. pgrep, pkill Combining the ps command with grep or kill.
bash$ ps a | grep mingetty 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
bash$ pgrep mingetty 2212 mingetty 2213 mingetty 2214 mingetty 2215 mingetty 2216 mingetty
Compare the action of pkill with killall. pstree Lists currently executing processes in "tree" format. The p option shows the PIDs, as well as the process names. top Continuously updated display of most cpuintensive processes. The b option displays in text mode, so that the output may be parsed or accessed from a script.
bash$ top b 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, Swap: 157208K av, 0K used, 157208K free PID 848 1 2 ... USER bozo root root PRI 17 8 9 NI 0 0 0 SIZE 996 512 0 RSS SHARE STAT %CPU %MEM 996 800 R 5.6 1.2 512 444 S 0.0 0.6 0 0 SW 0.0 0.0 TIME 0:00 0:04 0:00
nice
298
Advanced BashScripting Guide Run a background job with an altered priority. Priorities run from 19 (lowest) to 20 (highest). Only root may set the negative (higher) priorities. Related commands are renice and snice, which change the priority of a running process or processes, and skill, which sends a kill signal to a process or processes. nohup Keeps a command running even after user logs off. The command will run as a foreground process unless followed by &. If you use nohup within a script, consider coupling it with a wait to avoid creating an orphan or zombie process. pidof Identifies process ID (PID) of a running job. Since job control commands, such as kill and renice act on the PID of a process (not its name), it is sometimes necessary to identify that PID. The pidof command is the approximate counterpart to the $PPID internal variable.
bash$ pidof xclock 880
# 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
fuser Identifies the processes (by PID) that are accessing a given file, set of files, or directory. May also be invoked with the k option, which kills those processes. This has interesting implications for system Chapter 16. System and Administrative Commands 299
Advanced BashScripting Guide security, especially in scripts preventing unauthorized users from accessing system services.
bash$ fuser u /usr/bin/vim /usr/bin/vim: 3207e(bozo)
3010(bozo)
3197(bozo)
3199(bozo)
One important application for fuser is when physically inserting or removing storage media, such as CD ROM disks or USB flash drives. Sometimes trying a umount fails with a device is busy error message. This means that some user(s) and/or process(es) are accessing the device. An fuser um /dev/device_name will clear up the mystery, so you can kill any relevant processes.
bash$ umount /mnt/usbdrive umount: /mnt/usbdrive: device is busy
bash$ fuser um /dev/usbdrive /mnt/usbdrive: 1772c(bozo) bash$ kill 9 1772 bash$ umount /mnt/usbdrive
The fuser command, invoked with the n option identifies the processes accessing a port. This is especially useful in combination with nmap.
root# nmap localhost.localdomain PORT STATE SERVICE 25/tcp open smtp
root# fuser un tcp 25 25/tcp: 2095(root) root# ps ax | grep 2095 | grep v grep 2095 ? Ss 0:00 sendmail: accepting connections
cron Administrative program scheduler, performing such duties as cleaning up and deleting system log files and updating the slocate database. This is the superuser version of at (although each user may have their own crontab file which can be changed with the crontab command). It runs as a daemon and executes scheduled entries from /etc/crontab. Some flavors of Linux run crond, Matthew Dillon's version of cron. Process Control and Booting init The init command is the parent of all processes. Called in the final step of a bootup, init determines the runlevel of the system from /etc/inittab. Invoked by its alias telinit, and by root only. Chapter 16. System and Administrative Commands 300
Advanced BashScripting Guide telinit Symlinked to init, this is a means of changing the system runlevel, usually done for system maintenance or emergency filesystem repairs. Invoked only by root. This command can be dangerous be certain you understand it well before using! runlevel Shows the current and last runlevel, that is, whether the system is halted (runlevel 0), in singleuser mode (1), in multiuser mode (2 or 3), in X Windows (5), or rebooting (6). This command accesses the /var/run/utmp file. halt, shutdown, reboot Command set to shut the system down, usually just prior to a power down. service Starts or stops a system service. The startup scripts in /etc/init.d and /etc/rc.d use this command to start services at bootup.
root# /sbin/service iptables stop Flushing firewall rules: Setting chains to policy ACCEPT: filter Unloading iptables modules:
[ [ [
OK ] OK ] OK ]
The ifconfig command is most often used at bootup to set up the interfaces, or to shut them down when rebooting.
# Code snippets from /etc/rc.d/init.d/network # ... # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 [ x /sbin/ifconfig ] || exit 0 # ... for i in $interfaces ; do if ifconfig $i 2>/dev/null | grep q "UP" >/dev/null 2>&1 ; then action "Shutting down interface $i: " ./ifdown $i boot fi # The GNUspecific "q" option to "grep" means "quiet", i.e., #+ producing no output. # Redirecting output to /dev/null is therefore not strictly necessary. # ...
301
See also Example 296. iwconfig This is the command set for configuring a wireless network. It is the wireless equivalent of ifconfig, above. ip General purpose utility for setting up, changing, and analyzing IP (Internet Protocol) networks and attached devices. This command is part of the iproute2 package.
bash$ ip link show 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
scope link
Or, in a script:
#!/bin/bash # Script by Juan Nicolas Ruiz # Used with his kind permission. # Setting up (and stopping) a GRE tunnel.
# starttunnel.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 #############################################
# stoptunnel.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
302
route Show info about or make changes to the kernel routing table.
bash$ route Destination Gateway Genmask Flags pm367.bozosisp * 255.255.255.255 UH 127.0.0.0 * 255.0.0.0 U default pm367.bozosisp 0.0.0.0 UG
MSS Window 40 0 40 0 40 0
chkconfig Check network and system configuration. This command lists and manages the network and system services started at bootup in the /etc/rc?.d directory. Originally a port from IRIX to Red Hat Linux, chkconfig may not be part of the core installation of some Linux flavors.
bash$ chkconfig list atd 0:off rwhod 0:off ...
1:off 1:off
2:off 2:off
3:on 3:off
4:on 4:off
5:on 5:off
6:off 6:off
tcpdump Network packet "sniffer." This is a tool for analyzing and troubleshooting traffic on a network by dumping packet headers that match specified criteria. Dump ip packet traffic between hosts bozoville and caduceus:
bash$ tcpdump ip host bozoville and caduceus
Of course, the output of tcpdump can be parsed with certain of the previously discussed text processing utilities. Filesystem mount Mount a filesystem, usually on an external device, such as a floppy or CDROM. The file /etc/fstab provides a handy listing of available filesystems, partitions, and devices, including options, that may be automatically or manually mounted. The file /etc/mtab shows the currently mounted filesystems and partitions (including the virtual ones, such as /proc). mount a mounts all filesystems and partitions listed in /etc/fstab, except those with a noauto option. At bootup, a startup script in /etc/rc.d (rc.sysinit or something similar) invokes this to get everything mounted.
mount t iso9660 /dev/cdrom /mnt/cdrom # Mounts CDROM mount /mnt/cdrom # Shortcut, if /mnt/cdrom listed in /etc/fstab
This versatile command can even mount an ordinary file on a block device, and the file will act as if it were a filesystem. Mount accomplishes that by associating the file with a loopback device. One application of this is to mount and examine an ISO9660 image before burning it onto a CDR. [62] Chapter 16. System and Administrative Commands 303
mount r t iso9660 o loop cdimage.iso /mnt/cdtest # Mount the image. # "o loop" option equivalent to "losetup /dev/loop0" cd /mnt/cdtest # Now, check the image. ls alR # List the files in the directory tree there. # And so forth.
umount Unmount a currently mounted filesystem. Before physically removing a previously mounted floppy or CDROM disk, the device must be umounted, else filesystem corruption may result.
umount /mnt/cdrom # You may now press the eject button and safely remove the disk.
The automount utility, if properly installed, can mount and unmount floppies or CDROM disks as they are accessed or removed. On "multispindle" laptops with swappable floppy and optical drives, this can cause problems, however. gnomemount The newer Linux distros have deprecated mount and umount. The successor, for commandline mounting of removable storage devices, is gnomemount. It can take the d option to mount a device file by its listing in /dev. For example, to mount a USB flash drive:
bash$ gnomemount d /dev/sda1 gnomemount 0.4
bash$ df . . . /dev/sda1
63584
12034
51550
19% /media/disk
sync Forces an immediate write of all updated data from buffers to hard drive (synchronize drive with buffers). While not strictly necessary, a sync assures the sys admin or user that the data just changed will survive a sudden power failure. In the olden days, a sync; sync (twice, just to make absolutely sure) was a useful precautionary measure before a system reboot. At times, you may wish to force an immediate buffer flush, as when securely deleting a file (see Example 1556) or when the lights begin to flicker. losetup Sets up and configures loopback devices.
304
mkswap Creates a swap partition or file. The swap area must subsequently be enabled with swapon. swapon, swapoff Enable / disable swap partitition or file. These commands usually take effect at bootup and shutdown. mke2fs Create a Linux ext2 filesystem. This command must be invoked as root.
ROOT_UID=0 E_NOTROOT=67
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 MOUNTPOINT=/mnt/newdisk
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 exit 0
1 1
See also Example 168 and Example 283. tune2fs Tune ext2 filesystem. May be used to change filesystem parameters, such as maximum mount count. Chapter 16. System and Administrative Commands 305
Advanced BashScripting Guide This must be invoked as root. This is an extremely dangerous command. Use it at your own risk, as you may inadvertently destroy your filesystem. dumpe2fs Dump (list to stdout) very verbose filesystem info. This must be invoked as root.
root# dumpe2fs /dev/hda7 | dumpe2fs 1.19, 13Jul2000 Mount count: Maximum mount count: grep 'ount count' for EXT2 FS 0.5b, 95/08/09 6 20
hdparm List or change hard disk parameters. This command must be invoked as root, and it may be dangerous if misused. fdisk Create or change a partition table on a storage device, usually a hard drive. This command must be invoked as root. Use this command with extreme caution. If something goes wrong, you may destroy an existing filesystem. fsck, e2fsck, debugfs Filesystem check, repair, and debug command set. fsck: a front end for checking a UNIX filesystem (may invoke other utilities). The actual filesystem type generally defaults to ext2. e2fsck: ext2 filesystem checker. debugfs: ext2 filesystem debugger. One of the uses of this versatile, but dangerous command is to (attempt to) recover deleted files. For advanced users only! All of these should be invoked as root, and they can damage or destroy a filesystem if misused. badblocks 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. [63] As an example, badblocks /dev/fd0 tests a floppy disk. The badblocks command may be invoked destructively (overwrite all data) or in nondestructive readonly mode. If root user owns the device to be tested, as is generally the case, then root must invoke this command. lsusb, usbmodules The lsusb command lists all USB (Universal Serial Bus) buses and the devices hooked up to them. The usbmodules command outputs information about the driver modules for connected USB devices.
bash$ lsusb Bus 001 Device 001: ID 0000:0000 Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 1.00
306
bridge: Intel Corporation 82845 845 Chipset Host Bridge (rev 04) bridge: Intel Corporation 82845 845 Chipset AGP Bridge (rev 04) Controller: Intel Corporation 82801CA/CAM USB (Hub #1) Controller: Intel Corporation 82801CA/CAM USB (Hub #2) Controller: Intel Corporation 82801CA/CAM USB (Hub #3) bridge: Intel Corporation 82801 Mobile PCI Bridge (rev
mkbootdisk Creates a boot floppy which can be used to bring up the system if, for example, the MBR (master boot record) becomes corrupted. The mkbootdisk command is actually a Bash script, written by Erik Troan, in the /sbin directory. chroot CHange ROOT directory. Normally commands are fetched from $PATH, relative to /, the default root directory. This changes the root 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 telnetting in, to a secured portion of the filesystem (this is sometimes referred to as confining a guest user to a "chroot jail"). Note that after a chroot, the execution path for system binaries is no longer valid. A chroot /opt would cause references to /usr/bin to be translated to /opt/usr/bin. Likewise, chroot /aaa/bbb /bin/ls would redirect future instances of ls to /aaa/bbb as the base directory, rather than / as is normally the case. An alias XX 'chroot /aaa/bbb ls' in a user's ~/.bashrc effectively restricts which portion of the filesystem she may run command "XX" on. The chroot command is also handy when running from an emergency boot floppy (chroot to /dev/fd0), or as an option to lilo when recovering from a system crash. Other uses include installation from a different filesystem (an rpm option) or running a readonly filesystem from a CD ROM. Invoke only as root, and use with care. It might be necessary to copy certain system files to a chrooted directory, since the normal $PATH can no longer be relied upon. lockfile This utility is part of the procmail package (www.procmail.org). It creates a lock file, a semaphore file that controls access to a file, device, or resource. The lock file serves as a flag that this particular file, device, or resource is in use by a particular process ("busy"), and this permits only restricted access (or no access) to other processes.
307
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 Netscape 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. Normally, applications create and check for lock files in the /var/lock directory. [64] A script can test for the presence of a lock file by something like the following.
appname=xyzip # Application "xyzip" created lock file "/var/lock/xyzip.lock". if [ e "/var/lock/$appname.lock" ] then #+ Prevent other programs & scripts # from accessing files/resources used by xyzip. ...
flock Much less useful than the lockfile command is flock. It sets an "advisory" 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.
flock $0 cat $0 > lockfile__$0 # Set a lock on the script the above line appears in, #+ while listing the script to stdout.
Unlike lockfile, flock does not automatically create a lock file. mknod Creates block or character device files (may be necessary when installing new hardware on the system). The MAKEDEV utility has virtually all of the functionality of mknod, and is easier to use. MAKEDEV Utility for creating device files. It must be run as root, and in the /dev directory. It is a sort of advanced version of mknod. tmpwatch Automatically deletes files which have not been accessed within a specified period of time. Usually invoked by cron to remove stale log files. Backup dump, restore The dump command is an elaborate filesystem backup utility, generally used on larger installations and networks. [65] 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 restore command restores backups made with dump. fdformat Perform a lowlevel format on a floppy disk (/dev/fd0*). System Resources ulimit
308
Advanced BashScripting Guide Sets an upper limit on use of system resources. Usually invoked with the f option, which sets a limit on file size (ulimit f 1000 limits files to 1 meg maximum). The t option limits the coredump size (ulimit c 0 eliminates coredumps). Normally, the value of ulimit would be set in /etc/profile and/or ~/.bash_profile (see Appendix G). Judicious use of ulimit can protect a system against the dreaded fork bomb.
#!/bin/bash # This script is for illustrative purposes only. # Run it at your own peril it WILL freeze your system. while true do $0 & # # #+ #+ # # Endless loop. This script invokes itself . . . forks an infinite number of times . . . until the system freezes up because all resources exhausted. This is the notorious "sorcerer's appentice" scenario. Will not exit here, because this script will never terminate.
done exit 0
A ulimit Hu XX (where XX is the user process limit) in /etc/profile would abort this script when it exceeded the preset limit. quota Display user or group disk quotas. setquota Set user or group disk quotas from the command line. umask User file creation permissions mask. Limit the default file attributes for a particular user. All files created by that user take on the attributes specified by umask. The (octal) value passed to umask defines the file permissions disabled. For example, umask 022 ensures that new files will have at most 755 permissions (777 NAND 022). [66] Of course, the user may later change the attributes of particular files with chmod. The usual practice is to set the value of umask in /etc/profile and/or ~/.bash_profile (see Appendix G).
Example 1610. Using umask to hide an output file from prying eyes
#!/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. # Results output to file "decrypted.txt" #+ which can only be read/written # by invoker of script (or root).
OUTFILE=decrypted.txt
cat "$@" | tr 'azAZ' 'nzamNZAM' > $OUTFILE # ^^ Input from stdin or a file. ^^^^^^^^^^ Output redirected to file. exit 0
Advanced BashScripting Guide Get info about or make changes to root device, swap space, or video mode. The functionality of rdev has generally been taken over by lilo, but rdev remains useful for setting up a ram disk. This is a dangerous command, if misused. Modules lsmod List installed kernel modules.
bash$ lsmod Module autofs opl3 serial_cs sb uart401 sound soundlow soundcore ds i82365 pcmcia_core
Size Used by 9456 2 (autoclean) 11376 0 5456 0 (unused) 34752 0 6384 0 [sb] 58368 0 [opl3 sb uart401] 464 0 [sound] 2800 6 [sb sound] 6448 2 [serial_cs] 22928 2 45984 0 [serial_cs ds i82365]
Doing a cat /proc/modules gives the same information. insmod Force installation of a kernel module (use modprobe instead, when possible). Must be invoked as root. rmmod Force unloading of a kernel module. Must be invoked as root. modprobe Module loader that is normally invoked automatically in a startup script. Must be invoked as root. depmod Creates module dependency file. Usually invoked from a startup script. modinfo Output information about a loadable module.
bash$ modinfo hid filename: /lib/modules/2.4.206/kernel/drivers/usb/hid.o description: "USB HID support drivers" author: "Andreas Gal, Vojtech Pavlik <vojtech@suse.cz>" license: "GPL"
Miscellaneous env Runs a program or script with certain environmental variables set or changed (without changing the overall system environment). The [varname=xxx] permits changing the environmental variable varname for the duration of the script. With no options specified, this command lists all the environmental variable settings.
310
Advanced BashScripting Guide In Bash and other Bourne shell derivatives, it is possible to set variables in a single command's environment.
var1=value1 var2=value2 commandXXX # $var1 and $var2 set in the environment of 'commandXXX' only.
The first line of a script (the "shabang" line) may use env when the path to the shell or interpreter is unknown.
#! /usr/bin/env perl print "This Perl script will run,\n"; print "even when I don't know where to find Perl.\n"; # Good for portable crossplatform scripts, # where the Perl binaries may not be in the expected place. # Thanks, S.C.
watch Run a command repeatedly, at specified time intervals. The default is twosecond intervals, but this may be changed with the n option.
watch n 5 tail /var/log/messages # Shows tail end of system log, /var/log/messages, every five seconds.
Unfortunately, piping the output of watch command to grep does not work. strip Remove the debugging symbolic references from an executable binary. This decreases its size, but makes debugging it impossible. This command often occurs in a Makefile, but rarely in a shell script. nm List symbols in an unstripped compiled binary. rdist Remote distribution client: synchronizes, clones, or backs up a file system on a remote server.
311
# 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
That wasn't so bad. Aside from a little fancy footwork with variable matching, there is no new material there. Exercise 1. In /etc/rc.d/init.d, analyze the halt script. It is a bit longer than killall, but similar in concept. Make a copy of this script somewhere in your home directory and experiment with it (do not run it as root). Do a simulated run with the vn flags (sh vn scriptname). Add extensive comments. Change the "action" commands to "echos". Exercise 2. Look at some of the more complex scripts in /etc/rc.d/init.d. See if you can understand parts of them. Follow the above procedure to analyze them. For some additional insight, you might also examine the file sysvinitfiles in /usr/share/doc/initscripts?.??, which is part of the "initscripts" documentation.
312
314
Advanced BashScripting Guide "[xyz]" matches the characters x, y, or z. "[cn]" matches any of the characters in the range c to n. "[BPky]" matches any of the characters in the ranges B to P and k to y. "[az09]" matches any lowercase letter or any digit. "[^bd]" matches all characters except those in the range b to d. This is an instance of ^ negating or inverting the meaning of the following RE (taking on a role similar to ! in a different context). Combined sequences of bracketed characters match common word patterns. "[Yy][Ee][Ss]" matches yes, Yes, YES, yEs, and so forth. "[09][09][09][09][09][09][09][09][09]" matches any Social Security number. The backslash \ escapes a special character, which means that character gets interpreted literally. A "\$" reverts back to its literal meaning of "$", rather than its RE meaning of endofline. Likewise a "\\" has the literal meaning of "\". Escaped "angle brackets" \<...\> mark word boundaries. The angle brackets must be escaped, since otherwise they have only their literal character meaning. "\<the\>" matches the word "the", but not the words "them", "there", "other", etc.
bash$ cat textfile 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.
bash$ grep 'the' textfile 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 line contains the number 113. This line contains the number 13.
316
"1133*" tstfile "1133*" on this file. contains the number 113. contains the number 1133. contains the number 113312. contains the number 113312312.
Extended REs. Additional metacharacters added to the basic set. Used in egrep, awk, and Perl. The question mark ? matches zero or one of the previous RE. It is generally used for matching single characters. The plus + matches one or more of the previous RE. It serves a role similar to the *, but does not match zero occurrences.
# GNU versions of sed and awk can use "+", # but it needs to be escaped. echo a111b | sed ne '/a1\+b/p' echo a111b | grep 'a1\+b' echo a111b | gawk '/a1+b/' # All of above are equivalent. # Thanks, S.C.
Escaped "curly brackets" \{ \} indicate the number of occurrences of a preceding RE to match. 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. "[09]\{5\}" matches exactly five digits (characters in the range of 0 to 9). Curly brackets are not available as an RE in the "classic" (nonPOSIX compliant) version of awk. However, gawk has the reinterval option that permits them (without being escaped).
bash$ echo 2222 | gawk reinterval '/2{3}/' 2222
Perl and some egrep versions do not require escaping the curly brackets. Parentheses ( ) enclose a group of REs. They are useful with the following "|" operator and in substring extraction using expr. The | "or" RE operator matches any of a set of alternate characters.
bash$ egrep 're(a|e)d' misc.txt People who read seem to be better informed than those who do not. The clarinet produces sound by the vibration of its reed.
317
Some versions of sed, ed, and ex support escaped versions of the extended Regular Expressions described above, as do the GNU utilities. POSIX Character Classes. [:class:] This is an alternate method of specifying a range of characters to match. [:alnum:] matches alphabetic or numeric characters. This is equivalent to AZaz09. [:alpha:] matches alphabetic characters. This is equivalent to AZaz. [:blank:] matches a space or a tab. [:cntrl:] matches control characters. [:digit:] matches (decimal) digits. This is equivalent to 09. [:graph:] (graphic printable characters). Matches characters in the range of ASCII 33 126. This is the same as [:print:], below, but excluding the space character. [:lower:] matches lowercase alphabetic characters. This is equivalent to az. [:print:] (printable characters). Matches characters in the range of ASCII 32 126. This is the same as [:graph:], above, but adding the space character. [:space:] matches whitespace characters (space and horizontal tab). [:upper:] matches uppercase alphabetic characters. This is equivalent to AZ. [:xdigit:] matches hexadecimal digits. This is equivalent to 09AFaf. POSIX character classes generally require quoting or double brackets ([[ ]]).
bash$ grep [[:digit:]] test.file abc=723
These character classes may even be used with globbing, to a limited extent.
bash$ ls l ?[[:digit:]][[:digit:]]? rwrwr 1 bozo bozo 0 Aug 21 14:47 a33b
To see POSIX character classes used in scripts, refer to Example 1519 and Example 1520. Sed, awk, and Perl, used as filters in scripts, take REs as arguments when "sifting" or transforming files or I/O streams. See Example A12 and Example A17 for illustrations of this. The standard reference on this complex topic is Friedl's Mastering Regular Expressions. Sed & Awk, by Dougherty and Robbins also gives a very lucid treatment of REs. See the Bibliography for more information on these books.
17.2. Globbing
Bash itself cannot recognize Regular Expressions. Inside scripts, it is commands and utilities such as sed and awk that interpret RE's. Bash does carry out filename expansion [69] a process known as globbing but this does not use the standard RE set. Instead, globbing recognizes and expands wildcards. Globbing interprets the standard Chapter 17. Regular Expressions 318
Advanced BashScripting Guide wildcard characters, * and ?, character lists in square brackets, and certain other special characters (such as ^ for negating the sense of a match). There are important limitations on wildcard characters in globbing, however. Strings containing * will not match filenames that start with a dot, as, for example, .bashrc. [70] Likewise, the ? has a different meaning in globbing than as part of an RE.
bash$ ls l total 2 rwrwr rwrwr rwrwr rwrwr rwrwr
1 1 1 1 1
0 0 0 466 758
bozo
466 Aug
6 17:48 t2.sh
bash$ ls l [ab]* rwrwr 1 bozo bozo rwrwr 1 bozo bozo bash$ ls l [ac]* rwrwr 1 bozo bozo rwrwr 1 bozo bozo rwrwr 1 bozo bozo bash$ ls l [^ab]* rwrwr 1 bozo bozo rwrwr 1 bozo bozo rwrwr 1 bozo bozo bash$ ls l {b*,c*,*est*} rwrwr 1 bozo bozo rwrwr 1 bozo bozo rwrwr 1 bozo bozo
0 Aug 6 18:42 c.1 466 Aug 6 17:48 t2.sh 758 Jul 30 09:02 test1.txt
0 Aug 6 18:42 b.1 0 Aug 6 18:42 c.1 758 Jul 30 09:02 test1.txt
Bash performs filename expansion on unquoted commandline arguments. The echo command demonstrates this.
bash$ echo * a.1 b.1 c.1 t2.sh test1.txt bash$ echo t* t2.sh test1.txt
It is possible to modify the way Bash interprets special characters in globbing. A set f command disables globbing, and the nocaseglob and nullglob options to shopt change globbing behavior. See also Example 104.
319
A limit string delineates (frames) the command list. The special symbol << designates the limit string. This has the effect of redirecting the output of a file into the stdin of the program or command. It is similar to interactiveprogram < commandfile, where commandfile contains
command #1 command #2 ...
Choose a limit string sufficiently unusual that it will not occur anywhere in the command list and confuse matters. Note that here documents may sometimes be used to good effect with noninteractive utilities and commands, such as, for example, wall.
Even such unlikely candidates as the vi text editor lend themselves to here documents. Chapter 18. Here Documents 320
Advanced BashScripting Guide Example 182. dummyfile: Creates a 2line dummy file
#!/bin/bash # Noninteractive use of 'vi' to edit a file. # Emulates 'sed'. E_BADARGS=65 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 ControlV <Esc>. # Bram Moolenaar points out that this may not work with 'vim', #+ because of possible problems with terminal interaction. exit 0
The above script could just as effectively have been implemented with ex, rather than vi. Here documents containing a list of ex commands are common enough to form their own category, known as ex scripts.
#!/bin/bash # Replace all instances of "Smith" with "Jones" #+ in files with a ".txt" filename suffix. ORIGINAL=Smith REPLACEMENT=Jones for word in $(fgrep l $ORIGINAL *.txt) do # ex $word <<EOF :%s/$ORIGINAL/$REPLACEMENT/g :wq EOF # :%s is the "ex" substitution command. # :wq is writeandquit. # done
321
# # 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.
The option to mark a here document limit string (<<LimitString) suppresses leading tabs (but not spaces) in the output. This may be useful in making a script more readable.
322
A here document supports parameter and command substitution. It is therefore possible to pass different parameters to the body of the here document, changing its output accordingly.
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 0
323
E_ARGERROR=65 if [ z "$1" ] then echo "Usage: `basename $0` Filenametoupload" exit $E_ARGERROR fi
Filename=`basename $1`
Server="ibiblio.org" Directory="/incoming/Linux" # These need not be hardcoded into script, #+ but may instead be changed to command line argument. Password="your.email.address" ftp n $Server <<EndOfSession # n option disables autologon user anonymous "$Password" binary bell cd $Directory put "$Filename.lsm" put "$Filename.tar.gz" bye EndOfSession exit 0 # Change above to suit.
Quoting or escaping the "limit string" at the head of a here document disables parameter substitution within its body.
324
exit 0
Disabling parameter substitution permits outputting literal text. Generating scripts or even program code is one use for this.
# # '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 can also be used for generating #+ C programs, Perl programs, Python programs, Makefiles, #+ and the like.
325
It is possible to set a variable from the output of a here document. This is actually a devious form of command substitution.
variable=$(cat <<SETVAR This variable runs over multiple lines. SETVAR) echo "$variable"
# Supply input to the above function. GetPersonalData <<RECORD001 Bozo Bozeman 2726 Nondescript Dr. Baltimore MD 21226 RECORD001
echo echo "$firstname $lastname" echo "$address" echo "$city, $state $zipcode" echo exit 0
It is possible to use : as a dummy command accepting output from a here document. This, in effect, creates an "anonymous" here document.
326
A variation of the above technique permits "commenting out" blocks of code. Example 1811. Commenting out a block of code
#!/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 $?." # No error shown. echo # 0
# #+ # #+
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.
echo "Just before commentedout code block." # The lines of code between the doubledashed lines will not execute. # =================================================================== : <<DEBUGXXX for file in * do cat "$file" done DEBUGXXX # =================================================================== echo "Just after commentedout code block." exit 0
###################################################################### # Note, however, that if a bracketed variable is contained within #+ the commentedout code block, #+ then this could cause problems. # for example:
#/!/bin/bash : <<COMMENTBLOCK
327
$ sh commentedbad.sh commentedbad.sh: line 3: foo_bar_bazz: parameter null or not set # The remedy for this is to strongquote the 'COMMENTBLOCK' in line 49, above. : <<'COMMENTBLOCK' # Thank you, Kurt Pfeifle, for pointing this out.
Yet another twist of this nifty trick makes "selfdocumenting" scripts possible. Example 1812. A selfdocumenting script
#!/bin/bash # selfdocument.sh: selfdocumenting script # Modification of "colm.sh". DOC_REQUEST=70 if [ "$1" = "h" o "$1" = "help" ] # Request help. then echo; echo "Usage: $0 [directoryname]"; 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 PROGNAME\n" \ ; ls l "$directory" | sed 1d) | column t exit 0
328
See also Example A29 for one more excellent example of a selfdocumenting script.
Here documents create temporary files, but these files are deleted after opening and are not accessible to any other process.
bash$ bash c 'lsof a p $$ d0' << EOF > EOF lsof 1213 bozo 0r REG 3,5 0 30386 /tmp/t12130sh (deleted)
Some utilities will not work inside a here document. The closing limit string, on the final line of a here document, must start in the first character position. There can be no leading whitespace. Trailing whitespace after the limit string likewise causes unexpected behavior. The whitespace prevents the limit string from being recognized.
#!/bin/bash echo "" cat <<LimitString echo "This is line 1 of the message inside the here document." echo "This is line 2 of the message inside the here document." echo "This is the final line of the message inside the here document." LimitString #^^^^Indented limit string. Error! This script will not behave as expected. echo "" # These comments are outside the 'here document', #+ and should not echo. echo "Outside the here document." exit 0 echo "This line had better not echo." # Follows an 'exit' command.
For those tasks too complex for a "here document", consider using the expect scripting language, which is specifically tailored for feeding input into interactive programs.
329
# if [[ $VAR = *txt* ]]
# Try: if grep q "txt" <<< "$VAR" then echo "$VAR contains the substring sequence \"txt\"" fi # Thank you, Sebastian Kaminski, for the suggestion.
E_NOSUCHFILE=65 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
330
E_MISSING_ARG=67 if [ z "$1" ] then echo "Usage: $0 mailboxfile" 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 " ]] then (( body = 0 )) (( match = 0 )) unset date # Match "From" field in message. # "Zero out" variables.
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
331
# 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
332
COMMAND_OUTPUT > # Redirect stdout to a file. # Creates the file if not present, otherwise overwrites it. ls lR > dirtree.list # Creates a file containing a listing of the directory tree. : > filename # The > truncates file "filename" to zero length. # If file not present, creates zerolength file (same effect as 'touch'). # The : serves as a dummy placeholder, producing no output. > filename # The > truncates file "filename" to zero length. # If file not present, creates zerolength file (same effect as 'touch'). # (Same result as ": >", above, but this does not work with some shells.) COMMAND_OUTPUT >> # Redirect stdout to a file. # Creates the file if not present, otherwise appends to it.
# Singleline redirection commands (affect only the line they are on): # 1>filename # Redirect stdout to file "filename." 1>>filename # Redirect and append stdout to file "filename." 2>filename # Redirect stderr to file "filename." 2>>filename # Redirect and append stderr to file "filename." &>filename # Redirect both stdout and stderr to file "filename." # # Note that &>>filename #+ attempting to redirect and *append* #+ stdout and stderr to file "filename" #+ fails with the error message, #+ syntax error near unexpected token `>'. M>N # "M" is a file descriptor, which defaults to 1, if not explicitly set.
333
# Redirecting stderr, one line at a time. ERRORFILE=script.errors bad_command1 2>$ERRORFILE bad_command2 2>>$ERRORFILE bad_command3 # Error message sent to $ERRORFILE. # Error message appended to $ERRORFILE. # Error message echoed to stderr, #+ and does not appear in $ERRORFILE. # These redirection commands also automatically "reset" after each line. #======================================================================= 2>&1 # Redirects stderr to stdout. # Error messages get sent to same place as standard output. i>&j # Redirects file descriptor i to j. # All output of file pointed to by i gets sent to file pointed to by j. >&j # Redirects, by default, file descriptor 1 (stdout) to j. # All stdout gets sent to file pointed to by j. 0< FILENAME < FILENAME # Accept input from a file. # Companion command to ">", and often used in combination with it. # # grep searchword <filename
[j]<>filename # Open file "filename" for reading and writing, #+ and assign file descriptor "j" to it. # If "filename" does not exist, create it. # If file descriptor "j" is not specified, default to fd 0, stdin. # # An application of this is writing at a specified place in a file. echo 1234567890 > File # Write string to "File". exec 3<> File # Open "File" and assign fd 3 to it. read n 4 <&3 # Read only 4 characters. echo n . >&3 # Write a decimal point there. exec 3>& # Close fd 3.
334
| # Pipe. # General purpose process and command chaining tool. # Similar to ">", but more general in effect. # Useful for chaining commands, scripts, files, and programs together. cat *.txt | sort | uniq > resultfile # Sorts the output of all the .txt files and deletes duplicate lines, # finally saves results to "resultfile".
Multiple instances of input and output redirection and/or pipes can be combined in a single command line.
command < inputfile > outputfile command1 | command2 | command3 > outputfile
See Example 1529 and Example A15. Multiple output streams may be redirected to one file.
ls # # #+ yz >> command.log 2>&1 Capture result of illegal options "yz" in file "command.log." Because stderr is redirected to the file, any error messages will also be there.
# Note, however, that the following does *not* give the same result. ls yz 2>&1 >> command.log # Outputs an error message and does not write to file. # If redirecting both stdout and stderr, #+ the order of the commands makes a difference.
Closing File Descriptors n<& Close input file descriptor n. 0<&, <& Close stdin. n>& Close output file descriptor n. 1>&, >& Close stdout. Child processes inherit open file descriptors. This is why pipes work. To prevent an fd from being inherited, close it.
# Redirecting only stderr to a pipe. exec 3>&1 ls l 2>&1 >&3 3>& | grep bad 3>& # ^^^^ ^^^^ exec 3>& # Thanks, S.C. # Save current "value" of stdout. # Close fd 3 for 'grep' (but not 'ls'). # Now close it for the remainder of the script.
335
Advanced BashScripting Guide For a more detailed introduction to I/O redirection see Appendix E.
exec 6<&0
# Link file descriptor #6 with stdin. # Saves stdin. # stdin replaced by file "datafile" # Reads first line of file "datafile". # Reads second line of file "datafile."
exec < datafile read a1 read a2 echo echo echo echo echo
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 read echo echo echo echo exit 0 n "Enter data " b1 # Now "read" functions as expected, reading from normal stdin. "Input read from stdin." "" "b1 = $b1"
Similarly, an exec >filename command redirects stdout to a designated file. This sends all command output that would normally go to stdout to that file. exec N > filename affects the entire script or current shell. Redirection in the PID of the script or shell from that point on has changed. However . . . N > filename affects only the newlyforked process, not the entire script or shell. Thank you, Ahmed Darwish, for pointing this out. Chapter 19. I/O Redirection 336
# # # 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
Example 193. Redirecting both stdin and stdout in the same script with exec
#!/bin/bash # upperconv.sh # Converts a specified input file to uppercase. E_FILE_ACCESS=70 E_WRONG_ARGS=71 if [ ! then echo echo exit fi r "$1" ] # Is specified input file readable?
"Can't read from input file!" "Usage: $0 inputfile outputfile" $E_FILE_ACCESS # 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 inputfile outputfile"
337
# Will write to output file. # Assumes output file writable (add check?).
# cat | tr az AZ # Uppercase conversion. # ^^^^^ # Reads from stdin. # ^^^^^^^^^^ # Writes to stdout. # However, both stdin and stdout were redirected. # exec 1>&7 7>& exec 0<&4 4<& # Restore stout. # Restore stdin.
# After restoration, the following line prints to stdout as expected. echo "File \"$1\" written to \"$2\" as uppercase conversion." exit 0
I/O redirection is a clever way of avoiding the dreaded inaccessible variables within a subshell problem.
echo ""
exec 3<> myfile.txt while read line <&3 do { echo "$line" (( Lines++ ));
338
339
# However . . . # Bash *can* sometimes start a subshell in a PIPED "whileread" 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.
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?
340
# Change
!=
to =.
# Reads from $Filename, rather than stdin. # Redirects stdin to file $Filename.
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` # while [ "$name" != Smith ] do read name echo $name if [ "$name" = Smith ]
# Recall that "seq" prints sequence of numbers. more complicated than a "while" loop # Reads from $Filename, rather than stdin. # Need all this extra baggage here.
341
We can modify the previous example to also redirect the output of the loop.
Example 199. Redirected for loop (both stdin and stdout redirected)
#!/bin/bash if [ z "$1" ] then Filename=names.data else Filename=$1 fi Savefile=$Filename.new FinalName=Jonah
# Filename to save results in. # Name to terminate "read" on. # 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" # ^^^^^^^^^^^^^^^^^^^^^^^^^^^ exit 0
342
Redirecting the stdout of a code block has the effect of saving its output to a file. See Example 32. Here documents are a special case of redirected code blocks. That being the case, it should be possible to feed the output of a here document into the stdin for a while loop.
# This example by Albert Siersema # Used with permission (thanks!). function doesOutput() # Could be an external command too, of course. # Here we show you can use a function as well. { ls al *.jpg | awk '{print $5,$9}' }
nr=0 totalSize=0
# We want the while loop to be able to manipulate these and #+ to be able to see the changes after the while finished.
while read fileSize fileName ; do echo "$fileName is $fileSize bytes" let nr++ totalSize=$((totalSize+fileSize)) # Or: "let totalSize+=fileSize" done<<EOF $(doesOutput) EOF echo "$nr files totaling $totalSize bytes"
343
19.3. Applications
Clever use of I/O redirection permits parsing and stitching together snippets of command output (see Example 147). This permits generating report and log files.
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 2) exec 3>&2 3) exec 3>&2 *) exec 3> /dev/null esac
FD_LOGVARS=6 if [[ $LOG_VARS ]] then exec 6>> /var/log/vars.log else exec 6> /dev/null fi FD_LOGEVENTS=7 if [[ $LOG_EVENTS ]]
# Bury output.
344
echo "sending mail" >&${FD_LOGEVENTS} # Writes "sending mail" to file descriptor #7.
exit 0
345
Definition: A subshell is a process launched by a shell (or shell script). A subshell is a separate instance of the command processor the shell that gives you the prompt at the console or in an xterm window. Just as your commands are interpreted at the command line prompt, similarly does a script batchprocess a list of commands. Each shell script running is, in effect, a subprocess (child process) of the parent shell. A shell script can itself launch subprocesses. These subshells let the script do parallel processing, in effect executing multiple subtasks simultaneously.
#!/bin/bash # subshelltest.sh ( # Inside parentheses, and therefore a subshell . . . while [ 1 ] # Endless loop. do echo "Subshell running . . ." done ) # Script will run forever, #+ or at least until terminated by a CtlC. exit $? # End of script (but will never get here).
Now, run the script: sh subshelltest.sh And, while the script is running, from a different xterm: ps ef | grep subshelltest.sh UID 500 500 PID 2698 2699 ^^^^ Analysis: PID 2698, the script, launched PID 2699, the subshell. Note: The "UID ..." line would be filtered out by the "grep" command, but is shown here for illustrative purposes. PPID C STIME TTY 2502 0 14:26 pts/4 2698 21 14:26 pts/4 TIME CMD 00:00:00 sh subshelltest.sh 00:00:24 sh subshelltest.sh
In general, an external command in a script forks off a subprocess, [73] whereas a Bash builtin does not. For this reason, builtins execute more quickly than their external command equivalents. Command List within Parentheses
346
Advanced BashScripting Guide ( command1; command2; command3; ... ) A command list embedded between parentheses runs as a subshell. Variables in a subshell are not visible outside the block of code in the subshell. They are not accessible to the parent process, to the shell that launched the subshell. These are, in effect, local variables.
347
Definition: The scope of a variable is the context in which it has meaning, in which it has a value that can be referenced. For example, the scope of a local variable lies only within the function, block of code, or subshell within which it is defined. While the $BASH_SUBSHELL internal variable indicates the nesting level of a subshell, the $SHLVL variable shows no change within a subshell.
echo " \$BASH_SUBSHELL outside subshell = $BASH_SUBSHELL" # 0 ( echo " \$BASH_SUBSHELL inside subshell = $BASH_SUBSHELL" ) # 1 ( ( echo " \$BASH_SUBSHELL inside nested subshell = $BASH_SUBSHELL" ) ) # 2 # ^ ^ *** nested *** ^ ^ echo echo " \$SHLVL outside subshell = $SHLVL" ( echo " \$SHLVL inside subshell = $SHLVL" ) # 3 # 3 (No change!)
Directory changes made in a subshell do not carry over to the parent shell.
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
348
As seen here, the exit command only terminates the subshell in which it is running, not the parent shell or script. One application of such a "dedicated environment" is testing whether a variable is defined.
if (set u; : $variable) 2> /dev/null then echo "Variable is set." fi # Variable has been set in current script, #+ or is an an internal Bash variable, #+ or is present in environment (has been exported). # # # # Could also be written [[ ${variablex} != x || ${variabley} != y ]] or [[ ${variablex} != x$variable ]] or [[ ${variable+x} = x ]] or [[ ${variablex} != x ]]
+ Processes may execute in parallel within different subshells. This permits breaking a complex task into subcomponents processed concurrently.
349
Advanced BashScripting Guide Redirecting I/O to a subshell uses the "|" pipe operator, as in ls al | (command). A command block between curly braces does not launch a subshell. { command1; command2; command3; . . . commandN; }
350
351
352
Bash creates a pipe with two file descriptors, fIn and fOut. The stdin of true connects to fOut (dup2(fOut, 0)), then Bash passes a /dev/fd/fIn argument to echo. On systems lacking /dev/fd/<n> files, Bash may use temporary files. (Thanks, S.C.) Process substitution can compare the output of two different commands, or even the output of different options to the same command.
bash$ comm <(ls l) <(ls al) total 12 rwrwr 1 bozo bozo 78 Mar 10 12:58 File0 rwrwr 1 bozo bozo 42 Mar 10 12:58 File2 rwrwr 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 .. rwrwr 1 bozo bozo 78 Mar 10 12:58 File0 rwrwr 1 bozo bozo 42 Mar 10 12:58 File2 rwrwr 1 bozo bozo 103 Mar 10 12:58 t2.sh
Using process substitution to compare the contents of two directories (to see which filenames are in one, but not the other):
diff <(ls $first_directory) <(ls $second_directory)
353
ls l | cat
sort k 9 <(ls l /bin) <(ls l /usr/bin) <(ls l /usr/X11R6/bin) # Lists all the files in the 3 main 'bin' directories, and sorts by filename. # Note that three (count 'em) distinct commands are fed to 'sort'.
tar cf >(bzip2 c > file.tar.bz2) $directory_name # Calls "tar cf /dev/fd/?? $directory_name", and "bzip2 c > file.tar.bz2". # # Because of the /dev/fd/<n> system feature, # the pipe between both commands does not need to be named. # # This can be emulated. # bzip2 c < pipe > file.tar.bz2& tar cf pipe $directory_name rm pipe # or exec 3>&1 tar cf /dev/fd/4 $directory_name 4>&1 >&3 3>& | bzip2 c > file.tar.bz2 3>& exec 3>&
# As Stphane Chazelas points out, #+ an easiertounderstand equivalent is: route n | while read des what mask iface; do # Variables set from output of pipe.
354
355
In this case, however, a semicolon must follow the final command in the function.
fun () { echo "This is a function"; echo } # Error!
356
The function definition must precede the first call to it. There is no method of "declaring" the function, as, for example, in C.
f1 # Will give an error message, since function "f1" not yet defined. declare f f1 f1 # However... # This doesn't help either. # Still an error message.
f1 () { echo "Calling function \"f2\" from within function \"f1\"." f2 } f2 () { echo "Function \"f2\"." } f1 # Function "f2" is not actually called until this point, #+ although it is referenced before its definition. # This is permissible. # Thanks, S.C.
It is even possible to nest a function within another function, although this is not very useful.
f1 () { f2 () # nested { echo "Function \"f2\", inside \"f1\"."
357
echo f1 f2 # Does nothing, since calling "f1" does not automatically call "f2". # Now, it's all right to call "f2", #+ since its definition has been made visible by calling "f1". # Thanks, S.C.
Function declarations can appear in unlikely places, even where a command would otherwise go.
ls l | foo() { echo "foo"; } # Permissible, but useless.
if [ "$USER" = bozo ] then bozo_greet () # Function definition embedded in an if/then construct. { echo "Hello, Bozo." } fi bozo_greet # Works only for Bozo, and other users get an error.
# Something like this might be useful in some contexts. NO_EXIT=1 # Will enable function definition below. [[ $NO_EXIT eq 1 ]] && exit() { true; } # Function definition in an "andlist". # If $NO_EXIT is 1, declares "exit ()". # This disables the "exit" builtin by aliasing it to "true". exit # Invokes "exit ()" function, not "exit" builtin.
# Or, similarly: filename=file1 [ f "$filename" ] && foo () { rm f "$filename"; echo "File "$filename" deleted."; } || foo () { echo "File "$filename" not found."; touch bar; } foo # Thanks, S.C. and Christopher Head
358
Advanced BashScripting Guide The function refers to the passed arguments by position (as if they were positional parameters), that is, $1, $2, and so forth.
# #+ # # #+
What does 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 echo
echo "Zerolength parameter passed." func2 "" # Called with zerolength param echo echo "Null parameter passed." func2 "$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 zerolength first parameter echo # and ASCII string as a second one. exit 0
359
Advanced BashScripting Guide The shift command works on arguments passed to functions (see Example 3315). But, what about commandline arguments passed to the script? Does a function see them? Well, let's clear up the confusion.
func () { echo "$1" } echo "First call to function: no arg passed." echo "See if commandline arg is seen." func # No! Commandline arg not seen. echo "============================================================" echo echo "Second call to function: commandline arg passed explicitly." func $1 # Now it's seen! exit 0
In contrast to certain other programming languages, shell scripts normally pass only value parameters to functions. Variable names (which are actually pointers), if passed as parameters to functions, will be treated as string literals. Functions interpret their arguments literally.
Indirect variable references (see Example 342) provide a clumsy sort of mechanism for passing variable pointers to functions.
360
The next logical question is whether parameters can be dereferenced after being passed to a function.
x=`eval "expr \"$y\" "` echo $1=$x eval "$1=\"Some Different Text \"" } Junk="Some Text" echo $Junk "before" dereference Junk echo $Junk "after" exit 0
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'] "' # eval echo n "[\$$1] "
# Previous value. # Easier to understand, #+ but loses trailing space in user prompt.
read local_var [ n "$local_var" ] && eval $1=\$local_var # "Andlist": if "local_var" then set "$1" to its value.
361
Exit and Return exit status Functions return a value, called an exit status. The exit status may be explicitly specified by a return statement, otherwise it is the exit status of the last command in the function (0 if successful, and a nonzero error code if not). This exit status may be used in the script by referencing it as $?. This mechanism effectively permits script functions to have a "return value" similar to C functions. return Terminates a function. A return command [75] optionally takes an integer argument, which is returned to the calling script as the "exit status" of the function, and this exit status is assigned to the variable $?.
362
exit 0 # # # #+ Exercise (easy): Convert this to an interactive script, that is, have the script ask for input (two numbers).
363
to_roman num=$? to_roman num=$? to_roman num=$? to_roman num=$? to_roman num=$? to_roman num=$? to_roman num=$? to_roman num=$? to_roman echo exit 0
$num 100 C $num 90 LXXXX $num 50 L $num 40 XL $num 10 X $num 9 IX $num 5 V $num 4 IV $num 1 I
See also Example 1028. The largest positive integer a function can return is 255. The return command is closely tied to the concept of exit status, which accounts for this particular limitation. Fortunately, there are various workarounds for those situations requiring a large integer return value Chapter 23. Functions 364
# o.k. # Returns 27. # Still o.k. # Returns 255. # Error! # 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. # Newer versions of Bash plug this loophole. # This may break older scripts. # Caution! # ====================================================== exit 0
A workaround for obtaining large integer "return values" is to simply assign the "return value" to a global variable.
Return_Val= # Global variable to hold oversize return value of function.
alt_return_test () { fvar=$1 Return_Val=$fvar return # Returns 0 (success). } alt_return_test 1 echo $? echo "return value = $Return_Val" alt_return_test 256 echo "return value = $Return_Val" alt_return_test 257 echo "return value = $Return_Val" alt_return_test 25701 echo "return value = $Return_Val"
# 0 # 1
# 256
# 257
#25701
365
Advanced BashScripting Guide A more elegant method is to have the function echo its "return value to stdout," and then capture it by command substitution. See the discussion of this in Section 33.7.
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
366
Here is another example of capturing a function "return value." Understanding it requires some knowledge of awk.
month_length () # Takes month number as an argument. { # Returns number of days in month. monthD="31 28 31 30 31 30 31 31 30 31 30 31" # Declare as local? echo "$monthD" | awk '{ print $'"${1}"' }' # Tricky. # ^^^^^^^^^ # Parameter passed to function ($1 month number), then to awk. # Awk sees this as "print $1 . . . print $12" (depending on month number) # Template for passing a parameter to embedded awk script: # $'"${script_parameter}"' # Needs error checking for correct parameter range (112) #+ and for February in leap year. } # # Usage example: month=4 # April, for example (4th month). days_in=$(month_length $month) echo $days_in # 30 #
See also Example A7. Exercise: Using what we have just learned, extend the previous Roman numerals example to accept arbitrarily large input. Redirection Redirecting the stdin of a function A function is essentially a code block, which means its stdin can be redirected (as in Example 31).
367
exit 0
There is an alternate, and perhaps less confusing method of redirecting a function's stdin. This involves redirecting the stdin to an embedded bracketed code block within the function.
# Instead of: Function () { ... } < file # Try this: Function () { { ... } < file } # Similarly, Function () # This works. { { echo $* } | tr a b } Function () { echo $* } | tr a b # This doesn't work.
# Thanks, S.C.
368
Before a function is called, all variables declared within the function are invisible outside the body of the function, not just those explicitly declared as local.
#!/bin/bash func () { global_var=37 }
# Visible only within the function block #+ before the function has been called. # END OF FUNCTION # global_var = # Function "func" has not yet been called, #+ so $global_var is not visible here.
func
369
# Does bash permit recursion? # Well, yes, but... # It's so slow that you gotta have rocks in your head to try it.
if [ z "$1" ] then echo "Usage: `basename $0` number" exit $E_WRONG_ARGS fi if [ "$1" gt $MAX_ARG ] then echo "Out of range (5 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 }
370
See also Example A16 for an example of recursion in a script. Be aware that recursion is resourceintensive and executes slowly, and is therefore generally not appropriate to use in a script.
371
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. # Modifications to original script. dohanoi() { # Recursive function. case $1 in 0) ;; *) dohanoi "$(($11))" $2 $4 $3 echo move $2 ">" $3 let "Moves += 1" # Modification to original script. dohanoi "$(($11))" $4 $3 $2 ;; esac } case $# in 1) case $(($1>0)) in # Must have at least one disk. 1) dohanoi $1 1 3 2 echo "Total moves = $Moves" 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)
372
# 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
373
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
bozo
3072 Feb
6 14:04 .
374
375
Each command executes in turn provided that the previous command has given a return value of true (zero). At the first false (nonzero) return, the command chain terminates (the first command returning false is the last one to execute). Example 251. Using an and list to test for commandline arguments
#!/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 "Less than 2 arguments passed to script." # At least one of the chained commands returns false. fi # Note that "if [ ! z $1 ]" works, but its supposed equivalent, # if [ n $1 ] does not. # However, quoting fixes this. # if [ n "$1" ] works. # Careful! # It is always best to QUOTE tested variables.
accomplishes the same thing, using "pure" if/then statements. z "$1" ] "Argument #1 = $1" z "$2" ] "Argument #2 = $2" "At least 2 arguments passed to script." "Less than 2 arguments passed to script." longer and less elegant than using an "and list".
exit 0
376
test $# ne $ARGS && \ 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.
or list
command1 || command2 || command3 || ... commandn
Each command executes in turn for as long as the previous command returns false. At the first true return, the command chain terminates (the first command returning true is the last one to execute). This is obviously the inverse of the "and list". Example 253. Using or lists in combination with an and list
#!/bin/bash # # delete.sh, notsocunning file deletion utility. Usage: delete filename
E_BADARGS=65 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 continued on to a second line with 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.
377
[ x /usr/bin/clear ] && /usr/bin/clear # ==> If /usr/bin/clear exists, then invoke it. # ==> Checking for the existence of a command before calling it #+==> avoids error messages and other awkward consequences. # ==> . . . # If they want to run something in single user mode, might as well run it... for i in /etc/rc1.d/S[09][09]* ; do # Check if the script is there. [ x "$i" ] || continue # ==> If corresponding file in $PWD *not* found, #+==> then "continue" by jumping to the top of the loop. # Reject backup files and files generated by rpm. case "$1" in *.rpmsave|*.rpmorig|*.rpmnew|*~|*.orig) continue;; esac [ "$i" = "/etc/rc1.d/S00single" ] && continue # ==> Set script name, but don't execute it yet. $i start done # ==> . . .
The exit status of an and list or an or list is the exit status of the last command executed. Clever combinations of "and" and "or" lists are possible, but the logic may easily become convoluted and require extensive debugging.
false && true || echo false # Same result as ( false && true ) || echo false # But *not* false && ( true || echo false ) # false
# Note lefttoright grouping and evaluation of statements, #+ since the logic operators "&&" and "||" have equal precedence. # # It's best to avoid such complexities, unless you know what you're doing. Thanks, S.C.
See Example A7 and Example 74 for illustrations of using an and / or list to test variables.
378
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 spreadsheetprocessing software.
echo n "area[11] = " echo ${area[11]} # 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".
379
area3=([17]=seventeen [24]=twentyfour) echo n "area3[17] = " echo ${area3[17]} echo n "area3[24] = " echo ${area3[24]} # exit 0
As we have seen, a convenient way of initializing an entire array is the array=( element1 element2 ... elementN) notation.
Bash permits array operations on variables, even if the variables are not explicitly declared as arrays.
string=abcABC123ABCabc echo ${string[@]} echo ${string[*]} echo ${string[0]} echo ${string[1]} echo ${#string[@]}
# # # # # # # #
abcABC123ABCabc abcABC123ABCabc abcABC123ABCabc No output! Why? 1 One element in the array. The string itself.
Once again this demonstrates that Bash variables are untyped. Example 262. Formatting a poem
#!/bin/bash # poem.sh: Prettyprints one of the document author's favorite poems. # Lines of the poem (single stanza). Line[1]="I do not know which to prefer,"
380
Array variables have a syntax all their own, and even standard Bash commands and operators have special options adapted for array use.
array=( zero one two three four five ) # Element 0 1 2 3 4 5 echo ${array[0]} echo ${array:0} # # # #+ # # #+ zero zero Parameter expansion of starting at position # ero Parameter expansion of starting at position #
echo ${array:1}
echo "" echo ${#array[0]} echo ${#array} # # # # # # 4 Length of first element of array. 4 Length of first element of array. (Alternate notation) 3
echo ${#array[1]}
381
echo "" array2=( [0]="first element" [1]="second element" [3]="fourth element" ) echo ${array2[0]} echo ${array2[1]} echo ${array2[2]} echo ${array2[3]} # # # # # first element second element Skipped in initialization, and therefore null. fourth element
exit 0
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]. # two three # Only the two elements after element[0].
echo ${arrayZ[@]:1:2}
echo "" # Substring Removal # Removes shortest match from front of string(s), #+ where the substring is a regular expression. echo ${arrayZ[@]#f*r} # one two three five five # Applied to all elements of the array. # Matches "four" and removes it.
382
echo "" # Substring Replacement # Replace first occurance of substring with replacement echo ${arrayZ[@]/fiv/XYZ} # one two three four XYZe XYZe # Applied to all elements of the array. # Replace all occurances of substring echo ${arrayZ[@]//iv/YY} # one two three four fYYe fYYe # Applied to all elements of the array. # Delete all occurances of substring # Not specifing a replacement means 'delete' echo ${arrayZ[@]//fi/} # one two three four ve ve # Applied to all elements of the array. # Replace frontend occurances of substring echo ${arrayZ[@]/#fi/XY} # one two three four XYve XYve # Applied to all elements of the array. # Replace backend occurances 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 ""
# Before reaching for awk (or anything else) # Recall: # $( ... ) is command substitution. # Functions run as a subprocess. # Functions write their output to stdout. # Assignment reads the function's stdout. # The name[@] notation specifies a "foreach" operation. newstr() { echo n "!!!" } echo ${arrayZ[@]/%e/$(newstr)} # on!!! two thre!!! four fiv!!! fiv!!! # Q.E.D: The replacement action is an 'assignment.'
383
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 " " # 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.
In an array context, some Bash builtins have a slightly altered meaning. For example, unset deletes array elements, or even an entire array.
384
echo; echo n "Colors gone." echo ${colors[@]} # List array again, now empty. exit 0
As seen in the previous example, either ${array_name[@]} or ${array_name[*]} refers to all the elements of the array. Similarly, to get a count of the number of elements in an array, use either ${#array_name[@]} or ${#array_name[*]}. ${#array_name} is the length (number of characters) of ${array_name[0]}, the first element of the array.
385
Advanced BashScripting Guide Example 267. Of empty arrays and empty elements
#!/bin/bash # emptyarray.sh # Thanks to Stephane Chazelas for the original example, #+ and to Michael Zick and Omair Eshkenazi for extending it.
# 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[*]}" # echo "Number of elements in array1 = ${#array1[*]}" # echo "Number of elements in array2 = ${#array2[*]}" # echo "Number of elements in array3 = ${#array3[*]}" # }
3 1 0 0
(Surprise!)
# =================================================================== ListArray # Try extending those arrays. # Adding array0=( array1=( array2=( array3=( an element to an array. "${array0[@]}" "new1" ) "${array1[@]}" "new1" ) "${array2[@]}" "new1" ) "${array3[@]}" "new1" )
ListArray # or array0[${#array0[*]}]="new2" array1[${#array1[*]}]="new2" array2[${#array2[*]}]="new2" array3[${#array3[*]}]="new2" ListArray # When extended as above; arrays are 'stacks' # The above is the 'push' # The stack 'height' is: height=${#array2[@]}
386
zap='new*' array9=( ${array0[@]/$zap/} ) echo echo "Elements in array9: ${array9[@]}" # Just when you thought you where still in Kansas . . .
387
The relationship of ${array_name[@]} and ${array_name[*]} is analogous to that between $@ and $*. This powerful array notation has a number of uses.
# Copying an array. array2=( "${array1[@]}" ) # or array2="${array1[@]}" # # However, this fails with "sparse" arrays, #+ arrays with holes (missing elements) in them, #+ as Jochen DeSmet points out. # array1[0]=0 # array1[1] not assigned array1[2]=2 array2=( "${array1[@]}" ) # Copy it? echo ${array2[0]} # 0 echo ${array2[2]} # (null), should be 2 #
# Adding an element to an array. array=( "${array[@]}" "new element" ) # or array[${#array[*]}]="new element" # Thanks, S.C.
The array=( element1 element2 ... elementN ) initialization operation, with the help of command substitution, makes it possible to load the contents of a text file into an array.
#!/bin/bash filename=sample_file # # # # cat sample_file 1 a b c 2 d e fg
declare a array1 array1=( `cat "$filename"`) # List file to stdout # # Loads contents #+ of $filename into array1.
388
# 8
# Based on an example provided by Stephane Chazelas #+ which appeared in the book: 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, 2.05a and 2.05b. 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, AllElementsOf' echo "Number of elements in array is ${#bigOne[@]}" # set vx
389
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 from three to four times 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 31 are not strictly necessary, since it is in the Array=( ... ) assignment form. However, eliminating these declarations the execution of the following sections Try it, and see.
exit 0
Adding a superfluous declare a statement to an array declaration may speed up execution of subsequent operations on the array.
390
CpArray_Mac() { # Assignment Command Statement Builder echo echo echo echo echo n n n n n 'eval ' "$2" '=( ${' "$1" '[@]} )'
# That could all be a single command. # Matter of style only. } declare f CopyArray CopyArray=CpArray_Mac 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 # Function "Pointer" # Statement Builder
391
# Pipe the output of this script to 'more' #+ so it doesn't scroll off the terminal.
# Subscript packed. declare a array1=( zero1 one1 two1 ) # Subscript sparse ([1] is not defined). declare a array2=( [0]=zero2 [2]=two2 [3]=three2 ) echo echo ' Confirm that the array is really subscript sparse. ' echo "Number of elements: 4" # Hardcoded for illustration. for (( i = 0 ; i < 4 ; i++ )) do echo "Element [$i]: ${array2[$i]}" done # See also the more general code example in basicsreviewed.bash.
declare a dest # Combine (append) two arrays into a third array. echo echo 'Conditions: Unquoted, default IFS, AllElementsOf 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[@]} # 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 '
392
# 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
Arrays permit deploying old familiar algorithms as shell scripts. Whether this is necessarily a good idea is left to the reader to decide.
393
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.
number_of_elements=${#Countries[@]} let "comparisons = $number_of_elements 1" count=1 # Pass number. while [ "$comparisons" gt 0 ] do index=0 # Beginning of outer loop
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.
394
# # Paulo Marcel Coelho Aragao suggests forloops 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[@]}" echo let "count += 1" done
# Print resultant array at end of each pass. # Increment pass count. # End of outer loop # All done.
exit 0
395
Embedded arrays in combination with indirect references create some fascinating possibilities
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"
396
Arrays enable implementing a shell script version of the Sieve of Eratosthenes. Of course, a resourceintensive application of this nature should really be written in a compiled language, such as C. It runs excruciatingly slowly as a script.
397
398
# # # Code below line will not execute, because of 'exit.' # This improved version of the Sieve, by Stephane Chazelas, #+ executes somewhat faster. # Must invoke with commandline argument (limit of primes). UPPER_LIMIT=$1 let SPLIT=UPPER_LIMIT/2 # From command line. # 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 0
Compare this arraybased prime number generator with an alternative that does not use arrays, Example A16. Arrays lend themselves, to some extent, to emulating data structures for which Bash has no native support.
399
Data=
# Contents of stack location. # Must use global variable, #+ because of limitation on function return range.
declare a stack
push() { if [ z "$1" ] then return fi let "SP = 1" stack[$SP]=$1 return } pop() { Data=
# Pop item off stack. # Empty out data item. # Stack empty?
# This also keeps SP from getting past 100, #+ i.e., prevents a runaway stack.
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
400
value1=23; push $value1 value2=skidoo; push $value2 value3=FINAL; push $value3 pop status_report pop status_report pop status_report # FINAL # skidoo # 23 # Lastin, firstout!
# 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.
Fancy manipulation of array "subscripts" may require intermediate variables. For projects involving this, again consider using a more powerful programming language, such as Perl or C.
401
# Number of terms to calculate. # Number of terms printed per line. # First two terms of series are 1.
echo echo "Qseries [$LIMIT terms]:" echo n "${Q[1]} " # Output first two terms. echo n "${Q[2]} " for ((n=3; n <= $LIMIT; n++)) # Clike loop conditions. do # Q[n] = Q[n Q[n1]] + Q[n Q[n2]] 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" let "n2 = $n 2" t0=`expr $n ${Q[n1]}` t1=`expr $n ${Q[n2]}` T0=${Q[t0]} T1=${Q[t1]} Q[n]=`expr $T0 + $T1` echo n "${Q[n]} " # n1 # n2 # n Q[n1] # n Q[n2] # Q[n Q[n1]] # Q[n Q[n2]] # Q[n Q[n1]] + Q[n Q[n2]]
if [ `expr $n % $LINEWIDTH` eq 0 ] # Format output. then # ^ Modulo operator echo # Break lines into neat chunks. fi done echo exit 0 # This is an iterative implementation of the Qseries. # The more intuitive recursive implementation is left as an exercise. # Warning: calculating this series recursively takes a VERY long time.
Bash supports only onedimensional arrays, though a little trickery permits simulating multidimensional ones.
402
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 twodimensional array. } print_alpha () { local row=0 local index echo while [ "$row" lt "$Rows" ] do local column=0 echo n " " # Lines up "square" array with rotated one. # Print out in "row major" order: #+ columns vary, #+ while row (outer loop) remains the same.
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.
403
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" then let "t1 = let "t2 = else let "t1 = let "t2 = fi ge 0 ] $column $row" $column" $column" $column + $row"
# Filter out negative array indices. # What happens if you don't do this?
Array rotation inspired by examples (pp. 143146) 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.
404
3)
A twodimensional array is essentially equivalent to a onedimensional one, but with additional addressing modes for referencing and manipulating the individual elements by row and column position. For an even more elaborate example of simulating a twodimensional array, see Example A10. For more interesting scripts using arrays, see: Example 113 and Example A23
405
27.1. /dev
The /dev directory contains entries for the physical devices that may or may not be present in the hardware. [79] The hard drive partitions containing the mounted filesystem(s) have entries in /dev, as a simple df shows.
bash$ df Filesystem Mounted on /dev/hda6 /dev/hda1 /dev/hda8 /dev/hda5
Used Available Use% 222748 3887 13262 1123624 247527 44248 334803 503704 48% 9% 4% 70% / /boot /home /usr
Among other things, the /dev directory also contains loopback devices, such as /dev/loop0. A loopback device is a gimmick that allows an ordinary file to be accessed as if it were a block device. [80] This enables mounting an entire filesystem within a single large file. See Example 168 and Example 167. A few of the pseudodevices in /dev have other specialized uses, such as /dev/null, /dev/zero, /dev/urandom, /dev/sda1, /dev/udp, and /dev/tcp. For instance: To mount a USB flash drive, append the following line to /etc/fstab. [81]
/dev/sda1 /mnt/flashdrive auto noauto,user,noatime 0 0
(See also Example A24.) Checking whether a disk is in the CDburner (softlinked to /dev/hdc):
head 1 /dev/hdc
# #
head: cannot open '/dev/hdc' for reading: No medium found (No disc in the drive.)
# head: error reading '/dev/hdc': Input/output error # (There is a disk in the drive, but it can't be read; #+ possibly it's an unrecorded CDR blank.) # # #+ # #+ Stream of characters and assorted gibberish (There is a prerecorded disk in the drive, and this is raw output a stream of ASCII and binary data.) Here we see the wisdom of using 'head' to limit the output to manageable proportions, rather than 'cat' or something similar.
# Now, it's just a matter of checking/parsing the output and taking #+ appropriate action.
406
Advanced BashScripting Guide When executing a command on a /dev/tcp/$host/$port pseudodevice file, Bash opens a TCP connection to the associated socket.
A socket is a communications node associated with a specific I/O port. (This is analogous to a hardware socket, or receptacle, 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. Getting the time from nist.gov:
bash$ cat </dev/tcp/time.nist.gov/13 53082 040318 04:26:54 68 0 0 502.3 UTC(NIST) *
# 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 enablenetredirections, 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
407
27.2. /proc
The /proc directory is actually a pseudofilesystem. The files in /proc mirror currently running system and kernel processes and contain information and statistics about them.
bash$ cat /proc/devices 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
bash$ cat /proc/interrupts CPU0 0: 84505 XTPIC 1: 3375 XTPIC 2: 0 XTPIC 5: 1 XTPIC 8: 1 XTPIC 12: 4231 XTPIC 14: 109373 XTPIC NMI: 0 ERR: 0
bash$ cat /proc/partitions major minor #blocks name 3 3 3 3 ... 0 1 2 4 3007872 52416 1 165280
rio rmerge rsect ruse wio wmerge wsect wuse running use aveq
hda 4472 22260 114520 94240 3551 18703 50384 549710 0 111550 644030 hda1 27 395 844 960 4 2 14 180 0 800 1140 hda2 0 0 0 0 0 0 0 0 0 0 0 hda4 10 0 20 210 0 0 0 0 0 210 210
408
bash$ cat /proc/acpi/battery/BAT0/info 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: IBM02K6897 serial number: 1133 battery type: LION OEM info: Panasonic
Shell scripts may extract data from certain of the files in /proc. [82]
FS=iso grep $FS /proc/filesystems # ISO filesystem support in kernel? # iso9660
kernel_version=$( awk '{ print $3 }' /proc/version ) CPU=$( awk '/model name/ {print $5}' < /proc/cpuinfo ) if [ "$CPU" = "Pentium(R)" ] then run_some_commands ... else run_different_commands ... fi
cpu_speed=$( fgrep "cpu MHz" /proc/cpuinfo | awk '{print $4}' ) # Current operating speed (in MHz) of the cpu on your machine. # On a laptop this may vary, depending on use of battery #+ or AC power.
409
+
devfile="/proc/bus/usb/devices" text="Spd" USB1="Spd=12" USB2="Spd=480"
bus_speed=$(fgrep m 1 "$text" $devfile | awk '{print $9}') # ^^^^ Stop after first match. if [ "$bus_speed" = "$USB1" ] then echo "USB 1.1 port found." # Do something appropriate for USB 1.1. fi
It is even possible to control certain peripherals with commands sent to the /proc directory.
root# echo on > /proc/acpi/ibm/light
This turns on the Thinklight in certain models of IBM/Lenovo Thinkpads. Of course, caution is advised when writing to /proc. The /proc directory contains subdirectories with unusual numerical names. Every one of these names maps to the process ID 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 stat and status files keep running statistics on the process, the cmdline file holds the commandline arguments the process was invoked with, and the exe 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.
410
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 zerolength 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".
r "/proc/$1/$PROCFILE" ]
"Process $1 running, but..." "Can't get read permission on /proc/$1/$PROCFILE." $E_NOPERMISSION # Ordinary user can't access some files in /proc.
# 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/pidnumber/exe is a symbolic link
411
# 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
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 ] do # Endless loop, script can be improved here.
if [ ! e "/proc/$pidno/$PROCFILENAME" ] # While process running, then "status" file exists. then echo "Disconnected." exit $NOTCONNECTED
412
sleep $INTERVAL echo; echo done exit 0 # As it stands, this script must be terminated with a ControlC. # # # # Exercises: Improve the script so it exits on a "q" keystroke. Make the script more userfriendly in other ways.
In general, it is dangerous to write to the files in /proc, as this can corrupt the filesystem or crash the machine.
413
Deleting contents of a file, but preserving the file itself, with all attendant permissions (from Example 21 and Example 23):
cat /dev/null > /var/log/messages # : > /var/log/messages has same effect, but does not spawn a new process. cat /dev/null > /var/log/wtmp
Automatically emptying the contents of a logfile (especially good for dealing with those nasty "cookies" sent by commercial Web sites):
ln s /dev/null ~/.netscape/cookies # All cookies now get sent to a black hole, rather than saved to disk.
Uses of /dev/zero Like /dev/null, /dev/zero is a pseudodevice file, but it actually produces a stream of nulls (binary zeros, not the ASCII kind). Output written to /dev/zero disappears, and it is fairly difficult Chapter 28. Of Zeros and Nulls 414
Advanced BashScripting Guide to actually read the nulls from there, though it can be done with od or a hex editor. The chief use for /dev/zero is in creating an initialized dummy file of predetermined length intended as a temporary swap file.
# 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
###################################################################### 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. # 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
415
Another application of /dev/zero is to "zero out" a file of a designated size for a special purpose, such as mounting a filesystem on a loopback device (see Example 168) or "securely" deleting a file (see Example 1556).
# 2K blocks (change as appropriate) # 1K (1024 byte) block size # 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" ] then mkdir $MOUNTPT fi # Test whether mount point already there, #+ so no error if this script is run #+ multiple times.
############################################################################## 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.
416
417
What's wrong with the above script? Hint: after the if. Example 292. Missing keyword
#!/bin/bash # missingkeyword.sh: What error message will this generate? for a in 1 2 3 do echo "$a" # done # Required keyword 'done' commented out in line 7. exit 0
Note that the error message does not necessarily reference the line in which the error occurs, but the line where the Bash interpreter finally becomes aware of the error. Error messages may disregard comment lines in a script when reporting the line number of a syntax error.
418
Advanced BashScripting Guide What if the script executes, but does not work as expected? This is the all too familiar logic error.
badname=`ls | grep ' '` # Try this: # echo "$badname" rm "$badname" exit 0
Try to find out what's wrong with Example 293 by uncommenting the echo "$badname" line. Echo statements are useful for seeing whether what you expect is actually what you get. In this particular case, rm "$badname" will not give the desired results because $badname should not be quoted. Placing it in quotes ensures that rm has only one argument (it will match only one filename). A partial fix is to remove to quotes from $badname and to reset $IFS to contain only a newline, IFS=$'\n'. However, there are simpler ways of going about it.
# Correct methods of deleting filenames containing spaces. rm *\ * rm *" "* rm *' '* # Thank you. S.C.
Summarizing the symptoms of a buggy script, 1. It bombs with a "syntax error" message, or 2. It runs, but does not work as expected (logic error). 3. It runs, works as expected, but has nasty side effects (logic bomb).
Tools for debugging nonworking scripts include 1. echo statements at critical points in the script to trace the variables, and otherwise give a snapshot of what is going on. Even better is an echo that echoes only when debug is on.
### debecho (debugecho), by Stefano Falsetto ### ### Will echo passed parameters only if DEBUG is set to a value. ### debecho () { if [ ! z "$DEBUG" ]; then echo "$1" >&2 # ^^^ to stderr fi
419
# whatnot
2. using the tee filter to check processes or data flows at critical points. 3. setting option flags n v x sh n scriptname checks for syntax errors without actually running the script. This is the equivalent of inserting set n or set o noexec into the script. Note that certain types of syntax errors can slip past this check. sh v scriptname echoes each command before executing it. This is the equivalent of inserting set v or set o verbose in the script. The n and v flags work well together. sh nv scriptname gives a verbose syntax check. sh x scriptname echoes the result each command, but in an abbreviated manner. This is the equivalent of inserting set x or set o xtrace in the script.
Inserting set u or set o nounset in the script runs it, but gives an unbound variable error message at each attempt to use an undeclared variable. 4. Using an "assert" function to test a variable or condition at critical points in a script. (This is an idea borrowed from C.) Example 294. Testing a condition with an assert
#!/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" ] then return $E_PARAM_ERR fi lineno=$2 if [ ! then echo echo exit # else $1 ]
420
# 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 $?
5. Using the $LINENO variable and the caller builtin. 6. trapping at exit. The exit command in a script triggers a signal 0, terminating the process, that is, the script itself. [83] It is often useful to trap the exit, forcing a "printout" of variables, for example. The trap must be the first command in the script. Trapping signals trap Specifies an action on receipt of a signal; also useful for debugging. A signal is simply 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 ControlC, sends a user interrupt, an INT signal, to a running program.
trap '' 2 # Ignore interrupt 2 (ControlC), with no action specified. trap 'echo "ControlC disabled."' 2 # Message when ControlC pressed.
421
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 controlc. 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" ] # then echo "Online" rm f $TEMPFILE # exit $ONLINE else echo n "." # #+ fi Quotes necessary because of possible spaces.
The n option to echo suppresses newline, so you get continuous rows of dots.
422
# Note: if you change the KEYWORD variable to "Exit", #+ this script can be used while online #+ 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 ControlC 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 "Online" # Exercise: Discuss the relative strengths and weaknesses # of each of these various approaches.
The DEBUG argument to trap causes a specified action to execute after every command in a script. This permits tracing variables, for example. Example 297. Tracing a variable
#!/bin/bash trap 'echo "VARIABLETRACE> \$variable = \"$variable\""' DEBUG # Echoes the value of $variable after every command. variable=29 echo "Just initialized \"\$variable\" to $variable." let "variable *= 3" echo "Just multiplied \"\$variable\" by 3." exit $?
423
Output of script: VARIABLETRACE> $variable = "" VARIABLETRACE> $variable = "29" Just initialized "$variable" to 29. VARIABLETRACE> $variable = "29" VARIABLETRACE> $variable = "87" Just multiplied "$variable" by 3. VARIABLETRACE> $variable = "87"
Of course, the trap command has other uses aside from debugging.
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
424
#!/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.
425
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 shift PARAMETRI=( "$@" ) # Number of concurrent process # 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
426
Advanced BashScripting Guide trap '' SIGNAL (two adjacent apostrophes) disables SIGNAL for the remainder of the script. trap SIGNAL restores the functioning of SIGNAL once more. This is useful to protect a critical portion of a script from an undesirable interrupt.
trap '' 2 command command command trap 2 # Signal 2 is ControlC, now disabled.
# Reenables ControlC
Version 3 of Bash adds the following special variables for use by the debugger. 1. $BASH_ARGC 2. $BASH_ARGV 3. $BASH_COMMAND 4. $BASH_EXECUTION_STRING 5. $BASH_LINENO 6. $BASH_SOURCE 7. $BASH_SUBSHELL
427
set v # Command echoing on. command ... command set +v # Command echoing off. command exit 0
An alternate method of enabling options in a script is to specify them immediately following the #! script header.
#!/bin/bash x # # Body of script follows.
428
Advanced BashScripting Guide It is also possible to enable script options from the command line. Some options that will not work with set are available this way. Among these are i, force script to run interactive. bash v scriptname bash o verbose scriptname 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 double dash or by o).
Table 301. Bash options Abbreviation C D a b c ... e f i n o OptionName o posix o pipefail p r s t u v x Name Effect noclobber Prevent overwriting of files by redirection (may be overridden by >|) (none) List doublequoted strings prefixed by $, but do not execute commands in script allexport Export all defined variables notify Notify when jobs running in background terminate (not of much use in a script) (none) Read commands from ... errexit Abort script at first error, when a command exits with nonzero status (except in until or while loops, iftests, list constructs) noglob Filename expansion (globbing) disabled interactive Script runs in interactive mode noexec Read commands in script, but do not execute them (syntax check) (none) Invoke the OptionName option POSIX Change the behavior of Bash, or invoked script, to conform to POSIX standard. pipe Causes a pipeline to return the exit status of the last command in the pipe failure that returned a nonzero return value. privileged Script runs as "suid" (caution!) restricted Script runs in restricted mode (see Chapter 21). stdin Read commands from stdin (none) Exit after first command nounset Attempt to use undefined variable outputs error message, and forces an exit verbose Print each command to stdout before executing it xtrace Similar to v, but expands commands (none) End of options flag. All other arguments are positional parameters. (none) Unset positional parameters. If arguments given ( arg1 arg2), positional parameters set to arguments.
429
xyz((!*=value2 # Causes severe problems. # As of version 3 of Bash, periods are not allowed within variable names.
Using a hyphen or other reserved characters in a variable name (or function name).
var1=23 # Use 'var_1' instead. functionwhatever () # Error # Use 'function_whatever ()' instead.
# As of version 3 of Bash, periods are not allowed within function names. function.whatever () # Error # Use 'functionWhatever ()' instead.
Using the same name for a variable and a function. This can make a script difficult to understand.
do_something () { echo "This function does something with \"$1\"." } do_something=do_something do_something do_something # All this is legal, but highly confusing.
Using whitespace inappropriately. In contrast to other programming languages, Bash can be quite finicky about whitespace.
var1 = 23 # 'var1=23' is correct. # On line above, Bash attempts to execute command "var1" # with the arguments "=" and "23". let c = $a $b # 'let c=$a$b' or 'let "c = $a $b"' are correct.
430
Not terminating with a semicolon the final command in a code block within curly brackets.
{ ls l; df; echo "Done." } # bash: syntax error: unexpected end of file { ls l; df; echo "Done."; } # ^
Assuming uninitialized variables (variables before a value is assigned to them) are "zeroed out". An uninitialized variable has a value of null, not zero.
#!/bin/bash echo "uninitialized_var = $uninitialized_var" # uninitialized_var =
Mixing up = and eq in a test. Remember, = is for comparing literal variables and eq for integers.
if [ "$a" = 273 ] if [ "$a" eq 273 ] # Is $a an integer or string? # If $a is an integer.
a=273.0
# Not an integer.
if [ "$a" = 273 ] then echo "Comparison works." else echo "Comparison does not work." fi # Comparison does not work. # Same with a=" 273" and a="0273".
# Likewise, problems trying to use "eq" with noninteger values. if [ "$a" eq 273.0 ] then echo "a = $a" fi # Aborts with an error message. # test.sh: [: 273.0: integer expression expected
431
echo ""
while [ "$number" \< 5 ] do echo n "$number " let "number += 1" done
# # # #+ #+
1 2 3 4 This *seems to work, but . . . it actually does an ASCII comparison, 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
Sometimes variables within "test" brackets ([ ]) need to be quoted (double quotes). Failure to do so may cause unexpected behavior. See Example 76, Example 195, and Example 96. 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 root, of course). Attempting to use as a redirection operator (which it is not) will usually result in an unpleasant surprise.
command1 2> | command2 # Trying to redirect error output of command1 into a pipe . . . # . . . will not work.
432
Using Bash version 2+ functionality may cause a bailout with error messages. Older Linux machines may have version 1.XX of Bash as the default installation.
#!/bin/bash minimum_version=2 # Since Chet Ramey is constantly adding features to Bash, # you may set $minimum_version to 2.XX, 3.XX, or whatever is appropriate. E_BAD_VERSION=80 if [ "$BASH_VERSION" \< "$minimum_version" ] then echo "This script works only with Bash, version $minimum or greater." echo "Upgrade strongly recommended." exit $E_BAD_VERSION fi ...
Using Bashspecific functionality in a Bourne shell script (#!/bin/sh) on a nonLinux machine may cause unexpected behavior. A Linux system usually aliases sh to bash, but this does not necessarily hold true for a generic UNIX machine. 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 "feature" that, although the maximum value of an exit or return value was 255, that limit did not apply to negative integers. Unfortunately, in version 2.05b and later, that loophole disappeared. See Example 239. A script with DOStype newlines (\r\n) will fail to execute, since #!/bin/bash\r\n is not recognized, not the same as the expected #!/bin/bash\n. The fix is to convert the script to UNIXstyle newlines.
#!/bin/bash echo "Here" unix2dos $0 chmod 755 $0 # Script changes itself to DOS format. # Change back to execute permission. # The 'unix2dos' command removes execute permission. # Script tries to run itself again. # But it won't work as a DOS file.
./$0
A shell script headed by #!/bin/sh will not run in full Bashcompatibility mode. Some Bashspecific functions might be disabled. Scripts that need complete access to all the Bashspecific extensions should start with #!/bin/bash. Putting whitespace in front of the terminating limit string of a here document will cause unexpected behavior in a script.
433
Advanced BashScripting Guide A script may not export variables back to its parent process, the shell, or to the environment. Just as we learned in biology, a child process can inherit from a parent, but not vice versa.
WHATEVER=/home/bozo export WHATEVER exit 0 bash$ echo $WHATEVER bash$
Sure enough, back at the command prompt, $WHATEVER remains unset. Setting and manipulating variables in a subshell, then attempting to use those same variables outside the scope of the subshell will result an unpleasant surprise.
# Unset. # Unchanged.
Piping echo output to a read may produce unexpected results. In this scenario, the read acts as if it were running in a subshell. Instead, use the set command (as in Example 1418).
Example 313. Piping the output of echo to a read Chapter 31. Gotchas 434
# # Try the following alternative. var=`echo "one two three"` set $var a=$1; b=$2; c=$3 echo "" echo "a = $a" echo "b = $b" echo "c = $c" # Reassignment
# # # Note also that an echo to a 'read' works within a subshell. However, the value of the variable changes *only* within the subshell. # Starting all over again.
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
In fact, as Anthony Richardson points out, piping to any loop can cause a similar problem.
# Loop piping troubles. # This example by Anthony Richardson, #+ with addendum by Wilbert Berendsen.
435
foundone=false find $HOME type f atime +30 size 100k | while true do read f echo "$f is over 100KB and has not been accessed in over 30 days" echo "Consider moving the file to archives." foundone=true # echo "Subshell level = $BASH_SUBSHELL" # Subshell level = 1 # Yes, we're inside a subshell. # done # foundone will always be false here since it is #+ set to true inside a subshell if [ $foundone = false ] then echo "No files need archiving." fi # =====================Now, here is the correct way:================= foundone=false for f in $(find $HOME type f atime +30 size 100k) # No pipe here. do echo "$f is over 100KB and has not been accessed in over 30 days" echo "Consider moving the file to archives." foundone=true done if [ $foundone = false ] then echo "No files need archiving." fi # ==================And here is another alternative================== # Places the part of the script that reads the variables #+ within a code block, so they share the same subshell. # Thank you, W.B. find $HOME type f atime +30 size 100k | { foundone=false while read f do echo "$f is over 100KB and has not been accessed in over 30 days" echo "Consider moving the file to archives." foundone=true done if ! $foundone then echo "No files need archiving." fi }
A related problem occurs when trying to write the stdout of a tail f piped to grep. Chapter 31. Gotchas 436
Using "suid" commands within scripts is risky, as it may compromise system security. [84] Using shell scripts for CGI programming may be problematic. Shell script variables are not "typesafe", and this can cause undesirable behavior as far as CGI is concerned. Moreover, it is difficult to "crackerproof" shell scripts. Bash does not handle the double slash (//) string correctly. Bash scripts written for Linux or BSD systems may need fixups to run on a commercial UNIX (or Apple OSX) 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 tr. Danger is near thee Beware, beware, beware, beware. Many brave hearts are asleep in the deep. So beware Beware. A.J. Lamb and H.W. Petrie
437
# # cleanup_pfiles () # Removes all files in designated directory. # Parameter: $target_directory # Returns: 0 on success, $E_BADDIR if something went wrong. # cleanup_pfiles () { if [ ! d "$1" ] # Test if target directory exists. then echo "$1 is not a directory." return $E_BADDIR fi rm f "$1"/* return 0 # Success. } cleanup_pfiles $projectdir exit 0
Be sure to put the #!/bin/bash at the beginning of the first line of the script, preceding any comment headers. Avoid using "magic numbers," [85] that is, "hardwired" literal constants. Use meaningful variable names instead. This makes the script easier to understand and permits making changes and updates Chapter 32. Scripting With Style 438
MAXVAL=10 # All caps used for a script constant. while [ "$index" le "$MAXVAL" ] ...
E_NOTFOUND=75 if [ ! e "$filename" ] then echo "File $filename not found." exit $E_NOTFOUND fi
_uservariable=23 # Permissible, but not recommended. # It's better for userdefined variables not to start with an underscore. # Leave that for system variables.
Advanced BashScripting Guide Ender suggests using the exit codes in /usr/include/sysexits.h in shell scripts, though these are primarily intended for C and C++ programming. Use standardized parameter flags for script invocation. Ender proposes the following set of flags.
a b c d e h l m n r s u v V All: Return all information (including hidden file info). Brief: Short version, usually for other scripts. Copy, concatenate, etc. Daily: Use information from the whole day, and not merely information for a specific instance/user. Extended/Elaborate: (often does not include hidden file info). Help: Verbose usage w/descs, aux info, discussion, help. See also V. Log output of script. Manual: Launch manpage for base command. Numbers: Numerical data only. Recursive: All files in a directory (and/or all subdirs). Setup & File Maintenance: Config files for this script. Usage: List of invocation flags for the script. Verbose: Human readable output, more or less formatted. Version / License / Copy(right|left) / Contribs (email too).
See also Section F.1. Break complex scripts into simpler modules. Use functions where appropriate. See Example 344. Don't use a complex construct where a simpler one will do.
COMMAND if [ $? eq 0 ] ... # Redundant and nonintuitive. if COMMAND ... # More concise (if perhaps not quite as legible).
... 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, "Could someone be proud of this code?" Landon Noll
440
Let us consider an interactive script to be one that requires input from the user, usually with read statements (see Example 143). "Real life" 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 xterm. Init and startup scripts are necessarily noninteractive, since they must run without human intervention. Many administrative and system maintenance scripts are likewise noninteractive. Unvarying repetitive tasks cry out for automation by noninteractive scripts. Noninteractive scripts can run in the background, but interactive ones hang, waiting for input that never comes. Handle that difficulty by having an expect script or embedded here document feed input to an interactive script running as a background job. In the simplest case, redirect a file to supply input to a read statement (read variable <file). These particular workarounds make possible general purpose scripts that run in either interactive or noninteractive modes. If a script needs to test whether it is running in an interactive shell, it is simply a matter of finding whether the prompt variable, $PS1 is set. (If the user is being prompted for input, then the script needs to display a prompt.)
if [ z $PS1 ] # no prompt? then # noninteractive ... else # interactive ...
441
Alternatively, the script can test for the presence of option "i" in the $ flag.
case $ in *i*) # interactive shell ;; *) # noninteractive shell ;; # (Courtesy of "UNIX F.A.Q.," 1993)
Scripts may be forced to run in interactive mode with the i option or with a #!/bin/bash i header. Be aware that this can cause erratic script behavior or show error messages even when no error is present.
# Same as # sed e '/^$/d' filename # invoked from the command line. sed e /^$/d "$1" # The 'e' means an "editing" command follows (optional here). # '^' is the beginning of line, '$' is the end. # This match lines with nothing between the beginning and the end, #+ blank lines. # The 'd' is the delete command.
442
exit 0
if [ $# ne "$ARGS" ] # Test number of arguments to script (always a good idea). then echo "Usage: `basename $0` oldpattern newpattern 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
# 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 literature on 'sed' for an indepth explanation. # Successful invocation of the script returns 0.
exit 0
443
OPTIONS="$@"
# Log it. echo "`date` + `whoami` + $OPERATION "$@"" >> $LOGFILE # Now, do it. exec $OPERATION "$@" # It's necessary to do the logging before the operation. # Why?
Hex
Character" "
# Header.
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
# # # # # # # # # # # # #
Hex 21 22 23 24
Character ! " # $
7a 7b 7c 7d
z { | }
# Redirect the output of this script to a file #+ or pipe it to "more": sh prasc.sh | more
444
# 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
For those scripts needing a single doitall tool, a Swiss army knife, there is Perl. Perl combines the capabilities of sed and awk, and throws in a large subset of C, to boot. It is modular and contains support for everything ranging from objectoriented programming up to and including the kitchen sink. Short Perl scripts lend themselves to embedding in shell scripts, and there may even be some substance to the claim that Perl can totally replace shell scripting (though the author of this document remains skeptical).
445
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.
bash$ perl x bashandperl.sh Greetings from the Perl part of the script.
446
city="New York" # Again, all of the comparisons below are equivalent. test "$city" \< Paris && echo "Yes, Paris is greater than $city" # Greater ASCII order. /bin/test "$city" \< Paris && echo "Yes, Paris is greater than $city" [ "$city" \< Paris ] && echo "Yes, Paris is greater than $city" [[ $city < Paris ]] && echo "Yes, Paris is greater than $city" # Need not quote $city. # Thank you, S.C.
33.4. Recursion
Can a script recursively call itself? Indeed.
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.
447
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 #+ unhashmarked comments and data after this point.
# Sample "phonebook" datafile: John Doe 1555 Main St., Baltimore, MD 21228 (410) 2223333 Mary Moe 9899 Jones Blvd., Warren, NH 03787 (603) 8983232 Richard Roe 856 E. 7th St., New York, NY 10009 (212) 3334567 Sam Roe 956 E. 8th St., New York, NY 10009 (212) 4445678 Zoe Zenobia 4481 N. Baker St., San Francisco, SF 94338 (415) 5011631 # $bash pb.sh Roe Richard Roe 856 E. 7th St., New York, NY 10009 Sam Roe 956 E. 8th St., New York, NY 10009 $bash pb.sh Roe Sam Sam Roe 956 E. 8th St., New York, NY 10009
(212) 4445678
# When more than one argument is passed to this script, #+ it prints *only* the line(s) containing all the arguments.
448
# 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.
Too many levels of recursion can exhaust the script's stack space, causing a segfault.
449
clear
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 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 "ones, 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 Floppy Dr." echo "Hardscrabble, CO 80753" echo "(303) 7349874" echo "(303) 7349892 fax" echo "revans@zzy.net" echo "Business partner & old friend" ;; "J" | "j" ) echo echo "Mildred Jones" echo "249 E. 7th St., Apt. 19" echo "New York, NY 10009" echo "(212) 5332814" echo "(212) 5339972 fax" echo "milliej@loisaida.com" echo "Girlfriend" echo "Birthday: Feb. 11" ;; # Add info for Smith & Zane later. * )
450
###################################################################### ### draw_box function doc ### # The "draw_box" function lets the user #+ draw a box into 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(){
451
# 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` BOX_WIDTH=`expr $4 1` T_ROWS=`tput lines` T_COLS=`tput cols` # #+ # #+ 1 correction needed because angle char "+" is a part of both box height and width. Define current terminal dimension 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(){ echo e "\E[${1};${2}H"$3 } echo ne "\E[3${5}m" # start drawing the box count=1 for (( r=$1; count<=$BOX_HEIGHT; r++)); do 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 # Draw vertical lines using #+ plot_char function. # Function within a function.
452
# 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.
The simplest, and perhaps most useful ANSI escape sequence is bold text, \033[1m ... \033[0m. The \033 represents an escape, the "[1" turns on the bold attribute, while the "[0" switches it off. The "m" terminates each term of the escape sequence.
bash$ echo e "\033[1mThis is bold text.\033[0m"
A similar escape sequence switches on the underline attribute (on an rxvt and an aterm).
bash$ echo e "\033[4mThis is underlined text.\033[0m"
With an echo, the e option enables the escape sequences. Other escape sequences change the text and/or background color.
bash$ echo e '\E[34;47mThis prints in blue.'; tput sgr0
453
It's usually advisable to set the bold attribute for lightcolored foreground text. The tput sgr0 restores the terminal settings to normal. Omitting this lets all subsequent output from that particular terminal remain blue. Since tput sgr0 fails to restore terminal settings under certain circumstances, echo ne \E[0m may be a better choice.
Use the following template for writing colored text on a colored background. echo e '\E[COLOR1;COLOR2mSome text goes here.' The "\E[" begins the escape sequence. The semicolonseparated numbers "COLOR1" and "COLOR2" 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 nonoverlapping ranges.) The "m" terminates the escape sequence, and the text begins immediately after that. Note also that single quotes enclose the remainder of the command sequence following the echo e. The numbers in the following table work for an rxvt terminal. Results may vary for other terminal emulators.
Table 331. Numbers representing colors in Escape Sequences Color black red green yellow blue magenta cyan white Foreground 30 31 32 33 34 35 36 37 Background 40 41 42 43 44 45 46 47
454
cecho ()
{ local default_msg="No message passed." # Doesn't really need to be a local variable. message=${1:$default_msg} color=${2:$black} echo e "$color" echo "$message" Reset return } # Defaults to default message. # Defaults to black, if not specified.
# Reset to normal.
# 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.
455
This function moves the cursor to line $1 column $2 and then prints $3.
456
# Define current terminal dimension. N_COLS=`tput cols` N_LINES=`tput lines` # Need at least a 20LINES X 80COLUMNS terminal. Check it. if [ $N_COLS lt 80 ] || [ $N_LINES lt 20 ]; then echo "`basename $0` needs a 80cols X 20lines 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 move_and_echo move_and_echo move_and_echo move_and_echo move_and_echo 3 3 1 1 2 2 1 "START 1" 75 FINISH 5 "|" 80 "|" 5 "|" 80 "|"
457
# 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 positionfile and oddsfile for every "horse".
458
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'
"
459
460
461
# 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
See also Example A22. There is, however, a major problem with all this. ANSI escape sequences are emphatically nonportable. What works fine on some terminal emulators (or the console) may work differently, or not at all, on others. A "colorized" script that looks stunning on the script author's machine may produce unreadable output on someone else's. This greatly compromises the usefulness of "colorizing" scripts, and possibly relegates this technique to the status of a gimmick or even a "toy". Moshe Jacobson's color utility (http://runslinux.net/projects.html#color) considerably simplifies using ANSI escape sequences. It substitutes a clean and logical syntax for the clumsy constructs just discussed. Henry/teikedvl has likewise created a utility (http://scriptechocolor.sourceforge.net/) to simplify creation of colorized scripts.
33.6. Optimizations
Most shell scripts are quick 'n dirty solutions to noncomplex 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? Check the loops in the script. Time consumed by repetitive operations adds up quickly. If at all possible, remove timeconsuming operations from within loops. Use builtin commands in preference to system commands. Builtins execute faster and usually do not launch a subshell when invoked. Avoid unnecessary commands, particularly in a pipe.
cat "$file" | grep "$word" grep "$word" "$file" # The above command lines have an identical effect, #+ but the second runs faster since it launches one fewer subprocess.
462
Advanced BashScripting Guide Use the time and times tools to profile computationintensive commands. Consider rewriting timecritical code sections in C, or even in assembler. 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 awk or Perl. Write your scripts in a structured, coherent form, so they can be reorganized and tightened up as necessary. Some of the optimization techniques applicable to highlevel languages may work for scripts, but others, such as loop unrolling, are mostly irrelevant. Above all, use common sense. For an excellent demonstration of how optimization can drastically reduce the execution time of a script, see Example 1543.
if [ numberofarguments isnotequalto "$ARGCOUNT" ] # ^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ # Can't figure out how to code this . . . #+ . . . so write it in pseudocode. then echo "Usage: nameofscript name" # ^^^^^^^^^^^^^^ More pseudocode. exit $E_WRONGARGS fi . . . exit 0
# Later on, substitute working code for the pseudocode. # Line 6 becomes: if [ $# ne "$ARGCOUNT" ] # Line 12 becomes: echo "Usage: `basename $0` name"
For an example of using pseudocode, see the Square Root exercise. 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.
# Append (>>) following to end of each script tracked.
463
# Of course, SAVE_FILE defined and exported as environmental variable in ~/.bashrc #+ (something like ~/.scriptsrun)
The >> operator appends lines to a file. What if you wish to prepend a line to an existing file, that is, to paste it in at the beginning?
file=data.txt title="***This is the title line of data text file***" echo $title | cat $file >$file.new # "cat " concatenates stdout to $file. # End result is #+ to write a new file with $title appended at *beginning*.
This is a simplified variant of the Example 1813 script given earlier. And, of course, sed can also do this. A shell script may act as an embedded command inside another shell script, a Tcl or wish script, or even a Makefile. It can be invoked as an external shell command in a C program using the system() call, i.e., system("script_name");. Setting a variable to the contents of an embedded sed or awk script increases the readability of the surrounding shell wrapper. See Example A1 and Example 1420. Put together files containing your favorite and most useful definitions and functions. As necessary, "include" one or more of these "library files" in scripts with either the dot (.) or source command.
# SCRIPT LIBRARY # # Note: # No "#!" here. # No "live code" either.
# Useful variable definitions ROOT_UID=0 E_NOTROOT=101 MAXRETVAL=255 SUCCESS=0 FAILURE=1 # Root has $UID 0. # Not root user error. # Maximum (positive) return value of a function.
# Functions Usage () { if [ z "$1" ] then msg=filename else # "Usage:" message. # No arg passed.
464
Check_if_root () # Check if root running script. { # From "ex39.sh" example. if [ "$UID" ne "$ROOT_UID" ] then echo "Must be root to run this script." exit $E_NOTROOT fi }
CreateTempfileName () # Creates a "unique" temp filename. { # From "ex51.sh" example. prefix=temp suffix=`eval date +%s` Tempfilename=$prefix.$suffix }
isalpha2 () # Tests whether *entire string* is alphabetic. { # From "isalpha.sh" example. [ $# eq 1 ] || return $FAILURE case $1 in *[!azAZ]*|"") return $FAILURE;; *) return $SUCCESS;; esac # Thanks, S.C. }
abs () { E_ARGERR=999999 if [ z "$1" ] then return $E_ARGERR fi if [ "$1" ge 0 ] then absval=$1 else let "absval = (( 0 $1 ))" fi return $absval }
# # # # #
# Converts string(s) passed as argument(s) #+ to lowercase. # If no argument(s) passed, #+ send error message #+ (Cstyle voidpointer error message)
465
echo "$@" | tr AZ az # Translate all passed arguments ($@). return # Use command substitution to set a variable to function output. # For example: # oldvar="A seT of miXedcaSe LEtTerS" # newvar=`tolower "$oldvar"` # echo "$newvar" # a set of mixedcase letters # # Exercise: Rewrite this function to change lowercase passed argument(s) # to uppercase ... toupper() [easy]. }
## The "rf" options to "rm" are very dangerous, ##+ especially with wildcards.
#+ # #+ #+
Line continuation. This is line 1 of a multiline comment, and this is the final line.
#* Note. #o List item. #> Another point of view. while [ "$var1" != "end" ]
466
Compare this with using here documents to comment out code blocks. Using the $? exit status variable, a script may test if a parameter contains only digits, so it can be treated as an integer.
#!/bin/bash SUCCESS=0 E_BADINPUT=65 test "$1" ne 0 o "$1" eq 0 2>/dev/null # An integer is either equal to 0 or not equal to 0. # 2>/dev/null suppresses error message. if [ $? ne "$SUCCESS" ] then echo "Usage: `basename $0` integerinput" exit $E_BADINPUT fi let "sum = $1 + 25" echo "Sum = $sum" # Would give error if $1 not integer.
# Any variable, not just a command line parameter, can be tested this way. exit 0
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 stdout (usually with echo) the "return value," and assign this to a variable. This is actually a variant of command substitution. Example 3315. Return value trickery
#!/bin/bash # multiplication.sh multiply () { local product=1 until [ z "$1" ] do let "product *= $1" shift done echo $product } mult1=15383; mult2=25211 val1=`multiply $mult1 $mult2` echo "$mult1 X $mult2 = $val1" # 387820813 mult1=25; mult2=5; mult3=20 val2=`multiply $mult1 $mult2 $mult3` # Until uses up arguments passed... # Multiplies params passed. # Will accept a variable number of args.
467
The same technique also works for alphanumeric strings. This means that a function can "return" a nonnumeric value.
capitalize_ichar () { string0="$@" firstchar=${string0:0:1} string1=${string0:1} # Capitalizes initial character #+ of argument string(s) passed. # Accepts multiple arguments. # First character. # Rest of string(s).
FirstChar=`echo "$firstchar" | tr az AZ` # Capitalize first character. echo "$FirstChar$string1" } newstring=`capitalize_ichar "every sentence should start with a capital letter."` echo "$newstring" # Every sentence should start with a capital letter. # Output to stdout.
It is even possible for a function to "return" multiple values with this method.
468
Next in our bag of trick are techniques for passing an array to a function, then "returning" an array back to the main body of the script. Passing an array involves loading the spaceseparated elements of the array into a variable with command substitution. Getting an array back as the "return value" from a function uses the previously mentioned strategem of echoing the array in the function, then invoking command substitution and the ( ... ) operator to assign it to an array.
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 spaceseparated elements of the original array. # # Note that 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"
469
For a more elaborate example of passing arrays to functions, see Example A10. Using the double parentheses construct, it is possible to use Cstyle syntax for setting and incrementing/decrementing variables and in for and while loops. See Example 1012 and Example 1017. Setting the path and umask at the beginning of a script makes it more "portable" more likely to run on a "foreign" machine whose user may have bollixed up the $PATH and umask.
#!/bin/bash PATH=/bin:/usr/bin:/usr/local/bin ; export PATH umask 022 # Files that the script creates will have 755 permission. # Thanks to Ian D. Allen, for this tip.
A useful scripting technique is to repeatedly feed the output of a filter (by piping) back to the same filter, but with a different set of arguments and/or options. Especially suitable for this are tr and grep.
# From "wstrings.sh" example. wlist=`strings "$1" | tr AZ az | tr '[:space:]' Z | \ tr cs '[:alpha:]' Z | tr s '\173\377' Z | tr Z ' '`
Uses "anagram" utility that is part of the author's "yawl" word list package. http://ibiblio.org/pub/Linux/libs/yawl0.3.2.tar.gz http://personal.riverusers.com/~thegrendel/yawl0.3.2.tar.gz # End of code.
exit 0
bash$ sh agram.sh
470
# # # # #+
Exercises: Modify this script to take the LETTERSET as a commandline parameter. Parameterize the filters in lines 11 13 (as with $FILTER), so that they can be specified by passing arguments to a function.
See also Example 273, Example 1523, and Example A9. Use "anonymous here documents" to comment out blocks of code, to save having to individually comment out each line with a #. See Example 1811. Running a script on a machine that relies on a command that might not be installed is dangerous. Use whatis to avoid potential problems with this.
CMD=command1 PlanB=command2 # First choice. # Fallback option.
command_test=$(whatis "$CMD" | grep 'nothing appropriate') # If 'command1' not found on system , 'whatis' will return #+ "command1: nothing appropriate." # # A safer alternative is: # command_test=$(whereis "$CMD" | grep \/) # But then the sense of the following test would have to be reversed, #+ since the $command_test variable holds content only if #+ the $CMD exists on the system. # (Thanks, bojster.)
# Check whether command present. # Run command1 with options. # Otherwise, #+ run command2.
An ifgrep test may not return expected results in an error case, when text is output to stderr, rather that stdout.
if ls l nonexistent_filename | grep q 'No such file or directory' then echo "File \"nonexistent_filename\" does not exist." fi
471
The runparts command is handy for running a set of command scripts in a particular sequence, especially in combination with cron or at. It would be nice to be able to invoke XWindows widgets from a shell script. There happen to exist several packages that purport to do so, namely Xscript, Xmenu, and widtools. The first two of these no longer seem to be maintained. Fortunately, it is still possible to obtain widtools here. The widtools (widget tools) package requires the XForms library to be installed. Additionally, the Makefile 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). The dialog family of tools offers a method of calling "dialog" widgets from a shell script. The original dialog utility works in a text console, but its successors, gdialog, Xdialog, and kdialog use XWindowsbased widget sets.
# Input error in dialog box. E_INPUT=65 # 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
472
# 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 $?
For other methods of scripting with widgets, try Tk or wish (Tcl derivatives), PerlTk (Perl with Tk extensions), tksh (ksh with Tk extensions), XForms4Perl (Perl with XForms extensions), GtkPerl (Perl with Gtk extensions), or PyQt (Python with Qt extensions). For doing multiple revisions on a complex script, use the rcs Revision Control System package. Among other benefits of this is automatically updated ID header tags. The co command in rcs does a parameter replacement of certain reserved key words, for example, replacing #$Id$ in a script with something like:
#$Id: helloworld.sh,v 1.1 2004/10/16 02:43:05 bozo Exp $
473
Advanced BashScripting Guide Unfortunately, according to an article in the October, 2005 Linux Journal, 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.
Note that /bin/sh is a link to /bin/bash in Linux and certain other flavors of UNIX, and a script invoked this way disables extended Bash functionality. Most Bash scripts will run asis under ksh, and viceversa, since Chet Ramey has been busily porting ksh features to the latest versions of Bash. On a commercial UNIX machine, scripts using GNUspecific 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 "bigiron" UNIX. Caldera's release of the source to many of the original UNIX utilities has accelerated the trend.
Bash has certain features that the traditional Bourne shell lacks. Among these are: Certain extended invocation options Command substitution using $( ) notation Certain string manipulation operations Process substitution Bashspecific builtins See the Bash F.A.Q. for a complete listing. Chapter 33. Miscellany 474
475
The version 2 update of the classic Bash scripting language added array variables, [89] string and parameter expansion, and a better method of indirect variable references, among other features. Example 341. String expansion
#!/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. 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' # Bash # Octal equivalent of characters. exit 0
echo "Now a = ${!a}" # Indirect reference. # The ${!variable} notation is greatly superior to the old "eval var1=\$$var2" echo t=table_cell_3 table_cell_3=24 echo "t = ${!t}" table_cell_3=387 echo "Value of t changed to ${!t}"
# t = 24 # 387
476
exit 0
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 echo echo echo break done
"Catalog number $catalog_number:" "There are ${!Inv} of [${!Val} ohm / ${!Pdissip} watt] resistors in stock." "These are located in bin # ${!Loc}." "Their color code is \"${!Ccode}\"."
477
# 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
Example 344. Using arrays and other miscellaneous trickery to deal four random hands from a deck of cards
#!/bin/bash # Cards: # 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, 3dimensional 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
478
479
# Structured programming: # Entire program logic modularized in functions. #================ seed_random initialize_Deck initialize_Suits initialize_Cards deal_cards #================ exit 0
# 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.
480
# Or just . . . echo {a..z} echo {z..a} echo {3..2} echo {X..d} # # # # # # #+ # # 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 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 Works backwards, too. 3 2 1 0 1 2 X Y Z [ ] ^ _ ` a b c d Shows (some of) the ASCII characters between Z and a, but don't rely on this type of behavior because . . . {]..a} Why?
echo {]..a}
The ${!array[@]} operator, which expands to all the indices of a given array.
#!/bin/bash Array=(elementzero elementone elementtwo elementthree) echo ${Array[0]} # elementzero # First element of array. # 0 1 2 3 # All the indices of Array.
echo ${!Array[@]}
for i in ${!Array[@]} do echo ${Array[i]} # elementzero # elementone # elementtwo # elementthree # # All the elements in Array. done
The =~ Regular Expression matching operator within a double brackets test expression. (Perl has a similar operator.)
#!/bin/bash variable="This is a fine mess." echo "$variable" if [[ "$variable" =~ "T*fin*es*" ]] # Regex matching with =~ operator within [[ double brackets ]]. then echo "match found" # match found fi
481
if [[ "$input" =~ "[19][09][09][09][09][09][09][09][09]" ]] # NNNNNNNNN # Where each N is a digit. # But, initial digit must not be 0. then echo "Social Security number." # Process SSN. else echo "Not a Social Security number!" # Or, ask for corrected input. fi
For additional examples of using the =~ operator, see Example A30, Example 1814, Example A36, and Example A25. The new set o pipefail option is useful for debugging pipes. If this option is set, then the exit status of a pipe is the exit status of the last command in the pipe to fail (return a nonzero value), rather than the actual final command in the pipe. See Example 1540. The update to version 3 of Bash breaks a few scripts that worked under earlier versions. Test critical legacy scripts to make sure they still work! As it happens, a couple of the scripts in the Advanced Bash Scripting Guide had to be fixed up (see Example A20 and Example 94, for instance).
# 15Hello
Here, += functions as a string concatenation operator. Note that its behavior in this particular context is different than within a let construct.
a=1 echo $a let a+=5 echo $a
482
483
Advanced BashScripting Guide time. You will get neither help nor sympathy.
35.5. Credits
Community participation made this project possible. The author gratefully acknowledges that writing this book would have been an impossible task without help and feedback from all you people out there. Philippe Martin 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 feloy@free.fr. Philippe Martin also pointed out that positional parameters past $9 are possible using {bracket} notation. (See Example 45). Stphane Chazelas 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 editor for this document. Merci beaucoup! Paulo Marcel Coelho Aragao offered many corrections, both major and minor, and contributed quite a number of helpful suggestions. I would like to especially thank Patrick Callahan, Mike Novak, and Pal Domokos for catching bugs, pointing out ambiguities, and for suggesting clarifications and changes. Their lively discussion of shell scripting and general documentation issues inspired me to try to make this document more readable. 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 example script. Chapter 35. Endnotes 485
Advanced BashScripting Guide Many thanks to Jordi Sanfeliu for giving permission to use his fine tree script (Example A17), and to Rick Boivie for revising it. Likewise, thanks to Michel Charpentier for permission to use his dc factoring script (Example 1548). Kudos to Noah Friedman for permission to use his string function script (Example A18). Emmanuel Rouat suggested corrections and additions on command substitution and aliases. He also contributed a very nice sample .bashrc file (Appendix K). Heiner Steven kindly gave permission to use his base conversion script, Example 1544. He also made a number of corrections and many helpful suggestions. Special thanks. Rick Boivie contributed the delightfully recursive pb.sh script (Example 339), revised the tree.sh script (Example A17), and suggested performance improvements for the monthlypmt.sh script (Example 1543). Florian Wisser enlightened me on some of the fine points of testing strings (see Example 76), and on other matters. Oleg Philon sent suggestions concerning cut and pidof. Michael Zick extended the empty array example to demonstrate some surprising array properties. He also contributed the isspammer scripts (Example 1538 and Example A29). MarcJano Knopp sent corrections and clarifications on DOS batch files. Hyun Jin Cha found several typos in the document in the process of doing a Korean translation. Thanks for pointing these out. Andreas Abraham sent in a long list of typographical errors and other corrections. Special thanks! 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, "jipe," "bojster," "nyal," "Hobbit," "Ender," "Little Monster" (Alexis), "Mark," Emilio Conti, Ian. D. Allen, HansJoerg Diers, Arun Giridhar, Dennis Leeuw, Dan Jacobson, Aurelio Marinho Jargas, Edward Scholtz, Jean Helou, Chris Martin, Lee Maschmeyer, Bruno Haible, Wilbert Berendsen, Sebastien Godard, Bjn Eriksson, John MacDonald, Joshua Tschida, Troy Engel, Manfred Schwarb, Amit Singh, Bill Gradwohl, David Lombard, Jason Parker, Steve Parker, Bruce W. Clare, William Park, Vernia Damiano, Mihai Maties, Mark Alexander, Jeremy Impson, Ken Fuchs, Frank Wang, Sylvain Fourmanoit, Matthew Sage, Matthew Walker, Kenny Stauffer, Filip Moritz, Andrzej Stefanski, Daniel Albers, Stefano Palmeri, Nils Radtke, 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, Benno Schulenberg, Tedman Eng, Jochen DeSmet, Juan Nicolas Ruiz, Oliver Beckstein, Achmed Darwish, Richard Neill, Albert Siersema, Omair Eshkenazi, Geoff Lee, JuanJo Ciarlante, Nathan Coulter, Andreas Khne, and David Lawyer (himself an author of four HOWTOs). My gratitude to Chet Ramey and Brian Fox for writing Bash, and building into it elegant and powerful scripting capabilities. Chapter 35. Endnotes 486
Advanced BashScripting Guide Very special thanks to the hardworking volunteers at the Linux Documentation Project. The LDP hosts a repository of Linux knowledge and lore, and has, to a large extent, enabled the publication of this book. Thanks and appreciation to IBM, Red Hat, the Free Software Foundation, and all the good people fighting the good fight to keep Open Source software free and open. Thanks most of all to my wife, Anita, for her encouragement and emotional support.
35.6. Disclaimer
(This is a variant of the standard LDP disclaimer.) 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 and inaccuracies that could cause you to lose data or damage your system, so proceed with appropriate caution. The author takes no responsibility for any damage caused. As it happens, it is highly unlikely that either you or your system will suffer harm. In fact, the raison d'etre of this book is to enable its readers to analyze shell scripts and determine whether they have unexpected consequences.
487
Bibliography
Those who do not understand UNIX are condemned to reinvent it, poorly. Henry Spencer Edited by Peter Denning, Computers Under Attack: Intruders, Worms, and Viruses, ACM Press, 1990, 0201530678. This compendium contains a couple of articles on shell script viruses. *
Ken Burtch, Linux Shell Scripting with Bash, 1st edition, Sams Publishing (Pearson), 2004, 0672326426. Covers much of the same material as this guide. Dead tree media does have its advantages, though. *
Dale Dougherty and Arnold Robbins, Sed and Awk, 2nd edition, O'Reilly and Associates, 1997, 11565922255. To unfold the full power of shell scripting, you need at least a passing familiarity with sed and awk. This is the standard tutorial. It includes an excellent introduction to "regular expressions". Read this book. *
Jeffrey Friedl, Mastering Regular Expressions, O'Reilly and Associates, 2002, 0596002890. The best, allaround reference on Regular Expressions. *
Aeleen Frisch, Essential System Administration, 3rd edition, O'Reilly and Associates, 2002, 0596003439. This excellent sys admin manual has a decent introduction to shell scripting for sys administrators and does a nice job of explaining the startup and initialization scripts. The long overdue third edition of this classic has finally been released. *
Stephen Kochan and Patrick Woods, Unix Shell Programming, Hayden, 1990, 067248448X.
Bibliography
488
Advanced BashScripting Guide The standard reference, though a bit dated by now. *
Neil Matthew and Richard Stones, Beginning Linux Programming, Wrox Press, 1996, 1874416680. Good indepth coverage of various programming languages available for Linux, including a fairly strong chapter on shell scripting. *
Herbert Mayer, Advanced C Programming on the IBM PC, Windcrest Books, 1989, 0830693637. Excellent coverage of algorithms and general programming practices. *
David Medinets, Unix Shell Programming Tools, McGrawHill, 1999, 0070397333. Good info on shell scripting, with examples, and a short intro to Tcl and Perl. *
Cameron Newham and Bill Rosenblatt, Learning the Bash Shell, 2nd edition, O'Reilly and Associates, 1998, 1565923472. This is a valiant effort at a decent shell primer, but somewhat deficient in coverage on programming topics and lacking sufficient examples. *
Anatole Olczak, Bourne Shell Quick Reference Guide, ASP, Inc., 1991, 093573922X. A very handy pocket reference, despite lacking coverage of Bashspecific features. *
Jerry Peek, Tim O'Reilly, and Mike Loukides, Unix Power Tools, 2nd edition, O'Reilly and Associates, Random House, 1997, 1565922603. Contains a couple of sections of very informative indepth articles on shell programming, but falls short of being a tutorial. It reproduces much of the regular expressions tutorial from the Dougherty and Robbins book, above. * Bibliography 489
Advanced BashScripting Guide Clifford Pickover, Computers, Pattern, Chaos, and Beauty, St. Martin's Press, 1990, 0312041233. A treasure trove of ideas and recipes for computerbased exploration of mathematical oddities. *
George Polya, How To Solve It, Princeton University Press, 1973, 0691023565. The classic tutorial on problem solving methods (i.e., algorithms). *
Chet Ramey and Brian Fox, The GNU Bash Reference Manual, Network Theory Ltd, 2003, 0954161777. 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.
Arnold Robbins, Bash Reference Card, SSC, 1998, 1587310105. Excellent Bash pocket reference (don't leave home without it). A bargain at $4.95, but also available for free download online in pdf format. *
Arnold Robbins, Effective Awk Programming, Free Software Foundation / O'Reilly and Associates, 2000, 1882114264. The absolute best awk tutorial and reference. The free electronic version of this book is part of the awk documentation, and printed copies of the latest version are available from O'Reilly and Associates. This book has served as an inspiration for the author of this document. *
Bill Rosenblatt, Learning the Korn Shell, O'Reilly and Associates, 1993, 1565920546. This wellwritten book contains some excellent pointers on shell scripting. *
Paul Sheer, LINUX: Rute User's Tutorial and Exposition, 1st edition, , 2002, 0130333514. Very detailed and readable introduction to Linux system administration.
Bibliography
490
Ellen Siever and the staff of O'Reilly and Associates, Linux in a Nutshell, 2nd edition, O'Reilly and Associates, 1999, 1565925858. The allaround best Linux command reference, even has a Bash section. *
Dave Taylor, Wicked Cool Shell Scripts: 101 Scripts for Linux, Mac OS X, and Unix Systems, 1st edition, No Starch Press, 2004, 1593270127. Just as the title says . . . *
The UNIX CD Bookshelf, 3rd edition, O'Reilly and Associates, 2003, 0596003927. An array of seven UNIX books on CD ROM, including UNIX Power Tools, Sed and Awk, and Learning the Korn Shell. 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. *
Fioretti, Marco, "Scripting for X Productivity," Linux Journal, Issue 113, September, 2003, pp. 869.
Ben Okopnik's wellwritten introductory Bash scripting articles in issues 53, 54, 55, 57, and 59 of the Linux Gazette, and his explanation of "The Deep, Dark Secrets of Bash" in issue 56.
Chet Ramey's bash The GNU Shell, a twopart series published in issues 3 and 4 of the Linux Journal, JulyAugust 1994.
Bibliography
491
Very nice sed, awk, and regular expression tutorials at The UNIX Grymoire.
The GNU gawk reference manual (gawk is the extended GNU version of awk available on Linux and BSD systems).
Bibliography
492
The Linux USB subsystem (helpful in writing scripts affecting USB peripherals).
There is some nice material on I/O redirection in chapter 10 of the textutils documentation at the University of Alberta site.
Rick Hohensee has written the osimpa i386 assembler entirely as Bash scripts.
Aurelio Marinho Jargas has written a Regular expression wizard. He has also written an informative book on Regular Expressions, in Portuguese.
Ben Tomkins has created the Bash Navigator directory management tool.
William Park has been working on a project to incorporate certain Awk and Python features into Bash. Among these is a gdbm interface. He has released bashdiff on Freshmeat.net. He has an article in the November, 2004 issue of the Linux Gazette on adding string functions to Bash, with a followup article in the December issue, and yet another in the January, 2005 issue.
Peter Knowles has written an elaborate Bash script that generates a book list on the Sony Librie ebook reader. This useful tool permits loading nonDRM user content on the Librie.
Tim Waugh's xmlto is an elaborate Bash script for converting Docbook XML documents to other formats.
Of historical interest are Colin Needham's original International Movie Database (IMDB) reader polling scripts, which nicely illustrate the use of awk for string parsing. Unfortunately, the URL link no longer works.
Fritz Mehner has written a bashsupport plugin for the vim text editor. He has also also come up with his own stylesheet for Bash. Compare it with the ABS Guide Unofficial Stylesheet.
The excellent Bash Reference Manual, by Chet Ramey and Brian Fox, distributed as part of the "bash2doc" package (available as an rpm). See especially the instructive example scripts in this package.
Bibliography
493
The manpages for bash and bash2, date, expect, expr, find, grep, gzip, ln, patch, tar, tr, bc, xargs. The texinfo documentation on bash, dd, m4, gawk, and sed.
Bibliography
494
# # A variable can hold a sed script. 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 wellknown 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 bloated executables.
exit 0
495
Advanced BashScripting Guide Example A2. rn: A simpleminded file rename utility This script is a modification of Example 1520.
#! /bin/bash # # 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.
if [ $# ne "$ARGS" ] then echo "Usage: `basename $0` oldpattern newpattern" # 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" ] then echo "$number file renamed." else echo "$number files renamed." fi exit 0 # For correct grammar.
# Exercises: # # What type of files will this not work on? # How can this be fixed? # # Rewrite this script to process all the files in a directory #+ containing spaces in their names, and to rename them, #+ substituting an underscore for each space.
Example A3. blankrename: renames filenames containing blanks This is an even simplerminded version of previous script.
496
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" ] then echo "$number file renamed." else echo "$number files renamed." fi exit 0 # For correct grammar.
Example A4. encryptedpw: Uploading to an ftp site, using a locally encrypted password
#!/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=65 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` Server="XXX" Directory="YYY" # Strips pathname out of file name.
Password=`cruft <$pword` # Decrypt password. # Uses the author's own "cruft" file encryption package, #+ based on the classic "onetime pad" algorithm,
497
ftp n $Server <<EndOfSession user $Username $Password binary bell cd $Directory put $Filename bye EndOfSession # n option to "ftp" disables autologon. # Note that "bell" rings 'bell' after each file transfer. exit 0
echo; echo "Remove data CD." echo "Insert blank CDR." echo "Press ENTER when ready. " read ready echo "Copying $OF to CDR."
cdrecord v isosize speed=$SPEED dev=$DEVICE $OF # Uses Joerg Schilling's "cdrecord" package (see its docs). # http://www.fokus.gmd.de/nthp/employees/schilling/cdrecord.html
echo; echo "Done copying $OF to CDR on device $CDROM." echo "Do you want to erase the image file (y/n)? " read answer case "$answer" in [yY]) rm f $OF echo "$OF erased." # Probably a huge file.
498
MAX_ITERATIONS=200 # For large seed numbers (>32000), increase MAX_ITERATIONS. h=${1:$$} # Seed # Use $PID as seed, #+ if not specified as commandline arg.
echo echo "C($h) $MAX_ITERATIONS Iterations" echo for ((i=1; i<=MAX_ITERATIONS; i++)) do echo n "$h " # ^^^^^ # tab let "remainder = h % 2" if [ "$remainder" eq 0 ] then let "h /= 2" else let "h = h*3 + 1" fi
499
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 mathematical function, #+ see _Computers, Pattern, Chaos, and Beauty_, by Pickover, p. 185 ff., #+ as listed in the bibliography. exit 0
# Largest permissible #+ positive return value from a function. # Declare global variable for date difference. # Declare global variable for absolute value. # Declare globals for day, 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 () {
500
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 orlist / andlist. # # Exercise: Implement more rigorous date checking. }
strip_leading_zero () # Better to strip { #+ from day and/or return ${1#0} #+ since otherwise } #+ as octal values
possible leading zero(s) month Bash will interpret them (POSIX.2, sect 2.9.2.1).
# Gauss' Formula: # Days from March 1, 1600 to date passed as param. # ^^^^^^^^^^^^^
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 indepth explanation of this algorithm, see #+ http://weblogs.asp.net/pgreborio/archive/2005/01/06/347968.aspx
echo $Days }
abs () { if [ "$1" lt 0 ]
# # #
501
if [ $# ne "$ARGS" ] then Param_Error fi Parse_Date $1 check_date $day $month $year strip_leading_zero $day day=$? strip_leading_zero $month month=$?
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 diff=$value echo $diff exit 0 # Compare this script with #+ the implementation of Gauss' Formula in a C program at: #+ http://buschencrew.hypermart.net/software/datedif # Make sure it's positive.
[make dictionary]
# Modification of /usr/sbin/mkdict 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.
502
E_BADARGS=65 if [ ! r "$1" ] then echo "Usage: $0 filestoprocess" exit $E_BADARGS fi # Need at least one #+ valid file argument.
# SORT="sort"
# No longer necessary to define options #+ to sort. Changed from original script. # Contents of specified files to stdout. # Convert to lowercase. # New: change spaces to newlines. # Get rid of everything nonalphanumeric #+ (original script). # Rather than deleting #+ now change nonalpha to newlines. # $SORT options unnecessary now. # Remove duplicates. # Delete lines beginning with a hashmark. # Delete blank lines.
cat $* | tr AZ az | tr ' ' '\012' | # tr cd '\012[az][09]' | tr c '\012az' sort uniq grep grep exit 0 | | v '^#' | v '^$' '\012' |
ARGCOUNT=1 E_WRONGARGS=70
503
# 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 Remove Ignore Ignore letter values. duplicate numbers, except when separated by vowels. vowels, except as separators, so delete them last. 'w' and 'h', even as separators, so delete them first.
The above command substitution lays more pipe than a plumber <g>.
# Change all characters of name input to lowercase. # name=$( echo $input_name | tr AZ az ) # # Just in case argument to script is mixed case.
char_pos=0 # Initialize character position. prefix0=${name:$char_pos:1} prefix=`echo $prefix0 | tr az AZ` # Uppercase 1st letter of soundex. let "char_pos += 1" name1=${name:$char_pos} # Bump character position to 2nd letter of name.
# ++++++++++++++++++++++++++ Exception Patch +++++++++++++++++++++++++++++++++ # Now, we run both the input name and the name shifted one char to the right #+ through the valueassigning function. # If we get the same value out, that means that the first two characters
504
# #+ #+ #+ #+
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
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 threenumber code. Similar sounding names should have almost the same soundex codes. Examples: Smith and Smythe both have a "S530" soundex. Harrison = H625 Hargison = H622 Harriman = H655 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
505
startfile=gen0
# Read the starting generation from the file "gen0". # Default, if no other file specified when invoking script. # # Specify another "generation 0" file.
############################################ # Abort script if "startfile" not specified #+ AND #+ "gen0" not present. E_NOSTARTFILE=68 if [ ! e "$startfile" ] then echo "Startfile \""$startfile"\" missing!" exit $E_NOSTARTFILE fi ############################################
506
# =================================================================
let "cells = $ROWS * $COLS" # How many cells. declare a initial declare a current display () { alive=0 # How many cells "alive" at any given time. # Initially zero. # Arrays containing "cells".
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]}
507
if [ "$1" lt "$lower_limit" o "$1" gt "$upper_limit" ] then return $FALSE # Out of array bounds. fi row=$2 let "left = $row * $COLS" let "right = $left + $COLS 1"
if [ "$1" lt "$left" o "$1" gt "$right" ] then return $FALSE # Beyond row boundary. fi return $TRUE } # Valid coordinate.
# Test whether cell is alive. # Takes array, cell number, state of cell as arguments. # Get alive cell count in neighborhood.
508
# Default.
GetCount ()
# # # #
Count live cells in passed cell's neighborhood. Two arguments needed: $1) variable holding array $2) cell number
{ local local local local local local local local local local local local local cell_number=$2 array top center bottom r row i t_top t_cen t_bot count=0 ROW_NHBD=3
array=( `echo "$1"` ) let let let let "top = $cell_number $COLS 1" # Set up cell neighborhood. "center = $cell_number 1" "bottom = $cell_number + $COLS 1" "r = $cell_number / $COLS" # Traverse from left to right.
for ((i=0; i<$ROW_NHBD; i++)) do let "t_top = $top + $i" let "t_cen = $center + $i" let "t_bot = $bottom + $i"
let "row = $r" # Count center row of neighborhood. IsValid $t_cen $row # Valid cell position? if [ $? eq "$TRUE" ] then if [ ${array[$t_cen]} = "$ALIVE1" ] # Is it alive? then # Yes? 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" ] then let "count += 1" fi fi
509
if [ ${array[$cell_number]} = "$ALIVE1" ] then let "count = 1" # Make sure value of tested cell itself fi #+ is not counted.
return $count } next_gen () { local array local i=0 array=( `echo "$1"` ) # Convert passed arg to array. # Update generation array.
while [ "$i" lt "$cells" ] do IsAlive "$1" $i ${array[$i]} if [ $? eq "$ALIVE" ] then array[$i]=. else array[$i]="_" fi let "i += 1" done
# Is cell alive? # If alive, then #+ represent the cell as a period. # Otherwise underscore #+ (which will later be converted to space).
# 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. }
510
# ========================================================= # main () # Load initial array with contents of startup file. initial=( `cat "$startfile" | sed e '/#/d' | tr d '\n' |\ sed e 's/\./\. /g' e 's/_/_ /g'` ) # Delete lines containing '#' comment character. # Remove linefeeds and insert space between elements. clear echo echo echo echo echo echo # Clear screen.
# Title "=======================" " $GENERATIONS generations" " of" "\"Life in the Slow Lane\"" "======================="
# Display first generation. Gen0=`echo ${initial[@]}` display "$Gen0" # Display only. echo; echo echo "Generation $generation $alive alive" #
# Display second generation. Cur=`echo ${initial[@]}` next_gen "$Cur" # Update & display. # 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" done # ============================================================== echo exit 0 # END
# # # # # # #
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.
511
+++ The following two scripts are by Mark Moraes of the University of Toronto. See the file MoraesCOPYRIGHT for permissions and restrictions. This file is included in the combined HTML/source tarball of the ABS Guide.
512
# ==> 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
513
# # # #
+ Antek Sawicki contributed the following script, which makes very clever use of the parameter substitution operators discussed in Section 9.3.
514
Advanced BashScripting Guide Example A14. password: Generating random 8character passwords
#!/bin/bash # May need to be invoked with #!/bin/bash2 on older machines. # # 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" exit 0 # ==> Or, redirect to a file, as desired.
+ James R. Van Zandt contributed this script, which uses named pipes and, in his words, "really exercises quoting and escaping".
515
HERE=`uname n` # ==> hostname THERE=bilbo echo "starting remote backup to $THERE at `date +%r`" # ==> `date +%r` returns time in 12hour 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
Stphane Chazelas contributed the following script to demonstrate that generating prime numbers does not require arrays.
# Primes 2 1000
516
# Recursion outside loop. # Successively accumulate positional parameters. # "$@" is the accumulating list of primes.
} Primes 1 exit 0 # 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, for faster execution.
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.
517
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
Noah Friedman gave permission to use his string function script, which essentially reproduces some of the Clibrary string manipulation functions.
# 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"
518
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:
519
520
521
# ========================================================================== # # ==> 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.
522
Michael Zick's complex array example uses the md5sum check sum command to encode directory information.
# 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" "FieldArrayName" or ListDirectory of "FileGlob" "FieldArrayFilename" '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 hardlinks 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
523
524
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 ignorebackups almostall directory \ fulltime 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) return $? fi }
# # # # # Index Filesystem Directory Information # # # # # # # IndexList "FieldArrayName" "IndexArrayName" # or # IndexList if FieldArrayFilename IndexArrayName # IndexList of FieldArrayName IndexArrayFilename # IndexList if of FieldArrayFilename IndexArrayFilename # # # # # : <<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 (LineNumber==0) are informational: IndexArrayName[0] : Number of "Lines" indexed
525
a a i i
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]} ft=${LIST[$Lidx+1]:0:1} case $ft in b) ((Lidx+=12)) ;; c) ((Lidx+=12)) ;; *) ((Lidx+=11)) ;; esac name=Lidx case $ft in ) ((Lidx+=1)) ;; b) ((Lidx+=1)) ;; c) ((Lidx+=1)) ;; d) ((Lidx+=1)) ;;
# Hard Links field # FastStat # Block device # Character device # Anything else
# # # #
The easy one Block device Character device The other easy one
526
DigestFile()
527
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 # SanScrit2.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 LocationArrayName # or # LocateFile [l] of FileName LocationArrayFileName # # # # # # A file location is Filesystemid and inodenumber # 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
528
[12]
[13]
** 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] ID0? # Maybe someday, but Linux stat structure [2] ID0? # does not have either LABEL nor UUID # fields, currently information must come # from filesystem 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] [4] [5] [6] [7] [8] [9] [10] Maximum length of filenames Filesystem type Total blocks in the filesystem Free blocks Free blocks for nonroot user(s) Block size of the filesystem Total inodes Free inodes
529
# #
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 Sanscrit2.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
530
# 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 # BIGDIR # ListDirectory of "${CUR_DIR[11]}/*" "/tmpfs/junk2" ListDirectory "${CUR_DIR[11]}/*" DIR_ENT declare a DIR_IDX # BIGDIR # IndexList if "/tmpfs/junk2" DIR_IDX IndexList DIR_ENT DIR_IDX declare a IDX_DIG # BIGDIR # DIR_ENT=( $(cat /tmpfs/junk2) ) # BIGDIR # 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
531
Advanced BashScripting Guide Stphane Chazelas demonstrates objectoriented programming in a Bash script.
person.new() # Looks almost like a class declaration in C++. { local obj_name=$1 name=$2 firstname=$3 birthdate=$4 eval "$obj_name.set_name() { eval \"$obj_name.get_name() { echo \$1 }\" }" eval "$obj_name.set_firstname() { eval \"$obj_name.get_firstname() { echo \$1 }\" }" eval "$obj_name.set_birthdate() { eval \"$obj_name.get_birthdate() { echo \$1 }\" eval \"$obj_name.show_birthdate() { echo \$(date d \"1/1/1970 0:0:\$1 GMT\") }\" eval \"$obj_name.get_age() { echo \$(( (\$(date +%s) \$1) / 3600 / 24 / 365 )) }\" }" $obj_name.set_name $name $obj_name.set_firstname $firstname $obj_name.set_birthdate $birthdate } echo person.new self Bozeman Bozo 101272413 # Create an instance of "person.new" (actually passing args to the function). self.get_firstname self.get_name self.get_age self.get_birthdate self.show_birthdate echo # # # # # Bozo Bozeman 28 101272413 Sat Mar 17 20:13:33 MST 1973
532
# # # # #+ # #+ # # # # # # #
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]
533
# 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[keyN1]=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 {
534
# 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}_}")
535
# $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
536
An example illustrating the mechanics of hashing, but from a different point of view.
function _inihash () { # private function # call at the beginning of each procedure # defines: _keys _values _ptr # # usage: _inihash NAME
537
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
538
# # 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 echo keyshash Lovers echo; echo
Now for a script that installs and mounts those cute USB keychain solidstate "hard drives."
539
SYMLINKDEV=/dev/diskonkey MOUNTPOINT=/mnt/diskonkey DEVLABEL=/sbin/devlabel DEVLABELCONFIG=/etc/sysconfig/devlabel IAM=$0 ## # Functions lifted nearverbatim from usbmount code. # function allAttachedScsiUsb { find /proc/scsi/ path '/proc/scsi/usbstorage*' type f | xargs grep l 'Attached: Yes' } function scsiDevFromScsiUsb { echo $1 | awk F"[/]" '{ n=$(NF1); 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 usbstorage? # 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 semiintelligently 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"
540
A script that converts a text file to HTML format. Appendix A. Contributed Scripts 541
# # 1) # 2) # 3) #+ #+
# Settings FNTSIZE=2 # Smallmedium 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@theriver.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"
542
process_text () { while read line do { if [ ! "$line" ] then echo echo "$LF" echo "$LF" echo continue else
# Blank line? # Then new paragraph must follow. # Insert two <br> tags.
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, #+ followed 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
# Termination tags.
543
Here is something to warm the hearts of webmasters and mistresses everywhere: a script that saves weblogs.
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
544
How do you keep the shell from expanding and reinterpreting strings?
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 righthandside of an assignment statement. Does:
545
# :<<'_Protect_Literal_String_Test' # # # Remove the above "# " to disable this code. # # # # See how that looks echo echo " Test One _protect_literal_str _protect_literal_str echo # # # # # # #+ # when printed. " 'Hello $user' 'Hello "${username}"'
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++ ))
546
Which yields: Test Two Element 0: zero is: 4 long. Element 1: 'Hello ${Me}' is: 13 long. Element 2: Hello ${You} is: 12 long. Element 3: \'Pass: \' is: 10 long.
# # # #
Our marker element Our "$(_pls '...' )" Quotes are missing ${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. Element 1: Hello ${Me} is: 11 long. Element 2: Hello is: 5 long. Element 3: 'Pass: is: 6 long. Element 4: ' is: 1 long.
# # # # #
Our marker element. Intended result. ${You} expanded to nothing. Split on the whitespace. 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
547
Usage: Complement of the "$(_pls 'Literal String')" function. (See the protect_literal.sh example.) StringVar=$(_upls ProtectedSringVariable) Does: When used on the righthandside 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.
_pls() { local IFS=$'x1B' echo $'\x27'$@$'\x27' } # 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[@]} )
548
# # # # #
Our marker element. Intended result. ${You} expanded to nothing. Split on the whitespace. 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
This powerful script helps hunt down spammers. Appendix A. Contributed Scripts 549
####################################################### # 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 hyperlinks to the specific report.) Requires A working Internet connection. (Exercise: Add check and/or abort if not online 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:
550
Additional documentation Download the archived set of scripts explaining and illustrating the function contained within this script. http://personal.riverusers.com/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
551
#### 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_]
552
553
554
555
556
'
557
558
# 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 addressname 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 noop # 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 dumptodotfile function # dump_to_dot <array_name> <prefix> dump_to_dot() { local a _dda_tmp
559
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
560
561
562
563
# 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
564
565
566
567
568
# 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]})
569
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 ;;
570
571
572
573
574
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 'bind9' 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_
575
576
577
578
# # # 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 nameaddress 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
579
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.
580
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 GraphViz 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 GraphViz 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, builtin 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.
581
582
# Known parent>child edges PC0000 guardproof.info. third.guardproof.info. */ Turn that into the following lines by substituting node
583
# 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 pairdata that describes services, zone records (subgraphs?), 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.
584
# # # # # # #
Missing commandline arg. Host not found. Host lookup timed out. Some other (undefined) error. Specify up to 10 seconds for host query reply. The actual wait may be a bit longer. Output file.
if [ z "$1" ] # Check for (required) commandline arg. then echo "Usage: $0 domain name or IP address" exit $E_BADARGS fi
if [[ "$1" =~ "[azAZ][azAZ]$" ]] # 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" # Commandline 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
# #
585
# ======================== 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 nonfunctional 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"
586
587
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 12` # ^ 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 linklocal 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
588
# 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.
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!
# 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.
589
# 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 randomwait 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.
590
"$1" ]; then # Make sure we get something for wget to eat. "You must at least enter a URL or option!" "$help for usage." $E_NO_OPTS
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ # 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.
591
# Another variable. # This one may or may not be subject # A bit like the small print. CookiesON=$Cookie # echo "cookie file is $CookiesON" # # echo "home is ${home}" # #
to variation.
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 }
592
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
593
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=" loadcookies $Cookies" # File is good use it! return fi done }
run_func() { if [ z "$OPTARG" ]; then # Test to see if we used the inline 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
594
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=" $@"
595
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/sitelist${today} # Make a list, so it's easy to refer back to,
596
exit 0
# ==>
# ==> Author of this script has kindly granted permission # ==>+ for inclusion in ABS Guide.
597
# 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 directory with the name: YYYYMMDD # 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 #################################################
598
# See: http://www.mikerubel.org/computers/rsync_snapshots/ #+ for more explanation of the theory. # Save as: $HOME/bin/nightlybackup_firewirehdd.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 "diskspace 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) 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 ##############################################
599
if [ "$#" != 0 ] # If commandline 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 (18), then every week for 4 weeks (912), then every month for 3 months (1315). 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/nightlybackup_firewirehdd.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.
600
# 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 scsiid by having an appropriate udev rule in #+ /etc/udev/rules.d/10rules.local #+ and by putting a relevant entry in /etc/fstab. # Eg: this udev rule: # BUS="scsi", KERNEL="sd*", SYSFS{vendor}="WDC WD16", # SYSFS{model}="00JB00GVA0 ", 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"
601
fi
# Set the permission to 700 for security #+ on an otherwise permissive multiuser 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 modifywindow=60 \ linkdest=../backup.1 $SOURCE_DIR $BACKUP_DEST_DIR/backup.0/ # #+ # # # #+ Only warn, rather than exit if the rsync since it may only be a minor problem. E.g., if one file is not readable, rsync This shouldn't prevent the rotation. Not using, e.g., `date +%a` since these are just full of links and don't consume failed, will fail. directories *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 hardlinks!" fi
602
# 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.[814] > $BACKUP_DEST_DIR/backup.[915]" && /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 &&
603
&&
echo "Rotating weekly backups: \ $BACKUP_DEST_DIR/backup.[811] > $BACKUP_DEST_DIR/backup.[912]" && /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.[17] > $BACKUP_DEST_DIR/backup.[28]" /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
604
605
and make special and put it on special entry 0 and put it on special entry 0
606
607
608
"PREV"
1 "${cd_mset}"
609
610
611
: <<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 ============
612
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 ######################################################################
613
Examples ======== These examples assume nondefault 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
614
615
Alternative suggested directories: If a directory possibilities. and if any are where <n> is a by entering cd is not found, then CD will suggest any These are directories starting with the same letters found they are listed prefixed with a<n> number. It's possible to go to the directory 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 (0n) 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: nonroot: "\\[\\e[01;34m\\]" (sets colour to blue). root: "\\[\\e[01;31m\\]" (sets colour to red). CDL_PROMPT_POST Default is: nonroot: root: Set to the string to suffix the prompt. "\\[\\e[00m\\]$" (resets colour and displays $). "\\[\\e[00m\\]#" (resets colour and displays #).
Note: CDL_PROMPT_PRE & _POST only t CDPath Set the Default CDFile Set the Default default path for the f & u options. is home directory default filename for the f & u options. is cdfile
There are three variables defined in the file cdll which control the
616
Note that cd_maxspecial should be >= cd_histcount to avoid displaying special entries that can't be set.
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).
617
# 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 ACPIPnP:ports are: port1: OPL, port2: sb, port3: WSS # (ACPI bios seems to be wrong here, the PnPcardcode in sndcs4236.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 0x5300x537 #+ we're left with 0x530 the start address of the port. then # PnPBIOS: usual order port=${port1%%*} oplport=${port2%%*} else # ACPI: mixedup 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 0x5300x537 # io 0x3880x38b # io 0x2200x233 # 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 ignoreinstall sndcs4236 port=$port cport=$cport\ fm_port=$oplport irq=$irq dma1=$dma1 dma2=$dma2 isapnp=0 index=0
618
if [ $# ne "$ARGCOUNT" ] then echo "Usage: `basename $0` FILENAME" exit $E_WRONGARGS fi file_read () { while read line do # Scan file for pattern, then print line.
if [[ "$line" =~ ^[az] && $Flag eq 1 ]] then # Line begins with lc character, following blank line. echo n "$lineno:: " echo "$line" fi
if [[ "$line" =~ "^$" ]] then # If blank line, Flag=1 #+ set flag. else Flag=0 fi ((lineno++)) done } < $file 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.
619
There will be additional output for all the other split paragraphs in the target file.
620
# Accepts (optional) save filename as a commandline 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=\"Windows1252\" ?>" 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.aspshareware.org/pad</MASTER_PAD_INFO>" HDR6="</MASTER_PAD_VERSION_INFO>" # ============================
fill_in () { if [ z "$2" ]
621
# 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 fill_in fill_in fill_in fill_in fill_in fill_in # # # # Company_Name Address_1 Address_2 City_Town State_Province Zip_Postal_Code Country
fill_in Company_WebSite_URL
622
# 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
623
624
# # # #+
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 394.
# The current Bash maintainer, Chet Ramey, has fixed the items noted #+ for an upcoming version 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.
625
# 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: StringFormat 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: ContentOf. # ExtendedSyntax way of writing ContentOf: echo ${VarSomething} # The ${ ... } ExtendedSyntax allows more than just the variable #+ name to be specified. # In general, $VarSomething can always be written as: ${VarSomething}.
626
# Outside of doublequotes, the special characters @ and * #+ specify identical behavior. # May be pronounced as: AllElementsOf. # Without specification of a name, they refer to the #+ predefined parameter BashArray.
# Bash disables filename expansion for GlobPatterns. # Only character matching is active.
# Within doublequotes, the behavior of GlobPattern references #+ depends on the setting of IFS (Input Field Separator). # Within doublequotes, AllElementsOf 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 ExtendedSyntax 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 ExtendedSyntax. # The general form is: ${name[subscript]}. # The string forms may also be used: ${name:subscript} #+ for BashArrays when referencing the subscript zero element.
# BashArrays are implemented internally as linked lists, #+ not as a fixed area of storage as in some programming languages.
# #
627
# Demo time initialize the previously declared ArrayVar as a #+ sparse array. # (The 'unset ... ' is just documentation here.) unset ArrayVar[0] ArrayVar[1]=one ArrayVar[2]='' unset ArrayVar[3] ArrayVar[4]='four' # # # # # Just for the record Unquoted literal Defined, and empty Just for the record Quoted literal
# Translate the %q format as: QuotedRespectingIFSRules. echo echo ' Outside of doublequotes ' ### printf %q ${ArrayVar[*]} # GlobPattern AllElementsOf echo echo 'echo command:'${ArrayVar[*]} ### printf %q ${ArrayVar[@]} # AllElementsOf echo echo 'echo command:'${ArrayVar[@]} # The use of doublequotes may be translated as: EnableSubstitution.
628
printf %q "${ArrayVar[*]}" # GlobPattern AllElementsOf echo echo 'echo command:'"${ArrayVar[*]}" ### printf %q "${ArrayVar[@]}" # AllElementsOf echo echo 'echo command:'"${ArrayVar[@]}"
echo echo ' Within doublequotes First character of IFS is ^ ' # Any printing, nonwhitespace character should do the same. IFS='^'$IFS # ^ + space tab newline ### printf %q "${ArrayVar[*]}" # GlobPattern AllElementsOf echo echo 'echo command:'"${ArrayVar[*]}" ### printf %q "${ArrayVar[@]}" # AllElementsOf echo echo 'echo command:'"${ArrayVar[@]}"
echo echo ' Within doublequotes Without whitespace in IFS ' IFS='^:%!' ### printf %q "${ArrayVar[*]}" # GlobPattern AllElementsOf echo echo 'echo command:'"${ArrayVar[*]}" ### printf %q "${ArrayVar[@]}" # AllElementsOf echo echo 'echo command:'"${ArrayVar[@]}"
echo echo ' Within doublequotes IFS set and empty ' IFS='' ### printf %q "${ArrayVar[*]}" # GlobPattern AllElementsOf echo echo 'echo command:'"${ArrayVar[*]}" ### printf %q "${ArrayVar[@]}" # AllElementsOf echo echo 'echo command:'"${ArrayVar[@]}"
echo echo ' Within doublequotes IFS undefined ' unset IFS ###
629
# 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 GlobPattern is I/O; the setting of IFS matters. ### # An AllElementsOf 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 nonnull elements (characters): echo echo ' Nonquoted references ' echo 'NonNull character count: '${#VarSomething}' characters.' # test='Lit'$'\x00''eral' # echo ${#test} # $'\x00' is a null character. # 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 nonnull elements (characters): echo echo ' Quoted, GlobPattern references ' echo 'NonNull character count: '"${#VarSomething}"' characters.'
630
# 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 MarkOne 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: ResultOf.
# 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) # # 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 inline Bash commands.
# A simple function where the first word of result IS a bash command: ###
631
# 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 declare f funcVar funcVar=_print $funcVar parm1 echo funcVar=$(_print ) $funcVar $funcVar $VarSomething echo funcVar=$(_print $VarSomething) $funcVar echo funcVar="$(_print $VarSomething)" $funcVar echo # #+ # # # Enable if desired #+ in namespace of functions # Contains name of function. # Same as _print at this point.
# $VarSomething replaced HERE. # The expansion is part of the #+ variable contents. # $VarSomething replaced HERE. # The expansion is part of the #+ variable contents.
The difference between the unquoted and the doublequoted versions above can be seen in the "protect_literal.sh" example. The first case above is processed as two, unquoted, BashWords. The second case above is processed as one, quoted, BashWord.
# Delayed replacement # echo echo ' Delayed replacement ' funcVar="$(_print '$VarSomething')" # No replacement, single BashWord. eval $funcVar # $VarSomething replaced HERE. echo
632
# 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 ClassicArray 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 #+ BashArray: array_name. ### # The ExtendedSyntax string operations can be applied to all #+ elements of an array. ### # This may be thought of as a ForEach 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 echo echo echo echo echo echo echo echo echo echo
' Test (but not change) ' ' null reference ' n ${VarNull'NotSet'}' ' ${VarNull} n ${VarNull:'NotSet'}' ' ${VarNull} ' null contents ' n ${VarEmpty'Empty'}' ' ${VarEmpty} n ${VarEmpty:'Empty'}' ' ${VarEmpty}
# # # #
# # # #
# Literal
633
N==no : Y Y N
# 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=$t1 } # Null reference, set: t == 1 t=${#VarNull} ${VarNull _decT } echo $t # Null contents, set: t == 0 t=${#VarEmpty} ${VarEmpty _decT } echo $t
# Contents, set: t == number of nonnull characters VarSomething='_simple' # Set to valid function name. t=${#VarSomething} # nonzero length ${VarSomething _decT } # Function _simple executed. echo $t # Note the AppendTo 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'}' ' echo ${VarEmpty}
# Empty Empty
634
# "Subscript sparse" BashArrays ### # BashArrays 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 ' ArraySparse List ' # Within doublequotes, default IFS, GlobPattern 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 inline 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
635
# Empty
# Space only
# Content Literal
# SimpleFunc Literal
# An array of 'Empty'(ies)
# Results in minusone.
636
# Contents, set: t == (number of nonnull characters) t=${#VarSomething}1 # nonnull length minusone ${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 testonly, the return can be tested.
# Element operations # echo echo ' Trailing subelement selection ' # Strings, Arrays and Positional parameters
# Call this script with multiple arguments #+ to see the parameter selections. echo echo echo echo ' All ' ${VarSomething:0} ${ArrayVar[@]:0} ${@:0}
# # # #
all nonnull characters all elements with content all parameters with content; ignoring parameter[0]
# all nonnull after character[0] # all after element[0] with content # all after param[1] with content
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
637
echo ' Nonsparse 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 echo echo echo echo echo
Victim string '$stringZ' ' Victim array '${arrayZ[@]}' ' Sparse array '${sparseZ[@]}' ' [0]==null ref, [2]==null ref, [4]==null content ' [1]=abcabc [3]=ABCABC [5]=123123 ' nonnullreference count: '${#sparseZ[@]}' elements'
echo echo ' Prefix subelement removal ' echo ' GlobPattern match must include the first character. ' echo ' GlobPattern may be a literal or a function result. ' echo
# Function returning a simple, Literal, GlobPattern _abc() { echo n 'abc' } echo echo echo echo ' Shortest prefix ' ${stringZ#123} ${stringZ#$(_abc)} ${arrayZ[@]#abc}
# Fixed by Chet Ramey for an upcoming version of Bash. # echo ${sparseZ[@]#abc} # Version2.05b core dumps. # The it would be nice FirstSubscriptOf # echo ${#sparseZ[@]#*} # This is NOT valid Bash. echo echo echo echo echo
# Fixed by Chet Ramey for an upcoming version of Bash # echo ${sparseZ[@]##a*c} # Version2.05b core dumps. echo echo echo echo echo echo echo
' Suffix subelement removal ' ' GlobPattern match must include the last character. ' ' GlobPattern may be a literal or a function result. ' ' Shortest suffix ' ${stringZ%1*3}
638
# Fixed by Chet Ramey for an upcoming version of Bash. # echo ${sparseZ[@]%abc} # Version2.05b core dumps. # The it would be nice LastSubscriptOf # echo ${#sparseZ[@]%*} # This is NOT valid Bash. echo echo echo echo echo
# Fixed by Chet Ramey for an upcoming version of Bash. # echo ${sparseZ[@]%%b*c} # Version2.05b core dumps. echo echo echo echo echo echo echo echo echo
Subelement replacement ' Subelement at any location in string. ' First specification is a GlobPattern ' GlobPattern may be a literal or GlobPattern function result. ' Second specification may be a literal or function result. ' Second specification may be unspecified. Pronounce that' as: ReplaceWithNothing (Delete) '
# Function returning a simple, Literal, GlobPattern _123() { echo n '123' } echo echo echo echo echo echo echo echo echo echo echo ' Replace first occurrence ' ${stringZ/$(_123)/999} # Changed (123 is a component). ${stringZ/ABC/xyz} # xyzABC123ABCabc ${arrayZ[@]/ABC/xyz} # Applied to each element. ${sparseZ[@]/ABC/xyz} # Works as expected.
# 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 ResultOf ' echo ${stringZ/$(_123)/$(_simple)} # Works as expected. echo ${arrayZ[@]/ca/$(_simple)} # Applied to each element. echo ${sparseZ[@]/ca/$(_simple)} # Works as expected. echo echo echo echo echo
639
echo echo ' Prefix subelement replacement ' echo ' Match must include the first character. ' echo echo echo echo echo echo echo echo echo echo echo echo ' Replace prefix occurrences ' ${stringZ/#[b2]/X} # Unchanged (neither is a prefix). ${stringZ/#$(_abc)/XYZ} # XYZABC123ABCabc ${arrayZ[@]/#abc/XYZ} # Applied to each element. ${sparseZ[@]/#abc/XYZ} # Works as expected.
echo echo ' Suffix subelement replacement ' echo ' Match must include the last character. ' echo echo echo echo echo echo echo echo echo echo echo echo ' Replace suffix occurrences ' ${stringZ/%[b2]/X} # Unchanged (neither is a suffix). ${stringZ/%$(_abc)/XYZ} # abcABC123ABCXYZ ${arrayZ[@]/%abc/XYZ} # Applied to each element. ${sparseZ[@]/%abc/XYZ} # Works as expected.
echo echo ' Special cases of null GlobPattern ' 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 nullcontent 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 nullcontent also.
640
# 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 subelement # ${3} The matched subelement # ${4} The suffix, if any, to the matched subelement # # echo ${sparseZ[@]//*/$(_GenFunc ${3})} # Same as ${1} here. # Perhaps it will be implemented in a future version of Bash.
exit 0
641
Table B1. Special Shell Variables Meaning Filename of script Positional parameter #1 Positional parameters #2 #9 Positional parameter #10 Number of positional parameters All the positional parameters (as a single word) * "$@" All the positional parameters (as separate strings) ${#*} Number of command line parameters passed to script ${#@} Number of command line parameters passed to script $? Return value $$ Process ID (PID) of script $ Flags passed to script (using set) $_ Last argument of previous command $! Process ID (PID) of last job run in background * Must be quoted, otherwise it defaults to "$@". Variable $0 $1 $2 $9 ${10} $# "$*"
Table B2. TEST Operators: Binary Comparison Operator Meaning Operator String Comparison = == != \< \> Meaning
Arithmetic Comparison eq Equal to ne lt le gt ge Not equal to Less than Less than or equal to Greater than Greater than or equal to
Equal to Equal to Not equal to Less than (ASCII) * Greater than (ASCII) *
642
Advanced BashScripting Guide z n Arithmetic Comparison within double parentheses (( ... )) > Greater than >= Greater than or equal to < Less than <= Less than or equal to * If within a doublebracket [[ ... ]] test construct, then no escape \ is needed. String is empty String is not empty
Table B3. TEST Operators: Files Operator e f d h L b c p S t N O G Tests Whether File exists File is a regular file File is a directory File is a symbolic link File is a symbolic link File is a block device File is a character device File is a pipe File is a socket File is associated with a terminal File modified since it was last read You own the file Group id of file same as yours Operator s r w x g u k Tests Whether File is not zero size File has read permission File has write permission File has execute permission sgid flag set suid flag set "sticky bit" set
F1 nt F2 F1 ot F2 F1 ef F2
File F1 is newer than F2 * File F1 is older than F2 * Files F1 and F2 are hard links to the same file *
"NOT" (reverses sense of above tests) * Binary operator (requires two operands). !
Table B4. Parameter Substitution and Expansion Expression ${var} ${varDEFAULT} ${var:DEFAULT} Meaning Value of var, same as $var If var not set, evaluate expression as $DEFAULT * If var not set or is empty, evaluate expression as $DEFAULT * 643
If var not set, evaluate expression as $DEFAULT * If var not set, evaluate expression as $DEFAULT * If var set, evaluate expression as $OTHER, otherwise as null string If var set, evaluate expression as $OTHER, otherwise as null string If var not set, print $ERR_MSG * If var not set, print $ERR_MSG *
Matches all previously declared variables beginning with varprefix ${!varprefix@} Matches all previously declared variables beginning with varprefix * Of course if var is set, evaluate the expression as $var.
Table B5. String Operations Expression ${#string} ${string:position} ${string:position:length} Meaning Length of $string Extract substring from $string at $position Extract $length characters substring from $string at $position Strip shortest match of $substring from front of $string Strip longest match of $substring from front of $string Strip shortest match of $substring from back of $string Strip longest match of $substring from back of $string Replace first match of $substring with $replacement Replace all matches of $substring with $replacement If $substring matches front end of $string, substitute $replacement for $substring
644
Advanced BashScripting Guide If $substring matches back end of $string, substitute $replacement for $substring
expr match "$string" '$substring' expr "$string" : '$substring' expr index "$string" $substring
expr substr $string $position $length expr match "$string" '\($substring\)' expr "$string" : '\($substring\)' Extract $substring* at beginning of $string expr match "$string" Extract $substring* at end of $string '.*\($substring\)' expr "$string" : '.*\($substring\)' Extract $substring* at end of $string * Where $substring is a regular expression.
Length of matching $substring* at beginning of $string Length of matching $substring* at beginning of $string Numerical position in $string of first character in $substring that matches Extract $length characters from $string starting at $position Extract $substring* at beginning of $string
Table B6. Miscellaneous Constructs Expression Brackets if [ CONDITION ] if [[ CONDITION ]] Array[1]=element1 [az] Curly Brackets ${variable} ${!variable} { command1; command2; . . . commandN; } {string1,string2,string3,...} {a..z} {} Interpretation
Test construct Extended test construct Array initialization Range of characters within a Regular Expression
Parameter substitution Indirect variable reference Block of code Brace expansion Extended brace expansion Text replacement, after find and xargs
Advanced BashScripting Guide Array=(element1 element2 element3) result=$(COMMAND) >(COMMAND) <(COMMAND) Double Parentheses (( var = 78 )) var=$(( 20 + 5 )) (( var++ )) (( var )) (( var0 = var1<98?9:21 )) Quoting "$variable" 'string' Back Quotes result=`COMMAND` Array initialization Execute command in subshell and assign result to variable Process substitution Process substitution
Integer arithmetic Integer arithmetic, with variable assignment Cstyle variable increment Cstyle variable decrement Cstyle trinary operation
646
C.1. Sed
Sed is a noninteractive line editor. It receives text input, whether from stdin or from a file, performs certain operations on specified lines of the input, one line at a time, then outputs the result to stdout or to a file. Within a shell script, sed is usually one of several tool components in a pipe. Sed determines which lines of its input that it will operate on from the address range passed to it. [94] Specify this address range either by line number or by a pattern to match. For example, 3d signals sed to delete line 3 of the input, and /windows/d tells sed that you want every line of the input containing a match to "windows" deleted. Of all the operations in the sed toolkit, we will focus primarily on the three most commonly used ones. These are printing (to stdout), deletion, and substitution.
Table C1. Basic sed operators Operator [addressrange]/p [addressrange]/d s/pattern1/pattern2/ [addressrange]/s/pattern1/pattern2/ Name print delete substitute substitute Effect Print [specified address range] Delete [specified address range] Substitute pattern2 for first instance of pattern1 in a line Substitute pattern2 for first instance of pattern1 in a line, over addressrange replace any character in pattern1 with the corresponding 647
[addressrange]/y/pattern1/pattern2/
transform
Advanced BashScripting Guide character in pattern2, over addressrange (equivalent of tr) Operate on every pattern match within each matched line of input
global
Unless the g (global) operator is appended to a substitute command, the substitution operates only on the first instance of a pattern match within each line. From the command line and in a shell script, a sed operation may require quoting and certain options.
sed e '/^$/d' $filename # The e option causes the next string to be interpreted as an editing instruction. # (If passing only a single instruction to sed, the "e" is optional.) # The "strong" quotes ('') protect the RE characters in the instruction #+ from reinterpretation as special characters by the body of the script. # (This reserves RE expansion of the instruction for sed.) # # Operates on the text contained in file $filename.
In certain cases, a sed editing command will not work with single quotes.
filename=file1.txt pattern=BEGIN sed "/^$pattern/d" "$filename" # Works as specified. # sed '/^$pattern/d' "$filename" has unexpected results. # In this instance, with strong quoting (' ... '), #+ "$pattern" will not expand to "BEGIN".
Sed uses the e 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.
sed n '/xzy/p' # The n option # Otherwise all # The e option $filename tells sed to print only those lines matching the pattern. input lines would print. not necessary here since there is only a single editing instruction.
Table C2. Examples of sed operators Notation 8d /^$/d 1,/^$/d /Jones/p s/Windows/Linux/ s/BSOD/stability/g s/ *$// s/00*/0/g /GUI/d Effect Delete 8th line of input. Delete all blank lines. Delete from beginning of input up to, and including first blank line. Print only lines containing "Jones" (with n option). Substitute "Linux" for first instance of "Windows" found in each input line. Substitute "stability" for every instance of "BSOD" found in each input line. Delete all spaces at the end of every line. Compress all consecutive sequences of zeroes into a single zero. Delete all lines containing "GUI".
648
Advanced BashScripting Guide s/GUI//g Delete all instances of "GUI", leaving the remainder of each line intact. Substituting a zerolength string for another is equivalent to deleting that string within a line of input. This leaves the remainder of the line intact. Applying s/GUI// to the line
The most important parts of any application are its GUI and sound effects
results in
The most important parts of any application are its and sound effects
A backslash forces the sed replacement command to continue on to the next line. This has the effect of using the newline at the end of the first line as the replacement string.
s/^ /g */\
This substitution replaces linebeginning spaces with a newline. The net result is to replace paragraph indents with a blank line between paragraphs. An address range followed by one or more operations may require open and closed curly brackets, with appropriate newlines.
/[09AZaz]/,/^$/{ /^$/d }
This deletes only the first of each set of consecutive blank lines. That might be useful for singlespacing a text file, but retaining the blank line(s) between paragraphs. The usual delimiter that sed uses is /. However, sed allows other delimiters, such as %. This is useful when / is part of a replacement string, as in a file pathname. See Example 109 and Example 1530. A quick way to doublespace a text file is sed G filename. For illustrative examples of sed within shell scripts, see: 1. Example 331 2. Example 332 3. Example 153 4. Example A2 5. Example 1516 6. Example 1525 7. Example A12 8. Example A17 9. Example 1530 10. Example 109 11. Example 1544 12. Example A1 13. Example 1513 14. Example 1511 15. Example A10 16. Example 1812 17. Example 1517 18. Example A30 19. Example A25
649
Advanced BashScripting Guide For a more extensive treatment of sed, check the appropriate references in the Bibliography.
C.2. Awk
Awk is a fullfeatured text processing language with a syntax reminiscent of C. While it possesses an extensive set of operators and capabilities, we will cover only a couple of these here the ones most useful for shell scripting. Awk breaks each line of input passed to it into fields. By default, a field is a string of consecutive characters delimited by whitespace, 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. Strong quoting and curly brackets enclose blocks of awk code within a shell script.
echo one two | awk '{print $1}' # one echo one two | awk '{print $2}' # two
awk '{print $3}' $filename # Prints field #3 of file $filename to stdout. awk '{print $1 $5 $6}' $filename # Prints fields #1, #5, and #6 of file $filename.
We have just seen the awk print 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.
{ total += ${column_number} }
This adds the value of column_number to the running total of total>. Finally, to print "total", there is an END command block, executed after the script has processed all its input.
END { print total }
Corresponding to the END, there is a BEGIN, for a code block to be performed before awk starts processing its input. The following example illustrates how awk can add textparsing tools to a shell script.
INIT_TAB_AWK=""
650
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 . . . #+ forloops, iftests, and a couple of specialized functions. exit $? # Compare this script to lettercount.sh.
For simpler examples of awk within shell scripts, see: 1. Example 1413 Appendix C. A Sed and Awk MicroPrimer 651
Advanced BashScripting Guide 2. Example 198 3. Example 1530 4. Example 335 5. Example 924 6. Example 1420 7. Example 272 8. Example 273 9. Example 103 10. Example 1556 11. Example 929 12. Example 154 13. Example 914 14. Example 3316 15. Example 108 16. Example 334 17. Example 1549 That's all the awk we'll cover here, folks, but there's lots more to learn. See the appropriate references in the Bibliography.
652
127 128
128+n 130
ControlC is fatal error signal 2, (130 = 128 + 2, see above) 255* Exit status out of range exit 1 exit takes only integer args in the range 0 255 According to the above table, exit codes 1 2, 126 165, and 255 [95] have special meanings, and should therefore be avoided for userspecified exit parameters. Ending a script with exit 127 would certainly cause confusion when troubleshooting (is the error code a "command not found" or a userdefined one?). However, many scripts use an exit 1 as a general bailout upon error. Since exit code 1 signifies so many possible errors, this probably would not be helpful in debugging. There has been an attempt to systematize exit status numbers (see /usr/include/sysexits.h), but this is intended for C and C++ programmers. A similar standard for scripting might be appropriate. The author of this document proposes restricting userdefined exit codes to the range 64 113 (in addition to 0, for success), to conform with the C/C++ standard. This would allot 50 valid codes, and make troubleshooting scripts more straightforward. All userdefined exit codes in the accompanying examples to this document now conform to this standard, except where overriding circumstances exist, as in Example 92. Issuing a $? from the command line after a shell script exits gives results consistent with the table above only from the Bash or sh prompt. Running the Cshell or tcsh may give different values in some cases.
653
A command expects the first three file descriptors to be available. The first, fd 0 (standard input, stdin), is for reading. The other two (fd 1, stdout and fd 2, stderr) are for writing. There is a stdin, stdout, and a stderr associated with each command. ls 2>&1 means temporarily connecting the stderr of the ls command to the same "resource" as the shell's stdout. By convention, a command reads its input from fd 0 (stdin), prints normal output to fd 1 (stdout), and error ouput to fd 2 (stderr). If one of those three fd's is not open, you may encounter problems:
bash$ cat /etc/passwd >& cat: standard output: Bad file descriptor
For example, when xterm runs, it first initializes itself. Before running the user's shell, xterm opens the terminal device (/dev/pts/<n> or something similar) three times. 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. Redirection 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 subshell, a while or if or case or for loop...), or globally, for the remainder of the shell (using exec). ls > /dev/null means running ls with its fd 1 connected to /dev/null.
bash$ lsof a p $$ d0,1,2 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
bash$ exec 2> /dev/null bash$ lsof a p $$ d0,1,2 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
bash$ bash c 'lsof a p $$ d0,1,2' | cat 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
bash$ echo "$(bash c 'lsof a p $$ d0,1,2' 2>&1)" COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME lsof 426 root 0u CHR 136,1 3 /dev/pts/1
654
This works for different types of redirection. Exercise: Analyze the following script.
#! /usr/bin/env bash mkfifo /tmp/fifo1 /tmp/fifo2 while read a; do echo "FIFO1: $a"; done < /tmp/fifo1 & exec 7> /tmp/fifo1 exec 8> >(while read a; do echo "FD8: $a, to fd7"; done >&7) exec 3>&1 ( ( ( while read a; do echo "FIFO2: $a"; done < /tmp/fifo2 | tee /dev/stderr \ | tee /dev/fd/4 | tee /dev/fd/5 | tee /dev/fd/6 >&7 & exec 3> /tmp/fifo2 echo 1st, sleep 1 echo 2nd, sleep 1 echo 3rd, sleep 1 echo 4th, sleep 1 echo 5th, sleep 1 echo 6th, sleep 1 echo 7th, sleep 1 echo 8th, sleep 1 echo 9th, to stdout to stderr >&2 to fd 3 >&3 to fd 4 >&4 to fd 5 >&5 through a pipe | sed 's/.*/PIPE: &, to fd 5/' >&5 to fd 6 >&6 to fd 7 >&7 to fd 8 >&8
) 4>&1 >&3 3>& | while read a; do echo "FD4: $a"; done 1>&3 5>& 6>& ) 5>&1 >&3 | while read a; do echo "FD5: $a"; done 1>&3 6>& ) 6>&1 >&3 | while read a; do echo "FD6: $a"; done 3>& rm f /tmp/fifo1 /tmp/fifo2
# For each command and subshell, figure out which fd points to what. # Good luck! exit 0
655
Advanced BashScripting Guide recursive Recursive: Operate recursively (down directory tree). v verbose Verbose: output additional information to stdout or stderr. z compress Compress: apply compression (usually gzip). However: In tar and gawk: f file File: filename follows. In cp, mv, rm: f force Force: force overwrite of target file(s). Many UNIX and Linux utilities deviate from this "standard," so it is dangerous to assume that a given option will behave in a standard way. Always check the man page for the command in question when in doubt. A complete table of recommended options for the GNU utilities is available at the GNU standards page.
657
Advanced BashScripting Guide restricted Runs the shell, or a script, in restricted mode. posix Forces Bash to conform to POSIX mode. version Display Bash version information and exit. End of options. Anything further on the command line is an argument, not an option.
658
This file is present on Red Hat and Fedora Core installations, but may be missing from other distros.
659
Advanced BashScripting Guide devices. /media In newer Linux distros, the preferred mount point for I/O devices, such as CD ROMs or USB flash drives. /var Variable (changeable) system files. This is a catchall "scratchpad" directory for data generated while a Linux/UNIX machine is running. /var/log Systemwide log files. /var/spool/mail User mail spool. /lib Systemwide library files. /usr/lib More systemwide library files. /tmp System temporary files. /boot System boot directory. The kernel, module links, system map, and boot manager reside here. Altering files in this directory may result in an unbootable system.
661
Appendix I. Localization
Localization is an undocumented Bash feature. 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. To create a localized script, use the following template to write all messages to the user (error messages, prompts, etc.).
#!/bin/bash # localized.sh # Script by Stphane Chazelas, #+ modified by Bruno Haible, bugfixed by Alfredo Pironti. . gettext.sh E_CDERROR=65 error() { printf "$@" >&2 exit $E_CDERROR } cd $var || error "`eval_gettext \"Can\'t cd to \\\$var.\"`" # The triple backslashes (escapes) in front of $var needed #+ "because eval_gettext expects a string #+ where the variable values have not yet been substituted." # per Bruno Haible read p "`gettext \"Enter the value: \"`" var # ...
# #
# This script has been modified to not use the $"..." syntax in #+ favor of the "`gettext \"...\"`" syntax. # This is ok, but with the new localized.sh program, the commands #+ "bash D filename" and "bash dumppostring filename" #+ will produce no output #+ (because those command are only searching for the $"..." strings)! # The ONLY way to extract strings from the new file is to use the # 'xgettext' program. However, the xgettext program is buggy. # Note that 'xgettext' has another bug. # # The shell fragment: # gettext s "I like Bash" # will be correctly extracted, but . . . # xgettext s "I like Bash" # . . . fails! # 'xgettext' will extract "s" because #+ the command only extracts the #+ very first argument after the 'gettext' word.
Appendix I. Localization
662
# Let's localize the following shell fragment: # echo "h display help and exit" # # First, one could do this: # echo "`gettext \"h display help and exit\"`" # This way 'xgettext' will work ok, #+ but the 'gettext' program will read "h" as an option! # # One solution could be # echo "`gettext \"h display help and exit\"`" # This way 'gettext' will work, #+ but 'xgettext' will extract "", as referred to above. # # The workaround you may use to get this string localized is # echo e "`gettext \"\\0h display help and exit\"`" # We have added a \0 (NULL) at the beginning of the sentence. # This way 'gettext' works correctly, as does 'xgettext.' # Moreover, the NULL character won't change the behavior #+ of the 'echo' command. # bash$ bash D localized.sh "Can't cd to %s." "Enter the value: "
This lists all the localized text. (The D option lists doublequoted strings prefixed by a $, without executing the script.)
bash$ bash dumppostrings localized.sh #: a:6 msgid "Can't cd to %s." msgstr "" #: a:7 msgid "Enter the value: " msgstr ""
The dumppostrings option to Bash resembles the D option, but uses gettext "po" format. Bruno Haible points out: Starting with gettext0.12.2, xgettext o localized.sh is recommended instead of bash dumppostrings localized.sh, because xgettext . . .
Appendix I. Localization
663
Advanced BashScripting Guide 1. understands the gettext and eval_gettext commands (whereas bash dumppostrings understands only its deprecated $"..." syntax) 2. can extract comments placed by the programmer, intended to be read by the translator. 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. Now, build a language.po file for each language that the script will be translated into, specifying the msgstr. Alfredo Pironti gives the following example: fr.po:
#: a:6 msgid "Can't cd to $var." msgstr "Impossible de se positionner dans le repertoire $var." #: a:7 msgid "Enter the value: " msgstr "Entrez la valeur : " # #+ #+ #+ The string are dumped with the variable names, not with the %s syntax, similar to C programs. This is a very cool feature if the programmer uses variable names that make sense!
Then, run msgfmt. msgfmt o localized.sh.mo fr.po Place the resulting localized.sh.mo file in the /usr/local/share/locale/fr/LC_MESSAGES directory, and at the beginning of the script, insert the lines:
TEXTDOMAINDIR=/usr/local/share/locale TEXTDOMAIN=localized.sh
If a user on a French system runs the script, she will get French messages. With older versions of Bash or other shells, localization requires gettext, using the s option. In this case, the script becomes:
#!/bin/bash # localized.sh E_CDERROR=65 error() { local format=$1 shift printf "$(gettext s "$format")" "$@" >&2 exit $E_CDERROR } cd $var || error "Can't cd to %s." "$var" read p "$(gettext s "Enter the value: ")" var # ...
The TEXTDOMAIN and TEXTDOMAINDIR variables need to be set and exported to the environment. This should be done within the script itself. Appendix I. Localization 664
Advanced BashScripting Guide This appendix written by Stphane Chazelas, with modifications suggested by Alfredo Pironti, and by Bruno Haible, maintainer of GNU gettext.
Appendix I. Localization
665
Internal variables associated with Bash history commands: 1. $HISTCMD 2. $HISTCONTROL 3. $HISTIGNORE 4. $HISTFILE 5. $HISTFILESIZE 6. $HISTSIZE 7. $HISTTIMEFORMAT (Bash, ver. 3.0 or later) 8. !! 9. !$ 10. !# 11. !N 12. !N 13. !STRING 14. !?STRING? 15. ^STRING^string^ Unfortunately, the Bash history tools find no use in scripting.
#!/bin/bash # history.sh # Attempt to use 'history' command in a script. history # Script produces no output. # History commands do not work within a script. bash$ ./history.sh (no output)
The Advancing in the Bash Shell site gives a good introduction to the use of history commands in Bash.
666
667
options: cdspell cdable_vars checkhash checkwinsize mailwarn sourcepath no_empty_cmd_completion # bash>=2.04 only cmdhist histappend histreedit histverify extglob # Necessary for programmable completion
export TIMEFORMAT=$'\nreal %3R\tuser %3U\tsys %3S\tpcpu %P\n' export HISTIGNORE="&:bg:fg:ll:h" export HOSTFILE=$HOME/.hosts # Put a list of remote hosts in ~/.hosts
668
669
#=============================================================== # # ALIASES AND FUNCTIONS # # Arguably, some functions defined here are quite big # (ie 'lowercase') but my workstation has 512Meg of RAM, so ... # If you want to make this file smaller, these functions can # be converted into scripts. # # Many functions were taken (almost) straight from the bash2.04 # examples. # #=============================================================== # # Personnal Aliases # alias rm='rm i' alias cp='cp i' alias mv='mv i' # > Prevents accidentally clobbering files. alias mkdir='mkdir p' alias alias alias alias alias alias alias alias alias alias alias # The alias alias alias alias alias alias alias alias alias alias h='history' j='jobs l' r='rlogin' which='type all' ..='cd ..' path='echo e ${PATH//:/\\n}' print='/usr/bin/lp o nobanner d $LPDEST' # Assumes LPDEST is defined pjet='enscript h G fCourier9 d $LPDEST' # Prettyprint using enscript background='xv root quit max rmode 5' # Put a picture in the background du='du kh' df='df kTh' 'ls' family (this assumes la='ls Al' ls='ls hF color' lx='ls lXB' lk='ls lSr' lc='ls lcr' lu='ls lur' lr='ls lR' lt='ls ltr' lm='ls al |more' tree='tree Csu' you use the GNU ls) # show hidden files # add colors for filetype recognition # sort by extension # sort by size # sort by change time # sort by access time # recursive ls # sort by date # pipe through 'more' # nice alternative to 'ls'
670
671
; }
672
# # 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:".*"} ; } # This function is roughly the same as 'killall' on linux # but has no equivalent (that I know of) on Solaris 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 my_ip() # get IP adresses { MY_IP=$(/sbin/ifconfig ppp0 | awk '/inet/ { print $2 } ' | \ sed e s/addr://) MY_ISP=$(/sbin/ifconfig ppp0 | awk '/PtP/ { print $3 } ' | \ sed e s/PtP://) } function ii() # get current host related info { echo e "\nYou are logged on ${RED}$HOST" echo e "\nAdditionnal information:$NC " ; uname a echo e "\n${RED}Users logged on:$NC " ; w h echo e "\n${RED}Current date :$NC " ; date echo e "\n${RED}Machine stats :$NC " ; uptime echo e "\n${RED}Memory stats :$NC " ; free my_ip 2>& ; echo e "\n${RED}Local IP Address :$NC" ; echo ${MY_IP:"Not connected"} echo e "\n${RED}ISP Address :$NC" ; echo ${MY_ISP:"Not connected"} echo } # Misc utilities: function repeat() { local i max max=$1; shift; # repeat n times command
673
helptopic help # currently same as builtins shopt shopt stopped P '%' bg job P '%' fg jobs disown mkdir rmdir o default cd
# Compression complete f o default X complete f o default X complete f o default X complete f o default X complete f o default X complete f o default X complete f o default X complete f o default X # Postscript,pdf,dvi..... complete f o default X complete f o default X complete f o default X
'!*.ps' gs ghostview ps2pdf ps2ascii '!*.dvi' dvips dvipdf xdvi dviselect dvitype '!*.pdf' acroread pdf2ps
674
default X '!*.+(jp*g|gif|xpm|png|bmp)' xv gimp default X '!*.+(mp3|MP3)' mpg123 mpg321 default X '!*.+(ogg|OGG)' ogg123
perl perl5
# This is a 'universal' completion function it works when commands have # a socalled 'long options' mode , ie: 'ls all' instead of 'ls a' _get_longopts () { $1 help | sed e '//!d' e 's/.*\([^[:space:].,]*\).*/\1/'| \ grep ^"$2" |sort u ; } _longopts_func () { case "${2:*}" in *) ;; *) return ;; esac case "$1" in \~*) eval cmd="$1" ;; *) cmd="$1" ;; esac COMPREPLY=( $(_get_longopts ${1} ${2} ) ) } complete complete o default F _longopts_func configure bash o default F _longopts_func wget id info a2ps ls recode
_make_targets () { local mdef makef gcmd cur prev i COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD1]} # if prev argument is f, return possible filename completions. # we could be a little smarter here and return matches against # `makefile Makefile *.mk', whatever exists case "$prev" in *f) COMPREPLY=( $(compgen f $cur ) ); return 0;; esac # if we want an option, return the possible posix options case "$cur" in ) COMPREPLY=(e f i k n p q r S s t); return 0;; esac # make reads `makefile' before `Makefile' if [ f makefile ]; then
675
# local convention
# 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 makef=${COMP_WORDS[i+1]} # eval for tilde expansion break fi done [ z "$makef" ] && makef=$mdef # if we have a partial word to complete, restrict completions to # matches of that word if [ n "$2" ]; then gcmd='grep "^$2"' ; else gcmd=cat ; fi # if we don't want to use *.mk, we can take out the cat and use # test f $makef and input redirection COMPREPLY=( $(cat $makef 2>/dev/null | \ awk 'BEGIN {FS=":"} /^[^.# ][^=]*:/ {print $1}' \ | tr s ' ' '\012' | sort u | eval $gcmd ) ) } complete F _make_targets X '+($*|*.[cho])' make gmake pmake
# cvs(1) completion _cvs () { local cur prev COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD1]} if [ $COMP_CWORD eq 1 ] || [ COMPREPLY=( $( compgen W export history import log tag update' $cur )) else COMPREPLY=( $( compgen f fi return 0 } complete F _cvs cvs _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=( $( /usr/bin/ps u $USER o comm | \ sed e '1,1d' e 's#[]\[]##g' e 's#^.*/##'| \ "${prev:0:1}" = "" ]; then 'add admin checkout commit diff \ rdiff release remove rtag status \
$cur ))
676
# # # # # # #
A metacommand completion function for commands like sudo(8), which need to first complete on a command, then complete according to that command's own completion definition currently not quite foolproof (e.g. mount and umount don't work properly), but still quite useful By Ian McDonald, modified by me.
_my_command() { local cur func cline cspec COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} if [ $COMP_CWORD = 1 ]; then COMPREPLY=( $( compgen c $cur ) ) elif complete p ${COMP_WORDS[1]} &>/dev/null; then cspec=$( complete p ${COMP_WORDS[1]} ) if [ "${cspec%%F *}" != "${cspec}" ]; then # complete F <function> # # COMP_CWORD and COMP_WORDS() are not readonly, # so we can set them before handing off to regular # completion routine # set current token number to 1 less than now COMP_CWORD=$(( $COMP_CWORD 1 )) # get function name func=${cspec#*F } func=${func%% *} # get current command line minus initial command cline="${COMP_LINE#$1 }" # split current command line tokens into array COMP_WORDS=( $cline ) $func $cline elif [ "${cspec#*[abcdefgjkvu]}" != "" ]; then # complete [abcdefgjkvu] #func=$( echo $cspec | sed e 's/^.*\([abcdefgjkvu]\).*$/\1/' ) func=$( echo $cspec | sed e 's/^complete//' e 's/[^ ]*$//' ) COMPREPLY=( $( eval compgen $func $cur ) ) elif [ "${cspec#*A}" != "$cspec" ]; then # complete A <type> func=${cspec#*A } func=${func%% *} COMPREPLY=( $( compgen A $func $cur ) ) fi else COMPREPLY=( $( compgen f $cur ) ) fi }
677
678
Table L1. Batch file keywords / variables / operators, and their shell equivalents Batch File Operator % / \ == !==! | @ * > >> < %VAR% REM NOT NUL ECHO ECHO. ECHO OFF FOR %%VAR IN (LIST) DO :LABEL GOTO PAUSE CHOICE IF Shell Script Equivalent $ / = != | set +v * > >> < $VAR # ! /dev/null echo echo set +v for var in [list]; do none (unnecessary) none (use a function) sleep case or select if Meaning commandline parameter prefix command option flag directory path separator (equalto) string comparison test (not equalto) string comparison test pipe do not echo current command filename "wild card" file redirection (overwrite) file redirection (append) redirect stdin environmental variable comment negate following test "black hole" for burying command output echo (many more option in Bash) echo blank line do not echo command(s) following "for" loop label jump to another location in the script pause or wait an interval menu choice iftest 679
Advanced BashScripting Guide IF EXIST FILENAME IF !%N==! CALL COMMAND /C SET SHIFT SGN ERRORLEVEL CON PRN LPT1 COM1 if [ e filename ] if [ z "$N" ] source or . (dot operator) source or . (dot operator) export shift lt or gt $? stdin /dev/lp0 /dev/lp0 /dev/ttyS0 test if file exists if replaceable parameter "N" not present "include" another script "include" another script (same as CALL) set an environmental variable left shift commandline argument list sign (of integer) exit status "console" (stdin) (generic) printer device first printer device first serial port
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.
Table L2. DOS commands and their UNIX equivalents DOS Command ASSIGN ATTRIB CD CHDIR CLS COMP COPY CtlC CtlZ DEL DELTREE DIR ERASE EXIT FC FIND MD UNIX Equivalent ln chmod cd cd clear diff, comm, cmp cp CtlC CtlD rm rm rf ls l rm exit comm, cmp grep mkdir Effect link file or directory change file permissions change directory change directory clear screen file compare file copy break (signal) EOF (endoffile) delete file(s) delete directory recursively directory listing delete file(s) exit current process file compare find strings in files make directory 680
Advanced BashScripting Guide MKDIR MORE MOVE PATH REN RENAME RD RMDIR SORT TIME TYPE XCOPY mkdir more mv $PATH mv mv rmdir rmdir sort date cat cp make directory text file paging filter move path to executables rename (move) rename (move) remove directory remove directory sort file display system time output file to stdout (extended) file copy
Virtually all UNIX and shell operators and commands have many more options and enhancements than their DOS and batch file equivalents. Many DOS batch files rely on auxiliary utilities, such as ask.com, a crippled counterpart to read. DOS supports a very limited and incompatible subset of filename wildcard expansion, recognizing only the * and ? characters. Converting a DOS batch file into a shell script is generally straightforward, and the result ofttimes reads better than the original.
@ECHO OFF IF !%1==! GOTO VIEWDATA REM IF NO COMMANDLINE 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
681
Advanced BashScripting Guide Example L2. viewdata.sh: Shell Script Conversion of VIEWDATA.BAT
#!/bin/bash # viewdata.sh # Conversion of VIEWDATA.BAT to shell script. DATAFILE=/home/bozo/datafiles/bookcollection.data ARGNO=1 # @ECHO OFF if [ $# lt "$ARGNO" ] then less $DATAFILE else grep "$1" $DATAFILE fi exit 0 Command unnecessary here. # IF !%1==! GOTO VIEWDATA # TYPE C:\MYDIR\BOOKLIST.TXT | MORE # FIND "%1" C:\MYDIR\BOOKLIST.TXT
# :EXIT0
# GOTOs, labels, smokeandmirrors, and flimflam unnecessary. # The converted script is short, sweet, and clean, #+ which is more than can be said for the original.
Ted Davis' Shell Scripts on the PC site has a set of comprehensive tutorials on the oldfashioned art of batch file programming. Certain of his ingenious techniques could conceivably have relevance for shell scripts.
682
Appendix M. Exercises
M.1. Analyzing Scripts
Examine the following script. Run it, then explain what it does. Annotate the script and rewrite it in a more compact and elegant manner.
#!/bin/bash MAX=10000
for((nr=1; nr<$MAX; nr++)) do let "t1 = nr % 5" if [ "$t1" ne 3 ] then continue fi let "t2 = nr % 7" if [ "$t2" ne 4 ] then continue fi let "t3 = nr % 9" if [ "$t3" ne 5 ] then continue fi break done echo "Number = $nr" # What happens when you comment out this line? Why?
exit 0
Explain what the following script does. It is really just a parameterized commandline pipe.
#!/bin/bash DIRNAME=/usr/bin FILETYPE="shell script" LOGFILE=logfile file "$DIRNAME"/* | fgrep "$FILETYPE" | tee $LOGFILE | wc l exit 0
Examine and explain the following script. For hints, you might refer to the listings for find and stat. Appendix M. Exercises 683
He wished to write a script tracking changes to the system log file, /var/log/messages. Unfortunately, the above code block hangs and does nothing useful. Why? Fix this so it does work. (Hint: rather than redirecting the stdin of the loop, try a pipe.) Analyze the following "oneliner" (here split into two lines for clarity) contributed by Rory Winston:
export SUM=0; for f in $(find src name "*.java"); do export SUM=$(($SUM + $(wc l $f | awk '{ print $1 }'))); done; echo $SUM
Hint: First, break the script up into bitesized sections. Then, carefully examine its use of doubleparentheses arithmetic, the export command, the find command, the wc command, and awk. Analyze Example A10, 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. Alter the script so that it accepts any ordinary ASCII text file as input for its initial "generation". The script will read the first $ROW*$COL characters, and set the occurrences of vowels as "living" cells. Hint: be sure to translate the spaces in the input file to underscore characters.
Advanced BashScripting Guide 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 floppy, then press ENTER. Finally, save the file to the floppy. Selfreproducing Script Write a script that backs itself up, that is, copies itself to a file named backup.sh. Hint: Use the cat command and the appropriate positional parameter. Converting for loops to while and until loops Convert the for loops in Example 101 to while loops. Hint: store the data in an array and step through the array elements. Having already done the "heavy lifting", now convert the loops in the example to until loops. Changing the line spacing of a text file Write a script that reads each line of a target file, then writes the line back to stdout, but with an extra blank line following. This has the effect of doublespacing the file. Include all necessary code to check whether the script gets the necessary command line argument (a filename), and whether the specified file exists. When the script runs correctly, modify it to triplespace the target file. Finally, write a script to remove all blank lines from the target file, singlespacing it. Backwards Listing Write a script that echoes itself to stdout, but backwards. Automatically Decompressing Files Given a list of filenames as input, this script queries each target file (parsing the output of the file command) for the type of compression used on it. Then the script automatically invokes the appropriate decompression command (gunzip, bunzip2, unzip, uncompress, or whatever). If a target file is not compressed, the script emits a warning message, but takes no other action on that particular file. Unique System ID Generate a "unique" 6digit hexadecimal identifier for your computer. Do not use the flawed hostid command. Hint: md5sum /etc/passwd, then select the first 6 digits of output. Backup Archive as a "tarball" (*.tar.gz file) all the files in your home directory tree (/home/yourname) that have been modified in the last 24 hours. Hint: use find. Checking whether a process is still running Given a process ID (PID) as an argument, this script will check, at userspecified intervals, whether the given process is still running. You may use the ps and sleep commands. Primes Print (to stdout) all prime numbers between 60000 and 63000. The output should be nicely formatted in columns (hint: use printf). Lottery Numbers 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, with no duplicates. The script will give the option of echoing the numbers to stdout or saving them to a file, along with the date and time the particular number set was generated. INTERMEDIATE Integer or String Appendix M. Exercises 685
Advanced BashScripting Guide Write a script function 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. Hint: What does the following expression return when $1 is not an integer? expr $1 + 0 Managing Disk Space List, one at a time, all files larger than 100K in the /home/username 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. Removing Inactive Accounts Inactive accounts on a network waste disk space and may become a security risk. Write an administrative script (to be invoked by root or the cron daemon) that checks for and deletes user accounts that have not been accessed within the last 90 days. Enforcing Disk Quotas Write a script for a multiuser system that checks users' disk usage. If a user surpasses the preset limit (100 MB, for example) in her /home/username directory, then the script will automatically send her a warning email. The script will use the du and mail commands. As an option, it will allow setting and enforcing quotas using the quota and setquota commands. Logged in User Information For all logged in users, show their real names and the time and date of their last login. Hint: use who, lastlog, and parse /etc/passwd. Safe Delete Write, as a script, a "safe" delete command, srm.sh. Filenames passed as commandline arguments to this script are not deleted, but instead gzipped if not already compressed (use file to check), then moved to a /home/username/trash directory. At invocation, the script checks the "trash" directory for files older than 48 hours and deletes them. Making Change 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. 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 Example 238. Quadratic Equations Solve a "quadratic" equation of the form Ax^2 + Bx + C = 0. Have a script take as arguments the coefficients, A, B, and C, and return the solutions to four decimal places. Hint: pipe the coefficients to bc, using the wellknown formula, x = ( B +/ sqrt( B^2 4AC ) ) / 2A. Sum of Matching Numbers Find the sum of all fivedigit numbers (in the range 10000 99999) containing exactly two 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. Some examples of matching numbers are 42057, 74638, and 89515. Lucky Numbers Appendix M. Exercises 686
Advanced BashScripting Guide A "lucky number" is one whose individual digits add up to 7, in successive additions. For example, 62431 is a "lucky number" (6 + 2 + 4 + 3 + 1 = 16, 1 + 6 = 7). Find all the "lucky numbers" between 1000 and 10000. Alphabetizing a String Alphabetize (in ASCII order) an arbitrary string read from the command line. Parsing Parse /etc/passwd, and output its contents in nice, easytoread tabular form. Logging Logins Parse /var/log/messages to produce a nicely formatted file of user logins and login times. The script may need to run as root. (Hint: Search for the string "LOGIN.") PrettyPrinting a Data File Certain database and spreadsheet packages use savefiles with commaseparated values (CSVs). Other applications often need to parse these files. Given a data file with commaseparated fields, of the form:
Jones,Bill,235 S. Williams St.,Denver,CO,80221,(303) 2447989 Smith,Tom,404 Polk Ave.,Los Angeles,CA,90003,(213) 8795612 ...
Reformat the data and print it out to stdout in labeled, evenlyspaced columns. Justification Given ASCII text input either from stdin or a file, adjust the word spacing to rightjustify each line to a userspecified linewidth, then send the output to stdout. Mailing List Using the mail command, write a script that manages a simple mailing list. The script automatically emails 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. Generating Passwords Generate pseudorandom 8character passwords, using characters in the ranges [09], [AZ], [az]. Each password must contain at least two digits. Monitoring a User You suspect that one particular user on the network has been abusing his privileges and possibly attempting to hack the system. Write a script to automatically monitor and log his activities when he's signed on. The log file will save entries for the previous week, and delete those entries more than seven days old. You may use last, lastlog, and lastcomm to aid your surveillance of the suspected malefactor. Checking for Broken Links Using lynx with the traversal option, write a script that checks a Web site for broken links. DIFFICULT Testing Passwords Write a script to check and validate passwords. The object is to flag "weak" or easily guessed password candidates. 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: Minimum length of 8 characters Must contain at least one numeric character Appendix M. Exercises 687
Advanced BashScripting Guide Must contain at least one of the following nonalphabetic characters: @, #, $, %, &, *, +, , = Optional: 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 "words" found in a standard dictionary. Enable the script to check all the passwords on your system. These may or may not reside in /etc/passwd. This exercise tests mastery of Regular Expressions. Cross Reference Write a script that generates a crossreference (concordance) 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, linked list constructs would be used in such applications. Therefore, you should investigate arrays in the course of this exercise. Example 1511 is probably not a good place to start. Square Root Write a script to calculate square roots of numbers using Newton's Method. The algorithm for this, expressed as a snippet of Bash pseudocode is:
# (Isaac) Newton's Method for speedy extraction #+ of square roots. guess = $argument # $argument is the number to find the square root of. # $guess is each successive calculated "guess" or trial solution #+ of the square root. # Our first "guess" at a square root is the argument itself. oldguess = 0 # $oldguess is the previous $guess. tolerance = .000001 # To how close a tolerance we wish to calculate. loopcnt = 0 # Let's keep track of how many times through the loop. # Some arguments will require more loop iterations than others.
while [ ABS( $guess $oldguess ) gt $tolerance ] # ^^^^^^^^^^^^^^^^^^^^^^^ Fix up syntax, of course. # #+ # #+ do oldguess = $guess # # Update $oldguess to previous $guess. "ABS" is a (floating point) function to find the absolute value of the difference between the two terms. So, as long as difference between current and previous trial solution (guess) exceeds the tolerance, keep looping.
======================================================= guess = ( $oldguess + ( $argument / $oldguess ) ) / 2.0 # = 1/2 ( ($oldguess **2 + $argument) / $oldguess ) # equivalent to: # = 1/2 ( $oldguess + $argument / $oldguess ) # that is, "averaging out" the trial solution and #+ the proportion of argument deviation #+ (in effect, splitting the error in half).
Appendix M. Exercises
688
(( loopcnt++ )) done
It's a simple enough recipe, and should be easy enough to convert into a working Bash script. The problem, though, is that Bash has no native support for floating point numbers. So, the script writer needs to use bc or possibly awk to convert the numbers and do the calculations. It gets rather messy . . . Logging File Accesses Log all accesses to the files in /etc 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 should be flagged. Write this data as neatly formatted records in a logfile. Monitoring Processes 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 email to the system administrator (or root) with all relevant information, including the time, PID of the parent, PIDs of the children, etc. The script writes a report to a log file every ten minutes. Strip Comments Strip all comments from a shell script whose name is specified on the command line. Note that the "#! line" must not be stripped out. Strip HTML Tags Strip all 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. XML Conversion Convert an XML file to both HTML and text format. Chasing Spammers Write a script that analyzes a spam email 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 your own ISP's IP address, so you don't end up complaining about yourself. As necessary, use the appropriate network analysis commands. For some ideas, see Example 1538 and Example A29. Optional: Write a script that searches through a list of email messages and deletes the spam according to specified filters. Creating man pages Write a script that automates the process of creating man pages. Given a text file which contains information to be formatted into a man page, the script will read the file, then invoke the appropriate groff commands to output the corresponding man page to stdout. The text file contains blocks of information under the standard man page headings, i.e., "NAME," "SYNOPSIS," "DESCRIPTION," etc. See Example 1527. Morse Code
Appendix M. Exercises
689
Advanced BashScripting Guide Convert a text file to Morse code. Each character of the text file will be represented as a corresponding Morse code group of dots and dashes (underscores), separated by whitespace from the next. For example:
Invoke the "morse.sh" script with "script" as an argument to convert to Morse.
Hex Dump Do a hex(adecimal) dump on a binary file specified as an argument. The output should be in neat tabular fields, with the first field showing the address, each of the next 8 fields a 4byte hex number, and the final field the ASCII equivalent of the previous 8 fields. 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. Emulating a Shift Register Using Example 2614 as an inspiration, write a script that emulates a 64bit shift register as an array. Implement functions to load the register, shift left, shift right, and rotate it. Finally, write a function that interprets the register contents as eight 8bit ASCII characters. Determinant Solve a 4 x 4 determinant. Hidden Words Write a "wordfind" puzzle generator, a script that hides 10 input words in a 10 x 10 matrix of random letters. The words may be hidden across, down, or diagonally. Optional: Write a script that solves wordfind 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.) Anagramming Anagram 4letter input. For example, the anagrams of word are: do or rod row word. You may use /usr/share/dict/linux.words as the reference list. Word Ladders A "word ladder" is a sequence of words, with each successive word in the sequence differing from the previous one by a single letter. For example, to "ladder" from mark to vase:
mark > park > part > past > vast > vase ^ ^ ^ ^ ^
Write a script that solves word ladder puzzles. Given a starting and an ending word, the script will list all intermediate steps in the "ladder." Note that all words in the sequence must be legitimate dictionary words. Fog Index The "fog index" 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. The Gunning version of the fog index uses the following algorithm. Appendix M. Exercises 690
Advanced BashScripting Guide 1. Choose a section of the text at least 100 words in length. 2. Count the number of sentences (a portion of a sentence truncated by the boundary of the text section counts as one). 3. Find the average number of words per sentence. AVE_WDS_SEN = TOTAL_WORDS / SENTENCES 4. Count the number of "difficult" words in the segment those containing at least 3 syllables. Divide this quantity by total words to get the proportion of difficult words. PRO_DIFF_WORDS = LONG_WORDS / TOTAL_WORDS 5. The Gunning fog index is the sum of the above two quantities, multiplied by 0.4, then rounded to the nearest integer. G_FOG_INDEX = int ( 0.4 * ( AVE_WDS_SEN + PRO_DIFF_WORDS ) ) 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 ruleofthumb formula might consider the number of letters in a word and the vowelconsonant mix. A strict interpretation of the Gunning fog index does not count compound words and proper nouns as "difficult" words, but this would enormously complicate the script. Calculating PI using Buffon's Needle The Eighteenth Century French mathematician de Buffon came up with a novel experiment. Repeatedly drop a needle of length "n" onto a wooden floor composed of long and narrow parallel boards. The cracks separating the equalwidth floorboards are a fixed distance "d" 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. In the spirit of Example 1546, write a script that runs a Monte Carlo simulation of Buffon's Needle. To simplify matters, set the needle length equal to the distance between the cracks, n = d. Hint: there are actually two critical variables: the distance from the center of the needle to the crack nearest to it, and the angle of the needle to that crack. You may use bc to handle the calculations. Playfair Cipher Implement the Playfair (Wheatstone) Cipher in a script. The Playfair Cipher encrypts text by substitution of "digrams" (2letter groupings). It is traditional to use a 5 x 5 letter scrambledalphabet key square for the encryption and decryption.
C A I P V O B K Q W D F L R X E G M T Y S H N U Z
Each letter of the alphabet appears once, except "I" also represents "J". The arbitrarily chosen key word, "CODES" comes first, then all the rest of the alphabet, in order from left to right, skipping letters already used. To encrypt, separate the plaintext message into digrams (2letter groups). If a group has two identical letters, delete the second, and form a new group. If there is a single letter left over at the end, insert a "null" character, typically an "X."
Appendix M. Exercises
691
The "TH" digram falls under case #3. G H M N T U (Rectangle with "T" and "H" at corners) T > U H > G
The "SE" digram falls under case #1. C O D E S (Row containing "S" and "E") S > C E > S (wraps around left to beginning of row)
========================================================================= To decrypt encrypted text, reverse the above procedure under cases #1 and #2 (move in opposite direction for substitution). Under case #3, just take the remaining two corners of the rectangle.
Helen Fouche Gaines' classic work, ELEMENTARY CRYPTANALYSIS (1939), gives a fairly detailed rundown on the Playfair Cipher and its solution methods.
This script will have three main sections I. Generating the "key square", based on a userinput keyword. II. Encrypting a "plaintext" message. III. Decrypting encrypted text. The script will make extensive use of arrays and functions. Please do not send the author your solutions to these exercises. There are better ways to impress him with your cleverness, such as submitting bugfixes and suggestions for improving this book.
Appendix M. Exercises
692
Table N1. Revision History Release 0.1 0.2 0.3 0.4 0.5 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 Date 14 Jun 2000 30 Oct 2000 12 Feb 2001 08 Jul 2001 03 Sep 2001 14 Oct 2001 06 Jan 2002 31 Mar 2002 02 Jun 2002 16 Jun 2002 13 Jul 2002 29 Sep 2002 05 Jan 2003 10 May 2003 21 Jun 2003 24 Aug 2003 14 Sep 2003 31 Oct 2003 03 Jan 2004 25 Jan 2004 15 Feb 2004 15 Mar 2004 18 Apr 2004 11 Jul 2004 03 Oct 2004 14 Nov 2004 06 Feb 2005 20 Mar 2005 08 May 2005 05 Jun 2005 28 Aug 2005 23 Oct 2005 Comments Initial release. Bugs fixed, plus much additional material and more example scripts. Major update. Complete revision and expansion of the book. Major update: Bugfixes, material added, sections reorganized. Stable release: Bugfixes, reorganization, material added. Bugfixes, material and scripts added. Bugfixes, material and scripts added. TANGERINE release: A few bugfixes, much more material and scripts added. MANGO release: A number of typos fixed, more material and scripts. PAPAYA release: A few bugfixes, much more material and scripts added. POMEGRANATE release: Bugfixes, more material, one more script. COCONUT release: A couple of bugfixes, more material, one more script. BREADFRUIT release: A number of bugfixes, more scripts and material. PERSIMMON release: Bugfixes, and more material. GOOSEBERRY release: Major update. HUCKLEBERRY release: Bugfixes, and more material. CRANBERRY release: Major update. STRAWBERRY release: Bugfixes and more material. MUSKMELON release: Bugfixes. STARFRUIT release: Bugfixes and more material. SALAL release: Minor update. MULBERRY release: Minor update. ELDERBERRY release: Minor update. LOGANBERRY release: Major update. BAYBERRY release: Bugfix update. BLUEBERRY release: Minor update. RASPBERRY release: Bugfixes, much material added. TEABERRY release: Bugfixes, stylistic revisions. BOXBERRY release: Bugfixes, some material added. POKEBERRY release: Bugfixes, some material added. WHORTLEBERRY release: Bugfixes, some material added. 693
Advanced BashScripting Guide 3.8 3.9 4.0 4.1 4.2 4.3 5.0 26 Feb 2006 15 May 2006 18 Jun 2006 08 Oct 2006 10 Dec 2006 29 Apr 2007 24 Jun 2007 BLAEBERRY release: Bugfixes, some material added. SPICEBERRY release: Bugfixes, some material added. WINTERBERRY release: Major reorganization. WAXBERRY release: Minor update. SPARKLEBERRY release: Important update. INKBERRY release: Bugfixes, material added. SERVICEBERRY release: Major update.
694
695
Appendix P. To Do List
A comprehensive survey of incompatibilities between Bash and the classic Bourne shell. Same as above, but for the Korn shell (ksh). A primer on CGI programming, using Bash. Here's a simple CGI script to get you started.
# Disable filename globbing. set f # Header tells browser what to expect. echo Contenttype: 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 echo echo echo echo echo echo echo echo SERVER_SOFTWARE = $SERVER_SOFTWARE SERVER_NAME = $SERVER_NAME GATEWAY_INTERFACE = $GATEWAY_INTERFACE SERVER_PROTOCOL = $SERVER_PROTOCOL SERVER_PORT = $SERVER_PORT REQUEST_METHOD = $REQUEST_METHOD HTTP_ACCEPT = "$HTTP_ACCEPT" PATH_INFO = "$PATH_INFO" PATH_TRANSLATED = "$PATH_TRANSLATED"
Appendix P. To Do List
696
exit 0 # Here document to give short instructions. :<<'_test_CGI_' 1) Drop this in your http://domain.name/cgibin directory. 2) Then, open http://domain.name/cgibin/testcgi.sh. _test_CGI_
Any volunteers?
Appendix P. To Do List
697
Appendix Q. Copyright
The Advanced Bash Scripting Guide is copyright 2000, by Mendel Cooper. The author also asserts copyright on all previous versions of this document. [98] This blanket copyright recognizes and protects the rights of all contributors to this document. This document may only be distributed subject to the terms and conditions set forth in the Open Publication License (version 1.0 or later), http://www.opencontent.org/openpub/. The following license options also apply.
A. Distribution of substantively modified versions of this document is prohibited without the explicit permission of the copyright holder. HOWEVER, in the event that the author or maintainer of this document cannot be contacted, the Linux Documentation Project will be authorized to take over custodianship of the document and name a new maintainer, who would then have the right to update and modify the document. This document may NOT be distributed encrypted or with any form of DRM (Digital Rights Management) or content control mechanism embedded in it. Nor may this document be bundled with other DRMed works. If this document (or any previous version thereof) is made available on a Web or ftp site, then the file must be publicly accessible. No password or other access restrictions to its download may be imposed. Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior permission is obtained from the copyright holder.
B.
C.
D.
Provision A, above, explicitly prohibits relabeling this document. An example of relabeling is the insertion of company logos or navigation bars into the cover, title page, or the text. The author grants the following exemptions. 1. Nonprofit organizations, such as the Linux Documentation Project and Sunsite. 2. "Pureplay" Linux distributors, such as Debian, Red Hat, Mandriva, Knoppix, and others. Without explicit written permission from the author, distributors and publishers (including online publishers) are prohibited from imposing any additional conditions, strictures, or provisions on this document or any previous version of it. As of this update, the author asserts that he has not entered into any contractual obligations that would alter the foregoing declarations. Essentially, you may freely distribute this book in unaltered electronic form. You must obtain the author's permission to distribute a substantially modified version or derivative work. The purpose of this restriction is to preserve the artistic integrity of this document and to prevent "forking." If you display or distribute this document or any previous version thereof under any license except the one above, then you are required to obtain the author's written permission. Failure to do so may terminate your distribution rights. Additionally, the following waiver applies:
By copying or distributing this book YOU WAIVE THE RIGHT to use the materials within or any portion thereof in a patent or copyright
Appendix Q. Copyright
698
These are very liberal terms, and they should not hinder any legitimate distribution or use of this book. The author especially encourages the use of this book for classroom and instructional purposes. Certain of the scripts contained in this document are, where noted, released into the Public Domain. These scripts are exempt from the foregoing license and copyright restrictions. The commercial print and other rights to this book are available. Please contact the author if interested. The author produced this book in a manner consistent with the spirit of the LDP Manifesto.
Linux is a trademark registered to Linus Torvalds. Unix and UNIX are trademarks registered to the Open Group. MS Windows is a trademark registered to the Microsoft Corp. Solaris is a trademark registered to Sun, Inc. OSX is a trademark registered to Apple, Inc. Yahoo is a trademark registered to Yahoo, Inc. Pentium is a trademark registered to Intel, Inc. Thinkpad is a trademark registered to Lenovo, Inc. Scrabble is a trademark registered to Hasbro, Inc. All other commercial trademarks mentioned in the body of this work are registered to their respective owners. Hyun Jin Cha has done a Korean translation of version 1.0.11 of this book. Spanish, Portuguese, French, (another French), German, Italian, Russian, Czech, Chinese, Indonesian, and Dutch 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.
Appendix Q. Copyright
699
Index
This index / glossary / quickreference lists many of the important topics covered in the text. Terms are arranged in approximate sorting order, reshuffled as necessary for enhanced clarity. Note that commands are indexed in Part 4. *** Appendix R. ASCII Table 700
Advanced BashScripting Guide ^ (caret) Beginningofline, in a Regular Expression ~ Tilde ~ home directory, corresponds to $HOME ~/ Current user's home directory ~+ Current working directory ~ Previous working directory = Equals sign = Variable assignment operator = String comparison operator == String comparison operator =~ Regular Expression match operator Example script < Left angle bracket Islessthan String comparison Integer comparison within double parentheses Redirection < stdin << Here document <<< Here string <> Opening a file for both reading and writing > Right angle bracket Isgreaterthan String comparison Integer comparison, within double parentheses Redirection > Redirect stdout to a file >> Redirect stdout to a file, but append i>&j Redirect file descriptor i to file descriptor j
701
Advanced BashScripting Guide >&j Redirect stdout to file descriptor j >&2 Redirect stdout of a command to stderr 2>&1 Redirect stderr to stdout &> Redirect both stdout and stderr of a command to a file :> file Truncate file to zero length | Pipe, a device for passing the output of a command to another command or to the shell || Logical OR test operator (dash) Prefix to option flag Indicating redirection from stdin or stdout (doubledash) Prefix to long command options Cstyle variable decrement within double parentheses ; (semicolon) As command separator \; Escaped semicolon, terminates a find command ;; Doublesemicolon, terminator in a case option Required when ... do keyword is on the first line of loop terminating curlybracketed code block : Colon, null command, equivalent to the true Bash builtin :> file Truncate file to zero length ! Negation operator, inverts exit status of a test or command != notequalto String comparison operator ? (question mark) Match zero or one characters, in an Extended Regular Expression Singlecharacter wild card, in globbing In a Cstyle Trinary operator // Double forward slash, behavior of cd command toward
702
Advanced BashScripting Guide . (dot / period) . Load a file (into a script), equivalent to source command . Match single character, in a Regular Expression . Current working directory ./ Current working directory .. Parent directory ' ... ' (single quotes) strong quoting " ... " (double quotes) weak quoting () Parentheses ( ... ) Command group; starts a subshell ( ... ) Enclose group of Extended Regular Expressions >( ... ) <( ... ) Process substitution ... ) Terminates testcondition in case construct (( ... )) Double parentheses, in arithmetic expansion [ Left bracket, test construct [ ]Brackets Array element Enclose character set to match in a Regular Expression Test construct [[ ... ]] Double brackets, extended test construct $ Anchor, in a Regular Expression $ Prefix to a variable name $( ... ) Command substitution, setting a variable with output of a command, using parentheses notation ` ... ` Command substitution, using backquotes notation ${ ... } Variable manipulation / evaluation ${var} Value of a variable ${#var} Length of a variable ${#@} ${#*} Number of positional parameters ${parameter?err_msg} Parameterunset message ${parameterdefault}
703
Advanced BashScripting Guide ${parameter:default} ${parameter=default} ${parameter:=default} Set default parameter ${parameter+alt_value} ${parameter:+alt_value} Alternate value of parameter, if set ${!var} Indirect referencing of a variable, new notation ${!varprefix*} ${!varprefix@} Match names of all previously declared variables beginning with varprefix ${string:position} ${string:position:length} Substring extraction ${var#Pattern} ${var##Pattern} Substring removal ${var%Pattern} ${var%%Pattern} Substring removal ${string/substring/replacement} ${string//substring/replacement} ${string/#substring/replacement} ${string/%substring/replacement} Substring replacement \ Escape the character following \< ... \> Angle brackets, escaped, word boundary in a Regular Expression \{ N \} "Curly" brackets, escaped, number of character sets to match in an Extended RE \; Semicolon, escaped, terminates a find command \$$ Indirect reverencing of a variable, oldstyle notation Escaping a newline, to write a multiline command & &> Redirect both stdout and stderr of a command to a file >&j Redirect stdout to file descriptor j >&2 Redirect stdout of a command to stderr i>&j Redirect file descriptor i to file descriptor j
704
Advanced BashScripting Guide 2>&1 Redirect stderr to stdout Closing file descriptors n<& Close input file descriptor n 0<&, <& Close stdin n>& Close output file descriptor n 1>&, >& Close stdout && Logical AND test operator Command & Run job in background # Hashmark, special symbol beginning a script comment #! Shabang, special string starting a shell script * Asterisk Wild card, in globbing Any number of characters in a Regular Expression ** Exponentiation, arithmetic operator % Percent sign Modulo, divisionremainder arithmetic operation Substring removal (pattern matching) operator + Character match, in an extended Regular Expression ++ Cstyle variable increment, within double parentheses *** Shell Variables $_ Last argument to previous command $ Flags passed to script, using set $! Process ID of last background job $? Exit status of a command $@ All the positional parameters, as separate words $* All the positional parameters, as a single word $$ Process ID of the script $# Number of arguments passed to a function, or to the script itself Appendix R. ASCII Table 705
Advanced BashScripting Guide $0 Filename of the script $1 First argument passed to script $9 Ninth argument passed to script Table of shell variables ****** a Logical AND compound comparison test Advanced Bash Scripting Guide, where to download Alias Removing an alias, using unalias And list To supply default commandline argument Angle brackets, escaped, \< . . . \> word boundary in a Regular Expression Anonymous here document, using : Arithmetic expansion variations of Arithmetic operators combination operators, Cstyle += = *= /= %= In certain contexts, += can also function as a string concatenation operator. Arrays Bracket notation Concatenating, example script Copying Declaring declare a array_name Embedded arrays Empty arrays, empty elements, example script Indirect references Initialization Appendix R. ASCII Table 706
Advanced BashScripting Guide array=( element1 element2 ... elementN) Example script Using command substitution Loading a file into an array Multidimensional, simulating Nesting and embedding Notation and usage Number of elements in ${#array_name[@]} ${#array_name[*]} Operations Passing an array to a function As return value from a function Special properties, example script String operations, example script unset deletes array elements awk fieldoriented text processing language rand(), random function String manipulation Using export to pass a variable to an embedded awk script *** Backquotes, used in command substitution Base conversion, example script Bash Bad scripting practices Basics reviewed, script example Commandline options Table Features that classic Bourne shell lacks Internal variables Version 2 Version 3 $BASH_SUBSHELL Basic commands, external Batch processing
707
Advanced BashScripting Guide bc, calculator utility In a here document Template for calculating a script variable Bison utility Bitwise operators Blocks of code Redirection Script example: redirecting output of a a code block Brace expansion Extended, {a..z} Brackets, [ ] Array element Enclose character set to match in a Regular Expression Test construct Brackets, curly, {}, used in Code block find Extended Regular Expressions Positional parameters xargs break loop control command Parameter (optional) Builtins in Bash Do not fork a subprocess *** case construct Commandline parameters, handling Globbing, filtering strings with cat, piping the output of, to a read cat scripts Appendix R. ASCII Table 708
Advanced BashScripting Guide Child processes Colon, : , equivalent to the true Bash builtin Colorizing scripts Table of color escape sequences Template, colored text on colored background Comma operator, linking commands or operations Command substitution $( ... ), preferred notation Backquotes Extending the Bash toolset Invokes a subshell Nesting Removes trailing newlines Setting variable from loop output Word splitting Comment headers, special purpose Commenting out blocks of code Using an anonymous here document Using an ifthen construct Compound comparison operators continue loop control command Control characters ControlC, break ControlD, terminate / log out / erase ControlH, rubout ControlM, Carriage return Cstyle syntax , for handling variables Curly brackets {} in find command in an Extended Regular Expression in xargs *** Daemons, in UNIXtype OS Appendix R. ASCII Table 709
Advanced BashScripting Guide dc, calculator utility dd, data duplicator command Conversions Copying raw data to/from devices File deletion, secure Keystrokes, capturing Options Random access on a data stream Swapfiles, initializing Thread on www.linuxquestions.org Debugging scripts Tools Trapping at exit Trapping signals Decimal number, Bash interprets numbers as declare builtin options Default parameters /dev directory /dev/null pseudodevice file /dev/urandom pseudodevice file, generating pseudorandom numbers with /dev/zero, pseudodevice file dialog, utility for generating dialog boxes in a script $DIRSTACK directory stack Disabled commands, in restricted shells do keyword, begins execution of commands within a loop done keyword, terminates a loop DOS batch files, converting to shell scripts DOS commands, UNIX equivalents of (table) dot files, "hidden" setup and configuration files Double brackets [[ ... ]] test construct
710
Advanced BashScripting Guide Double quotes " ... " weak quoting *** e File exists test echo Feeding commands down a pipe Setting a variable using command substitution /bin/echo, external echo command elif, Contraction of else and if esac, keyword terminating case construct Environmental variables eq , isequalto integer comparison test Escaped characters, special meanings of $EUID, Effective user ID eval, Combine and evaluate expression(s), with variable expansion Effects of, Example script Risk of using exec command, using in redirection Exit and Exit status exit command Exit status (exit code, return status of a command) Table, Exit codes with special meanings Out of range Specified by a function return Successful, 0 Export, to make available variables to child processes Passing a variable to an embedded awk script expr, Expression evaluator Substring extraction Appendix R. ASCII Table 711
Advanced BashScripting Guide Substring index (numerical position in string) Substring matching Extended Regular Expressions ? (question mark) Match zero / one characters ( ... ) Group of expressions \{ N \} "Curly" brackets, escaped, number of character sets to match + Character match *** false, returns unsuccessful (1) exit status File descriptors Closing n<& Close input file descriptor n 0<&, <& Close stdin n>& Close output file descriptor n 1>&, >& Close stdout File handles in C, similarity to find {} Curly brackets \; Escaped semicolon Filter, feeding output back to same filter Floating point numbers, Bash does not recognize fold, a filter to wrap lines of text Forking a child process for loops Functions Arguments passed referred to by position Capturing the return value of a function using echo Definition must precede first call to function Exit status Local variables and recursion Appendix R. ASCII Table 712
Advanced BashScripting Guide Passing an array to a function Passing pointers to a function Recursion Redirecting stdin of a function return Returning an array from a function return range limits, workarounds shift arguments passed to a function *** getopt, external command for parsing script commandline arguments Emulated in a script getopts, Bash builtin for parsing script commandline arguments $OPTIND / $OPTARG Globbing, filename expansion ge , greaterthan or equal integer comparison test gt , greaterthan integer comparison test $GROUPS, Groups user belongs to *** Hashing, creating lookup keys in a table Example script head, echo to stdout lines at the beginning of a text file help, gives usage summary of a Bash builtin Here documents Anonymous here documents, using : Commenting out blocks of code Selfdocumenting scripts bc in a here document cat scripts Command substitution ex scripts Function, supplying input to Appendix R. ASCII Table 713
Advanced BashScripting Guide Here strings Prepending text Using read Limit string Closing limit string may not be indented Dash option to limit string, <<LimitString Literal text output, for generating program code Parameter substitution Disabling parameter substitution Passing parameters Temporary files Using vi noninteractively $HOME, user's home directory $HOSTNAME, system host name *** if [ condition ]; then ... test construct ifgrep, if and grep in combination Fixup for ifgrep test $IFS, Internal field separator variable Defaults to whitespace Integer comparison operators in, keyword preceding [list] in a for loop Initialization table, /etc/inittab Interactive script, test for I/O redirection Indirect referencing of variables New notation, introduced in version 2 of Bash Example script Iteration
714
Advanced BashScripting Guide *** Job IDs, table *** Keywords kill, terminate a process by process ID Options (l, 9) killall, terminate a process by name killall script in /etc/rc.d/init.d *** le , lessthan or equal integer comparison test let, setting and carrying out arithmetic operations on variables Limit string, in a here document $LINENO, variable indicating the line number where it appears in a script Link, file (using ln command) Invoking script with multiple names, using ln symbolic links, ln s List constructs And list Or list Local variables and recursion Localization Logical operators (&&, ||, etc.) Logout file, the ~/.bash_logout file Loops break loop control command continue loop control command Cstyle loop within double parentheses Appendix R. ASCII Table 715
Advanced BashScripting Guide for loop while loop do (keyword), begins execution of commands within a loop done (keyword), terminates a loop for loops for arg in [list]; do Command substitution to generate [list] Filename expansion in [list] Multiple parameters in each [list] element Omitting [list], defaults to positional parameters Parameterizing [list] Redirection in, (keyword) preceding [list] in a for loop Nested loops Running a loop in the background, script example Semicolon required, when do is on first line of loop for loop while loop until loop until [ conditionistrue ]; do while loop while [ condition ]; do Function call inside test brackets Multiple conditions Omitting test brackets Redirection while read construct Which type of loop to use Loopback devices, in /dev directory lt , lessthan integer comparison test *** Appendix R. ASCII Table 716
Advanced BashScripting Guide m4, macro processing language $MACHTYPE, Machine type Magic number, marker at the head of a file indicating the file type Makefile, file containing the list of dependencies used by make command Modulo, arithmetic remainder operator Application: Generating prime numbers Mortgage calculations, example script *** n String not null test Named pipe, a temporary FIFO buffer Example script nc, netcat, a toolkit for TCP and UDP ports ne, notequalto integer comparison test Negation operator, !, reverses the sense of a test netstat, Network statistics nl, a filter to number lines of text Noclobber, C option to Bash to prevent overwriting of files null variable assignment, avoiding *** o Logical OR compound comparison test od, octal dump $OLDPWD Previous working directory Options, passed to shell or script on command line or by set command Or list Or logical operator, || *** Appendix R. ASCII Table 717
Advanced BashScripting Guide Parameter substitution ${parameter+alt_value} ${parameter:+alt_value} Alternate value of parameter, if set ${parameterdefault} ${parameter:default} ${parameter=default} ${parameter:=default} Default parameters ${!varprefix*} ${!varprefix@} Parameter name match ${parameter?err_msg} Parameterunset message ${parameter} Value of parameter Script example Table of parameter substitution Parent / child process problem, a child process cannot export variables to a parent process Parentheses Command group Enclose group of Extended Regular Expressions Double parentheses, in arithmetic expansion $PATH, the path (location of system binaries) Perl, programming language Combined in the same file with a Bash script Embedded in a Bash script Using eval with PID, process ID Pipe, | , a device for passing the output of a command to another command or to the shell Pipefail, set o pipefail option to indicate exit status within a pipe Appendix R. ASCII Table 718
Advanced BashScripting Guide $PIPESTATUS, exit status of last executed pipe Piping output of a command to a script Pitfalls (dash) is not redirection operator // (double forward slash), behavior of cd command toward #!/bin/sh script header disables extended Bash features CGI programming, using scripts for Closing limit string in a here document, indenting DOStype newlines (\r\n) crash a script eval, risk of using Execute permission lacking for commands within a script Export problem, child process to parent process Extended Bash features not available Failing to quote variables within test brackets GNU command set, in crossplatform scripts null variable assignment Numerical and string comparison operators not equivalent = and eq not interchangeable Omitting terminal semicolon, in a curlybracketed code block Piping echo to a loop echo to read tail f to grep suid commands inside a script Undocumented Bash features, danger of Uninitialized variables Variable names, inappropriate Variables in a subshell, scope limited Whitespace, misuse of Portability issues in shell scripting Setting path and umask Using whatis Positional parameters $@, as separate words $*, as a single word POSIX, Portable Operating System Interface / UNIX Character classes $PPID, process ID of parent process Appendix R. ASCII Table 719
Advanced BashScripting Guide Prepending lines at head of a file, script example Prime numbers Generating primes without using arrays Sieve of Eratosthenes printf, formatted print command /proc directory Running processes, files describing Writing to files in /proc, warning Process Process ID (PID) Process substitution To compare contents of directories To supply stdin of a command Template Prompt $PS1, Main prompt, seen at command line $PS2, Secondary prompt Pseudocode, as problemsolving method $PWD, Current working directory *** Question mark, ? Character match in an Extended Regular Expression Singlecharacter wild card, in globbing In a Cstyle Trinary operator Quoting Character string Variables within test brackets Whitespace, using quoting to preserve ***
720
Advanced BashScripting Guide Random numbers /dev/urandom rand(), random function in awk $RANDOM, Bash function that returns a pseudorandom integer Random sequence generation, using date command rcs read, set value of a variable from stdin Detecting arrow keys Options Piping output of cat to read "Prepending" text Problems piping echo to read Redirection from a file to read $REPLY, default read variable Timed input while read construct Recursion Local variables Redirection Code blocks exec <filename, to reassign file descriptors Introductorylevel explanation of I/O redirection Open a file for both reading and writing <>filename read input redirected from a file stderr to stdout 2>&1 stdin / stdout, using stdinof a function stdout to a file > ... >> stdout to file descriptor j >&j file descriptori to file descriptor j i>&j stdout of a command to stderr Appendix R. ASCII Table 721
Advanced BashScripting Guide >&2 stdout and stderr of a command to a file &> tee, redirect to a file output of command(s) partway through a pipe Reference Cards Miscellaneous constructs Parameter substitution/expansion Special shell variables String operations Test operators Binary comparison Files Regular Expressions ^ (caret) Beginningofline $ (dollar sign) Anchor . (dot) Match single character * (asterisk) Any number of characters [ ] (brackets) Enclose character set to match \ (backslash) Escape, interpret following character literally \< ... \> (angle brackets, escaped) Word boundary Extended REs + Character match \{ \} Escaped "curly" brackets [: :] POSIX character classes $REPLY, Default value associated with read command Restricted shell, shell (or script) with certain commands disabled return, command that terminates a function runparts Running scripts in sequence, without user intervention *** Scope of a variable, definition Script options, set at command line
722
Advanced BashScripting Guide Scripting routines, library of useful definitions and functions Secondary prompt, $PS2 Security issues nmap, network mapper / port scanner sudo suid commands inside a script Viruses, trojans, and worms in scripts Writing secure scripts sed, patternbased programming language Table, basic operators Table, examples of operators select, construct for menu building in list omitted Semicolon required, when do keyword is on first line of loop When terminating curlybracketed code block set, Change value of internal script variables Shell script, definition of Shell wrapper, script embedding a command or utility shift, reassigning positional parameters $SHLVL, shell level, depth to which the shell (or script) is nested shopt, change shell options Signal, a message sent to a process Single quotes (' ... ') strong quoting Socket, a communication node associated with an I/O port Sorting Bubble sort Insertion sort source, execute a script or, within a script, import a file Passing positional parameters Appendix R. ASCII Table 723
Advanced BashScripting Guide Spam, dealing with Example script Example script Example script Example script Special characters Stack, emulating a pushdown, Example script Startup files, Bash stdin and stdout Strings =~ String match operator Comparison Length ${#string} Manipulation Manipulation, using awk Protecting strings from expansion and/or reinterpretation, script example Unprotecting strings, script example Substring extraction ${string:position} ${string:position:length} Using expr Substring index (numerical position in string) Substring matching, using expr Substring removal ${var#Pattern} ${var##Pattern} ${var%Pattern} ${var%%Pattern} Substring replacement ${string/substring/replacement} ${string//substring/replacement}
724
Advanced BashScripting Guide ${string/#substring/replacement} ${string/%substring/replacement} Script example Table of string/substring manipulation and extraction operators Strong quoting ' ... ' Stylesheet for writing scripts Subshell Command list within parentheses Variables, $BASH_SUBSHELL and $SHLVL Variables in a subshell, scope limited su Substitute user, log on as a different user or as root suid (set user id) file flag suid commands inside a script, not advisable Symbolic links Swapfiles *** tail, echo to stdout lines at the (tail) end of a text file tee, redirect to a file output of command(s) partway through a pipe Terminals setserial setterm stty wall test command Bash builtin external command, /usr/bin/test (equivalent to /usr/bin/[) Test constructs Test operators a Logical AND compound comparison e File exists Appendix R. ASCII Table 725
Advanced BashScripting Guide eq isequalto (integer comparison) f File is a regular file ge greaterthan or equal (integer comparison) gt greaterthan (integer comparison) le lessthan or equal (integer comparison) lt lessthan (integer comparison) n notzerolength (string comparison) ne notequalto (integer comparison) o Logical OR compound comparison u suid flag set, file test z iszerolength (string comparison) = isequalto (string comparison) == isequalto (string comparison) < lessthan (string comparison) < lessthan, (integer comparison, within double parentheses) <= lessthanorequal, (integer comparison, within double parentheses) > greaterthan (string comparison) > greaterthan, (integer comparison, within double parentheses) >= greaterthanorequal, (integer comparison, within double parentheses) || Logical OR && Logical AND ! Negation operator, inverts exit status of a test != notequalto (string comparison) Tables of test operators Binary comparison File Timed input Using read t Using stty Using timing loop Using $TMOUT Tips and hints for Bash scripts Array, as return value from a function Comment blocks Using anonymous here documents Using ifthen constructs Comment headers, special purpose Cstyle syntax , for handling variables Filter, feeding output back to same filter Function return value workarounds ifgrep test fixup Appendix R. ASCII Table 726
Advanced BashScripting Guide Library of useful definitions and functions null variable assignment, avoiding Passing an array to a function Prepending lines at head of a file Pseudocode Script as embedded command rcs Running scripts in sequence without user intervention, using runparts Script portability Setting path and umask Using whatis Setting script variable to a block of embedded sed or awk code Testing a variable to see if it contains only digits Tracking script usage Widgets, invoking from a script $TMOUT, Timeout interval tr, character translation filter DOS to Unix text file conversion Options Soundex, example script Variants Trap, specifying an action upon receipt of a signal Trinary operator, Cstyle true, returns successful (0) exit status typeset builtin options *** $UID, User ID number unalias, to remove an alias uname, output system information Uninitialized variables uniq, filter to remove duplicate lines from a sorted file unset, delete a shell variable
727
Advanced BashScripting Guide until loop until [ conditionistrue ]; do *** Variables Array operations on Assignment Script example Script example Script example Bash internal variables Block of sed or awk code, setting a variable to Cstyle increment/decrement/trinary operations Change value of internal script variables using set declare, to restrict the properties of variables Deleting a shell variable using unset Environmental Expansion / Substring replacement operators Indirect referencing eval variable1=\$$variable2 Newer notation ${!variable} Length ${#var} lvalue Manipulating and expanding Name and value of a variable, distinguishing between null variable assignment, avoiding Quoting within test brackets to preserve whitespace rvalue Setting to null value In subshell not visible to parent shell Testing a variable if it contains only digits Undeclared, error message Uninitialized Unsetting Untyped Appendix R. ASCII Table 728
Advanced BashScripting Guide *** wait, suspend script execution To remedy script hang Weak quoting " ... " while loop while [ condition ]; do while read construct Whitespace, spaces, tabs, and newline characters $IFS defaults to Inappropriate use of Preceding closing limit string in a here document, error Preceding script comments Quoting, to preserve whitespace within strings or variables Widgets *** xargs, Filter for grouping arguments Curly brackets Limiting arguments passed Whitespace, handling *** yes *** z String is null Zombie, a process that has terminated, but not yet been killed by its parent Notes [1] [2] [3] These are referred to as builtins, features internal to the shell. Many of the features of ksh88, and even a few from the updated ksh93 have been merged into Bash. By convention, userwritten shell scripts that are Bourne shell compliant generally take a name with a .sh extension. System scripts, such as those found in /etc/rc.d, do not conform to this nomenclature.
Advanced BashScripting Guide Some flavors of UNIX (those based on 4.2 BSD) allegedly take a fourbyte magic number, requiring a blank after the ! #! /bin/sh. However, according to Sven Mascheck, this is probably a myth. The #! line in a shell script will be the first thing the command interpreter (sh or bash) sees. Since this line begins with a #, 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. If, in fact, the script includes an extra #! line, then bash will interpret it as a comment.
#!/bin/bash echo "Part 1 of script." a=1 #!/bin/bash # This does *not* launch a new script. echo "Part 2 of script." echo $a # Value of $a stays at 1.
[5]
[6]
Also, try starting a README file with a #!/bin/more, and making it executable. The result is a selflisting documentation file. (A here document using cat is possibly a better alternative see Example 183). [7] Portable Operating System Interface, an attempt to standardize UNIXlike OSes. The POSIX specifications are listed on the Open Group site. [8] If Bash is your default shell, then the #! isn't necessary at the beginning of a script. However, if launching a script from a different shell, such as tcsh, then you will need the #!. [9] Caution: invoking a Bash script by sh scriptname turns off Bashspecific extensions, and the script may therefore fail to execute. [10] A script needs read, as well as execute permission for it to run, since the shell needs to be able to read it. [11] Why not simply invoke the script with scriptname? If the directory you are in ($PWD) is where scriptname is located, why doesn't this work? This fails because, for security reasons, the current directory (./) is not by default included in a user's $PATH. It is therefore necessary to explicitly invoke the script in the current directory with a ./scriptname. [12] A PID, or process ID, is a number assigned to a running process. The PIDs of running processes may be viewed with a ps command.
730
Advanced BashScripting Guide Definition: A process is an executing program, sometimes referred to as a job. [13] The shell does the brace expansion. The command itself acts upon the result of the expansion. [14] Exception: a code block in braces as part of a pipe may run as a subshell.
ls | { read firstline; read secondline; } # Error. The code block in braces runs as a subshell, #+ so the output of "ls" cannot be passed to variables within the block. echo "First line is $firstline; second line is $secondline" # Will not work. # Thanks, S.C.
[15] A linefeed ("newline") is also a whitespace character. This explains why a blank line, consisting only of a linefeed, is considered whitespace. [16] Technically, the name of a variable, VARIABLE, is called an lvalue, meaning that it appears on the left side of an assignment statment, as in VARIABLE=23. A variable's value is an rvalue, meaning that it appears on the right side of an assignment statement, as in VAR2=$VARIABLE. [17] The process calling the script sets the $0 parameter. By convention, this parameter is the name of the script. See the manpage for execv. [18] Unless there is a file named first in the current working directory. Yet another reason to quote. (Thank you, Harald Koenig, for pointing this out. [19] It also has sideeffects on the value of the variable (see below) [20] Encapsulating "!" within double quotes gives an error when used from the command line. This is interpreted as a history command. Within a script, though, this problem does not occur, since the Bash history mechanism is disabled then. Of more concern is the apparently inconsistent behavior of "\" within double quotes.
bash$ echo hello\! hello! bash$ echo "hello\!" hello\!
What happens is that double quotes normally escape the "\" escape character, so that it echoes literally. However, the e option to echo changes that. It causes the "\t" to be interpreted as a tab. (Thank you, Wayne Pollock, for pointing this out, and Geoff Lee for explaining it.) [21] "Word splitting", in this context, means dividing a character string into a number of separate and discrete arguments. [22] Per the 1913 edition of Webster's Dictionary:
Deprecate ... To pray against, as an evil;
731
[23] Be aware that suid binaries may open security holes. The suid flag has no effect on shell scripts. [24] On modern UNIX systems, the sticky bit is no longer used for files, only on directories. [25] As S.C. points out, in a compound test, even quoting the string variable might not suffice. [ n "$string" o "$a" = "$b" ] may cause an error with some versions of Bash if $string is empty. The safe way is to append an extra character to possibly empty variables, [ "x$string" != x o "x$a" = "x$b" ] (the "x's" cancel out). [26] The PID of the currently running script is $$, of course. [27] Somewhat analogous to recursion, in this context nesting refers to a pattern embedded within a larger pattern. One of the definitions of nest, according to the 1913 edition of Webster's Dictionary, illustrates this beautifully: "A collection of boxes, cases, or the like, of graduated size, each put within the one next larger." [28] The words "argument" and "parameter" are often used interchangeably. In the context of this document, they have the same precise meaning: a variable passed to a script or function. [29] This applies to either commandline arguments or parameters passed to a function. [30] If $parameter is null in a noninteractive script, it will terminate with a 127 exit status (the Bash error code for "command not found"). [31] True "randomness," insofar as it exists at all, can only be found in certain incompletely understood natural phenomena such as radioactive decay. Computers can only simulate randomness, and computergenerated sequences of "random" numbers are therefore referred to as pseudorandom. [32] The seed of a computergenerated pseudorandom number series can be considered an identification label. For example, think of the pseudorandom series with a seed of 23 as series #23. 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. Iteration: Repeated execution of a command or group of commands while a given condition holds, or until a given condition is met. These are shell builtins, whereas other loop commands, such as while and case, are keywords. For purposes of command substitution, a command may be an external system command, an internal scripting builtin, or even a script function. In a more technically correct sense, command substitution extracts the stdout of a command, then assigns it to a variable using the = operator. In fact, nesting with backticks is also possible, but only by escaping the inner backticks, as John Default points out.
word_count=` wc w \`ls l | awk '{print $9}'\` `
[38] An exception to this is the time command, listed in the official Bash documentation as a keyword. [39] To Export information is to make it available in a larger context. See also scope. [40] A option 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. [41] Technically, an exit only terminates the process (or shell) in which it is running, not the parent process. [42] Unless the exec is used to reassign file descriptors. [43] Appendix R. ASCII Table 732
Advanced BashScripting Guide Hashing is a method of creating lookup keys for data stored in a table. The data items themselves are "scrambled" to create keys, using one of a number of simple mathematical algorithms (methods, or recipes). An advantage of hashing is that it is fast. A disadvantage is that "collisions" where a single key maps to more than one data item are possible. For examples of hashing see Example A21 and Example A22. [44] The readline library is what Bash uses for reading input in an interactive shell. [45] The C source for a number of loadable builtins is typically found in the /usr/share/doc/bash?.??/functions directory. Note that the f option to enable is not portable to all systems. [46] The same effect as autoload can be achieved with typeset fu. [47] Dotfiles are files whose names begin with a dot, such as ~/.Xdefaults. Such filenames do not appear in a normal ls listing (although an ls a will show them), and they cannot be deleted by an accidental rm rf *. Dotfiles are generally used as setup and configuration files in a user's home directory. [48] And even when xargs is not strictly necessary, it can speed up execution of a command involving batchprocessing of multiple files. [49] This is only true of the GNU version of tr, not the generic version often found on commercial UNIX systems. [50] An archive, in the sense discussed here, is simply a set of related files stored in a single location. [51] A tar czvf archive_name.tar.gz * will include dotfiles in directories below the current working directory. This is an undocumented GNU tar "feature". [52] This is a symmetric block cipher, used to encrypt files on a single system or local network, as opposed to the "public key" cipher class, of which pgp is a wellknown example. [53] Creates a temporary directory when invoked with the d option. [54] A daemon is a background process not attached to a terminal session. Daemons perform designated services either at specified times or explicitly triggered by certain events. The word "daemon" 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. This is actually a script adapted from the Debian Linux distribution. The print queue is the group of jobs "waiting in line" to be printed. For an excellent overview of this topic, see Andy Vaught's article, Introduction to Named Pipes, in the September, 1997 issue of Linux Journal. EBCDIC (pronounced "ebbsidick") is an acronym for Extended Binary Coded Decimal Interchange Code. This is an IBM data format no longer in much use. A bizarre application of the conv=ebcdic option of dd is as a quick 'n easy, but not very secure text file encoder.
cat $file | dd conv=swab,ebcdic > $file_encrypted # Encode (looks like gibberish). # Might as well switch bytes (swab), too, for a little extra obscurity.
733
[59] A macro is a symbolic constant that expands into a command string or a set of operations on parameters. [60] This is the case on a Linux machine or a UNIX system with disk quotas. [61] The userdel command will fail if the particular user being deleted is still logged on. [62] For more detail on burning CDRs, see Alex Withers' article, Creating CDs, in the October, 1999 issue of Linux Journal. [63] The c option to mke2fs also invokes a check for bad blocks. [64] Since only root has write permission in the /var/lock directory, a user script cannot set a lock file there. [65] Operators of singleuser Linux systems generally prefer something simpler for backups, such as tar. [66] NAND is the logical notand operator. Its effect is somewhat similar to subtraction. [67] The killall system script should not be confused with the killall command in /usr/bin. [68] Since sed, awk, and grep 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.
#!/bin/bash sed e 'N;s/.*/[&]/' << EOF line1 line2 EOF # OUTPUT: # [line1 # line2] # Here Document
echo awk '{ $0=$1 "\n" $2; if (/line.1/) {print}}' << EOF line 1 line 2 EOF # OUTPUT: # line # 1
[69] Filename expansion means expanding filename patterns or templates containing special characters. For example, example.??? might expand to example.001 and/or example.txt. [70] Filename expansion can match dotfiles, but only if the pattern explicitly includes the dot as a literal character.
~/[.]bashrc ~/?bashrc # # # #+ # Will not expand to ~/.bashrc Neither will this. Wild cards and metacharacters will NOT expand to a dot in globbing. Will expand to ~/.bashrc
~/.[b]ashrc
734
[71] A file descriptor is simply a number that the operating system assigns to an open file to keep track of it. Consider it a simplified version of a file pointer. It is analogous to a file handle in C. [72] Using file descriptor 5 might cause problems. When Bash creates a child process, as with exec, the child inherits fd 5 (see Chet Ramey's archived email, SUBJECT: RE: File descriptor 5 is held open). Best leave this particular fd alone. [73] An external command invoked with an exec does not (usually) fork off a subprocess / subshell. [74] This has the same effect as a named pipe (temp file), and, in fact, named pipes were at one time used in process substitution. [75] The return command is a Bash builtin. [76] Herbert Mayer defines recursion as ". . . expressing an algorithm by using a simpler version of that same algorithm . . ." A recursive function is one that calls itself. [77] Too many levels of recursion may crash a script with a segfault.
#!/bin/bash # # Warning: Running this script could possibly lock up your system! If you're lucky, it will segfault before using up all available memory.
recursive_function () { echo "$1" # Makes the function do something, and hastens the segfault. (( $1 < $2 )) && recursive_function $(( $1 + 1 )) $2; # As long as 1st parameter is less than 2nd, #+ increment 1st and recurse. } recursive_function 1 50000 # Recurse 50,000 levels! # Most likely segfaults (depending on stack size, set by ulimit m). # Recursion this deep might cause even a C program to segfault, #+ by using up all the memory allotted to the stack.
echo "This will probably not print." exit 0 # This script will not exit normally. # Thanks, Stphane Chazelas.
[78] However, aliases do seem to expand positional parameters. [79] The entries in /dev provide mount points for physical and virtual devices. These entries use very little drive space. Some devices, such as /dev/null, /dev/zero, and /dev/urandom are virtual. They are not actual physical devices and exist only in software. [80] A block device reads and/or writes data in chunks, or blocks, in contrast to a character device, which acesses data in character units. Examples of block devices are a hard drive and CD ROM drive. An example of a character device is a keyboard. [81] Appendix R. ASCII Table 735
Advanced BashScripting Guide Of course, the mount point /mnt/flashdrive must exist. If not, then, as root, mkdir /mnt/flashdrive. To actually mount the drive, use the following command: mount /mnt/flashdrive Newer Linux distros automount flash drives in the /media directory. Certain system commands, such as procinfo, free, vmstat, lsdev, and uptime do this as well. By convention, signal 0 is assigned to exit. Setting the suid permission on the script itself has no effect in Linux and most other UNIX flavors. In this context, "magic numbers" have an entirely different meaning than the magic numbers used to designate file types. Quite a number of Linux utilities are, in fact, shell wrappers. Some examples are /usr/bin/pdf2ps, /usr/bin/batch, and /usr/X11R6/bin/xmkmf. ANSI is, of course, the acronym for the American National Standards Institute. This august body establishes and maintains various technical and industrial standards. See Marius van Oers' article, Unix Shell Scripting Malware, and also the Denning reference in the bibliography. Chet Ramey promises associative arrays (a Perl feature) in a future Bash release. As of version 3, this has not yet happened. This is the notorious flog it to death technique. In fact, the author is a school dropout and has no credentials or qualifications. Those who can, do. Those who can't . .. get an MCSE. Emails from certain spaminfested TLDs (61, 202, 211, 218, 220, etc.) will be trapped by spam filters and deleted unread. If your ISP is located on one of these, please use a Webmail account to contact the author. If no address range is specified, the default is all lines. Out of range exit values can result in unexpected exit codes. An exit value greater than 255 returns an exit code modulo 256. For example, exit 3809 gives an exit code of 225 (3809 % 256 = 225). This does not apply to csh, tcsh, and other shells not related to or descended from the classic Bourne shell (sh). Some early UNIX systems had a fast, smallcapacity fixed disk (containing /, the root partition), and a second drive which was larger, but slower (containing /usr and other partitions). The most frequently used programs and utilities therefore resided on the smallbutfast drive, in /bin, and the others on the slower drive, in /usr/bin.
[82] [83] [84] [85] [86] [87] [88] [89] [90] [91] [92] [93]
This likewise accounts for the split between /sbin and /usr/sbin, /lib and /usr/lib, etc. [98] The author intends that this book be released into the Public Domain after a period of 14 years, that is, in 2014. In the early years of the American republic this was the duration statutorily granted to a copyrighted work.
736