Expressions can be composed of quoted strings, numbers, operators,
functions, defined variables, or any of the predefined variables
described later in Section 11.4.
Regular expressions use the extended set of metacharacters and
are described in Chapter 6.
^ and $ refer to the
beginning and end of a string (such as the fields), respectively, rather
than the beginning and end of a line.
In particular, these metacharacters will not
match at a newline embedded in the middle of a string.
Relational expressions use the relational operators listed in Section 11.5 later in this chapter.
For example, $2 > $1 selects lines for
which the second field is greater than the first.
Comparisons can be either string or numeric.
Thus, depending on the types of data in $1
and $2, awk does either
a numeric or a string comparison.
This can change from one record to the next.
Pattern-matching expressions use the operators ~ (match)
and !~ (don't match).
See Section 11.5 later in this chapter.
The BEGIN pattern lets you specify procedures that take
place before the first input line is processed.
(Generally, you set global variables here.)
The END pattern lets you specify procedures that
take place after the last input record is read.
In nawk,
BEGIN and END patterns
may appear multiple times. The procedures are merged as if there
had been one large procedure.