Start AWK programming...
Awk is a pattern scanning and processing language. It’s essentially a stream editor, like sed. You can pipe text to it, and it can manipulate on a line-by-line basis. Awk can also read from a file and then process on a line-by-line basis.
Unlike sed, it has the ability to remember context, do comparisons, and most things another full programming language can do.
The simplest form of awk is a one-liner:
awk '{ do-something-here...
