Linux Know-How provides a collection of introductory texts on often needed Linux skills. |
Home Bash Guide for Beginners The GNU awk programming language The print program | |||||||||||||
See also: Printing Symbols | |||||||||||||
Search the VIAS Library | Index | |||||||||||||
The print programPrinting selected fieldsThe print command in awk outputs selected data from the input file. When awk reads a line of a file, it divides the line in fields based on the specified input field separator, FS, which is an awk variable (see Section 6.3.2). This variable is predefined to be one or more spaces or tabs. The variables $1, $2, $3, ..., $N hold the values of the first, second, third until the last field of an input line. The variable $0 (zero) holds the value of the entire line. This is depicted in the image below, where we see six colums in the output of the df command: In the output of ls -l, there are 9 columns. The print statement uses these fields as follows:
This command printed the fifth column of a long file listing, which contains the file size, and the last column, the name of the file. This output is not very readable unless you use the official way of referring to columns, which is to separate the ones that you want to print with a comma. In that case, the default output separater character, usually a space, will be put in between each output field. Formatting fieldsWithout formatting, using only the output separator, the output looks rather poor. Inserting a couple of tabs and a string to indicate what output this is will make it look a lot better:
Note the use of the backslash, which makes long input continue on the next line without the shell interpreting this as a separate command. While your command line input can be of virtually unlimited length, your monitor is not, and printed paper certainly isn't. Using the backslash also allows for copying and pasting of the above lines into a terminal window. The -h option to ls is used for supplying humanly readable size formats for bigger files. The output of a long listing displaying the total amount of blocks in the directory is given when a directory is the argument. This line is useless to us, so we add an asterisk. We also add the -d option for the same reason, in case asterisk expands to a directory. The backslash in this example marks the continuation of a line. See Section 3.3.2. You can take out any number of columns and even reverse the order. In the example below this is demonstrated for showing the most critical partitions:
The table below gives an overview of special formatting characters: Quotes, dollar signs and other meta-characters should be escaped with a backslash. The print command and regular expressionsA regular expression can be used as a pattern by enclosing it in slashes. The regular expression is then tested against the entire text of each record. The syntax is as follows: awk 'EXPRESSION { PROGRAM }' file(s) The following example displays only local disk device information, networked file systems are not shown:
Slashes need to be escaped, because they have a special meaning to the awk program. Below another example where we search the /etc directory for files ending in ".conf" and starting with either "a" or "x", using extended regular expressions:
This example illustrates the special meaning of the dot in regular expressions: the first one indicates that we want to search for any character after the first search string, the second is escaped because it is part of a string to find (the end of the file name). Special patternsIn order to precede output with comments, use the BEGIN statement:
The END statement can be added for inserting text after the entire input is processed:
Gawk scriptsAs commands tend to get a little longer, you might want to put them in a script, so they are reusable. An awk script contains awk statements defining patterns and actions. As an illustration, we will build a report that displays our most loaded partitions. See Section 6.2.2.
awk first prints a begin message, then formats all the lines that contain an eight or a nine at the beginning of a word, followed by one other number and a percentage sign. An end message is added.
|
|||||||||||||
Home Bash Guide for Beginners The GNU awk programming language The print program |