Awk Actions
The core syntax of awk is pattern { action }. This page describes actions.
Contents
Default Action
The default action is to print the entire record.
The following will print every line in a file:
awk '//' input-file
The core syntax of awk is pattern { action }. This page describes actions.
Contents
The default action is to print the entire record.
The following will print every line in a file:
awk '//' input-file