=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/awk/awk.1,v retrieving revision 1.64 retrieving revision 1.65 diff -c -r1.64 -r1.65 *** src/usr.bin/awk/awk.1 2023/09/15 15:07:08 1.64 --- src/usr.bin/awk/awk.1 2023/09/17 14:49:44 1.65 *************** *** 1,4 **** ! .\" $OpenBSD: awk.1,v 1.64 2023/09/15 15:07:08 jsg Exp $ .\" .\" Copyright (C) Lucent Technologies 1997 .\" All Rights Reserved --- 1,4 ---- ! .\" $OpenBSD: awk.1,v 1.65 2023/09/17 14:49:44 millert Exp $ .\" .\" Copyright (C) Lucent Technologies 1997 .\" All Rights Reserved *************** *** 22,28 **** .\" ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF .\" THIS SOFTWARE. .\" ! .Dd $Mdocdate: September 15 2023 $ .Dt AWK 1 .Os .Sh NAME --- 22,28 ---- .\" ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF .\" THIS SOFTWARE. .\" ! .Dd $Mdocdate: September 17 2023 $ .Dt AWK 1 .Os .Sh NAME *************** *** 33,39 **** .Op Fl safe .Op Fl V .Op Fl d Ns Op Ar n ! .Op Fl F Ar fs .Op Fl v Ar var Ns = Ns Ar value .Op Ar prog | Fl f Ar progfile .Ar --- 33,39 ---- .Op Fl safe .Op Fl V .Op Fl d Ns Op Ar n ! .Op Fl F Ar fs | Fl -csv .Op Fl v Ar var Ns = Ns Ar value .Op Ar prog | Fl f Ar progfile .Ar *************** *** 64,69 **** --- 64,77 ---- .Pp The options are as follows: .Bl -tag -width "-safe " + .It Fl -csv + Process records using the (more or less) standard comma-separated values + .Pq CSV + format instead of the input field separator. + When the + .Fl -csv + option is specified, attempts to change the input field separator + or record separator are ignored. .It Fl d Ns Op Ar n Debug mode. Set debug level to *************** *** 1058,1061 **** The scope rules for variables in functions are a botch; the syntax is worse. .Pp ! Only eight-bit character sets are handled correctly. --- 1066,1070 ---- The scope rules for variables in functions are a botch; the syntax is worse. .Pp ! Input is expected to be UTF-8 encoded. ! Other multibyte character sets are not handled.