Go to the previous, next section.
An awk
program or script consists of a series of
rules and function definitions, interspersed. (Functions are
described later. See section User-defined Functions.)
A rule contains a pattern and an action, either of which may be
omitted. The purpose of the action is to tell awk
what to do
once a match for the pattern is found. Thus, the entire program
looks somewhat like this:
[pattern] [{ action }] [pattern] [{ action }] ... function name (args) { ... } ...
An action consists of one or more awk
statements, enclosed
in curly braces (`{' and `}'). Each statement specifies one
thing to be done. The statements are separated by newlines or
semicolons.
The curly braces around an action must be used even if the action contains only one statement, or even if it contains no statements at all. However, if you omit the action entirely, omit the curly braces as well. (An omitted action is equivalent to `{ print $0 }'.)
Here are the kinds of statements supported in awk
:
awk
programs. The awk
language gives you C-like constructs
(if
, for
, while
, and so on) as well as a few
special ones (see section Control Statements in Actions).
if
, while
, do
or for
statement.
getline
command
(see section Explicit Input with getline
), and the next
statement (see section The next
Statement).
print
and printf
.
See section Printing Output.
delete
Statement.The next two chapters cover in detail expressions and control statements, respectively. We go on to treat arrays and built-in functions, both of which are used in expressions. Then we proceed to discuss how to define your own functions.
Go to the previous, next section.