back toc next

Program Structure

organization of an awk program

pattern { action }

A pattern can be:

A simple program

BEGIN { print "START" }
{ print }
END { print "STOP" }

A simple program with quit command

BEGIN { print "START" }
/quit/{ exit }
{ print }
END { print "STOP" }