diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CMakeLists.txt | 95 | ||||
-rw-r--r-- | doc/ChangeLog | 32 | ||||
-rw-r--r-- | doc/Makefile.am | 14 | ||||
-rw-r--r-- | doc/Makefile.in | 14 | ||||
-rw-r--r-- | doc/awkcard.in | 3 | ||||
-rw-r--r-- | doc/gawk.1 | 25 | ||||
-rw-r--r-- | doc/gawk.info | 1347 | ||||
-rw-r--r-- | doc/gawk.texi | 127 | ||||
-rw-r--r-- | doc/gawktexi.in | 127 |
9 files changed, 1044 insertions, 740 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt new file mode 100644 index 00000000..e12f5de0 --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1,95 @@ +# +# doc/CMakeLists.txt --- CMake input file for gawk +# +# Copyright (C) 2013 +# the Free Software Foundation, Inc. +# +# This file is part of GAWK, the GNU implementation of the +# AWK Programming Language. +# +# GAWK is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# GAWK is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA +# + +## process this file with CMake to produce Makefile + +MACRO(DocDependency outfile) + add_dependencies(doc ${outfile}) + add_custom_target( + ${outfile} + DEPENDS ${ARGN} + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + COMMAND ${CMAKE_SOURCE_DIR}/cmake/docmaker ${outfile} ${ARGN} + ) +ENDMACRO(DocDependency) + +find_program(TEXI2DVI_CONVERTER texi2dvi) +if (TEXI2DVI_CONVERTER) + add_custom_target(doc) + DocDependency(gawk.texi gawktexi.in rflashlight.eps api-figure1.fig api-figure2.fig api-figure3.fig general-program.fig process-flow.fig) + DocDependency(rflashlight.eps) + DocDependency(api-figure1.fig) + DocDependency(api-figure2.fig) + DocDependency(api-figure3.fig) + DocDependency(general-program.fig) + DocDependency(process-flow.fig) + DocDependency(gawk.dvi gawk.texi) + DocDependency(gawk.info gawk.texi) + DocDependency(gawkinet.dvi gawkinet.texi) + DocDependency(gawkinet.info gawkinet.texi) + DocDependency(gawkinet.texi statist.eps) + DocDependency(gawk.1.ps gawk.1) + DocDependency(igawk.1.ps igawk.1) + find_program(DVIPS_CONVERTER dvips) + if (DVIPS_CONVERTER) + DocDependency(gawk.ps gawk.dvi) + DocDependency(gawkinet.ps gawkinet.dvi) + find_program(PS2PDF_CONVERTER ps2pdf) + if (PS2PDF_CONVERTER) + DocDependency(gawk.1.pdf gawk.1.ps) + DocDependency(igawk.1.pdf igawk.1.ps) + DocDependency(gawk.pdf gawk.ps) + DocDependency(gawkinet.pdf gawkinet.ps) + install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/gawk.1.pdf DESTINATION doc) + install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/igawk.1.pdf DESTINATION doc) + install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/gawk.info DESTINATION doc) + install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/gawk.pdf DESTINATION doc) + install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/gawkinet.info DESTINATION doc) + install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/gawkinet.pdf DESTINATION doc) + + set(CARDSRC macros cardfonts colors awkcard.tr) + set(CARDSRC_N macros cardfonts no.colors awkcard.tr) + set(CARDFILES ${CARDSRC} ad.block awkcard.in setter.outline) + DocDependency(awkcard.tr awkcard.in) + DocDependency(awkcard.nc ${CARDFILES}) + DocDependency(awkcard.ps ${CARDFILES}) + DocDependency(awkcard.pdf awkcard.ps) + install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/awkcard.pdf DESTINATION doc) + + else() + message(WARNING "Found no ps2pdf tool; no doc will be generated") + install(CODE "MESSAGE(\"doc generated only in .ps files\")") + endif() + else() + message(WARNING "Found no dvips tool; no doc will be generated") + install(CODE "MESSAGE(\"doc generated only in .dvi files and man pages in .ps files\")") + endif() +else() + message(WARNING "Found no texi2dvi tool; no doc will be generated") + add_custom_command( + TARGET doc + COMMAND echo no doc generated because of missing texi2dvi + ) +endif() + diff --git a/doc/ChangeLog b/doc/ChangeLog index 0c68e072..c0ecbeaf 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -70,6 +70,10 @@ exercises. Remove use of LC_ALL in an example; doesn't seem to be needed anymore. + Unrelated: + + * gawktexi.in: Document that MirBSD is no longer supported. + 2014-08-25 Arnold D. Robbins <arnold@skeeve.com> * gawktexi.in: Exercises are excluded from print edition. @@ -103,6 +107,10 @@ * gawktexi.in: Starting on reviewer comments. Update acknowledgements. +2014-08-12 Arnold D. Robbins <arnold@skeeve.com> + + * gawktexi.in: Cause div.awk to get into the example files. + 2014-08-06 Arnold D. Robbins <arnold@skeeve.com> * gawktexi.in: Misc minor additions. @@ -117,6 +125,18 @@ * gawktexi.in: Fix doc for API get_record - errcode needs to be greater than zero. +2014-07-24 Arnold D. Robbins <arnold@skeeve.com> + + * gawktexi.in (Numeric Functions): For `div()', clarify + truncation is towards zero. Thanks to Michal Jaegermann + for pointing out the need to clarify this. + +2014-07-10 Arnold D. Robbins <arnold@skeeve.com> + + * gawktexi.in (Numeric Functions): Document new `div()' function. + (Arbitrary Precision Integers): Document raison d'etre for div(). + * gawk.1, awkcard.in: Document `div()'. + 2014-07-04 Arnold D. Robbins <arnold@skeeve.com> * gawktexi.in (Bracket Expressions): Add a note about how to @@ -127,6 +147,11 @@ * gawktexi.in: Update permissions on copyright page per latest maintain.texi. Add GPL to print version of book. +2014-06-24 Arnold D. Robbins <arnold@skeeve.com> + + * gawktexi.in: Document that --pretty-print no longer runs the + program. Remove mention of GAWK_NO_PP_RUN env var. + 2014-06-22 Arnold D. Robbins <arnold@skeeve.com> * gawktexi.in: Typo fixes and minor corrections. @@ -423,7 +448,7 @@ 2013-12-26 Arnold D. Robbins <arnold@skeeve.com> * gawktexi.in: More minor additions / fixes. - (Bugs): Add John Malmberg for VMS. + (Bugs): Add John Malmberg for VMS. Other minor edits. 2013-12-25 Arnold D. Robbins <arnold@skeeve.com> @@ -497,6 +522,11 @@ * gawktexi.in (FN, FFN, DF,DDF, PVERSION, CTL): Remove macros. They have no alternate versions and are just in the way. +2013-08-15 Arnold D. Robbins <arnold@skeeve.com> + + * gawk.1: Document that ENVIRON updates affect the environment. + * gawktexi.in: Ditto. + 2013-06-27 Arnold D. Robbins <arnold@skeeve.com> * texinfo.tex: Update from Karl, fixes a formating problem. diff --git a/doc/Makefile.am b/doc/Makefile.am index 86321bbc..8a0442a7 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -26,7 +26,7 @@ info_TEXINFOS = gawk.texi gawkinet.texi -man_MANS = gawk.1 igawk.1 +man_MANS = gawk.1 EXTRA_DIST = ChangeLog ChangeLog.0 README.card ad.block setter.outline \ awkcard.in awkforai.txt texinfo.tex cardfonts \ @@ -50,7 +50,7 @@ EXTRA_DIST = ChangeLog ChangeLog.0 README.card ad.block setter.outline \ bc_notes # Get rid of generated files when cleaning -CLEANFILES = *.ps *.html *.dvi *~ awkcard.nc awkcard.tr gawk.pdf gawkinet.pdf awkcard.pdf gawk.1.pdf igawk.1.pdf +CLEANFILES = *.ps *.html *.dvi *~ awkcard.nc awkcard.tr gawk.pdf gawkinet.pdf awkcard.pdf gawk.1.pdf MAKEINFO = @MAKEINFO@ --no-split --force @@ -75,9 +75,9 @@ AWKCARD = awkcard.ps gawk.texi: $(srcdir)/gawktexi.in $(srcdir)/sidebar.awk awk -f $(srcdir)/sidebar.awk < $(srcdir)/gawktexi.in > gawk.texi -postscript: gawk.ps gawkinet.ps gawk.1.ps igawk.1.ps $(AWKCARD) +postscript: gawk.ps gawkinet.ps gawk.1.ps $(AWKCARD) -pdf: postscript gawk.pdf gawkinet.pdf awkcard.pdf gawk.1.pdf igawk.1.pdf +pdf: postscript gawk.pdf gawkinet.pdf awkcard.pdf gawk.1.pdf gawk.ps: gawk.dvi TEXINPUTS=$(srcdir): dvips -o gawk.ps gawk.dvi @@ -91,12 +91,6 @@ gawk.1.ps: gawk.1 gawk.1.pdf: gawk.1.ps ps2pdf gawk.1.ps gawk.1.pdf -igawk.1.ps: igawk.1 - -groff -man $(srcdir)/igawk.1 > igawk.1.ps - -igawk.1.pdf: igawk.1.ps - ps2pdf igawk.1.ps igawk.1.pdf - awkcard.tr: awkcard.in sed 's:SRCDIR:$(srcdir):' < $(srcdir)/awkcard.in > awkcard.tr diff --git a/doc/Makefile.in b/doc/Makefile.in index abaf5601..d89beffd 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -341,7 +341,7 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ info_TEXINFOS = gawk.texi gawkinet.texi -man_MANS = gawk.1 igawk.1 +man_MANS = gawk.1 EXTRA_DIST = ChangeLog ChangeLog.0 README.card ad.block setter.outline \ awkcard.in awkforai.txt texinfo.tex cardfonts \ api-figure1.eps api-figure1.fig api-figure1.pdf \ @@ -365,7 +365,7 @@ EXTRA_DIST = ChangeLog ChangeLog.0 README.card ad.block setter.outline \ # Get rid of generated files when cleaning -CLEANFILES = *.ps *.html *.dvi *~ awkcard.nc awkcard.tr gawk.pdf gawkinet.pdf awkcard.pdf gawk.1.pdf igawk.1.pdf +CLEANFILES = *.ps *.html *.dvi *~ awkcard.nc awkcard.tr gawk.pdf gawkinet.pdf awkcard.pdf gawk.1.pdf TROFF = groff -t -Tps -U SEDME = sed -e "s/^level0 restore/level0 restore flashme 100 72 moveto (Copyright `date '+%m-%d-%y %T'`, FSF, Inc. (all)) show/" \ -e "s/^\/level0 save def/\/level0 save def 30 -48 translate/" @@ -869,9 +869,9 @@ uninstall-man: uninstall-man1 gawk.texi: $(srcdir)/gawktexi.in $(srcdir)/sidebar.awk awk -f $(srcdir)/sidebar.awk < $(srcdir)/gawktexi.in > gawk.texi -postscript: gawk.ps gawkinet.ps gawk.1.ps igawk.1.ps $(AWKCARD) +postscript: gawk.ps gawkinet.ps gawk.1.ps $(AWKCARD) -pdf: postscript gawk.pdf gawkinet.pdf awkcard.pdf gawk.1.pdf igawk.1.pdf +pdf: postscript gawk.pdf gawkinet.pdf awkcard.pdf gawk.1.pdf gawk.ps: gawk.dvi TEXINPUTS=$(srcdir): dvips -o gawk.ps gawk.dvi @@ -885,12 +885,6 @@ gawk.1.ps: gawk.1 gawk.1.pdf: gawk.1.ps ps2pdf gawk.1.ps gawk.1.pdf -igawk.1.ps: igawk.1 - -groff -man $(srcdir)/igawk.1 > igawk.1.ps - -igawk.1.pdf: igawk.1.ps - ps2pdf igawk.1.ps igawk.1.pdf - awkcard.tr: awkcard.in sed 's:SRCDIR:$(srcdir):' < $(srcdir)/awkcard.in > awkcard.tr diff --git a/doc/awkcard.in b/doc/awkcard.in index ca28f0a7..556bdc1e 100644 --- a/doc/awkcard.in +++ b/doc/awkcard.in @@ -1609,6 +1609,9 @@ expand; l lw(2i). \*(CD\*(FCatan2(\*(FIy\*(FC, \*(FIx\*(FC)\*(FR The arctangent of \*(FIy/x\fP in radians. \*(FCcos(\*(FIexpr\*(FC)\*(FR The cosine of \*(FIexpr\fP, which is in radians. +\*(CB\*(FCdiv(\*(FIn\*(FR\*(FC,\*(FI d\*(FR\*(FC,\*(FI res\*(FR\*(FC)\*(FR T{ +Return the result of integer division in \*(FIres\*(FR.\*(CD +T} \*(FCexp(\*(FIexpr\*(FC)\*(FR The exponential function (\*(FIe \*(FC^ \*(FIx\*(FR). \*(FCint(\*(FIexpr\*(FC)\*(FR Truncate to integer. \*(FClog(\*(FIexpr\*(FC)\*(FR The natural logarithm function (base \*(FIe\^\*(FR). @@ -917,11 +917,17 @@ An array containing the values of the current environment. The array is indexed by the environment variables, each element being the value of that variable (e.g., \fBENVIRON["HOME"]\fP might be \fB"/home/arnold"\fR). -Changing this array does not affect the environment seen by programs which +.sp +In POSIX mode, +changing this array does not affect the environment seen by programs which .I gawk spawns via redirection or the .B system() function. +Otherwise, +.I gawk +updates its real environment so that programs it spawns see +the changes. .TP .B ERRNO If a system error occurs either doing a redirection for @@ -2628,6 +2634,23 @@ Return the cosine of .IR expr , which is in radians. .TP +.BI div( num ", " denom ", " result ) +Truncate +.I num +and +.I denom +to integers. Return the quotient of +.I num +divided by +.I denom +in \fIresult\fB["quotient"]\fR +and the remainder in +in \fIresult\fB["remainder"]\fR. +This is a +.I gawk +extension, primarily of value when working with +arbitrarily large integers. +.TP .BI exp( expr ) The exponential function. .TP diff --git a/doc/gawk.info b/doc/gawk.info index fa77321b..dc347a0f 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -2581,10 +2581,8 @@ The following list describes options mandated by the POSIX standard: different file name for the output. No space is allowed between the `-o' and FILE, if FILE is supplied. - NOTE: Due to the way `gawk' has evolved, with this option - your program is still executed. This will change in the next - major release such that `gawk' will only pretty-print the - program and not run it. + NOTE: In the past, this option would also execute your + program. This is no longer the case. `-O' `--optimize' @@ -2973,13 +2971,6 @@ change. The variables are: supposed to be differences, but occasionally theory and practice don't coordinate with each other.) -`GAWK_NO_PP_RUN' - If this variable exists, then when invoked with the - `--pretty-print' option, `gawk' skips running the program. - - CAUTION: This variable will not survive into the next major - release. - `GAWK_STACKSIZE' This specifies the amount by which `gawk' should grow its internal evaluation stack, when needed. @@ -3371,15 +3362,17 @@ sequences apply to both string constants and regexp constants: `\xHH...' The hexadecimal value HH, where HH stands for a sequence of - hexadecimal digits (`0'-`9', and either `A'-`F' or `a'-`f'). Like - the same construct in ISO C, the escape sequence continues until - the first nonhexadecimal digit is seen. (c.e.) However, using - more than two hexadecimal digits produces undefined results. (The - `\x' escape sequence is not allowed in POSIX `awk'.) + hexadecimal digits (`0'-`9', and either `A'-`F' or `a'-`f'). A + maximum of two digts are allowed after the `\x'. Any further + hexadecimal digits are treated as simple letters or numbers. + (c.e.) - CAUTION: The next major relase of `gawk' will change, such - that a maximum of two hexadecimal digits following the `\x' - will be used. + CAUTION: In ISO C, the escape sequence continues until the + first nonhexadecimal digit is seen. For many years, `gawk' + would continue incorporating hexadecimal digits into the + value until a non-hexadecimal digit or the end of the string + was encountered. However, using more than two hexadecimal + digits produces `\/' A literal slash (necessary for regexp constants only). This @@ -10228,10 +10221,18 @@ Options::), they are not special. An associative array containing the values of the environment. The array indices are the environment variable names; the elements are the values of the particular environment variables. For - example, `ENVIRON["HOME"]' might be `"/home/arnold"'. Changing - this array does not affect the environment passed on to any - programs that `awk' may spawn via redirection or the `system()' - function. (In a future version of `gawk', it may do so.) + example, `ENVIRON["HOME"]' might be `/home/arnold'. + + For POSIX `awk', changing this array does not affect the + environment passed on to any programs that `awk' may spawn via + redirection or the `system()' function. + + However, beginning with version 4.2, if not in POSIX compatibility + mode, `gawk' does update its own environment when `ENVIRON' is + changed, thus changing the environment seen by programs that it + creates. You should therefore be especially careful if you modify + `ENVIRON["PATH"]"', which is the search path for finding + executable programs. Some operating systems may not have environment variables. On such systems, the `ENVIRON' array is empty (except for @@ -11775,6 +11776,21 @@ brackets ([ ]): `cos(X)' Return the cosine of X, with X in radians. +`div(NUMERATOR, DENOMINATOR, RESULT)' + Perform integer division, similar to the standard C function of the + same name. First, truncate `numerator' and `denominator' towards + zero, creating integer values. Clear the `result' array, and then + set `result["quotient"]' to the result of `numerator / + denominator', truncated towards zero to an integer, and set + `result["remainder"]' to the result of `numerator % denominator', + truncated towards zero to an integer. This function is primarily + intended for use with arbitrary length integers; it avoids + creating MPFR arbitrary precision floating-point values (*note + Arbitrary Precision Integers::). + + This function is a `gawk' extension. It is not available in + compatibility mode (*note Options::). + `exp(X)' Return the exponential of X (`e ^ X') or report an error if X is out of range. The range of values X can have depends on your @@ -19724,8 +19740,8 @@ by the `Ctrl-<\>' key. called this way, `gawk' "pretty prints" the program into `awkprof.out', without any execution counts. - NOTE: The `--pretty-print' option still runs your program. This - will change in the next major release. + NOTE: Once upon a time, the `--pretty-print' option would also run + your program. This is is no longer the case. File: gawk.info, Node: Advanced Features Summary, Prev: Profiling, Up: Advanced Features @@ -22201,6 +22217,29 @@ just use the following: gawk -M 'BEGIN { n = 13; print n % 2 }' + When dividing two arbitrary precision integers with either `/' or +`%', the result is typically an arbitrary precision floating point +value (unless the denominator evenly divides into the numerator). In +order to do integer division or remainder with arbitrary precision +integers, use the built-in `div()' function (*note Numeric Functions::). + + You can simulate the `div()' function in standard `awk' using this +user-defined function: + + # div --- do integer division + + function div(numerator, denominator, result, i) + { + split("", result) + + numerator = int(numerator) + denominator = int(denominator) + result["quotient"] = int(numerator / denominator) + result["remainder"] = int(numerator % denominator) + + return 0.0 + } + ---------- Footnotes ---------- (1) Weisstein, Eric W. `Sylvester's Sequence'. From MathWorld--A @@ -26227,6 +26266,8 @@ the current version of `gawk'. - Ultrix + * Support for MirBSD was removed at `gawk' version 4.2. + File: gawk.info, Node: Feature History, Next: Common Extensions, Prev: POSIX/GNU, Up: Language History @@ -27130,7 +27171,9 @@ Various `.c', `.y', and `.h' files `doc/igawk.1' The `troff' source for a manual page describing the `igawk' - program presented in *note Igawk Program::. + program presented in *note Igawk Program::. (Since `gawk' can do + its own `@include' processing, neither `igawk' nor `igawk.1' are + installed.) `doc/Makefile.in' The input file used during the configuration process to generate @@ -27172,11 +27215,10 @@ Various `.c', `.y', and `.h' files contains a `Makefile.in' file, which `configure' uses to generate a `Makefile'. `Makefile.am' is used by GNU Automake to create `Makefile.in'. The library functions from *note Library - Functions::, and the `igawk' program from *note Igawk Program::, - are included as ready-to-use files in the `gawk' distribution. - They are installed as part of the installation process. The rest - of the programs in this Info file are available in appropriate - subdirectories of `awklib/eg'. + Functions::, are included as ready-to-use files in the `gawk' + distribution. They are installed as part of the installation + process. The rest of the programs in this Info file are available + in appropriate subdirectories of `awklib/eg'. `extension/*' The source code, manual pages, and infrastructure files for the @@ -31115,20 +31157,20 @@ Index * --include option: Options. (line 159) * --lint option <1>: Options. (line 185) * --lint option: Command Line. (line 20) -* --lint-old option: Options. (line 295) +* --lint-old option: Options. (line 293) * --load option: Options. (line 173) * --non-decimal-data option <1>: Nondecimal Data. (line 6) * --non-decimal-data option: Options. (line 211) * --non-decimal-data option, strtonum() function and: Nondecimal Data. (line 36) -* --optimize option: Options. (line 237) -* --posix option: Options. (line 254) -* --posix option, --traditional option and: Options. (line 273) +* --optimize option: Options. (line 235) +* --posix option: Options. (line 252) +* --posix option, --traditional option and: Options. (line 271) * --pretty-print option: Options. (line 224) * --profile option <1>: Profiling. (line 12) -* --profile option: Options. (line 242) -* --re-interval option: Options. (line 279) -* --sandbox option: Options. (line 286) +* --profile option: Options. (line 240) +* --re-interval option: Options. (line 277) +* --sandbox option: Options. (line 284) * --sandbox option, disabling system() function: I/O Functions. (line 96) * --sandbox option, input redirection with getline: Getline. (line 19) @@ -31136,9 +31178,9 @@ Index (line 6) * --source option: Options. (line 117) * --traditional option: Options. (line 81) -* --traditional option, --posix option and: Options. (line 273) +* --traditional option, --posix option and: Options. (line 271) * --use-lc-numeric option: Options. (line 219) -* --version option: Options. (line 300) +* --version option: Options. (line 298) * --with-whiny-user-strftime configuration option: Additional Configuration Options. (line 35) * -b option: Options. (line 68) @@ -31146,32 +31188,32 @@ Index * -c option: Options. (line 81) * -D option: Options. (line 108) * -d option: Options. (line 93) -* -e option: Options. (line 336) +* -e option: Options. (line 334) * -E option: Options. (line 125) * -e option: Options. (line 117) * -f option: Options. (line 25) * -F option: Options. (line 21) * -f option: Long. (line 12) -* -F option, -Ft sets FS to TAB: Options. (line 308) +* -F option, -Ft sets FS to TAB: Options. (line 306) * -F option, command-line: Command Line Field Separator. (line 6) -* -f option, multiple uses: Options. (line 313) +* -f option, multiple uses: Options. (line 311) * -g option: Options. (line 147) * -h option: Options. (line 154) * -i option: Options. (line 159) -* -L option: Options. (line 295) +* -L option: Options. (line 293) * -l option: Options. (line 173) * -M option: Options. (line 205) * -N option: Options. (line 219) * -n option: Options. (line 211) -* -O option: Options. (line 237) +* -O option: Options. (line 235) * -o option: Options. (line 224) -* -P option: Options. (line 254) -* -p option: Options. (line 242) -* -r option: Options. (line 279) -* -S option: Options. (line 286) +* -P option: Options. (line 252) +* -p option: Options. (line 240) +* -r option: Options. (line 277) +* -S option: Options. (line 284) * -v option: Assignment Options. (line 12) -* -V option: Options. (line 300) +* -V option: Options. (line 298) * -v option: Options. (line 32) * -W option: Options. (line 46) * . (period), regexp operator: Regexp Operators. (line 44) @@ -31233,10 +31275,10 @@ Index (line 8) * [] (square brackets), regexp operator: Regexp Operators. (line 56) * \ (backslash): Comments. (line 50) -* \ (backslash), \" escape sequence: Escape Sequences. (line 82) +* \ (backslash), \" escape sequence: Escape Sequences. (line 84) * \ (backslash), \' operator (gawk): GNU Regexp Operators. (line 56) -* \ (backslash), \/ escape sequence: Escape Sequences. (line 73) +* \ (backslash), \/ escape sequence: Escape Sequences. (line 75) * \ (backslash), \< operator (gawk): GNU Regexp Operators. (line 30) * \ (backslash), \> operator (gawk): GNU Regexp Operators. @@ -31276,7 +31318,7 @@ Index * \ (backslash), in bracket expressions: Bracket Expressions. (line 17) * \ (backslash), in escape sequences: Escape Sequences. (line 6) * \ (backslash), in escape sequences, POSIX and: Escape Sequences. - (line 118) + (line 120) * \ (backslash), in regexp constants: Computed Regexps. (line 29) * \ (backslash), in shell commands: Quoting. (line 48) * \ (backslash), regexp operator: Regexp Operators. (line 18) @@ -31444,7 +31486,7 @@ Index * awf (amazingly workable formatter) program: Glossary. (line 24) * awk debugging, enabling: Options. (line 108) * awk language, POSIX version: Assignment Ops. (line 137) -* awk profiling, enabling: Options. (line 242) +* awk profiling, enabling: Options. (line 240) * awk programs <1>: Two Rules. (line 6) * awk programs <2>: Executable Scripts. (line 6) * awk programs: Getting Started. (line 12) @@ -31502,10 +31544,10 @@ Index * awkvars.out file: Options. (line 93) * b debugger command (alias for break): Breakpoint Control. (line 11) * backslash (\): Comments. (line 50) -* backslash (\), \" escape sequence: Escape Sequences. (line 82) +* backslash (\), \" escape sequence: Escape Sequences. (line 84) * backslash (\), \' operator (gawk): GNU Regexp Operators. (line 56) -* backslash (\), \/ escape sequence: Escape Sequences. (line 73) +* backslash (\), \/ escape sequence: Escape Sequences. (line 75) * backslash (\), \< operator (gawk): GNU Regexp Operators. (line 30) * backslash (\), \> operator (gawk): GNU Regexp Operators. @@ -31545,7 +31587,7 @@ Index * backslash (\), in bracket expressions: Bracket Expressions. (line 17) * backslash (\), in escape sequences: Escape Sequences. (line 6) * backslash (\), in escape sequences, POSIX and: Escape Sequences. - (line 118) + (line 120) * backslash (\), in regexp constants: Computed Regexps. (line 29) * backslash (\), in shell commands: Quoting. (line 48) * backslash (\), regexp operator: Regexp Operators. (line 18) @@ -31650,7 +31692,7 @@ Index (line 67) * Brian Kernighan's awk <12>: GNU Regexp Operators. (line 83) -* Brian Kernighan's awk <13>: Escape Sequences. (line 122) +* Brian Kernighan's awk <13>: Escape Sequences. (line 124) * Brian Kernighan's awk: When. (line 21) * Brian Kernighan's awk, extensions: BTL. (line 6) * Brian Kernighan's awk, source code: Other Versions. (line 13) @@ -31848,7 +31890,7 @@ Index * cosine: Numeric Functions. (line 15) * counting: Wc Program. (line 6) * csh utility: Statements/Lines. (line 44) -* csh utility, POSIXLY_CORRECT environment variable: Options. (line 354) +* csh utility, POSIXLY_CORRECT environment variable: Options. (line 352) * csh utility, |& operator, comparison with: Two-way I/O. (line 25) * ctime() user-defined function: Function Example. (line 74) * currency symbols, localization: Explaining gettext. (line 104) @@ -31879,13 +31921,13 @@ Index * dark corner, CONVFMT variable: Strings And Numbers. (line 40) * dark corner, escape sequences: Other Arguments. (line 38) * dark corner, escape sequences, for metacharacters: Escape Sequences. - (line 140) + (line 142) * dark corner, exit statement: Exit Statement. (line 30) * dark corner, field separators: Field Splitting Summary. (line 46) -* dark corner, FILENAME variable <1>: Auto-set. (line 90) +* dark corner, FILENAME variable <1>: Auto-set. (line 98) * dark corner, FILENAME variable: Getline Notes. (line 19) -* dark corner, FNR/NR variables: Auto-set. (line 308) +* dark corner, FNR/NR variables: Auto-set. (line 316) * dark corner, format-control characters: Control Letters. (line 18) * dark corner, FS as null string: Single Character Fields. (line 20) @@ -32032,7 +32074,7 @@ Index * debugger, read commands from a file: Debugger Info. (line 96) * debugging awk programs: Debugger. (line 6) * debugging gawk, bug reports: Bugs. (line 9) -* decimal point character, locale specific: Options. (line 270) +* decimal point character, locale specific: Options. (line 268) * decrement operators: Increment Ops. (line 35) * default keyword: Switch Statement. (line 6) * Deifik, Scott <1>: Bugs. (line 71) @@ -32071,12 +32113,12 @@ Index (line 81) * differences in awk and gawk, command-line directories: Command-line directories. (line 6) -* differences in awk and gawk, ERRNO variable: Auto-set. (line 74) +* differences in awk and gawk, ERRNO variable: Auto-set. (line 82) * differences in awk and gawk, error messages: Special FD. (line 16) * differences in awk and gawk, FIELDWIDTHS variable: User-modified. (line 37) * differences in awk and gawk, FPAT variable: User-modified. (line 43) -* differences in awk and gawk, FUNCTAB variable: Auto-set. (line 115) +* differences in awk and gawk, FUNCTAB variable: Auto-set. (line 123) * differences in awk and gawk, function arguments (gawk): Calling Built-in. (line 16) * differences in awk and gawk, getline command: Getline. (line 19) @@ -32099,7 +32141,7 @@ Index (line 262) * differences in awk and gawk, print/printf statements: Format Modifiers. (line 13) -* differences in awk and gawk, PROCINFO array: Auto-set. (line 129) +* differences in awk and gawk, PROCINFO array: Auto-set. (line 137) * differences in awk and gawk, read timeouts: Read Timeout. (line 6) * differences in awk and gawk, record separators: awk split records. (line 125) @@ -32109,7 +32151,7 @@ Index (line 26) * differences in awk and gawk, RS/RT variables: gawk split records. (line 58) -* differences in awk and gawk, RT variable: Auto-set. (line 264) +* differences in awk and gawk, RT variable: Auto-set. (line 272) * differences in awk and gawk, single-character fields: Single Character Fields. (line 6) * differences in awk and gawk, split() function: String Functions. @@ -32117,7 +32159,7 @@ Index * differences in awk and gawk, strings: Scalar Constants. (line 20) * differences in awk and gawk, strings, storing: gawk split records. (line 77) -* differences in awk and gawk, SYMTAB variable: Auto-set. (line 268) +* differences in awk and gawk, SYMTAB variable: Auto-set. (line 276) * differences in awk and gawk, TEXTDOMAIN variable: User-modified. (line 151) * differences in awk and gawk, trunc-mod operation: Arithmetic Ops. @@ -32133,6 +32175,7 @@ Index * display debugger command: Viewing And Changing Data. (line 8) * display debugger options: Debugger Info. (line 57) +* div: Numeric Functions. (line 18) * division: Arithmetic Ops. (line 44) * do-while statement: Do Statement. (line 6) * do-while statement, use of regexps in: Regexp Usage. (line 19) @@ -32156,8 +32199,8 @@ Index * dynamically loaded extensions: Dynamic Extensions. (line 6) * e debugger command (alias for enable): Breakpoint Control. (line 73) * EBCDIC: Ordinal Functions. (line 45) -* effective group ID of gawk user: Auto-set. (line 134) -* effective user ID of gawk user: Auto-set. (line 138) +* effective group ID of gawk user: Auto-set. (line 142) +* effective user ID of gawk user: Auto-set. (line 146) * egrep utility <1>: Egrep Program. (line 6) * egrep utility: Bracket Expressions. (line 26) * egrep.awk program: Egrep Program. (line 54) @@ -32212,13 +32255,13 @@ Index (line 11) * EREs (Extended Regular Expressions): Bracket Expressions. (line 26) * ERRNO variable <1>: TCP/IP Networking. (line 54) -* ERRNO variable: Auto-set. (line 74) +* ERRNO variable: Auto-set. (line 82) * ERRNO variable, with BEGINFILE pattern: BEGINFILE/ENDFILE. (line 26) * ERRNO variable, with close() function: Close Files And Pipes. (line 140) * ERRNO variable, with getline command: Getline. (line 19) * error handling: Special FD. (line 16) -* error handling, ERRNO variable and: Auto-set. (line 74) +* error handling, ERRNO variable and: Auto-set. (line 82) * error output: Special FD. (line 6) * escape processing, gsub()/gensub()/sub() functions: Gory Details. (line 6) @@ -32251,10 +32294,10 @@ Index * exit status, of VMS: VMS Running. (line 29) * exit the debugger: Miscellaneous Debugger Commands. (line 99) -* exp: Numeric Functions. (line 18) +* exp: Numeric Functions. (line 33) * expand utility: Very Simple. (line 72) * Expat XML parser library: gawkextlib. (line 35) -* exponent: Numeric Functions. (line 18) +* exponent: Numeric Functions. (line 33) * expressions: Expressions. (line 6) * expressions, as patterns: Expression Patterns. (line 6) * expressions, assignment: Assignment Ops. (line 6) @@ -32272,7 +32315,7 @@ Index (line 6) * extension API version: Extension Versioning. (line 6) -* extension API, version number: Auto-set. (line 231) +* extension API, version number: Auto-set. (line 239) * extension example: Extension Example. (line 6) * extension registration: Registration Functions. (line 6) @@ -32354,7 +32397,7 @@ Index * file names, distinguishing: Auto-set. (line 56) * file names, in compatibility mode: Special Caveats. (line 9) * file names, standard streams in gawk: Special FD. (line 47) -* FILENAME variable <1>: Auto-set. (line 90) +* FILENAME variable <1>: Auto-set. (line 98) * FILENAME variable: Reading Files. (line 6) * FILENAME variable, getline, setting with: Getline Notes. (line 19) * filenames, assignments as: Ignoring Assigns. (line 6) @@ -32422,9 +32465,9 @@ Index * flush buffered output: I/O Functions. (line 28) * fnmatch() extension function: Extension Sample Fnmatch. (line 12) -* FNR variable <1>: Auto-set. (line 99) +* FNR variable <1>: Auto-set. (line 107) * FNR variable: Records. (line 6) -* FNR variable, changing: Auto-set. (line 308) +* FNR variable, changing: Auto-set. (line 316) * for statement: For Statement. (line 6) * for statement, looping over arrays: Scanning an Array. (line 20) * fork() extension function: Extension Sample Fork. @@ -32461,7 +32504,7 @@ Index * FS variable, --field-separator option and: Options. (line 21) * FS variable, as null string: Single Character Fields. (line 20) -* FS variable, as TAB character: Options. (line 266) +* FS variable, as TAB character: Options. (line 264) * FS variable, changing value of: Field Separators. (line 35) * FS variable, running awk programs and: Cut Program. (line 68) * FS variable, setting from command line: Command Line Field Separator. @@ -32474,7 +32517,7 @@ Index * FSF (Free Software Foundation): Manual History. (line 6) * fts() extension function: Extension Sample File Functions. (line 61) -* FUNCTAB array: Auto-set. (line 115) +* FUNCTAB array: Auto-set. (line 123) * function calls: Function Calls. (line 6) * function calls, indirect: Indirect Calls. (line 6) * function calls, indirect, @-notation for: Indirect Calls. (line 47) @@ -32524,7 +32567,7 @@ Index * G-d: Acknowledgments. (line 92) * Garfinkle, Scott: Contributors. (line 34) * gawk program, dynamic profiling: Profiling. (line 179) -* gawk version: Auto-set. (line 206) +* gawk version: Auto-set. (line 214) * gawk, ARGIND variable in: Other Arguments. (line 15) * gawk, awk and <1>: This Manual. (line 14) * gawk, awk and: Preface. (line 21) @@ -32543,13 +32586,13 @@ Index * gawk, distribution: Distribution contents. (line 6) * gawk, ERRNO variable in <1>: TCP/IP Networking. (line 54) -* gawk, ERRNO variable in <2>: Auto-set. (line 74) +* gawk, ERRNO variable in <2>: Auto-set. (line 82) * gawk, ERRNO variable in <3>: BEGINFILE/ENDFILE. (line 26) * gawk, ERRNO variable in <4>: Close Files And Pipes. (line 140) * gawk, ERRNO variable in: Getline. (line 19) -* gawk, escape sequences: Escape Sequences. (line 130) -* gawk, extensions, disabling: Options. (line 254) +* gawk, escape sequences: Escape Sequences. (line 132) +* gawk, extensions, disabling: Options. (line 252) * gawk, features, adding: Adding Code. (line 6) * gawk, features, advanced: Advanced Features. (line 6) * gawk, field separators and: User-modified. (line 71) @@ -32560,7 +32603,7 @@ Index * gawk, FPAT variable in <1>: User-modified. (line 43) * gawk, FPAT variable in: Splitting By Content. (line 27) -* gawk, FUNCTAB array in: Auto-set. (line 115) +* gawk, FUNCTAB array in: Auto-set. (line 123) * gawk, function arguments and: Calling Built-in. (line 16) * gawk, hexadecimal numbers and: Nondecimal-numbers. (line 42) * gawk, IGNORECASE variable in <1>: Array Sorting Functions. @@ -32591,7 +32634,7 @@ Index * gawk, OS/2 version of: PC Using. (line 16) * gawk, PROCINFO array in <1>: Two-way I/O. (line 99) * gawk, PROCINFO array in <2>: Time Functions. (line 47) -* gawk, PROCINFO array in: Auto-set. (line 129) +* gawk, PROCINFO array in: Auto-set. (line 137) * gawk, regexp constants and: Using Constant Regexps. (line 28) * gawk, regular expressions, case sensitivity: Case-sensitivity. @@ -32599,18 +32642,18 @@ Index * gawk, regular expressions, operators: GNU Regexp Operators. (line 6) * gawk, regular expressions, precedence: Regexp Operators. (line 161) -* gawk, RT variable in <1>: Auto-set. (line 264) +* gawk, RT variable in <1>: Auto-set. (line 272) * gawk, RT variable in <2>: Multiple Line. (line 129) * gawk, RT variable in: awk split records. (line 125) * gawk, See Also awk: Preface. (line 34) * gawk, source code, obtaining: Getting. (line 6) * gawk, splitting fields and: Constant Size. (line 88) * gawk, string-translation functions: I18N Functions. (line 6) -* gawk, SYMTAB array in: Auto-set. (line 268) +* gawk, SYMTAB array in: Auto-set. (line 276) * gawk, TEXTDOMAIN variable in: User-modified. (line 151) * gawk, timestamps: Time Functions. (line 6) * gawk, uses for: Preface. (line 34) -* gawk, versions of, information about, printing: Options. (line 300) +* gawk, versions of, information about, printing: Options. (line 298) * gawk, VMS version of: VMS Installation. (line 6) * gawk, word-boundary operator: GNU Regexp Operators. (line 63) @@ -32692,7 +32735,7 @@ Index * Grigera, Juan: Contributors. (line 57) * group database, reading: Group Functions. (line 6) * group file: Group Functions. (line 6) -* group ID of gawk user: Auto-set. (line 179) +* group ID of gawk user: Auto-set. (line 187) * groups, information about: Group Functions. (line 6) * gsub <1>: String Functions. (line 139) * gsub: Using Constant Regexps. @@ -32793,7 +32836,7 @@ Index * installation, VMS: VMS Installation. (line 6) * installing gawk: Installation. (line 6) * instruction tracing, in debugger: Debugger Info. (line 89) -* int: Numeric Functions. (line 23) +* int: Numeric Functions. (line 38) * INT signal (MS-Windows): Profiling. (line 214) * integer array indices: Numeric Array Subscripts. (line 31) @@ -32922,7 +32965,7 @@ Index * lint checking, empty programs: Command Line. (line 16) * lint checking, issuing warnings: Options. (line 185) * lint checking, POSIXLY_CORRECT environment variable: Options. - (line 339) + (line 337) * lint checking, undefined functions: Pass By Value/Reference. (line 88) * LINT variable: User-modified. (line 88) @@ -32938,14 +32981,14 @@ Index * loading, extensions: Options. (line 173) * local variables, in a function: Variable Scope. (line 6) * locale categories: Explaining gettext. (line 81) -* locale decimal point character: Options. (line 270) +* locale decimal point character: Options. (line 268) * locale, definition of: Locales. (line 6) * localization: I18N and L10N. (line 6) * localization, See internationalization, localization: I18N and L10N. (line 6) -* log: Numeric Functions. (line 30) +* log: Numeric Functions. (line 45) * log files, timestamps in: Time Functions. (line 6) -* logarithm: Numeric Functions. (line 30) +* logarithm: Numeric Functions. (line 45) * logical false/true: Truth Values. (line 6) * logical operators, See Boolean expressions: Boolean Ops. (line 6) * login information: Passwd Functions. (line 16) @@ -32985,8 +33028,8 @@ Index * mawk utility <2>: Nextfile Statement. (line 47) * mawk utility <3>: Concatenation. (line 36) * mawk utility <4>: Getline/Pipe. (line 62) -* mawk utility: Escape Sequences. (line 130) -* maximum precision supported by MPFR library: Auto-set. (line 220) +* mawk utility: Escape Sequences. (line 132) +* maximum precision supported by MPFR library: Auto-set. (line 228) * McIlroy, Doug: Glossary. (line 149) * McPhee, Patrick: Contributors. (line 100) * message object files: Explaining gettext. (line 42) @@ -32998,8 +33041,8 @@ Index (line 54) * messages from extensions: Printing Messages. (line 6) * metacharacters in regular expressions: Regexp Operators. (line 6) -* metacharacters, escape sequences for: Escape Sequences. (line 136) -* minimum precision supported by MPFR library: Auto-set. (line 223) +* metacharacters, escape sequences for: Escape Sequences. (line 138) +* minimum precision supported by MPFR library: Auto-set. (line 231) * mktime: Time Functions. (line 25) * modifiers, in format specifiers: Format Modifiers. (line 6) * monetary information, localization: Explaining gettext. (line 104) @@ -33019,7 +33062,7 @@ Index * networks, programming: TCP/IP Networking. (line 6) * networks, support for: Special Network. (line 6) * newlines <1>: Boolean Ops. (line 69) -* newlines <2>: Options. (line 260) +* newlines <2>: Options. (line 258) * newlines: Statements/Lines. (line 6) * newlines, as field separators: Default Field Splitting. (line 6) @@ -33048,7 +33091,7 @@ Index (line 47) * nexti debugger command: Debugger Execution Control. (line 49) -* NF variable <1>: Auto-set. (line 104) +* NF variable <1>: Auto-set. (line 112) * NF variable: Fields. (line 33) * NF variable, decrementing: Changing Fields. (line 107) * ni debugger command (alias for nexti): Debugger Execution Control. @@ -33057,9 +33100,9 @@ Index * non-existent array elements: Reference to Elements. (line 23) * not Boolean-logic operator: Boolean Ops. (line 6) -* NR variable <1>: Auto-set. (line 124) +* NR variable <1>: Auto-set. (line 132) * NR variable: Records. (line 6) -* NR variable, changing: Auto-set. (line 308) +* NR variable, changing: Auto-set. (line 316) * null strings <1>: Basic Data Typing. (line 26) * null strings <2>: Truth Values. (line 6) * null strings <3>: Regexp Field Splitting. @@ -33173,7 +33216,7 @@ Index * p debugger command (alias for print): Viewing And Changing Data. (line 36) * Papadopoulos, Panos: Contributors. (line 128) -* parent process ID of gawk process: Auto-set. (line 188) +* parent process ID of gawk process: Auto-set. (line 196) * parentheses (), in a profile: Profiling. (line 146) * parentheses (), regexp operator: Regexp Operators. (line 81) * password file: Passwd Functions. (line 16) @@ -33215,14 +33258,14 @@ Index * plus sign (+), += operator: Assignment Ops. (line 82) * plus sign (+), regexp operator: Regexp Operators. (line 105) * pointers to functions: Indirect Calls. (line 6) -* portability: Escape Sequences. (line 100) +* portability: Escape Sequences. (line 102) * portability, #! (executable scripts): Executable Scripts. (line 33) * portability, ** operator and: Arithmetic Ops. (line 81) * portability, **= operator and: Assignment Ops. (line 143) * portability, ARGV variable: Executable Scripts. (line 59) * portability, backslash continuation and: Statements/Lines. (line 30) * portability, backslash in escape sequences: Escape Sequences. - (line 118) + (line 120) * portability, close() function and: Close Files And Pipes. (line 81) * portability, data files as single record: gawk split records. @@ -33240,7 +33283,7 @@ Index * portability, NF variable, decrementing: Changing Fields. (line 115) * portability, operators: Increment Ops. (line 60) * portability, operators, not in POSIX awk: Precedence. (line 98) -* portability, POSIXLY_CORRECT environment variable: Options. (line 359) +* portability, POSIXLY_CORRECT environment variable: Options. (line 357) * portability, substr() function: String Functions. (line 511) * portable object files <1>: Translator i18n. (line 6) * portable object files: Explaining gettext. (line 37) @@ -33261,7 +33304,7 @@ Index * POSIX awk, < operator and: Getline/File. (line 26) * POSIX awk, arithmetic operators and: Arithmetic Ops. (line 30) * POSIX awk, backslashes in string constants: Escape Sequences. - (line 118) + (line 120) * POSIX awk, BEGIN/END patterns: I/O And BEGIN/END. (line 16) * POSIX awk, bracket expressions and: Bracket Expressions. (line 26) * POSIX awk, bracket expressions and, character classes: Bracket Expressions. @@ -33289,11 +33332,11 @@ Index * POSIX awk, regular expressions and: Regexp Operators. (line 161) * POSIX awk, timestamps and: Time Functions. (line 6) * POSIX awk, | I/O operator and: Getline/Pipe. (line 55) -* POSIX mode: Options. (line 254) +* POSIX mode: Options. (line 252) * POSIX, awk and: Preface. (line 21) * POSIX, gawk extensions not included in: POSIX/GNU. (line 6) * POSIX, programs, implementing in awk: Clones. (line 6) -* POSIXLY_CORRECT environment variable: Options. (line 339) +* POSIXLY_CORRECT environment variable: Options. (line 337) * PREC variable: User-modified. (line 123) * precedence <1>: Precedence. (line 6) * precedence: Increment Ops. (line 60) @@ -33336,24 +33379,24 @@ Index * printing, unduplicated lines of text: Uniq Program. (line 6) * printing, user information: Id Program. (line 6) * private variables: Library Names. (line 11) -* process group idIDof gawk process: Auto-set. (line 182) -* process ID of gawk process: Auto-set. (line 185) +* process group idIDof gawk process: Auto-set. (line 190) +* process ID of gawk process: Auto-set. (line 193) * processes, two-way communications with: Two-way I/O. (line 6) * processing data: Basic High Level. (line 6) * PROCINFO array <1>: Passwd Functions. (line 6) * PROCINFO array <2>: Time Functions. (line 47) -* PROCINFO array: Auto-set. (line 129) +* PROCINFO array: Auto-set. (line 137) * PROCINFO array, and communications via ptys: Two-way I/O. (line 99) * PROCINFO array, and group membership: Group Functions. (line 6) * PROCINFO array, and user and group ID numbers: Id Program. (line 15) * PROCINFO array, testing the field splitting: Passwd Functions. (line 161) -* PROCINFO array, uses: Auto-set. (line 241) +* PROCINFO array, uses: Auto-set. (line 249) * PROCINFO, values of sorted_in: Controlling Scanning. (line 26) * profiling awk programs: Profiling. (line 6) * profiling awk programs, dynamically: Profiling. (line 179) -* program identifiers: Auto-set. (line 147) +* program identifiers: Auto-set. (line 155) * program, definition of: Getting Started. (line 21) * programming conventions, --non-decimal-data option: Nondecimal Data. (line 36) @@ -33397,12 +33440,12 @@ Index * Rakitzis, Byron: History Sorting. (line 25) * Ramey, Chet <1>: General Data Types. (line 6) * Ramey, Chet: Acknowledgments. (line 60) -* rand: Numeric Functions. (line 35) +* rand: Numeric Functions. (line 50) * random numbers, Cliff: Cliff Random Function. (line 6) * random numbers, rand()/srand() functions: Numeric Functions. - (line 35) -* random numbers, seed of: Numeric Functions. (line 65) + (line 50) +* random numbers, seed of: Numeric Functions. (line 80) * range expressions (regexps): Bracket Expressions. (line 6) * range patterns: Ranges. (line 6) * range patterns, line continuation and: Ranges. (line 65) @@ -33472,7 +33515,7 @@ Index (line 59) * regular expressions, gawk, command-line options: GNU Regexp Operators. (line 70) -* regular expressions, interval expressions and: Options. (line 279) +* regular expressions, interval expressions and: Options. (line 277) * regular expressions, leftmost longest match: Leftmost Longest. (line 6) * regular expressions, operators <1>: Regexp Operators. (line 6) @@ -33512,7 +33555,7 @@ Index * right shift: Bitwise Functions. (line 53) * right shift, bitwise: Bitwise Functions. (line 32) * Ritchie, Dennis: Basic Data Typing. (line 54) -* RLENGTH variable: Auto-set. (line 251) +* RLENGTH variable: Auto-set. (line 259) * RLENGTH variable, match() function and: String Functions. (line 227) * Robbins, Arnold <1>: Future Extensions. (line 6) * Robbins, Arnold <2>: Bugs. (line 32) @@ -33530,7 +33573,7 @@ Index * Robbins, Miriam <2>: Getline/Pipe. (line 39) * Robbins, Miriam: Acknowledgments. (line 92) * Rommel, Kai Uwe: Contributors. (line 42) -* round to nearest integer: Numeric Functions. (line 23) +* round to nearest integer: Numeric Functions. (line 38) * round() user-defined function: Round Function. (line 16) * rounding numbers: Round Function. (line 6) * ROUNDMODE variable: User-modified. (line 127) @@ -33538,9 +33581,9 @@ Index * RS variable: awk split records. (line 12) * RS variable, multiline records and: Multiple Line. (line 17) * rshift: Bitwise Functions. (line 53) -* RSTART variable: Auto-set. (line 257) +* RSTART variable: Auto-set. (line 265) * RSTART variable, match() function and: String Functions. (line 227) -* RT variable <1>: Auto-set. (line 264) +* RT variable <1>: Auto-set. (line 272) * RT variable <2>: Multiple Line. (line 129) * RT variable: awk split records. (line 125) * Rubin, Paul <1>: Contributors. (line 15) @@ -33553,14 +33596,14 @@ Index (line 68) * sample debugging session: Sample Debugging Session. (line 6) -* sandbox mode: Options. (line 286) +* sandbox mode: Options. (line 284) * save debugger options: Debugger Info. (line 84) * scalar or array: Type Functions. (line 11) * scalar values: Basic Data Typing. (line 13) * scanning arrays: Scanning an Array. (line 6) * scanning multidimensional arrays: Multiscanning. (line 11) * Schorr, Andrew <1>: Contributors. (line 133) -* Schorr, Andrew <2>: Auto-set. (line 291) +* Schorr, Andrew <2>: Auto-set. (line 299) * Schorr, Andrew: Acknowledgments. (line 60) * Schreiber, Bert: Acknowledgments. (line 38) * Schreiber, Rita: Acknowledgments. (line 38) @@ -33580,7 +33623,7 @@ Index * sed utility <2>: Simple Sed. (line 6) * sed utility: Field Splitting Summary. (line 46) -* seeding random number generator: Numeric Functions. (line 65) +* seeding random number generator: Numeric Functions. (line 80) * semicolon (;), AWKPATH variable and: PC Using. (line 10) * semicolon (;), separating statements in actions <1>: Statements. (line 10) @@ -33641,14 +33684,14 @@ Index * sidebar, A Constant's Base Does Not Affect Its Value: Nondecimal-numbers. (line 64) * sidebar, Backslash Before Regular Characters: Escape Sequences. - (line 116) + (line 118) * sidebar, Changing FS Does Not Affect the Fields: Field Splitting Summary. (line 38) -* sidebar, Changing NR and FNR: Auto-set. (line 306) +* sidebar, Changing NR and FNR: Auto-set. (line 314) * sidebar, Controlling Output Buffering with system(): I/O Functions. (line 137) * sidebar, Escape Sequences for Metacharacters: Escape Sequences. - (line 134) + (line 136) * sidebar, FS and IGNORECASE: Field Splitting Summary. (line 64) * sidebar, Interactive Versus Noninteractive Buffering: I/O Functions. @@ -33681,8 +33724,8 @@ Index * SIGUSR1 signal, for dynamic profiling: Profiling. (line 188) * silent debugger command: Debugger Execution Control. (line 10) -* sin: Numeric Functions. (line 76) -* sine: Numeric Functions. (line 76) +* sin: Numeric Functions. (line 91) +* sine: Numeric Functions. (line 91) * single quote ('): One-shot. (line 15) * single quote (') in gawk command lines: Long. (line 35) * single quote ('), in shell commands: Quoting. (line 48) @@ -33732,10 +33775,10 @@ Index * sprintf() function, OFMT variable and: User-modified. (line 113) * sprintf() function, print/printf statements and: Round Function. (line 6) -* sqrt: Numeric Functions. (line 79) +* sqrt: Numeric Functions. (line 94) * square brackets ([]), regexp operator: Regexp Operators. (line 56) -* square root: Numeric Functions. (line 79) -* srand: Numeric Functions. (line 83) +* square root: Numeric Functions. (line 94) +* srand: Numeric Functions. (line 98) * stack frame: Debugging Terms. (line 10) * Stallman, Richard <1>: Glossary. (line 296) * Stallman, Richard <2>: Contributors. (line 23) @@ -33807,9 +33850,9 @@ Index * substr: String Functions. (line 480) * substring: String Functions. (line 480) * Sumner, Andrew: Other Versions. (line 64) -* supplementary groups of gawk process: Auto-set. (line 236) +* supplementary groups of gawk process: Auto-set. (line 244) * switch statement: Switch Statement. (line 6) -* SYMTAB array: Auto-set. (line 268) +* SYMTAB array: Auto-set. (line 276) * syntactic ambiguity: /= operator vs. /=.../ regexp constant: Assignment Ops. (line 148) * system: I/O Functions. (line 74) @@ -33876,7 +33919,7 @@ Index (line 37) * troubleshooting, awk uses FS not IFS: Field Separators. (line 30) * troubleshooting, backslash before nonspecial character: Escape Sequences. - (line 118) + (line 120) * troubleshooting, division: Arithmetic Ops. (line 44) * troubleshooting, fatal errors, field widths, specifying: Constant Size. (line 23) @@ -33932,7 +33975,7 @@ Index * uniq.awk program: Uniq Program. (line 65) * Unix: Glossary. (line 611) * Unix awk, backslashes in escape sequences: Escape Sequences. - (line 130) + (line 132) * Unix awk, close() function and: Close Files And Pipes. (line 132) * Unix awk, password files, field separators and: Command Line Field Separator. @@ -33986,10 +34029,10 @@ Index * variables, uninitialized, as array subscripts: Uninitialized Subscripts. (line 6) * variables, user-defined: Variables. (line 6) -* version of gawk: Auto-set. (line 206) -* version of gawk extension API: Auto-set. (line 231) -* version of GNU MP library: Auto-set. (line 217) -* version of GNU MPFR library: Auto-set. (line 213) +* version of gawk: Auto-set. (line 214) +* version of gawk extension API: Auto-set. (line 239) +* version of GNU MP library: Auto-set. (line 225) +* version of GNU MPFR library: Auto-set. (line 221) * vertical bar (|): Regexp Operators. (line 70) * vertical bar (|), | operator (I/O) <1>: Precedence. (line 65) * vertical bar (|), | operator (I/O): Getline/Pipe. (line 9) @@ -34023,7 +34066,7 @@ Index * whitespace, as field separators: Default Field Splitting. (line 6) * whitespace, functions, calling: Calling Built-in. (line 10) -* whitespace, newlines as: Options. (line 260) +* whitespace, newlines as: Options. (line 258) * Williams, Kent: Contributors. (line 34) * Woehlke, Matthew: Contributors. (line 79) * Woods, John: Contributors. (line 27) @@ -34115,514 +34158,514 @@ Node: Intro Summary110300 Node: Invoking Gawk111183 Node: Command Line112698 Node: Options113489 -Ref: Options-Footnote-1129316 -Node: Other Arguments129341 -Node: Naming Standard Input132302 -Node: Environment Variables133395 -Node: AWKPATH Variable133953 -Ref: AWKPATH Variable-Footnote-1136805 -Ref: AWKPATH Variable-Footnote-2136850 -Node: AWKLIBPATH Variable137110 -Node: Other Environment Variables137869 -Node: Exit Status141571 -Node: Include Files142246 -Node: Loading Shared Libraries145824 -Node: Obsolete147251 -Node: Undocumented147948 -Node: Invoking Summary148215 -Node: Regexp149881 -Node: Regexp Usage151340 -Node: Escape Sequences153373 -Node: Regexp Operators159390 -Ref: Regexp Operators-Footnote-1166825 -Ref: Regexp Operators-Footnote-2166972 -Node: Bracket Expressions167070 -Ref: table-char-classes169087 -Node: Leftmost Longest172027 -Node: Computed Regexps173329 -Node: GNU Regexp Operators176726 -Node: Case-sensitivity180432 -Ref: Case-sensitivity-Footnote-1183322 -Ref: Case-sensitivity-Footnote-2183557 -Node: Regexp Summary183665 -Node: Reading Files185134 -Node: Records187226 -Node: awk split records187954 -Node: gawk split records192866 -Ref: gawk split records-Footnote-1197405 -Node: Fields197442 -Ref: Fields-Footnote-1200238 -Node: Nonconstant Fields200324 -Ref: Nonconstant Fields-Footnote-1202554 -Node: Changing Fields202756 -Node: Field Separators208688 -Node: Default Field Splitting211390 -Node: Regexp Field Splitting212507 -Node: Single Character Fields215857 -Node: Command Line Field Separator216916 -Node: Full Line Fields220126 -Ref: Full Line Fields-Footnote-1220634 -Node: Field Splitting Summary220680 -Ref: Field Splitting Summary-Footnote-1223811 -Node: Constant Size223912 -Node: Splitting By Content228518 -Ref: Splitting By Content-Footnote-1232591 -Node: Multiple Line232631 -Ref: Multiple Line-Footnote-1238520 -Node: Getline238699 -Node: Plain Getline240910 -Node: Getline/Variable243550 -Node: Getline/File244697 -Node: Getline/Variable/File246081 -Ref: Getline/Variable/File-Footnote-1247680 -Node: Getline/Pipe247767 -Node: Getline/Variable/Pipe250450 -Node: Getline/Coprocess251579 -Node: Getline/Variable/Coprocess252831 -Node: Getline Notes253568 -Node: Getline Summary256360 -Ref: table-getline-variants256768 -Node: Read Timeout257597 -Ref: Read Timeout-Footnote-1261411 -Node: Command-line directories261469 -Node: Input Summary262373 -Node: Input Exercises265625 -Node: Printing266353 -Node: Print268075 -Node: Print Examples269532 -Node: Output Separators272311 -Node: OFMT274327 -Node: Printf275679 -Node: Basic Printf276464 -Node: Control Letters278035 -Node: Format Modifiers282019 -Node: Printf Examples288026 -Node: Redirection290508 -Node: Special Files297242 -Node: Special FD297775 -Ref: Special FD-Footnote-1301469 -Node: Special Network301543 -Node: Special Caveats302393 -Node: Close Files And Pipes303185 -Ref: Close Files And Pipes-Footnote-1310362 -Ref: Close Files And Pipes-Footnote-2310510 -Node: Output Summary310660 -Node: Output Exercises311654 -Node: Expressions312334 -Node: Values313519 -Node: Constants314195 -Node: Scalar Constants314875 -Ref: Scalar Constants-Footnote-1315734 -Node: Nondecimal-numbers315984 -Node: Regexp Constants318984 -Node: Using Constant Regexps319509 -Node: Variables322647 -Node: Using Variables323302 -Node: Assignment Options325206 -Node: Conversion327081 -Node: Strings And Numbers327605 -Ref: Strings And Numbers-Footnote-1330667 -Node: Locale influences conversions330776 -Ref: table-locale-affects333491 -Node: All Operators334079 -Node: Arithmetic Ops334709 -Node: Concatenation337214 -Ref: Concatenation-Footnote-1340033 -Node: Assignment Ops340139 -Ref: table-assign-ops345122 -Node: Increment Ops346400 -Node: Truth Values and Conditions349838 -Node: Truth Values350921 -Node: Typing and Comparison351970 -Node: Variable Typing352763 -Node: Comparison Operators356415 -Ref: table-relational-ops356825 -Node: POSIX String Comparison360340 -Ref: POSIX String Comparison-Footnote-1361412 -Node: Boolean Ops361550 -Ref: Boolean Ops-Footnote-1366029 -Node: Conditional Exp366120 -Node: Function Calls367847 -Node: Precedence371727 -Node: Locales375395 -Node: Expressions Summary377026 -Node: Patterns and Actions379600 -Node: Pattern Overview380716 -Node: Regexp Patterns382395 -Node: Expression Patterns382938 -Node: Ranges386718 -Node: BEGIN/END389824 -Node: Using BEGIN/END390586 -Ref: Using BEGIN/END-Footnote-1393323 -Node: I/O And BEGIN/END393429 -Node: BEGINFILE/ENDFILE395743 -Node: Empty398644 -Node: Using Shell Variables398961 -Node: Action Overview401237 -Node: Statements403564 -Node: If Statement405412 -Node: While Statement406910 -Node: Do Statement408938 -Node: For Statement410080 -Node: Switch Statement413235 -Node: Break Statement415623 -Node: Continue Statement417664 -Node: Next Statement419489 -Node: Nextfile Statement421869 -Node: Exit Statement424499 -Node: Built-in Variables426902 -Node: User-modified428029 -Ref: User-modified-Footnote-1435709 -Node: Auto-set435771 -Ref: Auto-set-Footnote-1448628 -Ref: Auto-set-Footnote-2448833 -Node: ARGC and ARGV448889 -Node: Pattern Action Summary453093 -Node: Arrays455512 -Node: Array Basics456841 -Node: Array Intro457685 -Ref: figure-array-elements459658 -Ref: Array Intro-Footnote-1462182 -Node: Reference to Elements462310 -Node: Assigning Elements464760 -Node: Array Example465251 -Node: Scanning an Array467009 -Node: Controlling Scanning470025 -Ref: Controlling Scanning-Footnote-1475214 -Node: Numeric Array Subscripts475530 -Node: Uninitialized Subscripts477713 -Node: Delete479330 -Ref: Delete-Footnote-1482074 -Node: Multidimensional482131 -Node: Multiscanning485226 -Node: Arrays of Arrays486815 -Node: Arrays Summary491576 -Node: Functions493681 -Node: Built-in494554 -Node: Calling Built-in495632 -Node: Numeric Functions497620 -Ref: Numeric Functions-Footnote-1501642 -Ref: Numeric Functions-Footnote-2501999 -Ref: Numeric Functions-Footnote-3502047 -Node: String Functions502316 -Ref: String Functions-Footnote-1525776 -Ref: String Functions-Footnote-2525905 -Ref: String Functions-Footnote-3526153 -Node: Gory Details526240 -Ref: table-sub-escapes528021 -Ref: table-sub-proposed529541 -Ref: table-posix-sub530905 -Ref: table-gensub-escapes532445 -Ref: Gory Details-Footnote-1533277 -Node: I/O Functions533428 -Ref: I/O Functions-Footnote-1540529 -Node: Time Functions540676 -Ref: Time Functions-Footnote-1551145 -Ref: Time Functions-Footnote-2551213 -Ref: Time Functions-Footnote-3551371 -Ref: Time Functions-Footnote-4551482 -Ref: Time Functions-Footnote-5551594 -Ref: Time Functions-Footnote-6551821 -Node: Bitwise Functions552087 -Ref: table-bitwise-ops552649 -Ref: Bitwise Functions-Footnote-1556957 -Node: Type Functions557126 -Node: I18N Functions558275 -Node: User-defined559920 -Node: Definition Syntax560724 -Ref: Definition Syntax-Footnote-1566128 -Node: Function Example566197 -Ref: Function Example-Footnote-1569114 -Node: Function Caveats569136 -Node: Calling A Function569654 -Node: Variable Scope570609 -Node: Pass By Value/Reference573597 -Node: Return Statement577107 -Node: Dynamic Typing580091 -Node: Indirect Calls581020 -Ref: Indirect Calls-Footnote-1590741 -Node: Functions Summary590869 -Node: Library Functions593568 -Ref: Library Functions-Footnote-1597186 -Ref: Library Functions-Footnote-2597329 -Node: Library Names597500 -Ref: Library Names-Footnote-1600958 -Ref: Library Names-Footnote-2601178 -Node: General Functions601264 -Node: Strtonum Function602292 -Node: Assert Function605312 -Node: Round Function608636 -Node: Cliff Random Function610177 -Node: Ordinal Functions611193 -Ref: Ordinal Functions-Footnote-1614258 -Ref: Ordinal Functions-Footnote-2614510 -Node: Join Function614721 -Ref: Join Function-Footnote-1616492 -Node: Getlocaltime Function616692 -Node: Readfile Function620433 -Node: Data File Management622381 -Node: Filetrans Function623013 -Node: Rewind Function627072 -Node: File Checking628630 -Ref: File Checking-Footnote-1629762 -Node: Empty Files629963 -Node: Ignoring Assigns631942 -Node: Getopt Function633496 -Ref: Getopt Function-Footnote-1644760 -Node: Passwd Functions644963 -Ref: Passwd Functions-Footnote-1653942 -Node: Group Functions654030 -Ref: Group Functions-Footnote-1661961 -Node: Walking Arrays662174 -Node: Library Functions Summary663777 -Node: Library Exercises665165 -Node: Sample Programs666445 -Node: Running Examples667215 -Node: Clones667943 -Node: Cut Program669167 -Node: Egrep Program679025 -Ref: Egrep Program-Footnote-1686612 -Node: Id Program686722 -Node: Split Program690376 -Ref: Split Program-Footnote-1693914 -Node: Tee Program694042 -Node: Uniq Program696829 -Node: Wc Program704252 -Ref: Wc Program-Footnote-1708517 -Node: Miscellaneous Programs708609 -Node: Dupword Program709822 -Node: Alarm Program711853 -Node: Translate Program716657 -Ref: Translate Program-Footnote-1721230 -Ref: Translate Program-Footnote-2721500 -Node: Labels Program721639 -Ref: Labels Program-Footnote-1725000 -Node: Word Sorting725084 -Node: History Sorting729127 -Node: Extract Program730963 -Node: Simple Sed738499 -Node: Igawk Program741561 -Ref: Igawk Program-Footnote-1755865 -Ref: Igawk Program-Footnote-2756066 -Node: Anagram Program756188 -Node: Signature Program759256 -Node: Programs Summary760503 -Node: Programs Exercises761718 -Ref: Programs Exercises-Footnote-1765849 -Node: Advanced Features765940 -Node: Nondecimal Data767888 -Node: Array Sorting769465 -Node: Controlling Array Traversal770162 -Node: Array Sorting Functions778442 -Ref: Array Sorting Functions-Footnote-1782334 -Node: Two-way I/O782528 -Ref: Two-way I/O-Footnote-1787472 -Ref: Two-way I/O-Footnote-2787651 -Node: TCP/IP Networking787733 -Node: Profiling790575 -Node: Advanced Features Summary798117 -Node: Internationalization799978 -Node: I18N and L10N801458 -Node: Explaining gettext802144 -Ref: Explaining gettext-Footnote-1807170 -Ref: Explaining gettext-Footnote-2807354 -Node: Programmer i18n807519 -Ref: Programmer i18n-Footnote-1812313 -Node: Translator i18n812362 -Node: String Extraction813156 -Ref: String Extraction-Footnote-1814289 -Node: Printf Ordering814375 -Ref: Printf Ordering-Footnote-1817157 -Node: I18N Portability817221 -Ref: I18N Portability-Footnote-1819670 -Node: I18N Example819733 -Ref: I18N Example-Footnote-1822439 -Node: Gawk I18N822511 -Node: I18N Summary823149 -Node: Debugger824488 -Node: Debugging825510 -Node: Debugging Concepts825951 -Node: Debugging Terms827807 -Node: Awk Debugging830404 -Node: Sample Debugging Session831296 -Node: Debugger Invocation831816 -Node: Finding The Bug833152 -Node: List of Debugger Commands839631 -Node: Breakpoint Control840963 -Node: Debugger Execution Control844627 -Node: Viewing And Changing Data847987 -Node: Execution Stack851345 -Node: Debugger Info852858 -Node: Miscellaneous Debugger Commands856852 -Node: Readline Support862036 -Node: Limitations862928 -Node: Debugging Summary865201 -Node: Arbitrary Precision Arithmetic866369 -Node: Computer Arithmetic867856 -Ref: Computer Arithmetic-Footnote-1872243 -Node: Math Definitions872300 -Ref: table-ieee-formats875589 -Ref: Math Definitions-Footnote-1876129 -Node: MPFR features876232 -Node: FP Math Caution877849 -Ref: FP Math Caution-Footnote-1878899 -Node: Inexactness of computations879268 -Node: Inexact representation880216 -Node: Comparing FP Values881571 -Node: Errors accumulate882535 -Node: Getting Accuracy883968 -Node: Try To Round886627 -Node: Setting precision887526 -Ref: table-predefined-precision-strings888208 -Node: Setting the rounding mode890001 -Ref: table-gawk-rounding-modes890365 -Ref: Setting the rounding mode-Footnote-1893819 -Node: Arbitrary Precision Integers893998 -Ref: Arbitrary Precision Integers-Footnote-1896979 -Node: POSIX Floating Point Problems897128 -Ref: POSIX Floating Point Problems-Footnote-1901004 -Node: Floating point summary901042 -Node: Dynamic Extensions903246 -Node: Extension Intro904798 -Node: Plugin License906063 -Node: Extension Mechanism Outline906748 -Ref: figure-load-extension907172 -Ref: figure-load-new-function908657 -Ref: figure-call-new-function909659 -Node: Extension API Description911643 -Node: Extension API Functions Introduction913093 -Node: General Data Types917960 -Ref: General Data Types-Footnote-1923653 -Node: Requesting Values923952 -Ref: table-value-types-returned924689 -Node: Memory Allocation Functions925647 -Ref: Memory Allocation Functions-Footnote-1928394 -Node: Constructor Functions928490 -Node: Registration Functions930248 -Node: Extension Functions930933 -Node: Exit Callback Functions933235 -Node: Extension Version String934483 -Node: Input Parsers935133 -Node: Output Wrappers944947 -Node: Two-way processors949463 -Node: Printing Messages951667 -Ref: Printing Messages-Footnote-1952744 -Node: Updating `ERRNO'952896 -Node: Accessing Parameters953635 -Node: Symbol Table Access954865 -Node: Symbol table by name955379 -Node: Symbol table by cookie957355 -Ref: Symbol table by cookie-Footnote-1961488 -Node: Cached values961551 -Ref: Cached values-Footnote-1965055 -Node: Array Manipulation965146 -Ref: Array Manipulation-Footnote-1966244 -Node: Array Data Types966283 -Ref: Array Data Types-Footnote-1968986 -Node: Array Functions969078 -Node: Flattening Arrays972952 -Node: Creating Arrays979804 -Node: Extension API Variables984535 -Node: Extension Versioning985171 -Node: Extension API Informational Variables987072 -Node: Extension API Boilerplate988158 -Node: Finding Extensions991962 -Node: Extension Example992522 -Node: Internal File Description993252 -Node: Internal File Ops997343 -Ref: Internal File Ops-Footnote-11008775 -Node: Using Internal File Ops1008915 -Ref: Using Internal File Ops-Footnote-11011262 -Node: Extension Samples1011530 -Node: Extension Sample File Functions1013054 -Node: Extension Sample Fnmatch1020622 -Node: Extension Sample Fork1022104 -Node: Extension Sample Inplace1023317 -Node: Extension Sample Ord1024992 -Node: Extension Sample Readdir1025828 -Ref: table-readdir-file-types1026684 -Node: Extension Sample Revout1027483 -Node: Extension Sample Rev2way1028074 -Node: Extension Sample Read write array1028815 -Node: Extension Sample Readfile1030694 -Node: Extension Sample API Tests1031794 -Node: Extension Sample Time1032319 -Node: gawkextlib1033634 -Node: Extension summary1036447 -Node: Extension Exercises1040140 -Node: Language History1040862 -Node: V7/SVR3.11042505 -Node: SVR41044825 -Node: POSIX1046267 -Node: BTL1047653 -Node: POSIX/GNU1048387 -Node: Feature History1054103 -Node: Common Extensions1067194 -Node: Ranges and Locales1068506 -Ref: Ranges and Locales-Footnote-11073123 -Ref: Ranges and Locales-Footnote-21073150 -Ref: Ranges and Locales-Footnote-31073384 -Node: Contributors1073605 -Node: History summary1079030 -Node: Installation1080399 -Node: Gawk Distribution1081350 -Node: Getting1081834 -Node: Extracting1082658 -Node: Distribution contents1084300 -Node: Unix Installation1090017 -Node: Quick Installation1090634 -Node: Additional Configuration Options1093076 -Node: Configuration Philosophy1094814 -Node: Non-Unix Installation1097165 -Node: PC Installation1097623 -Node: PC Binary Installation1098934 -Node: PC Compiling1100782 -Ref: PC Compiling-Footnote-11103781 -Node: PC Testing1103886 -Node: PC Using1105062 -Node: Cygwin1109214 -Node: MSYS1110023 -Node: VMS Installation1110521 -Node: VMS Compilation1111317 -Ref: VMS Compilation-Footnote-11112539 -Node: VMS Dynamic Extensions1112597 -Node: VMS Installation Details1113970 -Node: VMS Running1116222 -Node: VMS GNV1119056 -Node: VMS Old Gawk1119779 -Node: Bugs1120249 -Node: Other Versions1124253 -Node: Installation summary1130477 -Node: Notes1131533 -Node: Compatibility Mode1132398 -Node: Additions1133180 -Node: Accessing The Source1134105 -Node: Adding Code1135541 -Node: New Ports1141719 -Node: Derived Files1146200 -Ref: Derived Files-Footnote-11151675 -Ref: Derived Files-Footnote-21151709 -Ref: Derived Files-Footnote-31152305 -Node: Future Extensions1152419 -Node: Implementation Limitations1153025 -Node: Extension Design1154273 -Node: Old Extension Problems1155427 -Ref: Old Extension Problems-Footnote-11156944 -Node: Extension New Mechanism Goals1157001 -Ref: Extension New Mechanism Goals-Footnote-11160361 -Node: Extension Other Design Decisions1160550 -Node: Extension Future Growth1162656 -Node: Old Extension Mechanism1163492 -Node: Notes summary1165254 -Node: Basic Concepts1166440 -Node: Basic High Level1167121 -Ref: figure-general-flow1167393 -Ref: figure-process-flow1167992 -Ref: Basic High Level-Footnote-11171221 -Node: Basic Data Typing1171406 -Node: Glossary1174734 -Node: Copying1199886 -Node: GNU Free Documentation License1237442 -Node: Index1262578 +Ref: Options-Footnote-1129187 +Node: Other Arguments129212 +Node: Naming Standard Input132173 +Node: Environment Variables133266 +Node: AWKPATH Variable133824 +Ref: AWKPATH Variable-Footnote-1136676 +Ref: AWKPATH Variable-Footnote-2136721 +Node: AWKLIBPATH Variable136981 +Node: Other Environment Variables137740 +Node: Exit Status141213 +Node: Include Files141888 +Node: Loading Shared Libraries145466 +Node: Obsolete146893 +Node: Undocumented147590 +Node: Invoking Summary147857 +Node: Regexp149523 +Node: Regexp Usage150982 +Node: Escape Sequences153015 +Node: Regexp Operators159115 +Ref: Regexp Operators-Footnote-1166550 +Ref: Regexp Operators-Footnote-2166697 +Node: Bracket Expressions166795 +Ref: table-char-classes168812 +Node: Leftmost Longest171752 +Node: Computed Regexps173054 +Node: GNU Regexp Operators176451 +Node: Case-sensitivity180157 +Ref: Case-sensitivity-Footnote-1183047 +Ref: Case-sensitivity-Footnote-2183282 +Node: Regexp Summary183390 +Node: Reading Files184859 +Node: Records186951 +Node: awk split records187679 +Node: gawk split records192591 +Ref: gawk split records-Footnote-1197130 +Node: Fields197167 +Ref: Fields-Footnote-1199963 +Node: Nonconstant Fields200049 +Ref: Nonconstant Fields-Footnote-1202279 +Node: Changing Fields202481 +Node: Field Separators208413 +Node: Default Field Splitting211115 +Node: Regexp Field Splitting212232 +Node: Single Character Fields215582 +Node: Command Line Field Separator216641 +Node: Full Line Fields219851 +Ref: Full Line Fields-Footnote-1220359 +Node: Field Splitting Summary220405 +Ref: Field Splitting Summary-Footnote-1223536 +Node: Constant Size223637 +Node: Splitting By Content228243 +Ref: Splitting By Content-Footnote-1232316 +Node: Multiple Line232356 +Ref: Multiple Line-Footnote-1238245 +Node: Getline238424 +Node: Plain Getline240635 +Node: Getline/Variable243275 +Node: Getline/File244422 +Node: Getline/Variable/File245806 +Ref: Getline/Variable/File-Footnote-1247405 +Node: Getline/Pipe247492 +Node: Getline/Variable/Pipe250175 +Node: Getline/Coprocess251304 +Node: Getline/Variable/Coprocess252556 +Node: Getline Notes253293 +Node: Getline Summary256085 +Ref: table-getline-variants256493 +Node: Read Timeout257322 +Ref: Read Timeout-Footnote-1261136 +Node: Command-line directories261194 +Node: Input Summary262098 +Node: Input Exercises265350 +Node: Printing266078 +Node: Print267800 +Node: Print Examples269257 +Node: Output Separators272036 +Node: OFMT274052 +Node: Printf275404 +Node: Basic Printf276189 +Node: Control Letters277760 +Node: Format Modifiers281744 +Node: Printf Examples287751 +Node: Redirection290233 +Node: Special Files296967 +Node: Special FD297500 +Ref: Special FD-Footnote-1301194 +Node: Special Network301268 +Node: Special Caveats302118 +Node: Close Files And Pipes302910 +Ref: Close Files And Pipes-Footnote-1310087 +Ref: Close Files And Pipes-Footnote-2310235 +Node: Output Summary310385 +Node: Output Exercises311379 +Node: Expressions312059 +Node: Values313244 +Node: Constants313920 +Node: Scalar Constants314600 +Ref: Scalar Constants-Footnote-1315459 +Node: Nondecimal-numbers315709 +Node: Regexp Constants318709 +Node: Using Constant Regexps319234 +Node: Variables322372 +Node: Using Variables323027 +Node: Assignment Options324931 +Node: Conversion326806 +Node: Strings And Numbers327330 +Ref: Strings And Numbers-Footnote-1330392 +Node: Locale influences conversions330501 +Ref: table-locale-affects333216 +Node: All Operators333804 +Node: Arithmetic Ops334434 +Node: Concatenation336939 +Ref: Concatenation-Footnote-1339758 +Node: Assignment Ops339864 +Ref: table-assign-ops344847 +Node: Increment Ops346125 +Node: Truth Values and Conditions349563 +Node: Truth Values350646 +Node: Typing and Comparison351695 +Node: Variable Typing352488 +Node: Comparison Operators356140 +Ref: table-relational-ops356550 +Node: POSIX String Comparison360065 +Ref: POSIX String Comparison-Footnote-1361137 +Node: Boolean Ops361275 +Ref: Boolean Ops-Footnote-1365754 +Node: Conditional Exp365845 +Node: Function Calls367572 +Node: Precedence371452 +Node: Locales375120 +Node: Expressions Summary376751 +Node: Patterns and Actions379325 +Node: Pattern Overview380441 +Node: Regexp Patterns382120 +Node: Expression Patterns382663 +Node: Ranges386443 +Node: BEGIN/END389549 +Node: Using BEGIN/END390311 +Ref: Using BEGIN/END-Footnote-1393048 +Node: I/O And BEGIN/END393154 +Node: BEGINFILE/ENDFILE395468 +Node: Empty398369 +Node: Using Shell Variables398686 +Node: Action Overview400962 +Node: Statements403289 +Node: If Statement405137 +Node: While Statement406635 +Node: Do Statement408663 +Node: For Statement409805 +Node: Switch Statement412960 +Node: Break Statement415348 +Node: Continue Statement417389 +Node: Next Statement419214 +Node: Nextfile Statement421594 +Node: Exit Statement424224 +Node: Built-in Variables426627 +Node: User-modified427754 +Ref: User-modified-Footnote-1435434 +Node: Auto-set435496 +Ref: Auto-set-Footnote-1448690 +Ref: Auto-set-Footnote-2448895 +Node: ARGC and ARGV448951 +Node: Pattern Action Summary453155 +Node: Arrays455574 +Node: Array Basics456903 +Node: Array Intro457747 +Ref: figure-array-elements459720 +Ref: Array Intro-Footnote-1462244 +Node: Reference to Elements462372 +Node: Assigning Elements464822 +Node: Array Example465313 +Node: Scanning an Array467071 +Node: Controlling Scanning470087 +Ref: Controlling Scanning-Footnote-1475276 +Node: Numeric Array Subscripts475592 +Node: Uninitialized Subscripts477775 +Node: Delete479392 +Ref: Delete-Footnote-1482136 +Node: Multidimensional482193 +Node: Multiscanning485288 +Node: Arrays of Arrays486877 +Node: Arrays Summary491638 +Node: Functions493743 +Node: Built-in494616 +Node: Calling Built-in495694 +Node: Numeric Functions497682 +Ref: Numeric Functions-Footnote-1502506 +Ref: Numeric Functions-Footnote-2502863 +Ref: Numeric Functions-Footnote-3502911 +Node: String Functions503180 +Ref: String Functions-Footnote-1526640 +Ref: String Functions-Footnote-2526769 +Ref: String Functions-Footnote-3527017 +Node: Gory Details527104 +Ref: table-sub-escapes528885 +Ref: table-sub-proposed530405 +Ref: table-posix-sub531769 +Ref: table-gensub-escapes533309 +Ref: Gory Details-Footnote-1534141 +Node: I/O Functions534292 +Ref: I/O Functions-Footnote-1541393 +Node: Time Functions541540 +Ref: Time Functions-Footnote-1552009 +Ref: Time Functions-Footnote-2552077 +Ref: Time Functions-Footnote-3552235 +Ref: Time Functions-Footnote-4552346 +Ref: Time Functions-Footnote-5552458 +Ref: Time Functions-Footnote-6552685 +Node: Bitwise Functions552951 +Ref: table-bitwise-ops553513 +Ref: Bitwise Functions-Footnote-1557821 +Node: Type Functions557990 +Node: I18N Functions559139 +Node: User-defined560784 +Node: Definition Syntax561588 +Ref: Definition Syntax-Footnote-1566992 +Node: Function Example567061 +Ref: Function Example-Footnote-1569978 +Node: Function Caveats570000 +Node: Calling A Function570518 +Node: Variable Scope571473 +Node: Pass By Value/Reference574461 +Node: Return Statement577971 +Node: Dynamic Typing580955 +Node: Indirect Calls581884 +Ref: Indirect Calls-Footnote-1591605 +Node: Functions Summary591733 +Node: Library Functions594432 +Ref: Library Functions-Footnote-1598050 +Ref: Library Functions-Footnote-2598193 +Node: Library Names598364 +Ref: Library Names-Footnote-1601822 +Ref: Library Names-Footnote-2602042 +Node: General Functions602128 +Node: Strtonum Function603156 +Node: Assert Function606176 +Node: Round Function609500 +Node: Cliff Random Function611041 +Node: Ordinal Functions612057 +Ref: Ordinal Functions-Footnote-1615122 +Ref: Ordinal Functions-Footnote-2615374 +Node: Join Function615585 +Ref: Join Function-Footnote-1617356 +Node: Getlocaltime Function617556 +Node: Readfile Function621297 +Node: Data File Management623245 +Node: Filetrans Function623877 +Node: Rewind Function627936 +Node: File Checking629494 +Ref: File Checking-Footnote-1630626 +Node: Empty Files630827 +Node: Ignoring Assigns632806 +Node: Getopt Function634360 +Ref: Getopt Function-Footnote-1645624 +Node: Passwd Functions645827 +Ref: Passwd Functions-Footnote-1654806 +Node: Group Functions654894 +Ref: Group Functions-Footnote-1662825 +Node: Walking Arrays663038 +Node: Library Functions Summary664641 +Node: Library Exercises666029 +Node: Sample Programs667309 +Node: Running Examples668079 +Node: Clones668807 +Node: Cut Program670031 +Node: Egrep Program679889 +Ref: Egrep Program-Footnote-1687476 +Node: Id Program687586 +Node: Split Program691240 +Ref: Split Program-Footnote-1694778 +Node: Tee Program694906 +Node: Uniq Program697693 +Node: Wc Program705116 +Ref: Wc Program-Footnote-1709381 +Node: Miscellaneous Programs709473 +Node: Dupword Program710686 +Node: Alarm Program712717 +Node: Translate Program717521 +Ref: Translate Program-Footnote-1722094 +Ref: Translate Program-Footnote-2722364 +Node: Labels Program722503 +Ref: Labels Program-Footnote-1725864 +Node: Word Sorting725948 +Node: History Sorting729991 +Node: Extract Program731827 +Node: Simple Sed739363 +Node: Igawk Program742425 +Ref: Igawk Program-Footnote-1756729 +Ref: Igawk Program-Footnote-2756930 +Node: Anagram Program757052 +Node: Signature Program760120 +Node: Programs Summary761367 +Node: Programs Exercises762582 +Ref: Programs Exercises-Footnote-1766713 +Node: Advanced Features766804 +Node: Nondecimal Data768752 +Node: Array Sorting770329 +Node: Controlling Array Traversal771026 +Node: Array Sorting Functions779306 +Ref: Array Sorting Functions-Footnote-1783198 +Node: Two-way I/O783392 +Ref: Two-way I/O-Footnote-1788336 +Ref: Two-way I/O-Footnote-2788515 +Node: TCP/IP Networking788597 +Node: Profiling791439 +Node: Advanced Features Summary798990 +Node: Internationalization800851 +Node: I18N and L10N802331 +Node: Explaining gettext803017 +Ref: Explaining gettext-Footnote-1808043 +Ref: Explaining gettext-Footnote-2808227 +Node: Programmer i18n808392 +Ref: Programmer i18n-Footnote-1813186 +Node: Translator i18n813235 +Node: String Extraction814029 +Ref: String Extraction-Footnote-1815162 +Node: Printf Ordering815248 +Ref: Printf Ordering-Footnote-1818030 +Node: I18N Portability818094 +Ref: I18N Portability-Footnote-1820543 +Node: I18N Example820606 +Ref: I18N Example-Footnote-1823312 +Node: Gawk I18N823384 +Node: I18N Summary824022 +Node: Debugger825361 +Node: Debugging826383 +Node: Debugging Concepts826824 +Node: Debugging Terms828680 +Node: Awk Debugging831277 +Node: Sample Debugging Session832169 +Node: Debugger Invocation832689 +Node: Finding The Bug834025 +Node: List of Debugger Commands840504 +Node: Breakpoint Control841836 +Node: Debugger Execution Control845500 +Node: Viewing And Changing Data848860 +Node: Execution Stack852218 +Node: Debugger Info853731 +Node: Miscellaneous Debugger Commands857725 +Node: Readline Support862909 +Node: Limitations863801 +Node: Debugging Summary866074 +Node: Arbitrary Precision Arithmetic867242 +Node: Computer Arithmetic868729 +Ref: Computer Arithmetic-Footnote-1873116 +Node: Math Definitions873173 +Ref: table-ieee-formats876462 +Ref: Math Definitions-Footnote-1877002 +Node: MPFR features877105 +Node: FP Math Caution878722 +Ref: FP Math Caution-Footnote-1879772 +Node: Inexactness of computations880141 +Node: Inexact representation881089 +Node: Comparing FP Values882444 +Node: Errors accumulate883408 +Node: Getting Accuracy884841 +Node: Try To Round887500 +Node: Setting precision888399 +Ref: table-predefined-precision-strings889081 +Node: Setting the rounding mode890874 +Ref: table-gawk-rounding-modes891238 +Ref: Setting the rounding mode-Footnote-1894692 +Node: Arbitrary Precision Integers894871 +Ref: Arbitrary Precision Integers-Footnote-1898644 +Node: POSIX Floating Point Problems898793 +Ref: POSIX Floating Point Problems-Footnote-1902669 +Node: Floating point summary902707 +Node: Dynamic Extensions904911 +Node: Extension Intro906463 +Node: Plugin License907728 +Node: Extension Mechanism Outline908413 +Ref: figure-load-extension908837 +Ref: figure-load-new-function910322 +Ref: figure-call-new-function911324 +Node: Extension API Description913308 +Node: Extension API Functions Introduction914758 +Node: General Data Types919625 +Ref: General Data Types-Footnote-1925318 +Node: Requesting Values925617 +Ref: table-value-types-returned926354 +Node: Memory Allocation Functions927312 +Ref: Memory Allocation Functions-Footnote-1930059 +Node: Constructor Functions930155 +Node: Registration Functions931913 +Node: Extension Functions932598 +Node: Exit Callback Functions934900 +Node: Extension Version String936148 +Node: Input Parsers936798 +Node: Output Wrappers946612 +Node: Two-way processors951128 +Node: Printing Messages953332 +Ref: Printing Messages-Footnote-1954409 +Node: Updating `ERRNO'954561 +Node: Accessing Parameters955300 +Node: Symbol Table Access956530 +Node: Symbol table by name957044 +Node: Symbol table by cookie959020 +Ref: Symbol table by cookie-Footnote-1963153 +Node: Cached values963216 +Ref: Cached values-Footnote-1966720 +Node: Array Manipulation966811 +Ref: Array Manipulation-Footnote-1967909 +Node: Array Data Types967948 +Ref: Array Data Types-Footnote-1970651 +Node: Array Functions970743 +Node: Flattening Arrays974617 +Node: Creating Arrays981469 +Node: Extension API Variables986200 +Node: Extension Versioning986836 +Node: Extension API Informational Variables988737 +Node: Extension API Boilerplate989823 +Node: Finding Extensions993627 +Node: Extension Example994187 +Node: Internal File Description994917 +Node: Internal File Ops999008 +Ref: Internal File Ops-Footnote-11010440 +Node: Using Internal File Ops1010580 +Ref: Using Internal File Ops-Footnote-11012927 +Node: Extension Samples1013195 +Node: Extension Sample File Functions1014719 +Node: Extension Sample Fnmatch1022287 +Node: Extension Sample Fork1023769 +Node: Extension Sample Inplace1024982 +Node: Extension Sample Ord1026657 +Node: Extension Sample Readdir1027493 +Ref: table-readdir-file-types1028349 +Node: Extension Sample Revout1029148 +Node: Extension Sample Rev2way1029739 +Node: Extension Sample Read write array1030480 +Node: Extension Sample Readfile1032359 +Node: Extension Sample API Tests1033459 +Node: Extension Sample Time1033984 +Node: gawkextlib1035299 +Node: Extension summary1038112 +Node: Extension Exercises1041805 +Node: Language History1042527 +Node: V7/SVR3.11044170 +Node: SVR41046490 +Node: POSIX1047932 +Node: BTL1049318 +Node: POSIX/GNU1050052 +Node: Feature History1055828 +Node: Common Extensions1068919 +Node: Ranges and Locales1070231 +Ref: Ranges and Locales-Footnote-11074848 +Ref: Ranges and Locales-Footnote-21074875 +Ref: Ranges and Locales-Footnote-31075109 +Node: Contributors1075330 +Node: History summary1080755 +Node: Installation1082124 +Node: Gawk Distribution1083075 +Node: Getting1083559 +Node: Extracting1084383 +Node: Distribution contents1086025 +Node: Unix Installation1091795 +Node: Quick Installation1092412 +Node: Additional Configuration Options1094854 +Node: Configuration Philosophy1096592 +Node: Non-Unix Installation1098943 +Node: PC Installation1099401 +Node: PC Binary Installation1100712 +Node: PC Compiling1102560 +Ref: PC Compiling-Footnote-11105559 +Node: PC Testing1105664 +Node: PC Using1106840 +Node: Cygwin1110992 +Node: MSYS1111801 +Node: VMS Installation1112299 +Node: VMS Compilation1113095 +Ref: VMS Compilation-Footnote-11114317 +Node: VMS Dynamic Extensions1114375 +Node: VMS Installation Details1115748 +Node: VMS Running1118000 +Node: VMS GNV1120834 +Node: VMS Old Gawk1121557 +Node: Bugs1122027 +Node: Other Versions1126031 +Node: Installation summary1132255 +Node: Notes1133311 +Node: Compatibility Mode1134176 +Node: Additions1134958 +Node: Accessing The Source1135883 +Node: Adding Code1137319 +Node: New Ports1143497 +Node: Derived Files1147978 +Ref: Derived Files-Footnote-11153453 +Ref: Derived Files-Footnote-21153487 +Ref: Derived Files-Footnote-31154083 +Node: Future Extensions1154197 +Node: Implementation Limitations1154803 +Node: Extension Design1156051 +Node: Old Extension Problems1157205 +Ref: Old Extension Problems-Footnote-11158722 +Node: Extension New Mechanism Goals1158779 +Ref: Extension New Mechanism Goals-Footnote-11162139 +Node: Extension Other Design Decisions1162328 +Node: Extension Future Growth1164434 +Node: Old Extension Mechanism1165270 +Node: Notes summary1167032 +Node: Basic Concepts1168218 +Node: Basic High Level1168899 +Ref: figure-general-flow1169171 +Ref: figure-process-flow1169770 +Ref: Basic High Level-Footnote-11172999 +Node: Basic Data Typing1173184 +Node: Glossary1176512 +Node: Copying1201664 +Node: GNU Free Documentation License1239220 +Node: Index1264356 End Tag Table diff --git a/doc/gawk.texi b/doc/gawk.texi index 492d5cd6..718afe09 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -3934,10 +3934,8 @@ No space is allowed between the @option{-o} and @var{file}, if @var{file} is supplied. @quotation NOTE -Due to the way @command{gawk} has evolved, with this option -your program is still executed. This will change in the -next major release such that @command{gawk} will only -pretty-print the program and not run it. +In the past, this option would also execute your program. +This is no longer the case. @end quotation @item @option{-O} @@ -4431,14 +4429,6 @@ two regexp matchers that @command{gawk} uses internally. (There aren't supposed to be differences, but occasionally theory and practice don't coordinate with each other.) -@item GAWK_NO_PP_RUN -If this variable exists, then when invoked with the @option{--pretty-print} -option, @command{gawk} skips running the program. - -@quotation CAUTION -This variable will not survive into the next major release. -@end quotation - @item GAWK_STACKSIZE This specifies the amount by which @command{gawk} should grow its internal evaluation stack, when needed. @@ -5019,17 +5009,18 @@ between @samp{0} and @samp{7}. For example, the code for the ASCII ESC @item \x@var{hh}@dots{} The hexadecimal value @var{hh}, where @var{hh} stands for a sequence of hexadecimal digits (@samp{0}--@samp{9}, and either @samp{A}--@samp{F} -or @samp{a}--@samp{f}). Like the same construct -in ISO C, the escape sequence continues until the first nonhexadecimal -digit is seen. @value{COMMONEXT} -However, using more than two hexadecimal digits produces -undefined results. (The @samp{\x} escape sequence is not allowed in -POSIX @command{awk}.) +or @samp{a}--@samp{f}). A maximum of two digts are allowed after +the @samp{\x}. Any further hexadecimal digits are treated as simple +letters or numbers. @value{COMMONEXT} @quotation CAUTION -The next major relase of @command{gawk} will change, such -that a maximum of two hexadecimal digits following the -@samp{\x} will be used. +In ISO C, the escape sequence continues until the first nonhexadecimal +digit is seen. +@c FIXME: Add exact version here. +For many years, @command{gawk} would continue incorporating +hexadecimal digits into the value until a non-hexadecimal digit +or the end of the string was encountered. +However, using more than two hexadecimal digits produces @end quotation @cindex @code{\} (backslash), @code{\/} escape sequence @@ -14694,10 +14685,18 @@ opens the next file. An associative array containing the values of the environment. The array indices are the environment variable names; the elements are the values of the particular environment variables. For example, -@code{ENVIRON["HOME"]} might be @code{"/home/arnold"}. Changing this array -does not affect the environment passed on to any programs that -@command{awk} may spawn via redirection or the @code{system()} function. -(In a future version of @command{gawk}, it may do so.) +@code{ENVIRON["HOME"]} might be @code{/home/arnold}. + +For POSIX @command{awk}, changing this array does not affect the +environment passed on to any programs that @command{awk} may spawn via +redirection or the @code{system()} function. + +However, beginning with version 4.2, if not in POSIX +compatibility mode, @command{gawk} does update its own environment when +@code{ENVIRON} is changed, thus changing the environment seen by programs +that it creates. You should therefore be especially careful if you +modify @code{ENVIRON["PATH"]"}, which is the search path for finding +executable programs. Some operating systems may not have environment variables. On such systems, the @code{ENVIRON} array is empty (except for @@ -16804,6 +16803,23 @@ You can use @samp{pi = atan2(0, -1)} to retrieve the value of @cindex cosine Return the cosine of @var{x}, with @var{x} in radians. +@item @code{div(@var{numerator}, @var{denominator}, @var{result})} +@cindexawkfunc{div} +@cindex div +Perform integer division, similar to the standard C function of the +same name. First, truncate @code{numerator} and @code{denominator} +towards zero, creating integer values. Clear the @code{result} +array, and then set @code{result["quotient"]} to the result of +@samp{numerator / denominator}, truncated towards zero to an integer, +and set @code{result["remainder"]} to the result of @samp{numerator % +denominator}, truncated towards zero to an integer. This function is +primarily intended for use with arbitrary length integers; it avoids +creating MPFR arbitrary precision floating-point values (@pxref{Arbitrary +Precision Integers}). + +This function is a @code{gawk} extension. It is not available in +compatibility mode (@pxref{Options}). + @item @code{exp(@var{x})} @cindexawkfunc{exp} @cindex exponent @@ -27732,8 +27748,8 @@ When called this way, @command{gawk} ``pretty prints'' the program into @file{awkprof.out}, without any execution counts. @quotation NOTE -The @option{--pretty-print} option still runs your program. -This will change in the next major release. +Once upon a time, the @option{--pretty-print} option would also run +your program. This is is no longer the case. @end quotation @c ENDOFRANGE awkp @c ENDOFRANGE proawk @@ -30778,6 +30794,45 @@ to just use the following: gawk -M 'BEGIN @{ n = 13; print n % 2 @}' @end example +When dividing two arbitrary precision integers with either +@samp{/} or @samp{%}, the result is typically an arbitrary +precision floating point value (unless the denominator evenly +divides into the numerator). In order to do integer division +or remainder with arbitrary precision integers, use the built-in +@code{div()} function (@pxref{Numeric Functions}). + +You can simulate the @code{div()} function in standard @command{awk} +using this user-defined function: + +@example +@c file eg/lib/div.awk +# div --- do integer division + +@c endfile +@ignore +@c file eg/lib/div.awk +# +# Arnold Robbins, arnold@@skeeve.com, Public Domain +# July, 2014 + +@c endfile + +@end ignore +@c file eg/lib/div.awk +function div(numerator, denominator, result, i) +@{ + split("", result) + + numerator = int(numerator) + denominator = int(denominator) + result["quotient"] = int(numerator / denominator) + result["remainder"] = int(numerator % denominator) + + return 0.0 +@} +@c endfile +@end example + @node POSIX Floating Point Problems @section Standards Versus Existing Practice @@ -35601,6 +35656,10 @@ and the documentation for @command{gawk} @value{PVERSION} 4.1: Ultrix @end itemize +@item +@c FIXME: Verify the version here. +Support for MirBSD was removed at @command{gawk} @value{PVERSION} 4.2. + @end itemize @c XXX ADD MORE STUFF HERE @@ -36882,6 +36941,8 @@ The generated Info file for The @command{troff} source for a manual page describing the @command{igawk} program presented in @ref{Igawk Program}. +(Since @command{gawk} can do its own @code{@@include} processing, +neither @command{igawk} nor @file{igawk.1} are installed.) @item doc/Makefile.in The input file used during the configuration process to generate the @@ -36926,8 +36987,6 @@ source file for this @value{DOCUMENT}. It also contains a @file{Makefile.in} fil @file{Makefile.am} is used by GNU Automake to create @file{Makefile.in}. The library functions from @ref{Library Functions}, -and the @command{igawk} program from -@ref{Igawk Program}, are included as ready-to-use files in the @command{gawk} distribution. They are installed as part of the installation process. The rest of the programs in this @value{DOCUMENT} are available in appropriate @@ -37973,9 +38032,10 @@ mail at the Internet address noted previously. If you find bugs in one of the non-Unix ports of @command{gawk}, please send an electronic mail message to the person who maintains that port. They -are named in the following list, as well as in the @file{README} file in the @command{gawk} -distribution. Information in the @file{README} file should be considered -authoritative if it conflicts with this @value{DOCUMENT}. +are named in the following list, as well as in the @file{README} file +in the @command{gawk} distribution. Information in the @file{README} +file should be considered authoritative if it conflicts with this +@value{DOCUMENT}. The people maintaining the non-Unix ports of @command{gawk} are as follows: @@ -38003,7 +38063,8 @@ John Malmberg, @EMAIL{wb8tyw@@qsl.net,wb8tyw at qsl.net}. @end multitable If your bug is also reproducible under Unix, please send a copy of your -report to the @EMAIL{bug-gawk@@gnu.org,bug-gawk at gnu dot org} email list as well. +report to the @EMAIL{bug-gawk@@gnu.org,bug-gawk at gnu dot org} email +list as well. @c ENDOFRANGE dbugg @c ENDOFRANGE tblgawb diff --git a/doc/gawktexi.in b/doc/gawktexi.in index ecd6a972..3bea4ba2 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -3845,10 +3845,8 @@ No space is allowed between the @option{-o} and @var{file}, if @var{file} is supplied. @quotation NOTE -Due to the way @command{gawk} has evolved, with this option -your program is still executed. This will change in the -next major release such that @command{gawk} will only -pretty-print the program and not run it. +In the past, this option would also execute your program. +This is no longer the case. @end quotation @item @option{-O} @@ -4342,14 +4340,6 @@ two regexp matchers that @command{gawk} uses internally. (There aren't supposed to be differences, but occasionally theory and practice don't coordinate with each other.) -@item GAWK_NO_PP_RUN -If this variable exists, then when invoked with the @option{--pretty-print} -option, @command{gawk} skips running the program. - -@quotation CAUTION -This variable will not survive into the next major release. -@end quotation - @item GAWK_STACKSIZE This specifies the amount by which @command{gawk} should grow its internal evaluation stack, when needed. @@ -4930,17 +4920,18 @@ between @samp{0} and @samp{7}. For example, the code for the ASCII ESC @item \x@var{hh}@dots{} The hexadecimal value @var{hh}, where @var{hh} stands for a sequence of hexadecimal digits (@samp{0}--@samp{9}, and either @samp{A}--@samp{F} -or @samp{a}--@samp{f}). Like the same construct -in ISO C, the escape sequence continues until the first nonhexadecimal -digit is seen. @value{COMMONEXT} -However, using more than two hexadecimal digits produces -undefined results. (The @samp{\x} escape sequence is not allowed in -POSIX @command{awk}.) +or @samp{a}--@samp{f}). A maximum of two digts are allowed after +the @samp{\x}. Any further hexadecimal digits are treated as simple +letters or numbers. @value{COMMONEXT} @quotation CAUTION -The next major relase of @command{gawk} will change, such -that a maximum of two hexadecimal digits following the -@samp{\x} will be used. +In ISO C, the escape sequence continues until the first nonhexadecimal +digit is seen. +@c FIXME: Add exact version here. +For many years, @command{gawk} would continue incorporating +hexadecimal digits into the value until a non-hexadecimal digit +or the end of the string was encountered. +However, using more than two hexadecimal digits produces @end quotation @cindex @code{\} (backslash), @code{\/} escape sequence @@ -14027,10 +14018,18 @@ opens the next file. An associative array containing the values of the environment. The array indices are the environment variable names; the elements are the values of the particular environment variables. For example, -@code{ENVIRON["HOME"]} might be @code{"/home/arnold"}. Changing this array -does not affect the environment passed on to any programs that -@command{awk} may spawn via redirection or the @code{system()} function. -(In a future version of @command{gawk}, it may do so.) +@code{ENVIRON["HOME"]} might be @code{/home/arnold}. + +For POSIX @command{awk}, changing this array does not affect the +environment passed on to any programs that @command{awk} may spawn via +redirection or the @code{system()} function. + +However, beginning with version 4.2, if not in POSIX +compatibility mode, @command{gawk} does update its own environment when +@code{ENVIRON} is changed, thus changing the environment seen by programs +that it creates. You should therefore be especially careful if you +modify @code{ENVIRON["PATH"]"}, which is the search path for finding +executable programs. Some operating systems may not have environment variables. On such systems, the @code{ENVIRON} array is empty (except for @@ -16091,6 +16090,23 @@ You can use @samp{pi = atan2(0, -1)} to retrieve the value of @cindex cosine Return the cosine of @var{x}, with @var{x} in radians. +@item @code{div(@var{numerator}, @var{denominator}, @var{result})} +@cindexawkfunc{div} +@cindex div +Perform integer division, similar to the standard C function of the +same name. First, truncate @code{numerator} and @code{denominator} +towards zero, creating integer values. Clear the @code{result} +array, and then set @code{result["quotient"]} to the result of +@samp{numerator / denominator}, truncated towards zero to an integer, +and set @code{result["remainder"]} to the result of @samp{numerator % +denominator}, truncated towards zero to an integer. This function is +primarily intended for use with arbitrary length integers; it avoids +creating MPFR arbitrary precision floating-point values (@pxref{Arbitrary +Precision Integers}). + +This function is a @code{gawk} extension. It is not available in +compatibility mode (@pxref{Options}). + @item @code{exp(@var{x})} @cindexawkfunc{exp} @cindex exponent @@ -26829,8 +26845,8 @@ When called this way, @command{gawk} ``pretty prints'' the program into @file{awkprof.out}, without any execution counts. @quotation NOTE -The @option{--pretty-print} option still runs your program. -This will change in the next major release. +Once upon a time, the @option{--pretty-print} option would also run +your program. This is is no longer the case. @end quotation @c ENDOFRANGE awkp @c ENDOFRANGE proawk @@ -29875,6 +29891,45 @@ to just use the following: gawk -M 'BEGIN @{ n = 13; print n % 2 @}' @end example +When dividing two arbitrary precision integers with either +@samp{/} or @samp{%}, the result is typically an arbitrary +precision floating point value (unless the denominator evenly +divides into the numerator). In order to do integer division +or remainder with arbitrary precision integers, use the built-in +@code{div()} function (@pxref{Numeric Functions}). + +You can simulate the @code{div()} function in standard @command{awk} +using this user-defined function: + +@example +@c file eg/lib/div.awk +# div --- do integer division + +@c endfile +@ignore +@c file eg/lib/div.awk +# +# Arnold Robbins, arnold@@skeeve.com, Public Domain +# July, 2014 + +@c endfile + +@end ignore +@c file eg/lib/div.awk +function div(numerator, denominator, result, i) +@{ + split("", result) + + numerator = int(numerator) + denominator = int(denominator) + result["quotient"] = int(numerator / denominator) + result["remainder"] = int(numerator % denominator) + + return 0.0 +@} +@c endfile +@end example + @node POSIX Floating Point Problems @section Standards Versus Existing Practice @@ -34698,6 +34753,10 @@ and the documentation for @command{gawk} @value{PVERSION} 4.1: Ultrix @end itemize +@item +@c FIXME: Verify the version here. +Support for MirBSD was removed at @command{gawk} @value{PVERSION} 4.2. + @end itemize @c XXX ADD MORE STUFF HERE @@ -35979,6 +36038,8 @@ The generated Info file for The @command{troff} source for a manual page describing the @command{igawk} program presented in @ref{Igawk Program}. +(Since @command{gawk} can do its own @code{@@include} processing, +neither @command{igawk} nor @file{igawk.1} are installed.) @item doc/Makefile.in The input file used during the configuration process to generate the @@ -36023,8 +36084,6 @@ source file for this @value{DOCUMENT}. It also contains a @file{Makefile.in} fil @file{Makefile.am} is used by GNU Automake to create @file{Makefile.in}. The library functions from @ref{Library Functions}, -and the @command{igawk} program from -@ref{Igawk Program}, are included as ready-to-use files in the @command{gawk} distribution. They are installed as part of the installation process. The rest of the programs in this @value{DOCUMENT} are available in appropriate @@ -37070,9 +37129,10 @@ mail at the Internet address noted previously. If you find bugs in one of the non-Unix ports of @command{gawk}, please send an electronic mail message to the person who maintains that port. They -are named in the following list, as well as in the @file{README} file in the @command{gawk} -distribution. Information in the @file{README} file should be considered -authoritative if it conflicts with this @value{DOCUMENT}. +are named in the following list, as well as in the @file{README} file +in the @command{gawk} distribution. Information in the @file{README} +file should be considered authoritative if it conflicts with this +@value{DOCUMENT}. The people maintaining the non-Unix ports of @command{gawk} are as follows: @@ -37100,7 +37160,8 @@ John Malmberg, @EMAIL{wb8tyw@@qsl.net,wb8tyw at qsl.net}. @end multitable If your bug is also reproducible under Unix, please send a copy of your -report to the @EMAIL{bug-gawk@@gnu.org,bug-gawk at gnu dot org} email list as well. +report to the @EMAIL{bug-gawk@@gnu.org,bug-gawk at gnu dot org} email +list as well. @c ENDOFRANGE dbugg @c ENDOFRANGE tblgawb |