thisago's blog


Closer to assembly languages

AWK is very cool, I like it.

info "(gawk) Two Rules" | head -n9
File: gawk.info,  Node: Two Rules,  Next: More Complex,  Prev: Very Simple,  Up: Getting Started

1.4 An Example with Two Rules
=============================

The ‘awk’ utility reads the input files one line at a time.  For each
line, ‘awk’ tries the patterns of each rule.  If several patterns match,
then several actions execute in the order in which they appear in the
‘awk’ program.  If no patterns match, then no actions run.

Reminds me sed, Brainfuck and Arturo language. Makes me think I am getting closer to assembly.