diff options
Diffstat (limited to 'doc/gawk.info')
-rw-r--r-- | doc/gawk.info | 1349 |
1 files changed, 696 insertions, 653 deletions
diff --git a/doc/gawk.info b/doc/gawk.info index 547bee90..77a3b20e 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -2583,10 +2583,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' @@ -2975,13 +2973,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. @@ -3373,15 +3364,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 @@ -10251,10 +10244,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 @@ -11798,6 +11799,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 @@ -19747,8 +19763,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 @@ -22224,6 +22240,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 @@ -26250,6 +26289,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 @@ -27153,7 +27194,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 @@ -27195,11 +27238,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 @@ -31138,20 +31180,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) @@ -31159,9 +31201,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) @@ -31169,32 +31211,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) @@ -31256,10 +31298,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. @@ -31299,7 +31341,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) @@ -31467,7 +31509,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) @@ -31525,10 +31567,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. @@ -31568,7 +31610,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) @@ -31673,7 +31715,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) @@ -31871,7 +31913,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) @@ -31902,13 +31944,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) @@ -32055,7 +32097,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) @@ -32094,12 +32136,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 19) * 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) @@ -32122,7 +32164,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) @@ -32132,7 +32174,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. @@ -32140,7 +32182,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. @@ -32156,6 +32198,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) @@ -32179,8 +32222,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) @@ -32235,13 +32278,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 19) -* 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) @@ -32274,10 +32317,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) @@ -32295,7 +32338,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) @@ -32377,7 +32420,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 48) -* 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) @@ -32445,9 +32488,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. @@ -32484,7 +32527,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. @@ -32497,7 +32540,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) @@ -32547,7 +32590,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) @@ -32566,13 +32609,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) @@ -32583,7 +32626,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. @@ -32614,7 +32657,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. @@ -32622,18 +32665,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) @@ -32715,7 +32758,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. @@ -32816,7 +32859,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) @@ -32945,7 +32988,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) @@ -32961,14 +33004,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) @@ -33008,8 +33051,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) @@ -33021,8 +33064,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) @@ -33042,7 +33085,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) @@ -33071,7 +33114,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. @@ -33080,9 +33123,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. @@ -33196,7 +33239,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) @@ -33238,14 +33281,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. @@ -33263,7 +33306,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) @@ -33284,7 +33327,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. @@ -33312,11 +33355,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) @@ -33359,24 +33402,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) @@ -33420,12 +33463,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) @@ -33495,7 +33538,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) @@ -33535,7 +33578,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) @@ -33553,7 +33596,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) @@ -33561,9 +33604,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) @@ -33576,14 +33619,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) @@ -33603,7 +33646,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) @@ -33664,14 +33707,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. @@ -33704,8 +33747,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) @@ -33755,10 +33798,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) @@ -33830,9 +33873,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) @@ -33899,7 +33942,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) @@ -33955,7 +33998,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. @@ -34009,10 +34052,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) @@ -34046,7 +34089,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) @@ -34138,515 +34181,515 @@ Node: Intro Summary110420 Node: Invoking Gawk111303 Node: Command Line112818 Node: Options113609 -Ref: Options-Footnote-1129436 -Node: Other Arguments129461 -Node: Naming Standard Input132422 -Node: Environment Variables133515 -Node: AWKPATH Variable134073 -Ref: AWKPATH Variable-Footnote-1136925 -Ref: AWKPATH Variable-Footnote-2136970 -Node: AWKLIBPATH Variable137230 -Node: Other Environment Variables137989 -Node: Exit Status141691 -Node: Include Files142366 -Node: Loading Shared Libraries145944 -Node: Obsolete147371 -Node: Undocumented148068 -Node: Invoking Summary148335 -Node: Regexp150001 -Node: Regexp Usage151460 -Node: Escape Sequences153493 -Node: Regexp Operators159510 -Ref: Regexp Operators-Footnote-1166945 -Ref: Regexp Operators-Footnote-2167092 -Node: Bracket Expressions167190 -Ref: table-char-classes169207 -Node: Leftmost Longest172147 -Node: Computed Regexps173449 -Node: GNU Regexp Operators176846 -Node: Case-sensitivity180552 -Ref: Case-sensitivity-Footnote-1183442 -Ref: Case-sensitivity-Footnote-2183677 -Node: Regexp Summary183785 -Node: Reading Files185254 -Node: Records187346 -Node: awk split records188074 -Node: gawk split records192986 -Ref: gawk split records-Footnote-1197525 -Node: Fields197562 -Ref: Fields-Footnote-1200358 -Node: Nonconstant Fields200444 -Ref: Nonconstant Fields-Footnote-1202674 -Node: Changing Fields202876 -Node: Field Separators208808 -Node: Default Field Splitting211510 -Node: Regexp Field Splitting212627 -Node: Single Character Fields215977 -Node: Command Line Field Separator217036 -Node: Full Line Fields220246 -Ref: Full Line Fields-Footnote-1220754 -Node: Field Splitting Summary220800 -Ref: Field Splitting Summary-Footnote-1223931 -Node: Constant Size224032 -Node: Splitting By Content228638 -Ref: Splitting By Content-Footnote-1232711 -Node: Multiple Line232751 -Ref: Multiple Line-Footnote-1238640 -Node: Getline238819 -Node: Plain Getline241030 -Node: Getline/Variable243670 -Node: Getline/File244817 -Node: Getline/Variable/File246201 -Ref: Getline/Variable/File-Footnote-1247800 -Node: Getline/Pipe247887 -Node: Getline/Variable/Pipe250570 -Node: Getline/Coprocess251699 -Node: Getline/Variable/Coprocess252951 -Node: Getline Notes253688 -Node: Getline Summary256480 -Ref: table-getline-variants256888 -Node: Read Timeout257717 -Ref: Read Timeout-Footnote-1261531 -Node: Command-line directories261589 -Node: Input Summary262493 -Node: Input Exercises265745 -Node: Printing266473 -Node: Print268250 -Node: Print Examples269707 -Node: Output Separators272486 -Node: OFMT274502 -Node: Printf275854 -Node: Basic Printf276639 -Node: Control Letters278210 -Node: Format Modifiers282194 -Node: Printf Examples288201 -Node: Redirection290683 -Node: Special FD297414 -Ref: Special FD-Footnote-1300571 -Node: Special Files300645 -Node: Other Inherited Files301261 -Node: Special Network302261 -Node: Special Caveats303122 -Node: Close Files And Pipes304073 -Ref: Close Files And Pipes-Footnote-1311250 -Ref: Close Files And Pipes-Footnote-2311398 -Node: Output Summary311548 -Node: Output Exercises312544 -Node: Expressions313224 -Node: Values314409 -Node: Constants315085 -Node: Scalar Constants315765 -Ref: Scalar Constants-Footnote-1316624 -Node: Nondecimal-numbers316874 -Node: Regexp Constants319874 -Node: Using Constant Regexps320399 -Node: Variables323537 -Node: Using Variables324192 -Node: Assignment Options326096 -Node: Conversion327971 -Node: Strings And Numbers328495 -Ref: Strings And Numbers-Footnote-1331557 -Node: Locale influences conversions331666 -Ref: table-locale-affects334381 -Node: All Operators334969 -Node: Arithmetic Ops335599 -Node: Concatenation338104 -Ref: Concatenation-Footnote-1340923 -Node: Assignment Ops341029 -Ref: table-assign-ops346012 -Node: Increment Ops347290 -Node: Truth Values and Conditions350728 -Node: Truth Values351811 -Node: Typing and Comparison352860 -Node: Variable Typing353653 -Node: Comparison Operators357305 -Ref: table-relational-ops357715 -Node: POSIX String Comparison361230 -Ref: POSIX String Comparison-Footnote-1362302 -Node: Boolean Ops362440 -Ref: Boolean Ops-Footnote-1366919 -Node: Conditional Exp367010 -Node: Function Calls368737 -Node: Precedence372617 -Node: Locales376285 -Node: Expressions Summary377916 -Node: Patterns and Actions380490 -Node: Pattern Overview381606 -Node: Regexp Patterns383285 -Node: Expression Patterns383828 -Node: Ranges387608 -Node: BEGIN/END390714 -Node: Using BEGIN/END391476 -Ref: Using BEGIN/END-Footnote-1394213 -Node: I/O And BEGIN/END394319 -Node: BEGINFILE/ENDFILE396633 -Node: Empty399534 -Node: Using Shell Variables399851 -Node: Action Overview402127 -Node: Statements404454 -Node: If Statement406302 -Node: While Statement407800 -Node: Do Statement409828 -Node: For Statement410970 -Node: Switch Statement414125 -Node: Break Statement416513 -Node: Continue Statement418554 -Node: Next Statement420379 -Node: Nextfile Statement422759 -Node: Exit Statement425389 -Node: Built-in Variables427792 -Node: User-modified428919 -Ref: User-modified-Footnote-1436599 -Node: Auto-set436661 -Ref: Auto-set-Footnote-1449518 -Ref: Auto-set-Footnote-2449723 -Node: ARGC and ARGV449779 -Node: Pattern Action Summary453983 -Node: Arrays456402 -Node: Array Basics457731 -Node: Array Intro458575 -Ref: figure-array-elements460548 -Ref: Array Intro-Footnote-1463072 -Node: Reference to Elements463200 -Node: Assigning Elements465650 -Node: Array Example466141 -Node: Scanning an Array467899 -Node: Controlling Scanning470915 -Ref: Controlling Scanning-Footnote-1476104 -Node: Numeric Array Subscripts476420 -Node: Uninitialized Subscripts478603 -Node: Delete480220 -Ref: Delete-Footnote-1482964 -Node: Multidimensional483021 -Node: Multiscanning486116 -Node: Arrays of Arrays487705 -Node: Arrays Summary492466 -Node: Functions494571 -Node: Built-in495444 -Node: Calling Built-in496522 -Node: Numeric Functions498510 -Ref: Numeric Functions-Footnote-1502532 -Ref: Numeric Functions-Footnote-2502889 -Ref: Numeric Functions-Footnote-3502937 -Node: String Functions503206 -Ref: String Functions-Footnote-1526666 -Ref: String Functions-Footnote-2526795 -Ref: String Functions-Footnote-3527043 -Node: Gory Details527130 -Ref: table-sub-escapes528911 -Ref: table-sub-proposed530431 -Ref: table-posix-sub531795 -Ref: table-gensub-escapes533335 -Ref: Gory Details-Footnote-1534167 -Node: I/O Functions534318 -Ref: I/O Functions-Footnote-1541419 -Node: Time Functions541566 -Ref: Time Functions-Footnote-1552035 -Ref: Time Functions-Footnote-2552103 -Ref: Time Functions-Footnote-3552261 -Ref: Time Functions-Footnote-4552372 -Ref: Time Functions-Footnote-5552484 -Ref: Time Functions-Footnote-6552711 -Node: Bitwise Functions552977 -Ref: table-bitwise-ops553539 -Ref: Bitwise Functions-Footnote-1557847 -Node: Type Functions558016 -Node: I18N Functions559165 -Node: User-defined560810 -Node: Definition Syntax561614 -Ref: Definition Syntax-Footnote-1567018 -Node: Function Example567087 -Ref: Function Example-Footnote-1570004 -Node: Function Caveats570026 -Node: Calling A Function570544 -Node: Variable Scope571499 -Node: Pass By Value/Reference574487 -Node: Return Statement577997 -Node: Dynamic Typing580981 -Node: Indirect Calls581910 -Ref: Indirect Calls-Footnote-1591631 -Node: Functions Summary591759 -Node: Library Functions594458 -Ref: Library Functions-Footnote-1598076 -Ref: Library Functions-Footnote-2598219 -Node: Library Names598390 -Ref: Library Names-Footnote-1601848 -Ref: Library Names-Footnote-2602068 -Node: General Functions602154 -Node: Strtonum Function603182 -Node: Assert Function606202 -Node: Round Function609526 -Node: Cliff Random Function611067 -Node: Ordinal Functions612083 -Ref: Ordinal Functions-Footnote-1615148 -Ref: Ordinal Functions-Footnote-2615400 -Node: Join Function615611 -Ref: Join Function-Footnote-1617382 -Node: Getlocaltime Function617582 -Node: Readfile Function621323 -Node: Data File Management623271 -Node: Filetrans Function623903 -Node: Rewind Function627962 -Node: File Checking629520 -Ref: File Checking-Footnote-1630652 -Node: Empty Files630853 -Node: Ignoring Assigns632832 -Node: Getopt Function634386 -Ref: Getopt Function-Footnote-1645650 -Node: Passwd Functions645853 -Ref: Passwd Functions-Footnote-1654832 -Node: Group Functions654920 -Ref: Group Functions-Footnote-1662851 -Node: Walking Arrays663064 -Node: Library Functions Summary664667 -Node: Library Exercises666055 -Node: Sample Programs667335 -Node: Running Examples668105 -Node: Clones668833 -Node: Cut Program670057 -Node: Egrep Program679915 -Ref: Egrep Program-Footnote-1687502 -Node: Id Program687612 -Node: Split Program691266 -Ref: Split Program-Footnote-1694804 -Node: Tee Program694932 -Node: Uniq Program697719 -Node: Wc Program705142 -Ref: Wc Program-Footnote-1709407 -Node: Miscellaneous Programs709499 -Node: Dupword Program710712 -Node: Alarm Program712743 -Node: Translate Program717547 -Ref: Translate Program-Footnote-1722120 -Ref: Translate Program-Footnote-2722390 -Node: Labels Program722529 -Ref: Labels Program-Footnote-1725890 -Node: Word Sorting725974 -Node: History Sorting730017 -Node: Extract Program731853 -Node: Simple Sed739389 -Node: Igawk Program742451 -Ref: Igawk Program-Footnote-1756755 -Ref: Igawk Program-Footnote-2756956 -Node: Anagram Program757078 -Node: Signature Program760146 -Node: Programs Summary761393 -Node: Programs Exercises762608 -Ref: Programs Exercises-Footnote-1766739 -Node: Advanced Features766830 -Node: Nondecimal Data768778 -Node: Array Sorting770355 -Node: Controlling Array Traversal771052 -Node: Array Sorting Functions779332 -Ref: Array Sorting Functions-Footnote-1783224 -Node: Two-way I/O783418 -Ref: Two-way I/O-Footnote-1788362 -Ref: Two-way I/O-Footnote-2788541 -Node: TCP/IP Networking788623 -Node: Profiling791465 -Node: Advanced Features Summary799007 -Node: Internationalization800868 -Node: I18N and L10N802348 -Node: Explaining gettext803034 -Ref: Explaining gettext-Footnote-1808060 -Ref: Explaining gettext-Footnote-2808244 -Node: Programmer i18n808409 -Ref: Programmer i18n-Footnote-1813203 -Node: Translator i18n813252 -Node: String Extraction814046 -Ref: String Extraction-Footnote-1815179 -Node: Printf Ordering815265 -Ref: Printf Ordering-Footnote-1818047 -Node: I18N Portability818111 -Ref: I18N Portability-Footnote-1820560 -Node: I18N Example820623 -Ref: I18N Example-Footnote-1823329 -Node: Gawk I18N823401 -Node: I18N Summary824039 -Node: Debugger825378 -Node: Debugging826400 -Node: Debugging Concepts826841 -Node: Debugging Terms828697 -Node: Awk Debugging831294 -Node: Sample Debugging Session832186 -Node: Debugger Invocation832706 -Node: Finding The Bug834042 -Node: List of Debugger Commands840521 -Node: Breakpoint Control841853 -Node: Debugger Execution Control845517 -Node: Viewing And Changing Data848877 -Node: Execution Stack852235 -Node: Debugger Info853748 -Node: Miscellaneous Debugger Commands857742 -Node: Readline Support862926 -Node: Limitations863818 -Node: Debugging Summary866091 -Node: Arbitrary Precision Arithmetic867259 -Node: Computer Arithmetic868746 -Ref: Computer Arithmetic-Footnote-1873133 -Node: Math Definitions873190 -Ref: table-ieee-formats876479 -Ref: Math Definitions-Footnote-1877019 -Node: MPFR features877122 -Node: FP Math Caution878739 -Ref: FP Math Caution-Footnote-1879789 -Node: Inexactness of computations880158 -Node: Inexact representation881106 -Node: Comparing FP Values882461 -Node: Errors accumulate883425 -Node: Getting Accuracy884858 -Node: Try To Round887517 -Node: Setting precision888416 -Ref: table-predefined-precision-strings889098 -Node: Setting the rounding mode890891 -Ref: table-gawk-rounding-modes891255 -Ref: Setting the rounding mode-Footnote-1894709 -Node: Arbitrary Precision Integers894888 -Ref: Arbitrary Precision Integers-Footnote-1897869 -Node: POSIX Floating Point Problems898018 -Ref: POSIX Floating Point Problems-Footnote-1901894 -Node: Floating point summary901932 -Node: Dynamic Extensions904136 -Node: Extension Intro905688 -Node: Plugin License906953 -Node: Extension Mechanism Outline907638 -Ref: figure-load-extension908062 -Ref: figure-load-new-function909547 -Ref: figure-call-new-function910549 -Node: Extension API Description912533 -Node: Extension API Functions Introduction913983 -Node: General Data Types918850 -Ref: General Data Types-Footnote-1924543 -Node: Requesting Values924842 -Ref: table-value-types-returned925579 -Node: Memory Allocation Functions926537 -Ref: Memory Allocation Functions-Footnote-1929284 -Node: Constructor Functions929380 -Node: Registration Functions931138 -Node: Extension Functions931823 -Node: Exit Callback Functions934125 -Node: Extension Version String935373 -Node: Input Parsers936023 -Node: Output Wrappers945837 -Node: Two-way processors950353 -Node: Printing Messages952557 -Ref: Printing Messages-Footnote-1953634 -Node: Updating `ERRNO'953786 -Node: Accessing Parameters954525 -Node: Symbol Table Access955755 -Node: Symbol table by name956269 -Node: Symbol table by cookie958245 -Ref: Symbol table by cookie-Footnote-1962378 -Node: Cached values962441 -Ref: Cached values-Footnote-1965945 -Node: Array Manipulation966036 -Ref: Array Manipulation-Footnote-1967134 -Node: Array Data Types967173 -Ref: Array Data Types-Footnote-1969876 -Node: Array Functions969968 -Node: Flattening Arrays973842 -Node: Creating Arrays980694 -Node: Extension API Variables985425 -Node: Extension Versioning986061 -Node: Extension API Informational Variables987962 -Node: Extension API Boilerplate989048 -Node: Finding Extensions992852 -Node: Extension Example993412 -Node: Internal File Description994142 -Node: Internal File Ops998233 -Ref: Internal File Ops-Footnote-11009665 -Node: Using Internal File Ops1009805 -Ref: Using Internal File Ops-Footnote-11012152 -Node: Extension Samples1012420 -Node: Extension Sample File Functions1013944 -Node: Extension Sample Fnmatch1021512 -Node: Extension Sample Fork1022994 -Node: Extension Sample Inplace1024207 -Node: Extension Sample Ord1025882 -Node: Extension Sample Readdir1026718 -Ref: table-readdir-file-types1027574 -Node: Extension Sample Revout1028373 -Node: Extension Sample Rev2way1028964 -Node: Extension Sample Read write array1029705 -Node: Extension Sample Readfile1031584 -Node: Extension Sample API Tests1032684 -Node: Extension Sample Time1033209 -Node: gawkextlib1034524 -Node: Extension summary1037337 -Node: Extension Exercises1041030 -Node: Language History1041752 -Node: V7/SVR3.11043395 -Node: SVR41045715 -Node: POSIX1047157 -Node: BTL1048543 -Node: POSIX/GNU1049277 -Node: Feature History1054993 -Node: Common Extensions1068084 -Node: Ranges and Locales1069396 -Ref: Ranges and Locales-Footnote-11074013 -Ref: Ranges and Locales-Footnote-21074040 -Ref: Ranges and Locales-Footnote-31074274 -Node: Contributors1074495 -Node: History summary1079920 -Node: Installation1081289 -Node: Gawk Distribution1082240 -Node: Getting1082724 -Node: Extracting1083548 -Node: Distribution contents1085190 -Node: Unix Installation1090907 -Node: Quick Installation1091524 -Node: Additional Configuration Options1093966 -Node: Configuration Philosophy1095704 -Node: Non-Unix Installation1098055 -Node: PC Installation1098513 -Node: PC Binary Installation1099824 -Node: PC Compiling1101672 -Ref: PC Compiling-Footnote-11104671 -Node: PC Testing1104776 -Node: PC Using1105952 -Node: Cygwin1110104 -Node: MSYS1110913 -Node: VMS Installation1111411 -Node: VMS Compilation1112207 -Ref: VMS Compilation-Footnote-11113429 -Node: VMS Dynamic Extensions1113487 -Node: VMS Installation Details1114860 -Node: VMS Running1117112 -Node: VMS GNV1119946 -Node: VMS Old Gawk1120669 -Node: Bugs1121139 -Node: Other Versions1125143 -Node: Installation summary1131367 -Node: Notes1132423 -Node: Compatibility Mode1133288 -Node: Additions1134070 -Node: Accessing The Source1134995 -Node: Adding Code1136431 -Node: New Ports1142609 -Node: Derived Files1147090 -Ref: Derived Files-Footnote-11152565 -Ref: Derived Files-Footnote-21152599 -Ref: Derived Files-Footnote-31153195 -Node: Future Extensions1153309 -Node: Implementation Limitations1153915 -Node: Extension Design1155163 -Node: Old Extension Problems1156317 -Ref: Old Extension Problems-Footnote-11157834 -Node: Extension New Mechanism Goals1157891 -Ref: Extension New Mechanism Goals-Footnote-11161251 -Node: Extension Other Design Decisions1161440 -Node: Extension Future Growth1163546 -Node: Old Extension Mechanism1164382 -Node: Notes summary1166144 -Node: Basic Concepts1167330 -Node: Basic High Level1168011 -Ref: figure-general-flow1168283 -Ref: figure-process-flow1168882 -Ref: Basic High Level-Footnote-11172111 -Node: Basic Data Typing1172296 -Node: Glossary1175624 -Node: Copying1200776 -Node: GNU Free Documentation License1238332 -Node: Index1263468 +Ref: Options-Footnote-1129307 +Node: Other Arguments129332 +Node: Naming Standard Input132293 +Node: Environment Variables133386 +Node: AWKPATH Variable133944 +Ref: AWKPATH Variable-Footnote-1136796 +Ref: AWKPATH Variable-Footnote-2136841 +Node: AWKLIBPATH Variable137101 +Node: Other Environment Variables137860 +Node: Exit Status141333 +Node: Include Files142008 +Node: Loading Shared Libraries145586 +Node: Obsolete147013 +Node: Undocumented147710 +Node: Invoking Summary147977 +Node: Regexp149643 +Node: Regexp Usage151102 +Node: Escape Sequences153135 +Node: Regexp Operators159235 +Ref: Regexp Operators-Footnote-1166670 +Ref: Regexp Operators-Footnote-2166817 +Node: Bracket Expressions166915 +Ref: table-char-classes168932 +Node: Leftmost Longest171872 +Node: Computed Regexps173174 +Node: GNU Regexp Operators176571 +Node: Case-sensitivity180277 +Ref: Case-sensitivity-Footnote-1183167 +Ref: Case-sensitivity-Footnote-2183402 +Node: Regexp Summary183510 +Node: Reading Files184979 +Node: Records187071 +Node: awk split records187799 +Node: gawk split records192711 +Ref: gawk split records-Footnote-1197250 +Node: Fields197287 +Ref: Fields-Footnote-1200083 +Node: Nonconstant Fields200169 +Ref: Nonconstant Fields-Footnote-1202399 +Node: Changing Fields202601 +Node: Field Separators208533 +Node: Default Field Splitting211235 +Node: Regexp Field Splitting212352 +Node: Single Character Fields215702 +Node: Command Line Field Separator216761 +Node: Full Line Fields219971 +Ref: Full Line Fields-Footnote-1220479 +Node: Field Splitting Summary220525 +Ref: Field Splitting Summary-Footnote-1223656 +Node: Constant Size223757 +Node: Splitting By Content228363 +Ref: Splitting By Content-Footnote-1232436 +Node: Multiple Line232476 +Ref: Multiple Line-Footnote-1238365 +Node: Getline238544 +Node: Plain Getline240755 +Node: Getline/Variable243395 +Node: Getline/File244542 +Node: Getline/Variable/File245926 +Ref: Getline/Variable/File-Footnote-1247525 +Node: Getline/Pipe247612 +Node: Getline/Variable/Pipe250295 +Node: Getline/Coprocess251424 +Node: Getline/Variable/Coprocess252676 +Node: Getline Notes253413 +Node: Getline Summary256205 +Ref: table-getline-variants256613 +Node: Read Timeout257442 +Ref: Read Timeout-Footnote-1261256 +Node: Command-line directories261314 +Node: Input Summary262218 +Node: Input Exercises265470 +Node: Printing266198 +Node: Print267975 +Node: Print Examples269432 +Node: Output Separators272211 +Node: OFMT274227 +Node: Printf275579 +Node: Basic Printf276364 +Node: Control Letters277935 +Node: Format Modifiers281919 +Node: Printf Examples287926 +Node: Redirection290408 +Node: Special FD297139 +Ref: Special FD-Footnote-1300296 +Node: Special Files300370 +Node: Other Inherited Files300986 +Node: Special Network301986 +Node: Special Caveats302847 +Node: Close Files And Pipes303798 +Ref: Close Files And Pipes-Footnote-1310975 +Ref: Close Files And Pipes-Footnote-2311123 +Node: Output Summary311273 +Node: Output Exercises312269 +Node: Expressions312949 +Node: Values314134 +Node: Constants314810 +Node: Scalar Constants315490 +Ref: Scalar Constants-Footnote-1316349 +Node: Nondecimal-numbers316599 +Node: Regexp Constants319599 +Node: Using Constant Regexps320124 +Node: Variables323262 +Node: Using Variables323917 +Node: Assignment Options325821 +Node: Conversion327696 +Node: Strings And Numbers328220 +Ref: Strings And Numbers-Footnote-1331282 +Node: Locale influences conversions331391 +Ref: table-locale-affects334106 +Node: All Operators334694 +Node: Arithmetic Ops335324 +Node: Concatenation337829 +Ref: Concatenation-Footnote-1340648 +Node: Assignment Ops340754 +Ref: table-assign-ops345737 +Node: Increment Ops347015 +Node: Truth Values and Conditions350453 +Node: Truth Values351536 +Node: Typing and Comparison352585 +Node: Variable Typing353378 +Node: Comparison Operators357030 +Ref: table-relational-ops357440 +Node: POSIX String Comparison360955 +Ref: POSIX String Comparison-Footnote-1362027 +Node: Boolean Ops362165 +Ref: Boolean Ops-Footnote-1366644 +Node: Conditional Exp366735 +Node: Function Calls368462 +Node: Precedence372342 +Node: Locales376010 +Node: Expressions Summary377641 +Node: Patterns and Actions380215 +Node: Pattern Overview381331 +Node: Regexp Patterns383010 +Node: Expression Patterns383553 +Node: Ranges387333 +Node: BEGIN/END390439 +Node: Using BEGIN/END391201 +Ref: Using BEGIN/END-Footnote-1393938 +Node: I/O And BEGIN/END394044 +Node: BEGINFILE/ENDFILE396358 +Node: Empty399259 +Node: Using Shell Variables399576 +Node: Action Overview401852 +Node: Statements404179 +Node: If Statement406027 +Node: While Statement407525 +Node: Do Statement409553 +Node: For Statement410695 +Node: Switch Statement413850 +Node: Break Statement416238 +Node: Continue Statement418279 +Node: Next Statement420104 +Node: Nextfile Statement422484 +Node: Exit Statement425114 +Node: Built-in Variables427517 +Node: User-modified428644 +Ref: User-modified-Footnote-1436324 +Node: Auto-set436386 +Ref: Auto-set-Footnote-1449580 +Ref: Auto-set-Footnote-2449785 +Node: ARGC and ARGV449841 +Node: Pattern Action Summary454045 +Node: Arrays456464 +Node: Array Basics457793 +Node: Array Intro458637 +Ref: figure-array-elements460610 +Ref: Array Intro-Footnote-1463134 +Node: Reference to Elements463262 +Node: Assigning Elements465712 +Node: Array Example466203 +Node: Scanning an Array467961 +Node: Controlling Scanning470977 +Ref: Controlling Scanning-Footnote-1476166 +Node: Numeric Array Subscripts476482 +Node: Uninitialized Subscripts478665 +Node: Delete480282 +Ref: Delete-Footnote-1483026 +Node: Multidimensional483083 +Node: Multiscanning486178 +Node: Arrays of Arrays487767 +Node: Arrays Summary492528 +Node: Functions494633 +Node: Built-in495506 +Node: Calling Built-in496584 +Node: Numeric Functions498572 +Ref: Numeric Functions-Footnote-1503396 +Ref: Numeric Functions-Footnote-2503753 +Ref: Numeric Functions-Footnote-3503801 +Node: String Functions504070 +Ref: String Functions-Footnote-1527530 +Ref: String Functions-Footnote-2527659 +Ref: String Functions-Footnote-3527907 +Node: Gory Details527994 +Ref: table-sub-escapes529775 +Ref: table-sub-proposed531295 +Ref: table-posix-sub532659 +Ref: table-gensub-escapes534199 +Ref: Gory Details-Footnote-1535031 +Node: I/O Functions535182 +Ref: I/O Functions-Footnote-1542283 +Node: Time Functions542430 +Ref: Time Functions-Footnote-1552899 +Ref: Time Functions-Footnote-2552967 +Ref: Time Functions-Footnote-3553125 +Ref: Time Functions-Footnote-4553236 +Ref: Time Functions-Footnote-5553348 +Ref: Time Functions-Footnote-6553575 +Node: Bitwise Functions553841 +Ref: table-bitwise-ops554403 +Ref: Bitwise Functions-Footnote-1558711 +Node: Type Functions558880 +Node: I18N Functions560029 +Node: User-defined561674 +Node: Definition Syntax562478 +Ref: Definition Syntax-Footnote-1567882 +Node: Function Example567951 +Ref: Function Example-Footnote-1570868 +Node: Function Caveats570890 +Node: Calling A Function571408 +Node: Variable Scope572363 +Node: Pass By Value/Reference575351 +Node: Return Statement578861 +Node: Dynamic Typing581845 +Node: Indirect Calls582774 +Ref: Indirect Calls-Footnote-1592495 +Node: Functions Summary592623 +Node: Library Functions595322 +Ref: Library Functions-Footnote-1598940 +Ref: Library Functions-Footnote-2599083 +Node: Library Names599254 +Ref: Library Names-Footnote-1602712 +Ref: Library Names-Footnote-2602932 +Node: General Functions603018 +Node: Strtonum Function604046 +Node: Assert Function607066 +Node: Round Function610390 +Node: Cliff Random Function611931 +Node: Ordinal Functions612947 +Ref: Ordinal Functions-Footnote-1616012 +Ref: Ordinal Functions-Footnote-2616264 +Node: Join Function616475 +Ref: Join Function-Footnote-1618246 +Node: Getlocaltime Function618446 +Node: Readfile Function622187 +Node: Data File Management624135 +Node: Filetrans Function624767 +Node: Rewind Function628826 +Node: File Checking630384 +Ref: File Checking-Footnote-1631516 +Node: Empty Files631717 +Node: Ignoring Assigns633696 +Node: Getopt Function635250 +Ref: Getopt Function-Footnote-1646514 +Node: Passwd Functions646717 +Ref: Passwd Functions-Footnote-1655696 +Node: Group Functions655784 +Ref: Group Functions-Footnote-1663715 +Node: Walking Arrays663928 +Node: Library Functions Summary665531 +Node: Library Exercises666919 +Node: Sample Programs668199 +Node: Running Examples668969 +Node: Clones669697 +Node: Cut Program670921 +Node: Egrep Program680779 +Ref: Egrep Program-Footnote-1688366 +Node: Id Program688476 +Node: Split Program692130 +Ref: Split Program-Footnote-1695668 +Node: Tee Program695796 +Node: Uniq Program698583 +Node: Wc Program706006 +Ref: Wc Program-Footnote-1710271 +Node: Miscellaneous Programs710363 +Node: Dupword Program711576 +Node: Alarm Program713607 +Node: Translate Program718411 +Ref: Translate Program-Footnote-1722984 +Ref: Translate Program-Footnote-2723254 +Node: Labels Program723393 +Ref: Labels Program-Footnote-1726754 +Node: Word Sorting726838 +Node: History Sorting730881 +Node: Extract Program732717 +Node: Simple Sed740253 +Node: Igawk Program743315 +Ref: Igawk Program-Footnote-1757619 +Ref: Igawk Program-Footnote-2757820 +Node: Anagram Program757942 +Node: Signature Program761010 +Node: Programs Summary762257 +Node: Programs Exercises763472 +Ref: Programs Exercises-Footnote-1767603 +Node: Advanced Features767694 +Node: Nondecimal Data769642 +Node: Array Sorting771219 +Node: Controlling Array Traversal771916 +Node: Array Sorting Functions780196 +Ref: Array Sorting Functions-Footnote-1784088 +Node: Two-way I/O784282 +Ref: Two-way I/O-Footnote-1789226 +Ref: Two-way I/O-Footnote-2789405 +Node: TCP/IP Networking789487 +Node: Profiling792329 +Node: Advanced Features Summary799880 +Node: Internationalization801741 +Node: I18N and L10N803221 +Node: Explaining gettext803907 +Ref: Explaining gettext-Footnote-1808933 +Ref: Explaining gettext-Footnote-2809117 +Node: Programmer i18n809282 +Ref: Programmer i18n-Footnote-1814076 +Node: Translator i18n814125 +Node: String Extraction814919 +Ref: String Extraction-Footnote-1816052 +Node: Printf Ordering816138 +Ref: Printf Ordering-Footnote-1818920 +Node: I18N Portability818984 +Ref: I18N Portability-Footnote-1821433 +Node: I18N Example821496 +Ref: I18N Example-Footnote-1824202 +Node: Gawk I18N824274 +Node: I18N Summary824912 +Node: Debugger826251 +Node: Debugging827273 +Node: Debugging Concepts827714 +Node: Debugging Terms829570 +Node: Awk Debugging832167 +Node: Sample Debugging Session833059 +Node: Debugger Invocation833579 +Node: Finding The Bug834915 +Node: List of Debugger Commands841394 +Node: Breakpoint Control842726 +Node: Debugger Execution Control846390 +Node: Viewing And Changing Data849750 +Node: Execution Stack853108 +Node: Debugger Info854621 +Node: Miscellaneous Debugger Commands858615 +Node: Readline Support863799 +Node: Limitations864691 +Node: Debugging Summary866964 +Node: Arbitrary Precision Arithmetic868132 +Node: Computer Arithmetic869619 +Ref: Computer Arithmetic-Footnote-1874006 +Node: Math Definitions874063 +Ref: table-ieee-formats877352 +Ref: Math Definitions-Footnote-1877892 +Node: MPFR features877995 +Node: FP Math Caution879612 +Ref: FP Math Caution-Footnote-1880662 +Node: Inexactness of computations881031 +Node: Inexact representation881979 +Node: Comparing FP Values883334 +Node: Errors accumulate884298 +Node: Getting Accuracy885731 +Node: Try To Round888390 +Node: Setting precision889289 +Ref: table-predefined-precision-strings889971 +Node: Setting the rounding mode891764 +Ref: table-gawk-rounding-modes892128 +Ref: Setting the rounding mode-Footnote-1895582 +Node: Arbitrary Precision Integers895761 +Ref: Arbitrary Precision Integers-Footnote-1899534 +Node: POSIX Floating Point Problems899683 +Ref: POSIX Floating Point Problems-Footnote-1903559 +Node: Floating point summary903597 +Node: Dynamic Extensions905801 +Node: Extension Intro907353 +Node: Plugin License908618 +Node: Extension Mechanism Outline909303 +Ref: figure-load-extension909727 +Ref: figure-load-new-function911212 +Ref: figure-call-new-function912214 +Node: Extension API Description914198 +Node: Extension API Functions Introduction915648 +Node: General Data Types920515 +Ref: General Data Types-Footnote-1926208 +Node: Requesting Values926507 +Ref: table-value-types-returned927244 +Node: Memory Allocation Functions928202 +Ref: Memory Allocation Functions-Footnote-1930949 +Node: Constructor Functions931045 +Node: Registration Functions932803 +Node: Extension Functions933488 +Node: Exit Callback Functions935790 +Node: Extension Version String937038 +Node: Input Parsers937688 +Node: Output Wrappers947502 +Node: Two-way processors952018 +Node: Printing Messages954222 +Ref: Printing Messages-Footnote-1955299 +Node: Updating `ERRNO'955451 +Node: Accessing Parameters956190 +Node: Symbol Table Access957420 +Node: Symbol table by name957934 +Node: Symbol table by cookie959910 +Ref: Symbol table by cookie-Footnote-1964043 +Node: Cached values964106 +Ref: Cached values-Footnote-1967610 +Node: Array Manipulation967701 +Ref: Array Manipulation-Footnote-1968799 +Node: Array Data Types968838 +Ref: Array Data Types-Footnote-1971541 +Node: Array Functions971633 +Node: Flattening Arrays975507 +Node: Creating Arrays982359 +Node: Extension API Variables987090 +Node: Extension Versioning987726 +Node: Extension API Informational Variables989627 +Node: Extension API Boilerplate990713 +Node: Finding Extensions994517 +Node: Extension Example995077 +Node: Internal File Description995807 +Node: Internal File Ops999898 +Ref: Internal File Ops-Footnote-11011330 +Node: Using Internal File Ops1011470 +Ref: Using Internal File Ops-Footnote-11013817 +Node: Extension Samples1014085 +Node: Extension Sample File Functions1015609 +Node: Extension Sample Fnmatch1023177 +Node: Extension Sample Fork1024659 +Node: Extension Sample Inplace1025872 +Node: Extension Sample Ord1027547 +Node: Extension Sample Readdir1028383 +Ref: table-readdir-file-types1029239 +Node: Extension Sample Revout1030038 +Node: Extension Sample Rev2way1030629 +Node: Extension Sample Read write array1031370 +Node: Extension Sample Readfile1033249 +Node: Extension Sample API Tests1034349 +Node: Extension Sample Time1034874 +Node: gawkextlib1036189 +Node: Extension summary1039002 +Node: Extension Exercises1042695 +Node: Language History1043417 +Node: V7/SVR3.11045060 +Node: SVR41047380 +Node: POSIX1048822 +Node: BTL1050208 +Node: POSIX/GNU1050942 +Node: Feature History1056718 +Node: Common Extensions1069809 +Node: Ranges and Locales1071121 +Ref: Ranges and Locales-Footnote-11075738 +Ref: Ranges and Locales-Footnote-21075765 +Ref: Ranges and Locales-Footnote-31075999 +Node: Contributors1076220 +Node: History summary1081645 +Node: Installation1083014 +Node: Gawk Distribution1083965 +Node: Getting1084449 +Node: Extracting1085273 +Node: Distribution contents1086915 +Node: Unix Installation1092685 +Node: Quick Installation1093302 +Node: Additional Configuration Options1095744 +Node: Configuration Philosophy1097482 +Node: Non-Unix Installation1099833 +Node: PC Installation1100291 +Node: PC Binary Installation1101602 +Node: PC Compiling1103450 +Ref: PC Compiling-Footnote-11106449 +Node: PC Testing1106554 +Node: PC Using1107730 +Node: Cygwin1111882 +Node: MSYS1112691 +Node: VMS Installation1113189 +Node: VMS Compilation1113985 +Ref: VMS Compilation-Footnote-11115207 +Node: VMS Dynamic Extensions1115265 +Node: VMS Installation Details1116638 +Node: VMS Running1118890 +Node: VMS GNV1121724 +Node: VMS Old Gawk1122447 +Node: Bugs1122917 +Node: Other Versions1126921 +Node: Installation summary1133145 +Node: Notes1134201 +Node: Compatibility Mode1135066 +Node: Additions1135848 +Node: Accessing The Source1136773 +Node: Adding Code1138209 +Node: New Ports1144387 +Node: Derived Files1148868 +Ref: Derived Files-Footnote-11154343 +Ref: Derived Files-Footnote-21154377 +Ref: Derived Files-Footnote-31154973 +Node: Future Extensions1155087 +Node: Implementation Limitations1155693 +Node: Extension Design1156941 +Node: Old Extension Problems1158095 +Ref: Old Extension Problems-Footnote-11159612 +Node: Extension New Mechanism Goals1159669 +Ref: Extension New Mechanism Goals-Footnote-11163029 +Node: Extension Other Design Decisions1163218 +Node: Extension Future Growth1165324 +Node: Old Extension Mechanism1166160 +Node: Notes summary1167922 +Node: Basic Concepts1169108 +Node: Basic High Level1169789 +Ref: figure-general-flow1170061 +Ref: figure-process-flow1170660 +Ref: Basic High Level-Footnote-11173889 +Node: Basic Data Typing1174074 +Node: Glossary1177402 +Node: Copying1202554 +Node: GNU Free Documentation License1240110 +Node: Index1265246 End Tag Table |