diff options
Diffstat (limited to 'doc/gawk.info')
-rw-r--r-- | doc/gawk.info | 1353 |
1 files changed, 698 insertions, 655 deletions
diff --git a/doc/gawk.info b/doc/gawk.info index bd3966bd..c41ef683 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -2585,10 +2585,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' @@ -2977,13 +2975,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. @@ -3375,15 +3366,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 @@ -10253,10 +10246,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 @@ -11800,6 +11801,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 @@ -19743,8 +19759,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 @@ -22220,6 +22236,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 @@ -26246,6 +26285,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 @@ -27149,7 +27190,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 @@ -27191,11 +27234,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 @@ -31134,20 +31176,20 @@ Index * --include option: Options. (line 159) * --lint option <1>: Options. (line 185) * --lint option: Command Line. (line 20) -* --lint-old option: Options. (line 297) +* --lint-old option: Options. (line 295) * --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 35) -* --optimize option: Options. (line 239) -* --posix option: Options. (line 256) -* --posix option, --traditional option and: Options. (line 275) +* --optimize option: Options. (line 237) +* --posix option: Options. (line 254) +* --posix option, --traditional option and: Options. (line 273) * --pretty-print option: Options. (line 226) * --profile option <1>: Profiling. (line 12) -* --profile option: Options. (line 244) -* --re-interval option: Options. (line 281) -* --sandbox option: Options. (line 288) +* --profile option: Options. (line 242) +* --re-interval option: Options. (line 279) +* --sandbox option: Options. (line 286) * --sandbox option, disabling system() function: I/O Functions. (line 96) * --sandbox option, input redirection with getline: Getline. (line 19) @@ -31155,9 +31197,9 @@ Index (line 6) * --source option: Options. (line 117) * --traditional option: Options. (line 81) -* --traditional option, --posix option and: Options. (line 275) +* --traditional option, --posix option and: Options. (line 273) * --use-lc-numeric option: Options. (line 221) -* --version option: Options. (line 302) +* --version option: Options. (line 300) * --with-whiny-user-strftime configuration option: Additional Configuration Options. (line 35) * -b option: Options. (line 68) @@ -31165,32 +31207,32 @@ Index * -c option: Options. (line 81) * -D option: Options. (line 108) * -d option: Options. (line 93) -* -e option: Options. (line 338) +* -e option: Options. (line 336) * -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 310) +* -F option, -Ft sets FS to TAB: Options. (line 308) * -F option, command-line: Command Line Field Separator. (line 6) -* -f option, multiple uses: Options. (line 315) +* -f option, multiple uses: Options. (line 313) * -g option: Options. (line 147) * -h option: Options. (line 154) * -i option: Options. (line 159) -* -L option: Options. (line 297) +* -L option: Options. (line 295) * -l option: Options. (line 173) * -M option: Options. (line 205) * -N option: Options. (line 221) * -n option: Options. (line 211) -* -O option: Options. (line 239) +* -O option: Options. (line 237) * -o option: Options. (line 226) -* -P option: Options. (line 256) -* -p option: Options. (line 244) -* -r option: Options. (line 281) -* -S option: Options. (line 288) +* -P option: Options. (line 254) +* -p option: Options. (line 242) +* -r option: Options. (line 279) +* -S option: Options. (line 286) * -v option: Assignment Options. (line 12) -* -V option: Options. (line 302) +* -V option: Options. (line 300) * -v option: Options. (line 32) * -W option: Options. (line 46) * . (period), regexp operator: Regexp Operators. (line 44) @@ -31252,10 +31294,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. @@ -31295,7 +31337,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) @@ -31463,7 +31505,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 244) +* awk profiling, enabling: Options. (line 242) * awk programs <1>: Two Rules. (line 6) * awk programs <2>: Executable Scripts. (line 6) * awk programs: Getting Started. (line 12) @@ -31521,10 +31563,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. @@ -31564,7 +31606,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) @@ -31669,7 +31711,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) @@ -31867,7 +31909,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 356) +* csh utility, POSIXLY_CORRECT environment variable: Options. (line 354) * 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) @@ -31898,13 +31940,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) @@ -32051,7 +32093,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 272) +* decimal point character, locale specific: Options. (line 270) * decrement operators: Increment Ops. (line 35) * default keyword: Switch Statement. (line 6) * Deifik, Scott <1>: Bugs. (line 71) @@ -32090,12 +32132,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) @@ -32118,7 +32160,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) @@ -32128,7 +32170,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. @@ -32136,7 +32178,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. @@ -32152,6 +32194,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) @@ -32175,8 +32218,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) @@ -32231,13 +32274,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) @@ -32270,10 +32313,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) @@ -32291,7 +32334,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) @@ -32373,7 +32416,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) @@ -32441,9 +32484,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. @@ -32480,7 +32523,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 268) +* FS variable, as TAB character: Options. (line 266) * FS variable, changing value of: Field Separators. (line 35) * FS variable, running awk programs and: Cut Program. (line 63) * FS variable, setting from command line: Command Line Field Separator. @@ -32493,7 +32536,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) @@ -32543,7 +32586,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) @@ -32562,13 +32605,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 256) +* gawk, escape sequences: Escape Sequences. (line 132) +* gawk, extensions, disabling: Options. (line 254) * gawk, features, adding: Adding Code. (line 6) * gawk, features, advanced: Advanced Features. (line 6) * gawk, field separators and: User-modified. (line 71) @@ -32579,7 +32622,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. @@ -32610,7 +32653,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. @@ -32618,18 +32661,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 302) +* gawk, versions of, information about, printing: Options. (line 300) * gawk, VMS version of: VMS Installation. (line 6) * gawk, word-boundary operator: GNU Regexp Operators. (line 63) @@ -32711,7 +32754,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. @@ -32812,7 +32855,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) @@ -32941,7 +32984,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 341) + (line 339) * lint checking, undefined functions: Pass By Value/Reference. (line 88) * LINT variable: User-modified. (line 88) @@ -32957,14 +33000,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 272) +* locale decimal point character: Options. (line 270) * 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) @@ -33004,8 +33047,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) @@ -33017,8 +33060,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) @@ -33038,7 +33081,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 262) +* newlines <2>: Options. (line 260) * newlines: Statements/Lines. (line 6) * newlines, as field separators: Default Field Splitting. (line 6) @@ -33067,7 +33110,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. @@ -33076,9 +33119,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. @@ -33192,7 +33235,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) @@ -33234,14 +33277,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. @@ -33259,7 +33302,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 361) +* portability, POSIXLY_CORRECT environment variable: Options. (line 359) * portability, substr() function: String Functions. (line 511) * portable object files <1>: Translator i18n. (line 6) * portable object files: Explaining gettext. (line 37) @@ -33280,7 +33323,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. @@ -33308,11 +33351,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 256) +* POSIX mode: Options. (line 254) * 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 341) +* POSIXLY_CORRECT environment variable: Options. (line 339) * PREC variable: User-modified. (line 123) * precedence <1>: Precedence. (line 6) * precedence: Increment Ops. (line 60) @@ -33355,24 +33398,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 154) -* 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 35) @@ -33416,12 +33459,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) @@ -33491,7 +33534,7 @@ Index (line 59) * regular expressions, gawk, command-line options: GNU Regexp Operators. (line 70) -* regular expressions, interval expressions and: Options. (line 281) +* regular expressions, interval expressions and: Options. (line 279) * regular expressions, leftmost longest match: Leftmost Longest. (line 6) * regular expressions, operators <1>: Regexp Operators. (line 6) @@ -33531,7 +33574,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) @@ -33549,7 +33592,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) @@ -33557,9 +33600,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) @@ -33572,14 +33615,14 @@ Index (line 68) * sample debugging session: Sample Debugging Session. (line 6) -* sandbox mode: Options. (line 288) +* sandbox mode: Options. (line 286) * 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) @@ -33599,7 +33642,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) @@ -33660,14 +33703,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. @@ -33700,8 +33743,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) @@ -33751,10 +33794,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) @@ -33826,9 +33869,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) @@ -33895,7 +33938,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) @@ -33951,7 +33994,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. @@ -34005,10 +34048,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) @@ -34042,7 +34085,7 @@ Index * whitespace, as field separators: Default Field Splitting. (line 6) * whitespace, functions, calling: Calling Built-in. (line 10) -* whitespace, newlines as: Options. (line 262) +* whitespace, newlines as: Options. (line 260) * Williams, Kent: Contributors. (line 34) * Woehlke, Matthew: Contributors. (line 79) * Woods, John: Contributors. (line 27) @@ -34134,517 +34177,517 @@ Node: Intro Summary110420 Node: Invoking Gawk111303 Node: Command Line112818 Node: Options113609 -Ref: Options-Footnote-1129504 -Node: Other Arguments129529 -Node: Naming Standard Input132490 -Node: Environment Variables133583 -Node: AWKPATH Variable134141 -Ref: AWKPATH Variable-Footnote-1136993 -Ref: AWKPATH Variable-Footnote-2137038 -Node: AWKLIBPATH Variable137298 -Node: Other Environment Variables138057 -Node: Exit Status141759 -Node: Include Files142434 -Node: Loading Shared Libraries146012 -Node: Obsolete147439 -Node: Undocumented148136 -Node: Invoking Summary148403 -Node: Regexp150069 -Node: Regexp Usage151528 -Node: Escape Sequences153561 -Node: Regexp Operators159578 -Ref: Regexp Operators-Footnote-1167013 -Ref: Regexp Operators-Footnote-2167160 -Node: Bracket Expressions167258 -Ref: table-char-classes169275 -Node: Leftmost Longest172215 -Node: Computed Regexps173517 -Node: GNU Regexp Operators176914 -Node: Case-sensitivity180620 -Ref: Case-sensitivity-Footnote-1183510 -Ref: Case-sensitivity-Footnote-2183745 -Node: Regexp Summary183853 -Node: Reading Files185322 -Node: Records187414 -Node: awk split records188142 -Node: gawk split records193054 -Ref: gawk split records-Footnote-1197593 -Node: Fields197630 -Ref: Fields-Footnote-1200426 -Node: Nonconstant Fields200512 -Ref: Nonconstant Fields-Footnote-1202742 -Node: Changing Fields202944 -Node: Field Separators208876 -Node: Default Field Splitting211578 -Node: Regexp Field Splitting212695 -Node: Single Character Fields216045 -Node: Command Line Field Separator217104 -Node: Full Line Fields220314 -Ref: Full Line Fields-Footnote-1220822 -Node: Field Splitting Summary220868 -Ref: Field Splitting Summary-Footnote-1223999 -Node: Constant Size224100 -Node: Splitting By Content228706 -Ref: Splitting By Content-Footnote-1232779 -Node: Multiple Line232819 -Ref: Multiple Line-Footnote-1238708 -Node: Getline238887 -Node: Plain Getline241098 -Node: Getline/Variable243738 -Node: Getline/File244885 -Node: Getline/Variable/File246269 -Ref: Getline/Variable/File-Footnote-1247868 -Node: Getline/Pipe247955 -Node: Getline/Variable/Pipe250638 -Node: Getline/Coprocess251767 -Node: Getline/Variable/Coprocess253019 -Node: Getline Notes253756 -Node: Getline Summary256548 -Ref: table-getline-variants256956 -Node: Read Timeout257785 -Ref: Read Timeout-Footnote-1261599 -Node: Command-line directories261657 -Node: Input Summary262561 -Node: Input Exercises265813 -Node: Printing266541 -Node: Print268318 -Node: Print Examples269775 -Node: Output Separators272554 -Node: OFMT274570 -Node: Printf275922 -Node: Basic Printf276707 -Node: Control Letters278278 -Node: Format Modifiers282262 -Node: Printf Examples288269 -Node: Redirection290751 -Node: Special FD297482 -Ref: Special FD-Footnote-1300639 -Node: Special Files300713 -Node: Other Inherited Files301329 -Node: Special Network302329 -Node: Special Caveats303190 -Node: Close Files And Pipes304141 -Ref: Close Files And Pipes-Footnote-1311318 -Ref: Close Files And Pipes-Footnote-2311466 -Node: Output Summary311616 -Node: Output Exercises312612 -Node: Expressions313292 -Node: Values314477 -Node: Constants315153 -Node: Scalar Constants315833 -Ref: Scalar Constants-Footnote-1316692 -Node: Nondecimal-numbers316942 -Node: Regexp Constants319942 -Node: Using Constant Regexps320467 -Node: Variables323605 -Node: Using Variables324260 -Node: Assignment Options326164 -Node: Conversion328039 -Node: Strings And Numbers328563 -Ref: Strings And Numbers-Footnote-1331625 -Node: Locale influences conversions331734 -Ref: table-locale-affects334449 -Node: All Operators335037 -Node: Arithmetic Ops335667 -Node: Concatenation338172 -Ref: Concatenation-Footnote-1340991 -Node: Assignment Ops341097 -Ref: table-assign-ops346080 -Node: Increment Ops347358 -Node: Truth Values and Conditions350796 -Node: Truth Values351879 -Node: Typing and Comparison352928 -Node: Variable Typing353721 -Node: Comparison Operators357373 -Ref: table-relational-ops357783 -Node: POSIX String Comparison361298 -Ref: POSIX String Comparison-Footnote-1362370 -Node: Boolean Ops362508 -Ref: Boolean Ops-Footnote-1366987 -Node: Conditional Exp367078 -Node: Function Calls368805 -Node: Precedence372685 -Node: Locales376353 -Node: Expressions Summary377984 -Node: Patterns and Actions380558 -Node: Pattern Overview381674 -Node: Regexp Patterns383353 -Node: Expression Patterns383896 -Node: Ranges387676 -Node: BEGIN/END390782 -Node: Using BEGIN/END391544 -Ref: Using BEGIN/END-Footnote-1394281 -Node: I/O And BEGIN/END394387 -Node: BEGINFILE/ENDFILE396701 -Node: Empty399602 -Node: Using Shell Variables399919 -Node: Action Overview402195 -Node: Statements404522 -Node: If Statement406370 -Node: While Statement407868 -Node: Do Statement409896 -Node: For Statement411038 -Node: Switch Statement414193 -Node: Break Statement416581 -Node: Continue Statement418622 -Node: Next Statement420447 -Node: Nextfile Statement422827 -Node: Exit Statement425457 -Node: Built-in Variables427860 -Node: User-modified428987 -Ref: User-modified-Footnote-1436667 -Node: Auto-set436729 -Ref: Auto-set-Footnote-1449586 -Ref: Auto-set-Footnote-2449791 -Node: ARGC and ARGV449847 -Node: Pattern Action Summary454051 -Node: Arrays456470 -Node: Array Basics457799 -Node: Array Intro458643 -Ref: figure-array-elements460616 -Ref: Array Intro-Footnote-1463140 -Node: Reference to Elements463268 -Node: Assigning Elements465718 -Node: Array Example466209 -Node: Scanning an Array467967 -Node: Controlling Scanning470983 -Ref: Controlling Scanning-Footnote-1476172 -Node: Numeric Array Subscripts476488 -Node: Uninitialized Subscripts478671 -Node: Delete480288 -Ref: Delete-Footnote-1483032 -Node: Multidimensional483089 -Node: Multiscanning486184 -Node: Arrays of Arrays487773 -Node: Arrays Summary492534 -Node: Functions494639 -Node: Built-in495512 -Node: Calling Built-in496590 -Node: Numeric Functions498578 -Ref: Numeric Functions-Footnote-1502600 -Ref: Numeric Functions-Footnote-2502957 -Ref: Numeric Functions-Footnote-3503005 -Node: String Functions503274 -Ref: String Functions-Footnote-1526734 -Ref: String Functions-Footnote-2526863 -Ref: String Functions-Footnote-3527111 -Node: Gory Details527198 -Ref: table-sub-escapes528979 -Ref: table-sub-proposed530499 -Ref: table-posix-sub531863 -Ref: table-gensub-escapes533403 -Ref: Gory Details-Footnote-1534235 -Node: I/O Functions534386 -Ref: I/O Functions-Footnote-1541487 -Node: Time Functions541634 -Ref: Time Functions-Footnote-1552103 -Ref: Time Functions-Footnote-2552171 -Ref: Time Functions-Footnote-3552329 -Ref: Time Functions-Footnote-4552440 -Ref: Time Functions-Footnote-5552552 -Ref: Time Functions-Footnote-6552779 -Node: Bitwise Functions553045 -Ref: table-bitwise-ops553607 -Ref: Bitwise Functions-Footnote-1557915 -Node: Type Functions558084 -Node: I18N Functions559233 -Node: User-defined560878 -Node: Definition Syntax561682 -Ref: Definition Syntax-Footnote-1567086 -Node: Function Example567155 -Ref: Function Example-Footnote-1570072 -Node: Function Caveats570094 -Node: Calling A Function570612 -Node: Variable Scope571567 -Node: Pass By Value/Reference574555 -Node: Return Statement578065 -Node: Dynamic Typing581049 -Node: Indirect Calls581978 -Ref: Indirect Calls-Footnote-1591699 -Node: Functions Summary591827 -Node: Library Functions594526 -Ref: Library Functions-Footnote-1598144 -Ref: Library Functions-Footnote-2598287 -Node: Library Names598458 -Ref: Library Names-Footnote-1601916 -Ref: Library Names-Footnote-2602136 -Node: General Functions602222 -Node: Strtonum Function603250 -Node: Assert Function606270 -Node: Round Function609594 -Node: Cliff Random Function611135 -Node: Ordinal Functions612151 -Ref: Ordinal Functions-Footnote-1615216 -Ref: Ordinal Functions-Footnote-2615468 -Node: Join Function615679 -Ref: Join Function-Footnote-1617450 -Node: Getlocaltime Function617650 -Node: Readfile Function621391 -Node: Data File Management623339 -Node: Filetrans Function623971 -Node: Rewind Function628030 -Node: File Checking629415 -Ref: File Checking-Footnote-1630743 -Node: Empty Files630944 -Node: Ignoring Assigns632923 -Node: Getopt Function634474 -Ref: Getopt Function-Footnote-1645934 -Node: Passwd Functions646137 -Ref: Passwd Functions-Footnote-1654988 -Node: Group Functions655076 -Ref: Group Functions-Footnote-1662979 -Node: Walking Arrays663192 -Node: Library Functions Summary664795 -Node: Library Exercises666196 -Node: Sample Programs667476 -Node: Running Examples668246 -Node: Clones668974 -Node: Cut Program670198 -Node: Egrep Program679928 -Ref: Egrep Program-Footnote-1687430 -Node: Id Program687540 -Node: Split Program691184 -Ref: Split Program-Footnote-1694630 -Node: Tee Program694758 -Node: Uniq Program697545 -Node: Wc Program704966 -Ref: Wc Program-Footnote-1709214 -Node: Miscellaneous Programs709306 -Node: Dupword Program710519 -Node: Alarm Program712550 -Node: Translate Program717354 -Ref: Translate Program-Footnote-1721927 -Ref: Translate Program-Footnote-2722197 -Node: Labels Program722336 -Ref: Labels Program-Footnote-1725685 -Node: Word Sorting725769 -Node: History Sorting729839 -Node: Extract Program731675 -Node: Simple Sed739207 -Node: Igawk Program742269 -Ref: Igawk Program-Footnote-1756595 -Ref: Igawk Program-Footnote-2756796 -Ref: Igawk Program-Footnote-3756918 -Node: Anagram Program757033 -Node: Signature Program760095 -Node: Programs Summary761342 -Node: Programs Exercises762535 -Ref: Programs Exercises-Footnote-1766666 -Node: Advanced Features766757 -Node: Nondecimal Data768705 -Node: Array Sorting770295 -Node: Controlling Array Traversal770992 -Ref: Controlling Array Traversal-Footnote-1779323 -Node: Array Sorting Functions779441 -Ref: Array Sorting Functions-Footnote-1783333 -Node: Two-way I/O783527 -Ref: Two-way I/O-Footnote-1788471 -Ref: Two-way I/O-Footnote-2788657 -Node: TCP/IP Networking788739 -Node: Profiling791580 -Node: Advanced Features Summary799122 -Node: Internationalization800983 -Node: I18N and L10N802463 -Node: Explaining gettext803149 -Ref: Explaining gettext-Footnote-1808175 -Ref: Explaining gettext-Footnote-2808359 -Node: Programmer i18n808524 -Ref: Programmer i18n-Footnote-1813318 -Node: Translator i18n813367 -Node: String Extraction814161 -Ref: String Extraction-Footnote-1815294 -Node: Printf Ordering815380 -Ref: Printf Ordering-Footnote-1818162 -Node: I18N Portability818226 -Ref: I18N Portability-Footnote-1820675 -Node: I18N Example820738 -Ref: I18N Example-Footnote-1823444 -Node: Gawk I18N823516 -Node: I18N Summary824154 -Node: Debugger825493 -Node: Debugging826515 -Node: Debugging Concepts826956 -Node: Debugging Terms828812 -Node: Awk Debugging831409 -Node: Sample Debugging Session832301 -Node: Debugger Invocation832821 -Node: Finding The Bug834157 -Node: List of Debugger Commands840636 -Node: Breakpoint Control841968 -Node: Debugger Execution Control845632 -Node: Viewing And Changing Data848992 -Node: Execution Stack852350 -Node: Debugger Info853863 -Node: Miscellaneous Debugger Commands857857 -Node: Readline Support863041 -Node: Limitations863933 -Node: Debugging Summary866206 -Node: Arbitrary Precision Arithmetic867374 -Node: Computer Arithmetic868861 -Ref: Computer Arithmetic-Footnote-1873248 -Node: Math Definitions873305 -Ref: table-ieee-formats876594 -Ref: Math Definitions-Footnote-1877134 -Node: MPFR features877237 -Node: FP Math Caution878854 -Ref: FP Math Caution-Footnote-1879904 -Node: Inexactness of computations880273 -Node: Inexact representation881221 -Node: Comparing FP Values882576 -Node: Errors accumulate883540 -Node: Getting Accuracy884973 -Node: Try To Round887632 -Node: Setting precision888531 -Ref: table-predefined-precision-strings889213 -Node: Setting the rounding mode891006 -Ref: table-gawk-rounding-modes891370 -Ref: Setting the rounding mode-Footnote-1894824 -Node: Arbitrary Precision Integers895003 -Ref: Arbitrary Precision Integers-Footnote-1897984 -Node: POSIX Floating Point Problems898133 -Ref: POSIX Floating Point Problems-Footnote-1902009 -Node: Floating point summary902047 -Node: Dynamic Extensions904251 -Node: Extension Intro905803 -Node: Plugin License907068 -Node: Extension Mechanism Outline907753 -Ref: figure-load-extension908177 -Ref: figure-load-new-function909662 -Ref: figure-call-new-function910664 -Node: Extension API Description912648 -Node: Extension API Functions Introduction914098 -Node: General Data Types918965 -Ref: General Data Types-Footnote-1924658 -Node: Requesting Values924957 -Ref: table-value-types-returned925694 -Node: Memory Allocation Functions926652 -Ref: Memory Allocation Functions-Footnote-1929399 -Node: Constructor Functions929495 -Node: Registration Functions931253 -Node: Extension Functions931938 -Node: Exit Callback Functions934240 -Node: Extension Version String935488 -Node: Input Parsers936138 -Node: Output Wrappers945952 -Node: Two-way processors950468 -Node: Printing Messages952672 -Ref: Printing Messages-Footnote-1953749 -Node: Updating `ERRNO'953901 -Node: Accessing Parameters954640 -Node: Symbol Table Access955870 -Node: Symbol table by name956384 -Node: Symbol table by cookie958360 -Ref: Symbol table by cookie-Footnote-1962493 -Node: Cached values962556 -Ref: Cached values-Footnote-1966060 -Node: Array Manipulation966151 -Ref: Array Manipulation-Footnote-1967249 -Node: Array Data Types967288 -Ref: Array Data Types-Footnote-1969991 -Node: Array Functions970083 -Node: Flattening Arrays973957 -Node: Creating Arrays980809 -Node: Extension API Variables985540 -Node: Extension Versioning986176 -Node: Extension API Informational Variables988077 -Node: Extension API Boilerplate989163 -Node: Finding Extensions992967 -Node: Extension Example993527 -Node: Internal File Description994257 -Node: Internal File Ops998348 -Ref: Internal File Ops-Footnote-11009780 -Node: Using Internal File Ops1009920 -Ref: Using Internal File Ops-Footnote-11012267 -Node: Extension Samples1012535 -Node: Extension Sample File Functions1014059 -Node: Extension Sample Fnmatch1021627 -Node: Extension Sample Fork1023109 -Node: Extension Sample Inplace1024322 -Node: Extension Sample Ord1025997 -Node: Extension Sample Readdir1026833 -Ref: table-readdir-file-types1027689 -Node: Extension Sample Revout1028488 -Node: Extension Sample Rev2way1029079 -Node: Extension Sample Read write array1029820 -Node: Extension Sample Readfile1031699 -Node: Extension Sample API Tests1032799 -Node: Extension Sample Time1033324 -Node: gawkextlib1034639 -Node: Extension summary1037452 -Node: Extension Exercises1041145 -Node: Language History1041867 -Node: V7/SVR3.11043510 -Node: SVR41045830 -Node: POSIX1047272 -Node: BTL1048658 -Node: POSIX/GNU1049392 -Node: Feature History1055108 -Node: Common Extensions1068199 -Node: Ranges and Locales1069511 -Ref: Ranges and Locales-Footnote-11074128 -Ref: Ranges and Locales-Footnote-21074155 -Ref: Ranges and Locales-Footnote-31074389 -Node: Contributors1074610 -Node: History summary1080035 -Node: Installation1081404 -Node: Gawk Distribution1082355 -Node: Getting1082839 -Node: Extracting1083663 -Node: Distribution contents1085305 -Node: Unix Installation1091022 -Node: Quick Installation1091639 -Node: Additional Configuration Options1094081 -Node: Configuration Philosophy1095819 -Node: Non-Unix Installation1098170 -Node: PC Installation1098628 -Node: PC Binary Installation1099939 -Node: PC Compiling1101787 -Ref: PC Compiling-Footnote-11104786 -Node: PC Testing1104891 -Node: PC Using1106067 -Node: Cygwin1110219 -Node: MSYS1111028 -Node: VMS Installation1111526 -Node: VMS Compilation1112322 -Ref: VMS Compilation-Footnote-11113544 -Node: VMS Dynamic Extensions1113602 -Node: VMS Installation Details1114975 -Node: VMS Running1117227 -Node: VMS GNV1120061 -Node: VMS Old Gawk1120784 -Node: Bugs1121254 -Node: Other Versions1125258 -Node: Installation summary1131482 -Node: Notes1132538 -Node: Compatibility Mode1133403 -Node: Additions1134185 -Node: Accessing The Source1135110 -Node: Adding Code1136546 -Node: New Ports1142724 -Node: Derived Files1147205 -Ref: Derived Files-Footnote-11152680 -Ref: Derived Files-Footnote-21152714 -Ref: Derived Files-Footnote-31153310 -Node: Future Extensions1153424 -Node: Implementation Limitations1154030 -Node: Extension Design1155278 -Node: Old Extension Problems1156432 -Ref: Old Extension Problems-Footnote-11157949 -Node: Extension New Mechanism Goals1158006 -Ref: Extension New Mechanism Goals-Footnote-11161366 -Node: Extension Other Design Decisions1161555 -Node: Extension Future Growth1163661 -Node: Old Extension Mechanism1164497 -Node: Notes summary1166259 -Node: Basic Concepts1167445 -Node: Basic High Level1168126 -Ref: figure-general-flow1168398 -Ref: figure-process-flow1168997 -Ref: Basic High Level-Footnote-11172226 -Node: Basic Data Typing1172411 -Node: Glossary1175739 -Node: Copying1200891 -Node: GNU Free Documentation License1238447 -Node: Index1263583 +Ref: Options-Footnote-1129375 +Node: Other Arguments129400 +Node: Naming Standard Input132361 +Node: Environment Variables133454 +Node: AWKPATH Variable134012 +Ref: AWKPATH Variable-Footnote-1136864 +Ref: AWKPATH Variable-Footnote-2136909 +Node: AWKLIBPATH Variable137169 +Node: Other Environment Variables137928 +Node: Exit Status141401 +Node: Include Files142076 +Node: Loading Shared Libraries145654 +Node: Obsolete147081 +Node: Undocumented147778 +Node: Invoking Summary148045 +Node: Regexp149711 +Node: Regexp Usage151170 +Node: Escape Sequences153203 +Node: Regexp Operators159303 +Ref: Regexp Operators-Footnote-1166738 +Ref: Regexp Operators-Footnote-2166885 +Node: Bracket Expressions166983 +Ref: table-char-classes169000 +Node: Leftmost Longest171940 +Node: Computed Regexps173242 +Node: GNU Regexp Operators176639 +Node: Case-sensitivity180345 +Ref: Case-sensitivity-Footnote-1183235 +Ref: Case-sensitivity-Footnote-2183470 +Node: Regexp Summary183578 +Node: Reading Files185047 +Node: Records187139 +Node: awk split records187867 +Node: gawk split records192779 +Ref: gawk split records-Footnote-1197318 +Node: Fields197355 +Ref: Fields-Footnote-1200151 +Node: Nonconstant Fields200237 +Ref: Nonconstant Fields-Footnote-1202467 +Node: Changing Fields202669 +Node: Field Separators208601 +Node: Default Field Splitting211303 +Node: Regexp Field Splitting212420 +Node: Single Character Fields215770 +Node: Command Line Field Separator216829 +Node: Full Line Fields220039 +Ref: Full Line Fields-Footnote-1220547 +Node: Field Splitting Summary220593 +Ref: Field Splitting Summary-Footnote-1223724 +Node: Constant Size223825 +Node: Splitting By Content228431 +Ref: Splitting By Content-Footnote-1232504 +Node: Multiple Line232544 +Ref: Multiple Line-Footnote-1238433 +Node: Getline238612 +Node: Plain Getline240823 +Node: Getline/Variable243463 +Node: Getline/File244610 +Node: Getline/Variable/File245994 +Ref: Getline/Variable/File-Footnote-1247593 +Node: Getline/Pipe247680 +Node: Getline/Variable/Pipe250363 +Node: Getline/Coprocess251492 +Node: Getline/Variable/Coprocess252744 +Node: Getline Notes253481 +Node: Getline Summary256273 +Ref: table-getline-variants256681 +Node: Read Timeout257510 +Ref: Read Timeout-Footnote-1261324 +Node: Command-line directories261382 +Node: Input Summary262286 +Node: Input Exercises265538 +Node: Printing266266 +Node: Print268043 +Node: Print Examples269500 +Node: Output Separators272279 +Node: OFMT274295 +Node: Printf275647 +Node: Basic Printf276432 +Node: Control Letters278003 +Node: Format Modifiers281987 +Node: Printf Examples287994 +Node: Redirection290476 +Node: Special FD297207 +Ref: Special FD-Footnote-1300364 +Node: Special Files300438 +Node: Other Inherited Files301054 +Node: Special Network302054 +Node: Special Caveats302915 +Node: Close Files And Pipes303866 +Ref: Close Files And Pipes-Footnote-1311043 +Ref: Close Files And Pipes-Footnote-2311191 +Node: Output Summary311341 +Node: Output Exercises312337 +Node: Expressions313017 +Node: Values314202 +Node: Constants314878 +Node: Scalar Constants315558 +Ref: Scalar Constants-Footnote-1316417 +Node: Nondecimal-numbers316667 +Node: Regexp Constants319667 +Node: Using Constant Regexps320192 +Node: Variables323330 +Node: Using Variables323985 +Node: Assignment Options325889 +Node: Conversion327764 +Node: Strings And Numbers328288 +Ref: Strings And Numbers-Footnote-1331350 +Node: Locale influences conversions331459 +Ref: table-locale-affects334174 +Node: All Operators334762 +Node: Arithmetic Ops335392 +Node: Concatenation337897 +Ref: Concatenation-Footnote-1340716 +Node: Assignment Ops340822 +Ref: table-assign-ops345805 +Node: Increment Ops347083 +Node: Truth Values and Conditions350521 +Node: Truth Values351604 +Node: Typing and Comparison352653 +Node: Variable Typing353446 +Node: Comparison Operators357098 +Ref: table-relational-ops357508 +Node: POSIX String Comparison361023 +Ref: POSIX String Comparison-Footnote-1362095 +Node: Boolean Ops362233 +Ref: Boolean Ops-Footnote-1366712 +Node: Conditional Exp366803 +Node: Function Calls368530 +Node: Precedence372410 +Node: Locales376078 +Node: Expressions Summary377709 +Node: Patterns and Actions380283 +Node: Pattern Overview381399 +Node: Regexp Patterns383078 +Node: Expression Patterns383621 +Node: Ranges387401 +Node: BEGIN/END390507 +Node: Using BEGIN/END391269 +Ref: Using BEGIN/END-Footnote-1394006 +Node: I/O And BEGIN/END394112 +Node: BEGINFILE/ENDFILE396426 +Node: Empty399327 +Node: Using Shell Variables399644 +Node: Action Overview401920 +Node: Statements404247 +Node: If Statement406095 +Node: While Statement407593 +Node: Do Statement409621 +Node: For Statement410763 +Node: Switch Statement413918 +Node: Break Statement416306 +Node: Continue Statement418347 +Node: Next Statement420172 +Node: Nextfile Statement422552 +Node: Exit Statement425182 +Node: Built-in Variables427585 +Node: User-modified428712 +Ref: User-modified-Footnote-1436392 +Node: Auto-set436454 +Ref: Auto-set-Footnote-1449648 +Ref: Auto-set-Footnote-2449853 +Node: ARGC and ARGV449909 +Node: Pattern Action Summary454113 +Node: Arrays456532 +Node: Array Basics457861 +Node: Array Intro458705 +Ref: figure-array-elements460678 +Ref: Array Intro-Footnote-1463202 +Node: Reference to Elements463330 +Node: Assigning Elements465780 +Node: Array Example466271 +Node: Scanning an Array468029 +Node: Controlling Scanning471045 +Ref: Controlling Scanning-Footnote-1476234 +Node: Numeric Array Subscripts476550 +Node: Uninitialized Subscripts478733 +Node: Delete480350 +Ref: Delete-Footnote-1483094 +Node: Multidimensional483151 +Node: Multiscanning486246 +Node: Arrays of Arrays487835 +Node: Arrays Summary492596 +Node: Functions494701 +Node: Built-in495574 +Node: Calling Built-in496652 +Node: Numeric Functions498640 +Ref: Numeric Functions-Footnote-1503464 +Ref: Numeric Functions-Footnote-2503821 +Ref: Numeric Functions-Footnote-3503869 +Node: String Functions504138 +Ref: String Functions-Footnote-1527598 +Ref: String Functions-Footnote-2527727 +Ref: String Functions-Footnote-3527975 +Node: Gory Details528062 +Ref: table-sub-escapes529843 +Ref: table-sub-proposed531363 +Ref: table-posix-sub532727 +Ref: table-gensub-escapes534267 +Ref: Gory Details-Footnote-1535099 +Node: I/O Functions535250 +Ref: I/O Functions-Footnote-1542351 +Node: Time Functions542498 +Ref: Time Functions-Footnote-1552967 +Ref: Time Functions-Footnote-2553035 +Ref: Time Functions-Footnote-3553193 +Ref: Time Functions-Footnote-4553304 +Ref: Time Functions-Footnote-5553416 +Ref: Time Functions-Footnote-6553643 +Node: Bitwise Functions553909 +Ref: table-bitwise-ops554471 +Ref: Bitwise Functions-Footnote-1558779 +Node: Type Functions558948 +Node: I18N Functions560097 +Node: User-defined561742 +Node: Definition Syntax562546 +Ref: Definition Syntax-Footnote-1567950 +Node: Function Example568019 +Ref: Function Example-Footnote-1570936 +Node: Function Caveats570958 +Node: Calling A Function571476 +Node: Variable Scope572431 +Node: Pass By Value/Reference575419 +Node: Return Statement578929 +Node: Dynamic Typing581913 +Node: Indirect Calls582842 +Ref: Indirect Calls-Footnote-1592563 +Node: Functions Summary592691 +Node: Library Functions595390 +Ref: Library Functions-Footnote-1599008 +Ref: Library Functions-Footnote-2599151 +Node: Library Names599322 +Ref: Library Names-Footnote-1602780 +Ref: Library Names-Footnote-2603000 +Node: General Functions603086 +Node: Strtonum Function604114 +Node: Assert Function607134 +Node: Round Function610458 +Node: Cliff Random Function611999 +Node: Ordinal Functions613015 +Ref: Ordinal Functions-Footnote-1616080 +Ref: Ordinal Functions-Footnote-2616332 +Node: Join Function616543 +Ref: Join Function-Footnote-1618314 +Node: Getlocaltime Function618514 +Node: Readfile Function622255 +Node: Data File Management624203 +Node: Filetrans Function624835 +Node: Rewind Function628894 +Node: File Checking630279 +Ref: File Checking-Footnote-1631607 +Node: Empty Files631808 +Node: Ignoring Assigns633787 +Node: Getopt Function635338 +Ref: Getopt Function-Footnote-1646798 +Node: Passwd Functions647001 +Ref: Passwd Functions-Footnote-1655852 +Node: Group Functions655940 +Ref: Group Functions-Footnote-1663843 +Node: Walking Arrays664056 +Node: Library Functions Summary665659 +Node: Library Exercises667060 +Node: Sample Programs668340 +Node: Running Examples669110 +Node: Clones669838 +Node: Cut Program671062 +Node: Egrep Program680792 +Ref: Egrep Program-Footnote-1688294 +Node: Id Program688404 +Node: Split Program692048 +Ref: Split Program-Footnote-1695494 +Node: Tee Program695622 +Node: Uniq Program698409 +Node: Wc Program705830 +Ref: Wc Program-Footnote-1710078 +Node: Miscellaneous Programs710170 +Node: Dupword Program711383 +Node: Alarm Program713414 +Node: Translate Program718218 +Ref: Translate Program-Footnote-1722791 +Ref: Translate Program-Footnote-2723061 +Node: Labels Program723200 +Ref: Labels Program-Footnote-1726549 +Node: Word Sorting726633 +Node: History Sorting730703 +Node: Extract Program732539 +Node: Simple Sed740071 +Node: Igawk Program743133 +Ref: Igawk Program-Footnote-1757459 +Ref: Igawk Program-Footnote-2757660 +Ref: Igawk Program-Footnote-3757782 +Node: Anagram Program757897 +Node: Signature Program760959 +Node: Programs Summary762206 +Node: Programs Exercises763399 +Ref: Programs Exercises-Footnote-1767530 +Node: Advanced Features767621 +Node: Nondecimal Data769569 +Node: Array Sorting771159 +Node: Controlling Array Traversal771856 +Ref: Controlling Array Traversal-Footnote-1780187 +Node: Array Sorting Functions780305 +Ref: Array Sorting Functions-Footnote-1784197 +Node: Two-way I/O784391 +Ref: Two-way I/O-Footnote-1789335 +Ref: Two-way I/O-Footnote-2789521 +Node: TCP/IP Networking789603 +Node: Profiling792444 +Node: Advanced Features Summary799995 +Node: Internationalization801856 +Node: I18N and L10N803336 +Node: Explaining gettext804022 +Ref: Explaining gettext-Footnote-1809048 +Ref: Explaining gettext-Footnote-2809232 +Node: Programmer i18n809397 +Ref: Programmer i18n-Footnote-1814191 +Node: Translator i18n814240 +Node: String Extraction815034 +Ref: String Extraction-Footnote-1816167 +Node: Printf Ordering816253 +Ref: Printf Ordering-Footnote-1819035 +Node: I18N Portability819099 +Ref: I18N Portability-Footnote-1821548 +Node: I18N Example821611 +Ref: I18N Example-Footnote-1824317 +Node: Gawk I18N824389 +Node: I18N Summary825027 +Node: Debugger826366 +Node: Debugging827388 +Node: Debugging Concepts827829 +Node: Debugging Terms829685 +Node: Awk Debugging832282 +Node: Sample Debugging Session833174 +Node: Debugger Invocation833694 +Node: Finding The Bug835030 +Node: List of Debugger Commands841509 +Node: Breakpoint Control842841 +Node: Debugger Execution Control846505 +Node: Viewing And Changing Data849865 +Node: Execution Stack853223 +Node: Debugger Info854736 +Node: Miscellaneous Debugger Commands858730 +Node: Readline Support863914 +Node: Limitations864806 +Node: Debugging Summary867079 +Node: Arbitrary Precision Arithmetic868247 +Node: Computer Arithmetic869734 +Ref: Computer Arithmetic-Footnote-1874121 +Node: Math Definitions874178 +Ref: table-ieee-formats877467 +Ref: Math Definitions-Footnote-1878007 +Node: MPFR features878110 +Node: FP Math Caution879727 +Ref: FP Math Caution-Footnote-1880777 +Node: Inexactness of computations881146 +Node: Inexact representation882094 +Node: Comparing FP Values883449 +Node: Errors accumulate884413 +Node: Getting Accuracy885846 +Node: Try To Round888505 +Node: Setting precision889404 +Ref: table-predefined-precision-strings890086 +Node: Setting the rounding mode891879 +Ref: table-gawk-rounding-modes892243 +Ref: Setting the rounding mode-Footnote-1895697 +Node: Arbitrary Precision Integers895876 +Ref: Arbitrary Precision Integers-Footnote-1899649 +Node: POSIX Floating Point Problems899798 +Ref: POSIX Floating Point Problems-Footnote-1903674 +Node: Floating point summary903712 +Node: Dynamic Extensions905916 +Node: Extension Intro907468 +Node: Plugin License908733 +Node: Extension Mechanism Outline909418 +Ref: figure-load-extension909842 +Ref: figure-load-new-function911327 +Ref: figure-call-new-function912329 +Node: Extension API Description914313 +Node: Extension API Functions Introduction915763 +Node: General Data Types920630 +Ref: General Data Types-Footnote-1926323 +Node: Requesting Values926622 +Ref: table-value-types-returned927359 +Node: Memory Allocation Functions928317 +Ref: Memory Allocation Functions-Footnote-1931064 +Node: Constructor Functions931160 +Node: Registration Functions932918 +Node: Extension Functions933603 +Node: Exit Callback Functions935905 +Node: Extension Version String937153 +Node: Input Parsers937803 +Node: Output Wrappers947617 +Node: Two-way processors952133 +Node: Printing Messages954337 +Ref: Printing Messages-Footnote-1955414 +Node: Updating `ERRNO'955566 +Node: Accessing Parameters956305 +Node: Symbol Table Access957535 +Node: Symbol table by name958049 +Node: Symbol table by cookie960025 +Ref: Symbol table by cookie-Footnote-1964158 +Node: Cached values964221 +Ref: Cached values-Footnote-1967725 +Node: Array Manipulation967816 +Ref: Array Manipulation-Footnote-1968914 +Node: Array Data Types968953 +Ref: Array Data Types-Footnote-1971656 +Node: Array Functions971748 +Node: Flattening Arrays975622 +Node: Creating Arrays982474 +Node: Extension API Variables987205 +Node: Extension Versioning987841 +Node: Extension API Informational Variables989742 +Node: Extension API Boilerplate990828 +Node: Finding Extensions994632 +Node: Extension Example995192 +Node: Internal File Description995922 +Node: Internal File Ops1000013 +Ref: Internal File Ops-Footnote-11011445 +Node: Using Internal File Ops1011585 +Ref: Using Internal File Ops-Footnote-11013932 +Node: Extension Samples1014200 +Node: Extension Sample File Functions1015724 +Node: Extension Sample Fnmatch1023292 +Node: Extension Sample Fork1024774 +Node: Extension Sample Inplace1025987 +Node: Extension Sample Ord1027662 +Node: Extension Sample Readdir1028498 +Ref: table-readdir-file-types1029354 +Node: Extension Sample Revout1030153 +Node: Extension Sample Rev2way1030744 +Node: Extension Sample Read write array1031485 +Node: Extension Sample Readfile1033364 +Node: Extension Sample API Tests1034464 +Node: Extension Sample Time1034989 +Node: gawkextlib1036304 +Node: Extension summary1039117 +Node: Extension Exercises1042810 +Node: Language History1043532 +Node: V7/SVR3.11045175 +Node: SVR41047495 +Node: POSIX1048937 +Node: BTL1050323 +Node: POSIX/GNU1051057 +Node: Feature History1056833 +Node: Common Extensions1069924 +Node: Ranges and Locales1071236 +Ref: Ranges and Locales-Footnote-11075853 +Ref: Ranges and Locales-Footnote-21075880 +Ref: Ranges and Locales-Footnote-31076114 +Node: Contributors1076335 +Node: History summary1081760 +Node: Installation1083129 +Node: Gawk Distribution1084080 +Node: Getting1084564 +Node: Extracting1085388 +Node: Distribution contents1087030 +Node: Unix Installation1092800 +Node: Quick Installation1093417 +Node: Additional Configuration Options1095859 +Node: Configuration Philosophy1097597 +Node: Non-Unix Installation1099948 +Node: PC Installation1100406 +Node: PC Binary Installation1101717 +Node: PC Compiling1103565 +Ref: PC Compiling-Footnote-11106564 +Node: PC Testing1106669 +Node: PC Using1107845 +Node: Cygwin1111997 +Node: MSYS1112806 +Node: VMS Installation1113304 +Node: VMS Compilation1114100 +Ref: VMS Compilation-Footnote-11115322 +Node: VMS Dynamic Extensions1115380 +Node: VMS Installation Details1116753 +Node: VMS Running1119005 +Node: VMS GNV1121839 +Node: VMS Old Gawk1122562 +Node: Bugs1123032 +Node: Other Versions1127036 +Node: Installation summary1133260 +Node: Notes1134316 +Node: Compatibility Mode1135181 +Node: Additions1135963 +Node: Accessing The Source1136888 +Node: Adding Code1138324 +Node: New Ports1144502 +Node: Derived Files1148983 +Ref: Derived Files-Footnote-11154458 +Ref: Derived Files-Footnote-21154492 +Ref: Derived Files-Footnote-31155088 +Node: Future Extensions1155202 +Node: Implementation Limitations1155808 +Node: Extension Design1157056 +Node: Old Extension Problems1158210 +Ref: Old Extension Problems-Footnote-11159727 +Node: Extension New Mechanism Goals1159784 +Ref: Extension New Mechanism Goals-Footnote-11163144 +Node: Extension Other Design Decisions1163333 +Node: Extension Future Growth1165439 +Node: Old Extension Mechanism1166275 +Node: Notes summary1168037 +Node: Basic Concepts1169223 +Node: Basic High Level1169904 +Ref: figure-general-flow1170176 +Ref: figure-process-flow1170775 +Ref: Basic High Level-Footnote-11174004 +Node: Basic Data Typing1174189 +Node: Glossary1177517 +Node: Copying1202669 +Node: GNU Free Documentation License1240225 +Node: Index1265361 End Tag Table |