Lady Bumps and Data Dumps
< Next Topic | Back to topic list | Previous Topic >
Posted by Amontillado
Jul 24, 2022 at 02:47 PM
AWK is a great tool for the case where you want to read a file line by line, doing some transformation on each line, or on lines fitting a pattern.
Learn regular expressions first, then tackle AWK.
An AWK script is a list of patterns and actions applied to the whole input, line by line.
That’s a simplification, of course, but should get you started.