aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.info
diff options
context:
space:
mode:
Diffstat (limited to 'doc/gawk.info')
-rw-r--r--doc/gawk.info1355
1 files changed, 699 insertions, 656 deletions
diff --git a/doc/gawk.info b/doc/gawk.info
index 6c46bb79..dfa21a7b 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -2587,10 +2587,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'
@@ -2979,13 +2977,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.
@@ -3377,15 +3368,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
@@ -10258,10 +10251,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
@@ -11806,6 +11807,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
@@ -19856,8 +19872,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
@@ -22342,6 +22358,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
@@ -26366,6 +26405,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
@@ -27268,7 +27309,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
@@ -27310,11 +27353,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
@@ -31261,20 +31303,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)
@@ -31282,9 +31324,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)
@@ -31292,32 +31334,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)
@@ -31379,10 +31421,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.
@@ -31422,7 +31464,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)
@@ -31590,7 +31632,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)
@@ -31648,10 +31690,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.
@@ -31691,7 +31733,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)
@@ -31796,7 +31838,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)
@@ -31990,7 +32032,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)
@@ -32021,13 +32063,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)
@@ -32175,7 +32217,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 72)
@@ -32214,12 +32256,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)
@@ -32242,7 +32284,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)
@@ -32252,7 +32294,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.
@@ -32260,7 +32302,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.
@@ -32276,6 +32318,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)
@@ -32299,8 +32342,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)
@@ -32355,13 +32398,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)
@@ -32394,10 +32437,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 31)
-* 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)
@@ -32415,7 +32458,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)
@@ -32497,7 +32540,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)
@@ -32565,9 +32608,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.
@@ -32604,7 +32647,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.
@@ -32617,7 +32660,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)
@@ -32667,7 +32710,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)
@@ -32685,13 +32728,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)
@@ -32702,7 +32745,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.
@@ -32734,7 +32777,7 @@ Index
* gawk, predefined variables and: Built-in Variables. (line 14)
* 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.
@@ -32742,18 +32785,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)
@@ -32835,7 +32878,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.
@@ -32936,7 +32979,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)
@@ -33065,7 +33108,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)
@@ -33081,14 +33124,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)
@@ -33129,8 +33172,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)
@@ -33142,8 +33185,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)
@@ -33163,7 +33206,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)
@@ -33192,7 +33235,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.
@@ -33201,9 +33244,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.
@@ -33317,7 +33360,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)
@@ -33359,14 +33402,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.
@@ -33384,7 +33427,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)
@@ -33405,7 +33448,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.
@@ -33433,11 +33476,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)
@@ -33484,24 +33527,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)
@@ -33545,12 +33588,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)
@@ -33620,7 +33663,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)
@@ -33660,7 +33703,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 72)
@@ -33678,7 +33721,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)
@@ -33686,9 +33729,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)
@@ -33701,14 +33744,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)
@@ -33728,7 +33771,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)
@@ -33789,14 +33832,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.
@@ -33829,8 +33872,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)
@@ -33880,10 +33923,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)
@@ -33955,9 +33998,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)
@@ -34024,7 +34067,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)
@@ -34080,7 +34123,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.
@@ -34134,10 +34177,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)
@@ -34174,7 +34217,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)
@@ -34266,518 +34309,518 @@ Node: Intro Summary110547
Node: Invoking Gawk111430
Node: Command Line112945
Node: Options113736
-Ref: Options-Footnote-1129631
-Node: Other Arguments129656
-Node: Naming Standard Input132617
-Node: Environment Variables133710
-Node: AWKPATH Variable134268
-Ref: AWKPATH Variable-Footnote-1137120
-Ref: AWKPATH Variable-Footnote-2137165
-Node: AWKLIBPATH Variable137425
-Node: Other Environment Variables138184
-Node: Exit Status141886
-Node: Include Files142561
-Node: Loading Shared Libraries146139
-Node: Obsolete147566
-Node: Undocumented148263
-Node: Invoking Summary148530
-Node: Regexp150196
-Node: Regexp Usage151655
-Node: Escape Sequences153688
-Node: Regexp Operators159705
-Ref: Regexp Operators-Footnote-1167140
-Ref: Regexp Operators-Footnote-2167287
-Node: Bracket Expressions167385
-Ref: table-char-classes169402
-Node: Leftmost Longest172342
-Node: Computed Regexps173644
-Node: GNU Regexp Operators177041
-Node: Case-sensitivity180747
-Ref: Case-sensitivity-Footnote-1183637
-Ref: Case-sensitivity-Footnote-2183872
-Node: Regexp Summary183980
-Node: Reading Files185449
-Node: Records187543
-Node: awk split records188275
-Node: gawk split records193189
-Ref: gawk split records-Footnote-1197728
-Node: Fields197765
-Ref: Fields-Footnote-1200563
-Node: Nonconstant Fields200649
-Ref: Nonconstant Fields-Footnote-1202879
-Node: Changing Fields203081
-Node: Field Separators209013
-Node: Default Field Splitting211717
-Node: Regexp Field Splitting212834
-Node: Single Character Fields216184
-Node: Command Line Field Separator217243
-Node: Full Line Fields220455
-Ref: Full Line Fields-Footnote-1220963
-Node: Field Splitting Summary221009
-Ref: Field Splitting Summary-Footnote-1224140
-Node: Constant Size224241
-Node: Splitting By Content228847
-Ref: Splitting By Content-Footnote-1232920
-Node: Multiple Line232960
-Ref: Multiple Line-Footnote-1238849
-Node: Getline239028
-Node: Plain Getline241239
-Node: Getline/Variable243879
-Node: Getline/File245026
-Node: Getline/Variable/File246410
-Ref: Getline/Variable/File-Footnote-1248011
-Node: Getline/Pipe248098
-Node: Getline/Variable/Pipe250781
-Node: Getline/Coprocess251912
-Node: Getline/Variable/Coprocess253164
-Node: Getline Notes253903
-Node: Getline Summary256695
-Ref: table-getline-variants257107
-Node: Read Timeout257936
-Ref: Read Timeout-Footnote-1261750
-Node: Command-line directories261808
-Node: Input Summary262712
-Node: Input Exercises265964
-Node: Printing266692
-Node: Print268469
-Node: Print Examples269926
-Node: Output Separators272705
-Node: OFMT274723
-Node: Printf276077
-Node: Basic Printf276862
-Node: Control Letters278433
-Node: Format Modifiers282417
-Node: Printf Examples288424
-Node: Redirection290906
-Node: Special FD297745
-Ref: Special FD-Footnote-1300902
-Node: Special Files300976
-Node: Other Inherited Files301592
-Node: Special Network302592
-Node: Special Caveats303453
-Node: Close Files And Pipes304404
-Ref: Close Files And Pipes-Footnote-1311583
-Ref: Close Files And Pipes-Footnote-2311731
-Node: Output Summary311881
-Node: Output Exercises312877
-Node: Expressions313557
-Node: Values314742
-Node: Constants315418
-Node: Scalar Constants316098
-Ref: Scalar Constants-Footnote-1316957
-Node: Nondecimal-numbers317207
-Node: Regexp Constants320207
-Node: Using Constant Regexps320732
-Node: Variables323870
-Node: Using Variables324525
-Node: Assignment Options326435
-Node: Conversion328310
-Node: Strings And Numbers328834
-Ref: Strings And Numbers-Footnote-1331898
-Node: Locale influences conversions332007
-Ref: table-locale-affects334722
-Node: All Operators335310
-Node: Arithmetic Ops335940
-Node: Concatenation338445
-Ref: Concatenation-Footnote-1341264
-Node: Assignment Ops341370
-Ref: table-assign-ops346353
-Node: Increment Ops347631
-Node: Truth Values and Conditions351069
-Node: Truth Values352152
-Node: Typing and Comparison353201
-Node: Variable Typing353994
-Node: Comparison Operators357646
-Ref: table-relational-ops358056
-Node: POSIX String Comparison361571
-Ref: POSIX String Comparison-Footnote-1362643
-Node: Boolean Ops362781
-Ref: Boolean Ops-Footnote-1367260
-Node: Conditional Exp367351
-Node: Function Calls369078
-Node: Precedence372958
-Node: Locales376626
-Node: Expressions Summary378257
-Node: Patterns and Actions380831
-Node: Pattern Overview381951
-Node: Regexp Patterns383630
-Node: Expression Patterns384173
-Node: Ranges387953
-Node: BEGIN/END391059
-Node: Using BEGIN/END391821
-Ref: Using BEGIN/END-Footnote-1394558
-Node: I/O And BEGIN/END394664
-Node: BEGINFILE/ENDFILE396978
-Node: Empty399879
-Node: Using Shell Variables400196
-Node: Action Overview402472
-Node: Statements404799
-Node: If Statement406647
-Node: While Statement408145
-Node: Do Statement410173
-Node: For Statement411315
-Node: Switch Statement414470
-Node: Break Statement416858
-Node: Continue Statement418899
-Node: Next Statement420724
-Node: Nextfile Statement423104
-Node: Exit Statement425734
-Node: Built-in Variables428137
-Node: User-modified429270
-Ref: User-modified-Footnote-1436950
-Node: Auto-set437012
-Ref: Auto-set-Footnote-1449869
-Ref: Auto-set-Footnote-2450074
-Node: ARGC and ARGV450130
-Node: Pattern Action Summary454334
-Node: Arrays456761
-Node: Array Basics458090
-Node: Array Intro458934
-Ref: figure-array-elements460907
-Ref: Array Intro-Footnote-1463431
-Node: Reference to Elements463559
-Node: Assigning Elements466009
-Node: Array Example466500
-Node: Scanning an Array468258
-Node: Controlling Scanning471274
-Ref: Controlling Scanning-Footnote-1476463
-Node: Numeric Array Subscripts476779
-Node: Uninitialized Subscripts478964
-Node: Delete480581
-Ref: Delete-Footnote-1483325
-Node: Multidimensional483382
-Node: Multiscanning486477
-Node: Arrays of Arrays488066
-Node: Arrays Summary492827
-Node: Functions494932
-Node: Built-in495805
-Node: Calling Built-in496883
-Node: Numeric Functions498871
-Ref: Numeric Functions-Footnote-1502893
-Ref: Numeric Functions-Footnote-2503250
-Ref: Numeric Functions-Footnote-3503298
-Node: String Functions503567
-Ref: String Functions-Footnote-1527031
-Ref: String Functions-Footnote-2527160
-Ref: String Functions-Footnote-3527408
-Node: Gory Details527495
-Ref: table-sub-escapes529276
-Ref: table-sub-proposed530796
-Ref: table-posix-sub532160
-Ref: table-gensub-escapes533700
-Ref: Gory Details-Footnote-1534532
-Node: I/O Functions534683
-Ref: I/O Functions-Footnote-1541784
-Node: Time Functions541931
-Ref: Time Functions-Footnote-1552400
-Ref: Time Functions-Footnote-2552468
-Ref: Time Functions-Footnote-3552626
-Ref: Time Functions-Footnote-4552737
-Ref: Time Functions-Footnote-5552849
-Ref: Time Functions-Footnote-6553076
-Node: Bitwise Functions553342
-Ref: table-bitwise-ops553904
-Ref: Bitwise Functions-Footnote-1558212
-Node: Type Functions558381
-Node: I18N Functions559530
-Node: User-defined561175
-Node: Definition Syntax561979
-Ref: Definition Syntax-Footnote-1567385
-Node: Function Example567454
-Ref: Function Example-Footnote-1570371
-Node: Function Caveats570393
-Node: Calling A Function570911
-Node: Variable Scope571866
-Node: Pass By Value/Reference574854
-Node: Return Statement578364
-Node: Dynamic Typing581348
-Node: Indirect Calls582277
-Ref: Indirect Calls-Footnote-1593581
-Node: Functions Summary593709
-Node: Library Functions596408
-Ref: Library Functions-Footnote-1600026
-Ref: Library Functions-Footnote-2600169
-Node: Library Names600340
-Ref: Library Names-Footnote-1603800
-Ref: Library Names-Footnote-2604020
-Node: General Functions604106
-Node: Strtonum Function605209
-Node: Assert Function608229
-Node: Round Function611553
-Node: Cliff Random Function613094
-Node: Ordinal Functions614110
-Ref: Ordinal Functions-Footnote-1617175
-Ref: Ordinal Functions-Footnote-2617427
-Node: Join Function617638
-Ref: Join Function-Footnote-1619409
-Node: Getlocaltime Function619609
-Node: Readfile Function623350
-Node: Shell Quoting625320
-Node: Data File Management626721
-Node: Filetrans Function627353
-Node: Rewind Function631412
-Node: File Checking632797
-Ref: File Checking-Footnote-1634125
-Node: Empty Files634326
-Node: Ignoring Assigns636305
-Node: Getopt Function637856
-Ref: Getopt Function-Footnote-1649316
-Node: Passwd Functions649519
-Ref: Passwd Functions-Footnote-1658370
-Node: Group Functions658458
-Ref: Group Functions-Footnote-1666361
-Node: Walking Arrays666574
-Node: Library Functions Summary668177
-Node: Library Exercises669578
-Node: Sample Programs670858
-Node: Running Examples671628
-Node: Clones672356
-Node: Cut Program673580
-Node: Egrep Program683310
-Ref: Egrep Program-Footnote-1690814
-Node: Id Program690924
-Node: Split Program694568
-Ref: Split Program-Footnote-1698014
-Node: Tee Program698142
-Node: Uniq Program700929
-Node: Wc Program708350
-Ref: Wc Program-Footnote-1712598
-Node: Miscellaneous Programs712690
-Node: Dupword Program713903
-Node: Alarm Program715934
-Node: Translate Program720738
-Ref: Translate Program-Footnote-1725302
-Node: Labels Program725572
-Ref: Labels Program-Footnote-1728921
-Node: Word Sorting729005
-Node: History Sorting733075
-Node: Extract Program734911
-Node: Simple Sed742443
-Node: Igawk Program745505
-Ref: Igawk Program-Footnote-1759831
-Ref: Igawk Program-Footnote-2760032
-Ref: Igawk Program-Footnote-3760154
-Node: Anagram Program760269
-Node: Signature Program763331
-Node: Programs Summary764578
-Node: Programs Exercises765771
-Ref: Programs Exercises-Footnote-1769902
-Node: Advanced Features769993
-Node: Nondecimal Data771941
-Node: Array Sorting773531
-Node: Controlling Array Traversal774228
-Ref: Controlling Array Traversal-Footnote-1782559
-Node: Array Sorting Functions782677
-Ref: Array Sorting Functions-Footnote-1786569
-Node: Two-way I/O786763
-Ref: Two-way I/O-Footnote-1791707
-Ref: Two-way I/O-Footnote-2791893
-Node: TCP/IP Networking791975
-Node: Profiling794852
-Node: Advanced Features Summary802396
-Node: Internationalization804329
-Node: I18N and L10N805809
-Node: Explaining gettext806495
-Ref: Explaining gettext-Footnote-1811524
-Ref: Explaining gettext-Footnote-2811708
-Node: Programmer i18n811873
-Ref: Programmer i18n-Footnote-1816739
-Node: Translator i18n816788
-Node: String Extraction817582
-Ref: String Extraction-Footnote-1818713
-Node: Printf Ordering818799
-Ref: Printf Ordering-Footnote-1821585
-Node: I18N Portability821649
-Ref: I18N Portability-Footnote-1824098
-Node: I18N Example824161
-Ref: I18N Example-Footnote-1826961
-Node: Gawk I18N827033
-Node: I18N Summary827671
-Node: Debugger829010
-Node: Debugging830032
-Node: Debugging Concepts830473
-Node: Debugging Terms832330
-Node: Awk Debugging834905
-Node: Sample Debugging Session835797
-Node: Debugger Invocation836317
-Node: Finding The Bug837701
-Node: List of Debugger Commands844176
-Node: Breakpoint Control845508
-Node: Debugger Execution Control849200
-Node: Viewing And Changing Data852564
-Node: Execution Stack855929
-Node: Debugger Info857567
-Node: Miscellaneous Debugger Commands861584
-Node: Readline Support866776
-Node: Limitations867668
-Node: Debugging Summary869765
-Node: Arbitrary Precision Arithmetic870933
-Node: Computer Arithmetic872349
-Ref: table-numeric-ranges875950
-Ref: Computer Arithmetic-Footnote-1876809
-Node: Math Definitions876866
-Ref: table-ieee-formats880153
-Ref: Math Definitions-Footnote-1880757
-Node: MPFR features880862
-Node: FP Math Caution882531
-Ref: FP Math Caution-Footnote-1883581
-Node: Inexactness of computations883950
-Node: Inexact representation884898
-Node: Comparing FP Values886253
-Node: Errors accumulate887326
-Node: Getting Accuracy888759
-Node: Try To Round891418
-Node: Setting precision892317
-Ref: table-predefined-precision-strings893001
-Node: Setting the rounding mode894795
-Ref: table-gawk-rounding-modes895159
-Ref: Setting the rounding mode-Footnote-1898613
-Node: Arbitrary Precision Integers898792
-Ref: Arbitrary Precision Integers-Footnote-1901783
-Node: POSIX Floating Point Problems901932
-Ref: POSIX Floating Point Problems-Footnote-1905808
-Node: Floating point summary905846
-Node: Dynamic Extensions908038
-Node: Extension Intro909590
-Node: Plugin License910856
-Node: Extension Mechanism Outline911653
-Ref: figure-load-extension912081
-Ref: figure-register-new-function913561
-Ref: figure-call-new-function914565
-Node: Extension API Description916551
-Node: Extension API Functions Introduction918001
-Node: General Data Types922837
-Ref: General Data Types-Footnote-1928524
-Node: Memory Allocation Functions928823
-Ref: Memory Allocation Functions-Footnote-1931653
-Node: Constructor Functions931749
-Node: Registration Functions933483
-Node: Extension Functions934168
-Node: Exit Callback Functions936464
-Node: Extension Version String937712
-Node: Input Parsers938362
-Node: Output Wrappers948177
-Node: Two-way processors952693
-Node: Printing Messages954897
-Ref: Printing Messages-Footnote-1955974
-Node: Updating `ERRNO'956126
-Node: Requesting Values956866
-Ref: table-value-types-returned957594
-Node: Accessing Parameters958552
-Node: Symbol Table Access959783
-Node: Symbol table by name960297
-Node: Symbol table by cookie962277
-Ref: Symbol table by cookie-Footnote-1966416
-Node: Cached values966479
-Ref: Cached values-Footnote-1969983
-Node: Array Manipulation970074
-Ref: Array Manipulation-Footnote-1971172
-Node: Array Data Types971211
-Ref: Array Data Types-Footnote-1973868
-Node: Array Functions973960
-Node: Flattening Arrays977814
-Node: Creating Arrays984701
-Node: Extension API Variables989468
-Node: Extension Versioning990104
-Node: Extension API Informational Variables992005
-Node: Extension API Boilerplate993093
-Node: Finding Extensions996909
-Node: Extension Example997469
-Node: Internal File Description998241
-Node: Internal File Ops1002308
-Ref: Internal File Ops-Footnote-11013966
-Node: Using Internal File Ops1014106
-Ref: Using Internal File Ops-Footnote-11016489
-Node: Extension Samples1016762
-Node: Extension Sample File Functions1018286
-Node: Extension Sample Fnmatch1025888
-Node: Extension Sample Fork1027370
-Node: Extension Sample Inplace1028583
-Node: Extension Sample Ord1030258
-Node: Extension Sample Readdir1031094
-Ref: table-readdir-file-types1031950
-Node: Extension Sample Revout1032761
-Node: Extension Sample Rev2way1033352
-Node: Extension Sample Read write array1034093
-Node: Extension Sample Readfile1036032
-Node: Extension Sample Time1037127
-Node: Extension Sample API Tests1038476
-Node: gawkextlib1038967
-Node: Extension summary1041617
-Node: Extension Exercises1045299
-Node: Language History1046021
-Node: V7/SVR3.11047678
-Node: SVR41049859
-Node: POSIX1051304
-Node: BTL1052693
-Node: POSIX/GNU1053427
-Node: Feature History1058996
-Node: Common Extensions1072087
-Node: Ranges and Locales1073411
-Ref: Ranges and Locales-Footnote-11078050
-Ref: Ranges and Locales-Footnote-21078077
-Ref: Ranges and Locales-Footnote-31078311
-Node: Contributors1078532
-Node: History summary1084072
-Node: Installation1085441
-Node: Gawk Distribution1086397
-Node: Getting1086881
-Node: Extracting1087705
-Node: Distribution contents1089347
-Node: Unix Installation1095064
-Node: Quick Installation1095681
-Node: Additional Configuration Options1098112
-Node: Configuration Philosophy1099852
-Node: Non-Unix Installation1102203
-Node: PC Installation1102661
-Node: PC Binary Installation1103987
-Node: PC Compiling1105835
-Ref: PC Compiling-Footnote-11108856
-Node: PC Testing1108961
-Node: PC Using1110137
-Node: Cygwin1114252
-Node: MSYS1115075
-Node: VMS Installation1115573
-Node: VMS Compilation1116365
-Ref: VMS Compilation-Footnote-11117587
-Node: VMS Dynamic Extensions1117645
-Node: VMS Installation Details1119329
-Node: VMS Running1121581
-Node: VMS GNV1124422
-Node: VMS Old Gawk1125151
-Node: Bugs1125621
-Node: Other Versions1129591
-Node: Installation summary1135804
-Node: Notes1136860
-Node: Compatibility Mode1137725
-Node: Additions1138507
-Node: Accessing The Source1139432
-Node: Adding Code1140868
-Node: New Ports1147040
-Node: Derived Files1151521
-Ref: Derived Files-Footnote-11156996
-Ref: Derived Files-Footnote-21157030
-Ref: Derived Files-Footnote-31157626
-Node: Future Extensions1157740
-Node: Implementation Limitations1158346
-Node: Extension Design1159594
-Node: Old Extension Problems1160748
-Ref: Old Extension Problems-Footnote-11162265
-Node: Extension New Mechanism Goals1162322
-Ref: Extension New Mechanism Goals-Footnote-11165682
-Node: Extension Other Design Decisions1165871
-Node: Extension Future Growth1167979
-Node: Old Extension Mechanism1168815
-Node: Notes summary1170577
-Node: Basic Concepts1171763
-Node: Basic High Level1172444
-Ref: figure-general-flow1172716
-Ref: figure-process-flow1173315
-Ref: Basic High Level-Footnote-11176544
-Node: Basic Data Typing1176729
-Node: Glossary1180057
-Node: Copying1205215
-Node: GNU Free Documentation License1242771
-Node: Index1267907
+Ref: Options-Footnote-1129502
+Node: Other Arguments129527
+Node: Naming Standard Input132488
+Node: Environment Variables133581
+Node: AWKPATH Variable134139
+Ref: AWKPATH Variable-Footnote-1136991
+Ref: AWKPATH Variable-Footnote-2137036
+Node: AWKLIBPATH Variable137296
+Node: Other Environment Variables138055
+Node: Exit Status141528
+Node: Include Files142203
+Node: Loading Shared Libraries145781
+Node: Obsolete147208
+Node: Undocumented147905
+Node: Invoking Summary148172
+Node: Regexp149838
+Node: Regexp Usage151297
+Node: Escape Sequences153330
+Node: Regexp Operators159430
+Ref: Regexp Operators-Footnote-1166865
+Ref: Regexp Operators-Footnote-2167012
+Node: Bracket Expressions167110
+Ref: table-char-classes169127
+Node: Leftmost Longest172067
+Node: Computed Regexps173369
+Node: GNU Regexp Operators176766
+Node: Case-sensitivity180472
+Ref: Case-sensitivity-Footnote-1183362
+Ref: Case-sensitivity-Footnote-2183597
+Node: Regexp Summary183705
+Node: Reading Files185174
+Node: Records187268
+Node: awk split records188000
+Node: gawk split records192914
+Ref: gawk split records-Footnote-1197453
+Node: Fields197490
+Ref: Fields-Footnote-1200288
+Node: Nonconstant Fields200374
+Ref: Nonconstant Fields-Footnote-1202604
+Node: Changing Fields202806
+Node: Field Separators208738
+Node: Default Field Splitting211442
+Node: Regexp Field Splitting212559
+Node: Single Character Fields215909
+Node: Command Line Field Separator216968
+Node: Full Line Fields220180
+Ref: Full Line Fields-Footnote-1220688
+Node: Field Splitting Summary220734
+Ref: Field Splitting Summary-Footnote-1223865
+Node: Constant Size223966
+Node: Splitting By Content228572
+Ref: Splitting By Content-Footnote-1232645
+Node: Multiple Line232685
+Ref: Multiple Line-Footnote-1238574
+Node: Getline238753
+Node: Plain Getline240964
+Node: Getline/Variable243604
+Node: Getline/File244751
+Node: Getline/Variable/File246135
+Ref: Getline/Variable/File-Footnote-1247736
+Node: Getline/Pipe247823
+Node: Getline/Variable/Pipe250506
+Node: Getline/Coprocess251637
+Node: Getline/Variable/Coprocess252889
+Node: Getline Notes253628
+Node: Getline Summary256420
+Ref: table-getline-variants256832
+Node: Read Timeout257661
+Ref: Read Timeout-Footnote-1261475
+Node: Command-line directories261533
+Node: Input Summary262437
+Node: Input Exercises265689
+Node: Printing266417
+Node: Print268194
+Node: Print Examples269651
+Node: Output Separators272430
+Node: OFMT274448
+Node: Printf275802
+Node: Basic Printf276587
+Node: Control Letters278158
+Node: Format Modifiers282142
+Node: Printf Examples288149
+Node: Redirection290631
+Node: Special FD297470
+Ref: Special FD-Footnote-1300627
+Node: Special Files300701
+Node: Other Inherited Files301317
+Node: Special Network302317
+Node: Special Caveats303178
+Node: Close Files And Pipes304129
+Ref: Close Files And Pipes-Footnote-1311308
+Ref: Close Files And Pipes-Footnote-2311456
+Node: Output Summary311606
+Node: Output Exercises312602
+Node: Expressions313282
+Node: Values314467
+Node: Constants315143
+Node: Scalar Constants315823
+Ref: Scalar Constants-Footnote-1316682
+Node: Nondecimal-numbers316932
+Node: Regexp Constants319932
+Node: Using Constant Regexps320457
+Node: Variables323595
+Node: Using Variables324250
+Node: Assignment Options326160
+Node: Conversion328035
+Node: Strings And Numbers328559
+Ref: Strings And Numbers-Footnote-1331623
+Node: Locale influences conversions331732
+Ref: table-locale-affects334447
+Node: All Operators335035
+Node: Arithmetic Ops335665
+Node: Concatenation338170
+Ref: Concatenation-Footnote-1340989
+Node: Assignment Ops341095
+Ref: table-assign-ops346078
+Node: Increment Ops347356
+Node: Truth Values and Conditions350794
+Node: Truth Values351877
+Node: Typing and Comparison352926
+Node: Variable Typing353719
+Node: Comparison Operators357371
+Ref: table-relational-ops357781
+Node: POSIX String Comparison361296
+Ref: POSIX String Comparison-Footnote-1362368
+Node: Boolean Ops362506
+Ref: Boolean Ops-Footnote-1366985
+Node: Conditional Exp367076
+Node: Function Calls368803
+Node: Precedence372683
+Node: Locales376351
+Node: Expressions Summary377982
+Node: Patterns and Actions380556
+Node: Pattern Overview381676
+Node: Regexp Patterns383355
+Node: Expression Patterns383898
+Node: Ranges387678
+Node: BEGIN/END390784
+Node: Using BEGIN/END391546
+Ref: Using BEGIN/END-Footnote-1394283
+Node: I/O And BEGIN/END394389
+Node: BEGINFILE/ENDFILE396703
+Node: Empty399604
+Node: Using Shell Variables399921
+Node: Action Overview402197
+Node: Statements404524
+Node: If Statement406372
+Node: While Statement407870
+Node: Do Statement409898
+Node: For Statement411040
+Node: Switch Statement414195
+Node: Break Statement416583
+Node: Continue Statement418624
+Node: Next Statement420449
+Node: Nextfile Statement422829
+Node: Exit Statement425459
+Node: Built-in Variables427862
+Node: User-modified428995
+Ref: User-modified-Footnote-1436675
+Node: Auto-set436737
+Ref: Auto-set-Footnote-1449931
+Ref: Auto-set-Footnote-2450136
+Node: ARGC and ARGV450192
+Node: Pattern Action Summary454396
+Node: Arrays456823
+Node: Array Basics458152
+Node: Array Intro458996
+Ref: figure-array-elements460969
+Ref: Array Intro-Footnote-1463493
+Node: Reference to Elements463621
+Node: Assigning Elements466071
+Node: Array Example466562
+Node: Scanning an Array468320
+Node: Controlling Scanning471336
+Ref: Controlling Scanning-Footnote-1476525
+Node: Numeric Array Subscripts476841
+Node: Uninitialized Subscripts479026
+Node: Delete480643
+Ref: Delete-Footnote-1483387
+Node: Multidimensional483444
+Node: Multiscanning486539
+Node: Arrays of Arrays488128
+Node: Arrays Summary492889
+Node: Functions494994
+Node: Built-in495867
+Node: Calling Built-in496945
+Node: Numeric Functions498933
+Ref: Numeric Functions-Footnote-1503757
+Ref: Numeric Functions-Footnote-2504114
+Ref: Numeric Functions-Footnote-3504162
+Node: String Functions504431
+Ref: String Functions-Footnote-1527895
+Ref: String Functions-Footnote-2528024
+Ref: String Functions-Footnote-3528272
+Node: Gory Details528359
+Ref: table-sub-escapes530140
+Ref: table-sub-proposed531660
+Ref: table-posix-sub533024
+Ref: table-gensub-escapes534564
+Ref: Gory Details-Footnote-1535396
+Node: I/O Functions535547
+Ref: I/O Functions-Footnote-1542648
+Node: Time Functions542795
+Ref: Time Functions-Footnote-1553264
+Ref: Time Functions-Footnote-2553332
+Ref: Time Functions-Footnote-3553490
+Ref: Time Functions-Footnote-4553601
+Ref: Time Functions-Footnote-5553713
+Ref: Time Functions-Footnote-6553940
+Node: Bitwise Functions554206
+Ref: table-bitwise-ops554768
+Ref: Bitwise Functions-Footnote-1559076
+Node: Type Functions559245
+Node: I18N Functions560394
+Node: User-defined562039
+Node: Definition Syntax562843
+Ref: Definition Syntax-Footnote-1568249
+Node: Function Example568318
+Ref: Function Example-Footnote-1571235
+Node: Function Caveats571257
+Node: Calling A Function571775
+Node: Variable Scope572730
+Node: Pass By Value/Reference575718
+Node: Return Statement579228
+Node: Dynamic Typing582212
+Node: Indirect Calls583141
+Ref: Indirect Calls-Footnote-1594445
+Node: Functions Summary594573
+Node: Library Functions597272
+Ref: Library Functions-Footnote-1600890
+Ref: Library Functions-Footnote-2601033
+Node: Library Names601204
+Ref: Library Names-Footnote-1604664
+Ref: Library Names-Footnote-2604884
+Node: General Functions604970
+Node: Strtonum Function606073
+Node: Assert Function609093
+Node: Round Function612417
+Node: Cliff Random Function613958
+Node: Ordinal Functions614974
+Ref: Ordinal Functions-Footnote-1618039
+Ref: Ordinal Functions-Footnote-2618291
+Node: Join Function618502
+Ref: Join Function-Footnote-1620273
+Node: Getlocaltime Function620473
+Node: Readfile Function624214
+Node: Shell Quoting626184
+Node: Data File Management627585
+Node: Filetrans Function628217
+Node: Rewind Function632276
+Node: File Checking633661
+Ref: File Checking-Footnote-1634989
+Node: Empty Files635190
+Node: Ignoring Assigns637169
+Node: Getopt Function638720
+Ref: Getopt Function-Footnote-1650180
+Node: Passwd Functions650383
+Ref: Passwd Functions-Footnote-1659234
+Node: Group Functions659322
+Ref: Group Functions-Footnote-1667225
+Node: Walking Arrays667438
+Node: Library Functions Summary669041
+Node: Library Exercises670442
+Node: Sample Programs671722
+Node: Running Examples672492
+Node: Clones673220
+Node: Cut Program674444
+Node: Egrep Program684174
+Ref: Egrep Program-Footnote-1691678
+Node: Id Program691788
+Node: Split Program695432
+Ref: Split Program-Footnote-1698878
+Node: Tee Program699006
+Node: Uniq Program701793
+Node: Wc Program709214
+Ref: Wc Program-Footnote-1713462
+Node: Miscellaneous Programs713554
+Node: Dupword Program714767
+Node: Alarm Program716798
+Node: Translate Program721602
+Ref: Translate Program-Footnote-1726166
+Node: Labels Program726436
+Ref: Labels Program-Footnote-1729785
+Node: Word Sorting729869
+Node: History Sorting733939
+Node: Extract Program735775
+Node: Simple Sed743307
+Node: Igawk Program746369
+Ref: Igawk Program-Footnote-1760695
+Ref: Igawk Program-Footnote-2760896
+Ref: Igawk Program-Footnote-3761018
+Node: Anagram Program761133
+Node: Signature Program764195
+Node: Programs Summary765442
+Node: Programs Exercises766635
+Ref: Programs Exercises-Footnote-1770766
+Node: Advanced Features770857
+Node: Nondecimal Data772805
+Node: Array Sorting774395
+Node: Controlling Array Traversal775092
+Ref: Controlling Array Traversal-Footnote-1783423
+Node: Array Sorting Functions783541
+Ref: Array Sorting Functions-Footnote-1787433
+Node: Two-way I/O787627
+Ref: Two-way I/O-Footnote-1792571
+Ref: Two-way I/O-Footnote-2792757
+Node: TCP/IP Networking792839
+Node: Profiling795716
+Node: Advanced Features Summary803269
+Node: Internationalization805202
+Node: I18N and L10N806682
+Node: Explaining gettext807368
+Ref: Explaining gettext-Footnote-1812397
+Ref: Explaining gettext-Footnote-2812581
+Node: Programmer i18n812746
+Ref: Programmer i18n-Footnote-1817612
+Node: Translator i18n817661
+Node: String Extraction818455
+Ref: String Extraction-Footnote-1819586
+Node: Printf Ordering819672
+Ref: Printf Ordering-Footnote-1822458
+Node: I18N Portability822522
+Ref: I18N Portability-Footnote-1824971
+Node: I18N Example825034
+Ref: I18N Example-Footnote-1827834
+Node: Gawk I18N827906
+Node: I18N Summary828544
+Node: Debugger829883
+Node: Debugging830905
+Node: Debugging Concepts831346
+Node: Debugging Terms833203
+Node: Awk Debugging835778
+Node: Sample Debugging Session836670
+Node: Debugger Invocation837190
+Node: Finding The Bug838574
+Node: List of Debugger Commands845049
+Node: Breakpoint Control846381
+Node: Debugger Execution Control850073
+Node: Viewing And Changing Data853437
+Node: Execution Stack856802
+Node: Debugger Info858440
+Node: Miscellaneous Debugger Commands862457
+Node: Readline Support867649
+Node: Limitations868541
+Node: Debugging Summary870638
+Node: Arbitrary Precision Arithmetic871806
+Node: Computer Arithmetic873222
+Ref: table-numeric-ranges876823
+Ref: Computer Arithmetic-Footnote-1877682
+Node: Math Definitions877739
+Ref: table-ieee-formats881026
+Ref: Math Definitions-Footnote-1881630
+Node: MPFR features881735
+Node: FP Math Caution883404
+Ref: FP Math Caution-Footnote-1884454
+Node: Inexactness of computations884823
+Node: Inexact representation885771
+Node: Comparing FP Values887126
+Node: Errors accumulate888199
+Node: Getting Accuracy889632
+Node: Try To Round892291
+Node: Setting precision893190
+Ref: table-predefined-precision-strings893874
+Node: Setting the rounding mode895668
+Ref: table-gawk-rounding-modes896032
+Ref: Setting the rounding mode-Footnote-1899486
+Node: Arbitrary Precision Integers899665
+Ref: Arbitrary Precision Integers-Footnote-1903448
+Node: POSIX Floating Point Problems903597
+Ref: POSIX Floating Point Problems-Footnote-1907473
+Node: Floating point summary907511
+Node: Dynamic Extensions909703
+Node: Extension Intro911255
+Node: Plugin License912521
+Node: Extension Mechanism Outline913318
+Ref: figure-load-extension913746
+Ref: figure-register-new-function915226
+Ref: figure-call-new-function916230
+Node: Extension API Description918216
+Node: Extension API Functions Introduction919666
+Node: General Data Types924502
+Ref: General Data Types-Footnote-1930189
+Node: Memory Allocation Functions930488
+Ref: Memory Allocation Functions-Footnote-1933318
+Node: Constructor Functions933414
+Node: Registration Functions935148
+Node: Extension Functions935833
+Node: Exit Callback Functions938129
+Node: Extension Version String939377
+Node: Input Parsers940027
+Node: Output Wrappers949842
+Node: Two-way processors954358
+Node: Printing Messages956562
+Ref: Printing Messages-Footnote-1957639
+Node: Updating `ERRNO'957791
+Node: Requesting Values958531
+Ref: table-value-types-returned959259
+Node: Accessing Parameters960217
+Node: Symbol Table Access961448
+Node: Symbol table by name961962
+Node: Symbol table by cookie963942
+Ref: Symbol table by cookie-Footnote-1968081
+Node: Cached values968144
+Ref: Cached values-Footnote-1971648
+Node: Array Manipulation971739
+Ref: Array Manipulation-Footnote-1972837
+Node: Array Data Types972876
+Ref: Array Data Types-Footnote-1975533
+Node: Array Functions975625
+Node: Flattening Arrays979479
+Node: Creating Arrays986366
+Node: Extension API Variables991133
+Node: Extension Versioning991769
+Node: Extension API Informational Variables993670
+Node: Extension API Boilerplate994758
+Node: Finding Extensions998574
+Node: Extension Example999134
+Node: Internal File Description999906
+Node: Internal File Ops1003973
+Ref: Internal File Ops-Footnote-11015631
+Node: Using Internal File Ops1015771
+Ref: Using Internal File Ops-Footnote-11018154
+Node: Extension Samples1018427
+Node: Extension Sample File Functions1019951
+Node: Extension Sample Fnmatch1027553
+Node: Extension Sample Fork1029035
+Node: Extension Sample Inplace1030248
+Node: Extension Sample Ord1031923
+Node: Extension Sample Readdir1032759
+Ref: table-readdir-file-types1033615
+Node: Extension Sample Revout1034426
+Node: Extension Sample Rev2way1035017
+Node: Extension Sample Read write array1035758
+Node: Extension Sample Readfile1037697
+Node: Extension Sample Time1038792
+Node: Extension Sample API Tests1040141
+Node: gawkextlib1040632
+Node: Extension summary1043282
+Node: Extension Exercises1046964
+Node: Language History1047686
+Node: V7/SVR3.11049343
+Node: SVR41051524
+Node: POSIX1052969
+Node: BTL1054358
+Node: POSIX/GNU1055092
+Node: Feature History1060721
+Node: Common Extensions1073812
+Node: Ranges and Locales1075136
+Ref: Ranges and Locales-Footnote-11079775
+Ref: Ranges and Locales-Footnote-21079802
+Ref: Ranges and Locales-Footnote-31080036
+Node: Contributors1080257
+Node: History summary1085797
+Node: Installation1087166
+Node: Gawk Distribution1088122
+Node: Getting1088606
+Node: Extracting1089430
+Node: Distribution contents1091072
+Node: Unix Installation1096842
+Node: Quick Installation1097459
+Node: Additional Configuration Options1099890
+Node: Configuration Philosophy1101630
+Node: Non-Unix Installation1103981
+Node: PC Installation1104439
+Node: PC Binary Installation1105765
+Node: PC Compiling1107613
+Ref: PC Compiling-Footnote-11110634
+Node: PC Testing1110739
+Node: PC Using1111915
+Node: Cygwin1116030
+Node: MSYS1116853
+Node: VMS Installation1117351
+Node: VMS Compilation1118143
+Ref: VMS Compilation-Footnote-11119365
+Node: VMS Dynamic Extensions1119423
+Node: VMS Installation Details1121107
+Node: VMS Running1123359
+Node: VMS GNV1126200
+Node: VMS Old Gawk1126929
+Node: Bugs1127399
+Node: Other Versions1131369
+Node: Installation summary1137582
+Node: Notes1138638
+Node: Compatibility Mode1139503
+Node: Additions1140285
+Node: Accessing The Source1141210
+Node: Adding Code1142646
+Node: New Ports1148818
+Node: Derived Files1153299
+Ref: Derived Files-Footnote-11158774
+Ref: Derived Files-Footnote-21158808
+Ref: Derived Files-Footnote-31159404
+Node: Future Extensions1159518
+Node: Implementation Limitations1160124
+Node: Extension Design1161372
+Node: Old Extension Problems1162526
+Ref: Old Extension Problems-Footnote-11164043
+Node: Extension New Mechanism Goals1164100
+Ref: Extension New Mechanism Goals-Footnote-11167460
+Node: Extension Other Design Decisions1167649
+Node: Extension Future Growth1169757
+Node: Old Extension Mechanism1170593
+Node: Notes summary1172355
+Node: Basic Concepts1173541
+Node: Basic High Level1174222
+Ref: figure-general-flow1174494
+Ref: figure-process-flow1175093
+Ref: Basic High Level-Footnote-11178322
+Node: Basic Data Typing1178507
+Node: Glossary1181835
+Node: Copying1206993
+Node: GNU Free Documentation License1244549
+Node: Index1269685

End Tag Table