Awk Actions
The core syntax of awk(1p) 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(1p) 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
Awk/Actions (last edited 2023-04-03 12:55:31 by DominicRicottone)