reckon - execute a block of awk program statements.
SYNOPSYS
reckon 'statements'
DESCRIPTION
reckon allows the execution of a block of awk statements. It evaluates its
arguments as a single awk language block and exits.
DETAILS
reckon is implemented by wrapping the user statements in a simple awk language
program and calling an awk interpreter. The text of the program is:
BEGIN { < statements > }