=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/awk/awk.1,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** src/usr.bin/awk/awk.1 1996/07/06 05:40:03 1.2 --- src/usr.bin/awk/awk.1 1997/01/20 19:43:18 1.3 *************** *** 1,4 **** ! .\" $OpenBSD: awk.1,v 1.2 1996/07/06 05:40:03 etheisen Exp $ .de EX .nf .ft CW --- 1,4 ---- ! .\" $OpenBSD: awk.1,v 1.3 1997/01/20 19:43:18 millert Exp $ .de EX .nf .ft CW *************** *** 426,431 **** --- 426,432 ---- .TP .B CONVFMT conversion format used when converting numbers + (default .BR "%.6g" ) .TP .B FS *************** *** 484,495 **** the function definition. .SH EXAMPLES .TP ! .B length($0) > 72 Print lines longer than 72 characters. .TP ! .B { print $2, $1 } Print first two fields in opposite order. .PP .EX --- 485,498 ---- the function definition. .SH EXAMPLES .TP ! .EX length($0) > 72 + .EE Print lines longer than 72 characters. .TP ! .EX { print $2, $1 } + .EE Print first two fields in opposite order. .PP .EX *************** *** 510,517 **** .IP Add up first column, print sum and average. .TP ! .B /start/, /stop/ Print all lines between start/stop pairs. .PP .EX --- 513,521 ---- .IP Add up first column, print sum and average. .TP ! .EX /start/, /stop/ + .EE Print all lines between start/stop pairs. .PP .EX