A Quick Guide to Writing "AWK" Commands and Scripts
The awk command is powerful method for processing or analyzing text files, in particular data files that are organized by lines (rows) and columns.
Simple awk commands can be run from the command line. More complex tasks should be written as awk programs (so-called awk scripts) to a file.
The basic format of an awk command l
READ Full article