Awk Actions

The core syntax of awk is pattern { action }. This page describes actions.


Default Action

The default action is to print the entire record.

The following will print every line in a file:

awk '//' input-file


CategoryRicottone