In [[awk]] all [[input]] is separated into [[record]]s and each [[record]] is further divided into fields. == Fields are referenced using special variables == Within the [[awk]] script, each field can be referenced by using [[dollarint]] operator. {{{ awk { print $3 } # output field number three { print $12 } # output field number twelve }}}
Summary:
This change is a minor edit.
Username: