1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
# $MawkId: nulls0.awk,v 1.2 2010/12/10 17:00:00 tom Exp $
# Test-script for MAWK
###############################################################################
# copyright 2009, Thomas E. Dickey
#
# This is a source file for mawk, an implementation of
# the AWK programming language.
#
# Mawk is distributed without warranty under the terms of
# the GNU General Public License, version 2, 1991.
###############################################################################
{
printf "%3d: %2d - %s %s\n", NR, NF, $6, $8;
}
|