awk [options] 'script' var=value file(s)
awk [options] -f scriptfile var=value file(s)
You can specify a script directly on the command line,
or you can store a script in a scriptfile and specify it
with -f.
nawk allows multiple -f scripts.
Variables can be assigned a value on the
command line. The value can be a literal, a shell variable
($name), or a command substitution
(‘cmd‘),
but the value is available only
after the BEGIN
statement is executed.