aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.info
diff options
context:
space:
mode:
Diffstat (limited to 'doc/gawk.info')
-rw-r--r--doc/gawk.info1341
1 files changed, 693 insertions, 648 deletions
diff --git a/doc/gawk.info b/doc/gawk.info
index 7e6e1b89..514965f4 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -2576,10 +2576,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'
@@ -2961,11 +2959,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. 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.
@@ -3355,15 +3348,17 @@ 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
@@ -10190,10 +10185,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
@@ -11719,6 +11722,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
@@ -19631,8 +19649,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
@@ -22107,6 +22125,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
@@ -26133,6 +26174,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
@@ -27036,7 +27079,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
@@ -27078,11 +27123,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
@@ -31015,20 +31059,20 @@ Index
* --include option: Options. (line 159)
* --lint option <1>: Options. (line 185)
* --lint option: Command Line. (line 20)
-* --lint-old option: Options. (line 295)
+* --lint-old option: Options. (line 293)
* --load option: Options. (line 173)
* --non-decimal-data option <1>: Nondecimal Data. (line 6)
* --non-decimal-data option: Options. (line 211)
* --non-decimal-data option, strtonum() function and: Nondecimal Data.
(line 36)
-* --optimize option: Options. (line 237)
-* --posix option: Options. (line 254)
-* --posix option, --traditional option and: Options. (line 273)
+* --optimize option: Options. (line 235)
+* --posix option: Options. (line 252)
+* --posix option, --traditional option and: Options. (line 271)
* --pretty-print option: Options. (line 224)
* --profile option <1>: Profiling. (line 12)
-* --profile option: Options. (line 242)
-* --re-interval option: Options. (line 279)
-* --sandbox option: Options. (line 286)
+* --profile option: Options. (line 240)
+* --re-interval option: Options. (line 277)
+* --sandbox option: Options. (line 284)
* --sandbox option, disabling system() function: I/O Functions.
(line 97)
* --sandbox option, input redirection with getline: Getline. (line 19)
@@ -31036,9 +31080,9 @@ Index
(line 6)
* --source option: Options. (line 117)
* --traditional option: Options. (line 81)
-* --traditional option, --posix option and: Options. (line 273)
+* --traditional option, --posix option and: Options. (line 271)
* --use-lc-numeric option: Options. (line 219)
-* --version option: Options. (line 300)
+* --version option: Options. (line 298)
* --with-whiny-user-strftime configuration option: Additional Configuration Options.
(line 35)
* -b option: Options. (line 68)
@@ -31046,32 +31090,32 @@ Index
* -c option: Options. (line 81)
* -D option: Options. (line 108)
* -d option: Options. (line 93)
-* -e option: Options. (line 335)
+* -e option: Options. (line 333)
* -E option: Options. (line 125)
* -e option: Options. (line 117)
* -f option: Options. (line 25)
* -F option: Options. (line 21)
* -f option: Long. (line 12)
-* -F option, -Ft sets FS to TAB: Options. (line 308)
+* -F option, -Ft sets FS to TAB: Options. (line 306)
* -F option, command-line: Command Line Field Separator.
(line 6)
-* -f option, multiple uses: Options. (line 313)
+* -f option, multiple uses: Options. (line 311)
* -g option: Options. (line 147)
* -h option: Options. (line 154)
* -i option: Options. (line 159)
-* -L option: Options. (line 295)
+* -L option: Options. (line 293)
* -l option: Options. (line 173)
* -M option: Options. (line 205)
* -N option: Options. (line 219)
* -n option: Options. (line 211)
-* -O option: Options. (line 237)
+* -O option: Options. (line 235)
* -o option: Options. (line 224)
-* -P option: Options. (line 254)
-* -p option: Options. (line 242)
-* -r option: Options. (line 279)
-* -S option: Options. (line 286)
+* -P option: Options. (line 252)
+* -p option: Options. (line 240)
+* -r option: Options. (line 277)
+* -S option: Options. (line 284)
* -v option: Assignment Options. (line 12)
-* -V option: Options. (line 300)
+* -V option: Options. (line 298)
* -v option: Options. (line 32)
* -W option: Options. (line 46)
* . (period), regexp operator: Regexp Operators. (line 44)
@@ -31130,10 +31174,10 @@ Index
* [] (square brackets), regexp operator: Regexp Operators. (line 56)
* \ (backslash): Comments. (line 50)
* \ (backslash) in shell commands: Read Terminal. (line 25)
-* \ (backslash), \" escape sequence: Escape Sequences. (line 80)
+* \ (backslash), \" escape sequence: Escape Sequences. (line 82)
* \ (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.
@@ -31173,7 +31217,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 116)
+ (line 118)
* \ (backslash), in regexp constants: Computed Regexps. (line 29)
* \ (backslash), in shell commands: Quoting. (line 48)
* \ (backslash), regexp operator: Regexp Operators. (line 18)
@@ -31342,7 +31386,7 @@ Index
* awf (amazingly workable formatter) program: Glossary. (line 24)
* awk debugging, enabling: Options. (line 108)
* awk language, POSIX version: Assignment Ops. (line 137)
-* awk profiling, enabling: Options. (line 242)
+* awk profiling, enabling: Options. (line 240)
* awk programs <1>: Two Rules. (line 6)
* awk programs <2>: Executable Scripts. (line 6)
* awk programs: Getting Started. (line 12)
@@ -31401,10 +31445,10 @@ Index
* b debugger command (alias for break): Breakpoint Control. (line 11)
* backslash (\): Comments. (line 50)
* backslash (\) in shell commands: Read Terminal. (line 25)
-* backslash (\), \" escape sequence: Escape Sequences. (line 80)
+* backslash (\), \" escape sequence: Escape Sequences. (line 82)
* 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.
@@ -31444,7 +31488,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 116)
+ (line 118)
* backslash (\), in regexp constants: Computed Regexps. (line 29)
* backslash (\), in shell commands: Quoting. (line 48)
* backslash (\), regexp operator: Regexp Operators. (line 18)
@@ -31549,7 +31593,7 @@ Index
(line 67)
* Brian Kernighan's awk <12>: GNU Regexp Operators.
(line 83)
-* Brian Kernighan's awk <13>: Escape Sequences. (line 120)
+* Brian Kernighan's awk <13>: Escape Sequences. (line 122)
* 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)
@@ -31746,7 +31790,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 353)
+* csh utility, POSIXLY_CORRECT environment variable: Options. (line 351)
* 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)
@@ -31777,13 +31821,13 @@ Index
* dark corner, CONVFMT variable: Strings And Numbers. (line 40)
* dark corner, escape sequences: Other Arguments. (line 31)
* dark corner, escape sequences, for metacharacters: Escape Sequences.
- (line 138)
+ (line 140)
* 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 301)
+* dark corner, FNR/NR variables: Auto-set. (line 309)
* dark corner, format-control characters: Control Letters. (line 18)
* dark corner, FS as null string: Single Character Fields.
(line 20)
@@ -31930,7 +31974,7 @@ Index
* debugger, read commands from a file: Debugger Info. (line 96)
* debugging awk programs: Debugger. (line 6)
* debugging gawk, bug reports: Bugs. (line 9)
-* decimal point character, locale specific: Options. (line 270)
+* decimal point character, locale specific: Options. (line 268)
* decrement operators: Increment Ops. (line 35)
* default keyword: Switch Statement. (line 6)
* Deifik, Scott <1>: Bugs. (line 71)
@@ -31969,12 +32013,12 @@ Index
(line 81)
* differences in awk and gawk, command-line directories: Command-line directories.
(line 6)
-* differences in awk and gawk, ERRNO variable: Auto-set. (line 74)
+* differences in awk and gawk, ERRNO variable: Auto-set. (line 82)
* differences in awk and gawk, error messages: Special FD. (line 16)
* differences in awk and gawk, FIELDWIDTHS variable: User-modified.
(line 37)
* differences in awk and gawk, FPAT variable: User-modified. (line 43)
-* differences in awk and gawk, FUNCTAB variable: Auto-set. (line 115)
+* differences in awk and gawk, FUNCTAB variable: Auto-set. (line 123)
* differences in awk and gawk, function arguments (gawk): Calling Built-in.
(line 16)
* differences in awk and gawk, getline command: Getline. (line 19)
@@ -31997,7 +32041,7 @@ Index
(line 260)
* differences in awk and gawk, print/printf statements: Format Modifiers.
(line 13)
-* differences in awk and gawk, PROCINFO array: Auto-set. (line 128)
+* differences in awk and gawk, PROCINFO array: Auto-set. (line 136)
* differences in awk and gawk, read timeouts: Read Timeout. (line 6)
* differences in awk and gawk, record separators: awk split records.
(line 124)
@@ -32007,7 +32051,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 257)
+* differences in awk and gawk, RT variable: Auto-set. (line 265)
* differences in awk and gawk, single-character fields: Single Character Fields.
(line 6)
* differences in awk and gawk, split() function: String Functions.
@@ -32015,7 +32059,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 261)
+* differences in awk and gawk, SYMTAB variable: Auto-set. (line 269)
* differences in awk and gawk, TEXTDOMAIN variable: User-modified.
(line 152)
* differences in awk and gawk, trunc-mod operation: Arithmetic Ops.
@@ -32031,6 +32075,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)
@@ -32055,8 +32100,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 133)
-* effective user ID of gawk user: Auto-set. (line 137)
+* effective group ID of gawk user: Auto-set. (line 141)
+* effective user ID of gawk user: Auto-set. (line 145)
* egrep utility <1>: Egrep Program. (line 6)
* egrep utility: Bracket Expressions. (line 26)
* egrep.awk program: Egrep Program. (line 54)
@@ -32111,13 +32156,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 139)
* ERRNO variable, with getline command: Getline. (line 19)
* error handling: Special FD. (line 16)
-* error handling, ERRNO variable and: Auto-set. (line 74)
+* error handling, ERRNO variable and: Auto-set. (line 82)
* error output: Special FD. (line 6)
* escape processing, gsub()/gensub()/sub() functions: Gory Details.
(line 6)
@@ -32150,10 +32195,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 69)
* 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)
@@ -32171,7 +32216,7 @@ Index
(line 6)
* extension API version: Extension Versioning.
(line 6)
-* extension API, version number: Auto-set. (line 224)
+* extension API, version number: Auto-set. (line 232)
* extension example: Extension Example. (line 6)
* extension registration: Registration Functions.
(line 6)
@@ -32250,7 +32295,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 46)
-* 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)
@@ -32318,9 +32363,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 301)
+* FNR variable, changing: Auto-set. (line 309)
* for statement: For Statement. (line 6)
* for statement, looping over arrays: Scanning an Array. (line 20)
* fork() extension function: Extension Sample Fork.
@@ -32357,7 +32402,7 @@ Index
* FS variable, --field-separator option and: Options. (line 21)
* FS variable, as null string: Single Character Fields.
(line 20)
-* FS variable, as TAB character: Options. (line 266)
+* FS variable, as TAB character: Options. (line 264)
* FS variable, changing value of: Field Separators. (line 35)
* FS variable, running awk programs and: Cut Program. (line 68)
* FS variable, setting from command line: Command Line Field Separator.
@@ -32370,7 +32415,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 definition example: Function Example. (line 6)
@@ -32420,7 +32465,7 @@ Index
* G-d: Acknowledgments. (line 92)
* Garfinkle, Scott: Contributors. (line 34)
* gawk program, dynamic profiling: Profiling. (line 179)
-* gawk version: Auto-set. (line 199)
+* gawk version: Auto-set. (line 207)
* gawk, ARGIND variable in: Other Arguments. (line 12)
* gawk, awk and <1>: This Manual. (line 14)
* gawk, awk and: Preface. (line 21)
@@ -32441,13 +32486,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 139)
* gawk, ERRNO variable in: Getline. (line 19)
-* gawk, escape sequences: Escape Sequences. (line 128)
-* gawk, extensions, disabling: Options. (line 254)
+* gawk, escape sequences: Escape Sequences. (line 130)
+* gawk, extensions, disabling: Options. (line 252)
* gawk, features, adding: Adding Code. (line 6)
* gawk, features, advanced: Advanced Features. (line 6)
* gawk, field separators and: User-modified. (line 71)
@@ -32458,7 +32503,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.
@@ -32489,7 +32534,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 128)
+* gawk, PROCINFO array in: Auto-set. (line 136)
* gawk, regexp constants and: Using Constant Regexps.
(line 28)
* gawk, regular expressions, case sensitivity: Case-sensitivity.
@@ -32497,18 +32542,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 257)
+* gawk, RT variable in <1>: Auto-set. (line 265)
* gawk, RT variable in <2>: Multiple Line. (line 129)
* gawk, RT variable in: awk split records. (line 124)
* 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 261)
+* gawk, SYMTAB array in: Auto-set. (line 269)
* gawk, TEXTDOMAIN variable in: User-modified. (line 152)
* gawk, timestamps: Time Functions. (line 6)
* gawk, uses for: Preface. (line 34)
-* gawk, versions of, information about, printing: Options. (line 300)
+* gawk, versions of, information about, printing: Options. (line 298)
* gawk, VMS version of: VMS Installation. (line 6)
* gawk, word-boundary operator: GNU Regexp Operators.
(line 63)
@@ -32590,7 +32635,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 172)
+* group ID of gawk user: Auto-set. (line 180)
* groups, information about: Group Functions. (line 6)
* gsub <1>: String Functions. (line 139)
* gsub: Using Constant Regexps.
@@ -32689,7 +32734,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)
@@ -32818,7 +32863,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 338)
+ (line 336)
* lint checking, undefined functions: Pass By Value/Reference.
(line 88)
* LINT variable: User-modified. (line 88)
@@ -32832,14 +32877,14 @@ Index
* loading, extensions: Options. (line 173)
* local variables, in a function: Variable Scope. (line 6)
* locale categories: Explaining gettext. (line 81)
-* locale decimal point character: Options. (line 270)
+* locale decimal point character: Options. (line 268)
* locale, definition of: Locales. (line 6)
* localization: I18N and L10N. (line 6)
* localization, See internationalization, localization: I18N and L10N.
(line 6)
-* log: Numeric Functions. (line 30)
+* log: Numeric Functions. (line 45)
* log files, timestamps in: Time Functions. (line 6)
-* logarithm: Numeric Functions. (line 30)
+* logarithm: Numeric Functions. (line 45)
* logical false/true: Truth Values. (line 6)
* logical operators, See Boolean expressions: Boolean Ops. (line 6)
* login information: Passwd Functions. (line 16)
@@ -32879,8 +32924,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 128)
-* maximum precision supported by MPFR library: Auto-set. (line 213)
+* mawk utility: Escape Sequences. (line 130)
+* maximum precision supported by MPFR library: Auto-set. (line 221)
* McIlroy, Doug: Glossary. (line 149)
* McPhee, Patrick: Contributors. (line 100)
* message object files: Explaining gettext. (line 42)
@@ -32892,8 +32937,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 134)
-* minimum precision supported by MPFR library: Auto-set. (line 216)
+* metacharacters, escape sequences for: Escape Sequences. (line 136)
+* minimum precision supported by MPFR library: Auto-set. (line 224)
* mktime: Time Functions. (line 25)
* modifiers, in format specifiers: Format Modifiers. (line 6)
* monetary information, localization: Explaining gettext. (line 104)
@@ -32915,7 +32960,7 @@ Index
* networks, programming: TCP/IP Networking. (line 6)
* networks, support for: Special Network. (line 6)
* newlines <1>: Boolean Ops. (line 67)
-* newlines <2>: Options. (line 260)
+* newlines <2>: Options. (line 258)
* newlines: Statements/Lines. (line 6)
* newlines, as field separators: Default Field Splitting.
(line 6)
@@ -32944,7 +32989,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.
@@ -32953,9 +32998,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 123)
+* NR variable <1>: Auto-set. (line 131)
* NR variable: Records. (line 6)
-* NR variable, changing: Auto-set. (line 301)
+* NR variable, changing: Auto-set. (line 309)
* null strings <1>: Basic Data Typing. (line 26)
* null strings <2>: Truth Values. (line 6)
* null strings <3>: Regexp Field Splitting.
@@ -33069,7 +33114,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 181)
+* parent process ID of gawk process: Auto-set. (line 189)
* parentheses (), in a profile: Profiling. (line 146)
* parentheses (), regexp operator: Regexp Operators. (line 81)
* password file: Passwd Functions. (line 16)
@@ -33111,14 +33156,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 98)
+* portability: Escape Sequences. (line 100)
* 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 116)
+ (line 118)
* portability, close() function and: Close Files And Pipes.
(line 81)
* portability, data files as single record: gawk split records.
@@ -33136,7 +33181,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 358)
+* portability, POSIXLY_CORRECT environment variable: Options. (line 356)
* portability, substr() function: String Functions. (line 510)
* portable object files <1>: Translator i18n. (line 6)
* portable object files: Explaining gettext. (line 37)
@@ -33157,7 +33202,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 116)
+ (line 118)
* 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.
@@ -33185,11 +33230,11 @@ Index
* POSIX awk, regular expressions and: Regexp Operators. (line 161)
* POSIX awk, timestamps and: Time Functions. (line 6)
* POSIX awk, | I/O operator and: Getline/Pipe. (line 55)
-* POSIX mode: Options. (line 254)
+* POSIX mode: Options. (line 252)
* POSIX, awk and: Preface. (line 21)
* POSIX, gawk extensions not included in: POSIX/GNU. (line 6)
* POSIX, programs, implementing in awk: Clones. (line 6)
-* POSIXLY_CORRECT environment variable: Options. (line 338)
+* POSIXLY_CORRECT environment variable: Options. (line 336)
* PREC variable: User-modified. (line 124)
* precedence <1>: Precedence. (line 6)
* precedence: Increment Ops. (line 60)
@@ -33232,24 +33277,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 175)
-* process ID of gawk process: Auto-set. (line 178)
+* process group idIDof gawk process: Auto-set. (line 183)
+* process ID of gawk process: Auto-set. (line 186)
* 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 128)
+* PROCINFO array: Auto-set. (line 136)
* PROCINFO array, and communications via ptys: Two-way I/O. (line 99)
* PROCINFO array, and group membership: Group Functions. (line 6)
* PROCINFO array, and user and group ID numbers: Id Program. (line 15)
* PROCINFO array, testing the field splitting: Passwd Functions.
(line 161)
-* PROCINFO array, uses: Auto-set. (line 234)
+* PROCINFO array, uses: Auto-set. (line 242)
* 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 146)
+* program identifiers: Auto-set. (line 154)
* program, definition of: Getting Started. (line 21)
* programming conventions, --non-decimal-data option: Nondecimal Data.
(line 36)
@@ -33293,12 +33338,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)
@@ -33368,7 +33413,7 @@ Index
(line 59)
* regular expressions, gawk, command-line options: GNU Regexp Operators.
(line 70)
-* regular expressions, interval expressions and: Options. (line 279)
+* regular expressions, interval expressions and: Options. (line 277)
* regular expressions, leftmost longest match: Leftmost Longest.
(line 6)
* regular expressions, operators <1>: Regexp Operators. (line 6)
@@ -33408,7 +33453,7 @@ Index
* right shift: Bitwise Functions. (line 52)
* right shift, bitwise: Bitwise Functions. (line 32)
* Ritchie, Dennis: Basic Data Typing. (line 54)
-* RLENGTH variable: Auto-set. (line 244)
+* RLENGTH variable: Auto-set. (line 252)
* RLENGTH variable, match() function and: String Functions. (line 224)
* Robbins, Arnold <1>: Future Extensions. (line 6)
* Robbins, Arnold <2>: Bugs. (line 32)
@@ -33426,7 +33471,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 128)
@@ -33434,9 +33479,9 @@ Index
* RS variable: awk split records. (line 12)
* RS variable, multiline records and: Multiple Line. (line 17)
* rshift: Bitwise Functions. (line 52)
-* RSTART variable: Auto-set. (line 250)
+* RSTART variable: Auto-set. (line 258)
* RSTART variable, match() function and: String Functions. (line 224)
-* RT variable <1>: Auto-set. (line 257)
+* RT variable <1>: Auto-set. (line 265)
* RT variable <2>: Multiple Line. (line 129)
* RT variable: awk split records. (line 124)
* Rubin, Paul <1>: Contributors. (line 15)
@@ -33449,14 +33494,14 @@ Index
(line 68)
* sample debugging session: Sample Debugging Session.
(line 6)
-* sandbox mode: Options. (line 286)
+* sandbox mode: Options. (line 284)
* save debugger options: Debugger Info. (line 84)
* scalar or array: Type Functions. (line 11)
* scalar values: Basic Data Typing. (line 13)
* scanning arrays: Scanning an Array. (line 6)
* scanning multidimensional arrays: Multiscanning. (line 11)
* Schorr, Andrew <1>: Contributors. (line 133)
-* Schorr, Andrew <2>: Auto-set. (line 284)
+* Schorr, Andrew <2>: Auto-set. (line 292)
* Schorr, Andrew: Acknowledgments. (line 60)
* Schreiber, Bert: Acknowledgments. (line 38)
* Schreiber, Rita: Acknowledgments. (line 38)
@@ -33476,7 +33521,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)
@@ -33538,14 +33583,14 @@ Index
* sidebar, A Constant's Base Does Not Affect Its Value: Nondecimal-numbers.
(line 64)
* sidebar, Backslash Before Regular Characters: Escape Sequences.
- (line 114)
+ (line 116)
* sidebar, Changing FS Does Not Affect the Fields: Field Splitting Summary.
(line 38)
-* sidebar, Changing NR and FNR: Auto-set. (line 299)
+* sidebar, Changing NR and FNR: Auto-set. (line 307)
* sidebar, Controlling Output Buffering with system(): I/O Functions.
(line 138)
* sidebar, Escape Sequences for Metacharacters: Escape Sequences.
- (line 132)
+ (line 134)
* sidebar, FS and IGNORECASE: Field Splitting Summary.
(line 64)
* sidebar, Interactive Versus Noninteractive Buffering: I/O Functions.
@@ -33578,8 +33623,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 33)
* single quote ('), in shell commands: Quoting. (line 48)
@@ -33629,10 +33674,10 @@ Index
* sprintf() function, OFMT variable and: User-modified. (line 114)
* 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)
@@ -33704,9 +33749,9 @@ Index
* substr: String Functions. (line 479)
* substring: String Functions. (line 479)
* Sumner, Andrew: Other Versions. (line 64)
-* supplementary groups of gawk process: Auto-set. (line 229)
+* supplementary groups of gawk process: Auto-set. (line 237)
* switch statement: Switch Statement. (line 6)
-* SYMTAB array: Auto-set. (line 261)
+* SYMTAB array: Auto-set. (line 269)
* syntactic ambiguity: /= operator vs. /=.../ regexp constant: Assignment Ops.
(line 148)
* system: I/O Functions. (line 75)
@@ -33773,7 +33818,7 @@ Index
(line 37)
* troubleshooting, awk uses FS not IFS: Field Separators. (line 30)
* troubleshooting, backslash before nonspecial character: Escape Sequences.
- (line 116)
+ (line 118)
* troubleshooting, division: Arithmetic Ops. (line 44)
* troubleshooting, fatal errors, field widths, specifying: Constant Size.
(line 23)
@@ -33829,7 +33874,7 @@ Index
* uniq.awk program: Uniq Program. (line 65)
* Unix: Glossary. (line 611)
* Unix awk, backslashes in escape sequences: Escape Sequences.
- (line 128)
+ (line 130)
* Unix awk, close() function and: Close Files And Pipes.
(line 131)
* Unix awk, password files, field separators and: Command Line Field Separator.
@@ -33884,10 +33929,10 @@ Index
* variables, uninitialized, as array subscripts: Uninitialized Subscripts.
(line 6)
* variables, user-defined: Variables. (line 6)
-* version of gawk: Auto-set. (line 199)
-* version of gawk extension API: Auto-set. (line 224)
-* version of GNU MP library: Auto-set. (line 210)
-* version of GNU MPFR library: Auto-set. (line 206)
+* version of gawk: Auto-set. (line 207)
+* version of gawk extension API: Auto-set. (line 232)
+* version of GNU MP library: Auto-set. (line 218)
+* version of GNU MPFR library: Auto-set. (line 214)
* vertical bar (|): Regexp Operators. (line 70)
* vertical bar (|), | operator (I/O) <1>: Precedence. (line 65)
* vertical bar (|), | operator (I/O): Getline/Pipe. (line 9)
@@ -33921,7 +33966,7 @@ Index
* whitespace, as field separators: Default Field Splitting.
(line 6)
* whitespace, functions, calling: Calling Built-in. (line 10)
-* whitespace, newlines as: Options. (line 260)
+* whitespace, newlines as: Options. (line 258)
* Williams, Kent: Contributors. (line 34)
* Woehlke, Matthew: Contributors. (line 79)
* Woods, John: Contributors. (line 27)
@@ -34014,512 +34059,512 @@ Node: Intro Summary110051
Node: Invoking Gawk110934
Node: Command Line112449
Node: Options113240
-Ref: Options-Footnote-1129016
-Node: Other Arguments129041
-Node: Naming Standard Input131703
-Node: Environment Variables132796
-Node: AWKPATH Variable133354
-Ref: AWKPATH Variable-Footnote-1136220
-Ref: AWKPATH Variable-Footnote-2136265
-Node: AWKLIBPATH Variable136525
-Node: Other Environment Variables137284
-Node: Exit Status140941
-Node: Include Files141616
-Node: Loading Shared Libraries145194
-Node: Obsolete146578
-Node: Undocumented147275
-Node: Invoking Summary147542
-Node: Regexp149142
-Node: Regexp Usage150601
-Node: Escape Sequences152634
-Node: Regexp Operators158451
-Ref: Regexp Operators-Footnote-1165882
-Ref: Regexp Operators-Footnote-2166029
-Node: Bracket Expressions166127
-Ref: table-char-classes168149
-Node: GNU Regexp Operators171089
-Node: Case-sensitivity174798
-Ref: Case-sensitivity-Footnote-1177690
-Ref: Case-sensitivity-Footnote-2177925
-Node: Leftmost Longest178033
-Node: Computed Regexps179234
-Node: Regexp Summary182606
-Node: Reading Files184075
-Node: Records186167
-Node: awk split records186889
-Node: gawk split records191747
-Ref: gawk split records-Footnote-1196268
-Node: Fields196305
-Ref: Fields-Footnote-1199269
-Node: Nonconstant Fields199355
-Ref: Nonconstant Fields-Footnote-1201585
-Node: Changing Fields201787
-Node: Field Separators207741
-Node: Default Field Splitting210443
-Node: Regexp Field Splitting211560
-Node: Single Character Fields214887
-Node: Command Line Field Separator215946
-Node: Full Line Fields219372
-Ref: Full Line Fields-Footnote-1219880
-Node: Field Splitting Summary219926
-Ref: Field Splitting Summary-Footnote-1223058
-Node: Constant Size223159
-Node: Splitting By Content227765
-Ref: Splitting By Content-Footnote-1231838
-Node: Multiple Line231878
-Ref: Multiple Line-Footnote-1237734
-Node: Getline237913
-Node: Plain Getline240124
-Node: Getline/Variable242219
-Node: Getline/File243366
-Node: Getline/Variable/File244750
-Ref: Getline/Variable/File-Footnote-1246349
-Node: Getline/Pipe246436
-Node: Getline/Variable/Pipe249122
-Node: Getline/Coprocess250229
-Node: Getline/Variable/Coprocess251481
-Node: Getline Notes252218
-Node: Getline Summary255022
-Ref: table-getline-variants255430
-Node: Read Timeout256342
-Ref: Read Timeout-Footnote-1260169
-Node: Command-line directories260227
-Node: Input Summary261131
-Node: Input Exercises264268
-Node: Printing265001
-Node: Print266723
-Node: Print Examples268216
-Node: Output Separators270995
-Node: OFMT273011
-Node: Printf274369
-Node: Basic Printf275275
-Node: Control Letters276814
-Node: Format Modifiers280805
-Node: Printf Examples286832
-Node: Redirection289296
-Node: Special Files296268
-Node: Special FD296801
-Ref: Special FD-Footnote-1300398
-Node: Special Network300472
-Node: Special Caveats301322
-Node: Close Files And Pipes302118
-Ref: Close Files And Pipes-Footnote-1309279
-Ref: Close Files And Pipes-Footnote-2309427
-Node: Output Summary309577
-Node: Output Exercises310574
-Node: Expressions311254
-Node: Values312439
-Node: Constants313115
-Node: Scalar Constants313795
-Ref: Scalar Constants-Footnote-1314654
-Node: Nondecimal-numbers314904
-Node: Regexp Constants317904
-Node: Using Constant Regexps318379
-Node: Variables321451
-Node: Using Variables322106
-Node: Assignment Options323830
-Node: Conversion325705
-Node: Strings And Numbers326229
-Ref: Strings And Numbers-Footnote-1329291
-Node: Locale influences conversions329400
-Ref: table-locale-affects332117
-Node: All Operators332705
-Node: Arithmetic Ops333335
-Node: Concatenation335840
-Ref: Concatenation-Footnote-1338659
-Node: Assignment Ops338765
-Ref: table-assign-ops343748
-Node: Increment Ops345051
-Node: Truth Values and Conditions348489
-Node: Truth Values349572
-Node: Typing and Comparison350621
-Node: Variable Typing351414
-Node: Comparison Operators355066
-Ref: table-relational-ops355476
-Node: POSIX String Comparison359026
-Ref: POSIX String Comparison-Footnote-1360110
-Node: Boolean Ops360248
-Ref: Boolean Ops-Footnote-1364323
-Node: Conditional Exp364414
-Node: Function Calls366141
-Node: Precedence370021
-Node: Locales373690
-Node: Expressions Summary375321
-Node: Patterns and Actions377862
-Node: Pattern Overview378978
-Node: Regexp Patterns380655
-Node: Expression Patterns381198
-Node: Ranges384978
-Node: BEGIN/END388084
-Node: Using BEGIN/END388846
-Ref: Using BEGIN/END-Footnote-1391582
-Node: I/O And BEGIN/END391688
-Node: BEGINFILE/ENDFILE393959
-Node: Empty396890
-Node: Using Shell Variables397207
-Node: Action Overview399490
-Node: Statements401817
-Node: If Statement403665
-Node: While Statement405163
-Node: Do Statement407207
-Node: For Statement408363
-Node: Switch Statement411515
-Node: Break Statement413903
-Node: Continue Statement415944
-Node: Next Statement417769
-Node: Nextfile Statement420159
-Node: Exit Statement422795
-Node: Built-in Variables425199
-Node: User-modified426326
-Ref: User-modified-Footnote-1434015
-Node: Auto-set434077
-Ref: Auto-set-Footnote-1446659
-Ref: Auto-set-Footnote-2446864
-Node: ARGC and ARGV446920
-Node: Pattern Action Summary450824
-Node: Arrays453047
-Node: Array Basics454596
-Node: Array Intro455422
-Ref: figure-array-elements457395
-Ref: Array Intro-Footnote-1459919
-Node: Reference to Elements460047
-Node: Assigning Elements462497
-Node: Array Example462988
-Node: Scanning an Array464720
-Node: Controlling Scanning467721
-Ref: Controlling Scanning-Footnote-1472894
-Node: Delete473210
-Ref: Delete-Footnote-1475961
-Node: Numeric Array Subscripts476018
-Node: Uninitialized Subscripts478201
-Node: Multidimensional479826
-Node: Multiscanning482939
-Node: Arrays of Arrays484528
-Node: Arrays Summary489191
-Node: Functions491296
-Node: Built-in492169
-Node: Calling Built-in493247
-Node: Numeric Functions495235
-Ref: Numeric Functions-Footnote-1499269
-Ref: Numeric Functions-Footnote-2499626
-Ref: Numeric Functions-Footnote-3499674
-Node: String Functions499943
-Ref: String Functions-Footnote-1522940
-Ref: String Functions-Footnote-2523069
-Ref: String Functions-Footnote-3523317
-Node: Gory Details523404
-Ref: table-sub-escapes525177
-Ref: table-sub-proposed526697
-Ref: table-posix-sub528061
-Ref: table-gensub-escapes529601
-Ref: Gory Details-Footnote-1530777
-Node: I/O Functions530928
-Ref: I/O Functions-Footnote-1538038
-Node: Time Functions538185
-Ref: Time Functions-Footnote-1548649
-Ref: Time Functions-Footnote-2548717
-Ref: Time Functions-Footnote-3548875
-Ref: Time Functions-Footnote-4548986
-Ref: Time Functions-Footnote-5549098
-Ref: Time Functions-Footnote-6549325
-Node: Bitwise Functions549591
-Ref: table-bitwise-ops550153
-Ref: Bitwise Functions-Footnote-1554398
-Node: Type Functions554582
-Node: I18N Functions555724
-Node: User-defined557369
-Node: Definition Syntax558173
-Ref: Definition Syntax-Footnote-1563486
-Node: Function Example563555
-Ref: Function Example-Footnote-1566195
-Node: Function Caveats566217
-Node: Calling A Function566735
-Node: Variable Scope567690
-Node: Pass By Value/Reference570678
-Node: Return Statement574188
-Node: Dynamic Typing577172
-Node: Indirect Calls578101
-Node: Functions Summary587814
-Node: Library Functions590353
-Ref: Library Functions-Footnote-1593971
-Ref: Library Functions-Footnote-2594114
-Node: Library Names594285
-Ref: Library Names-Footnote-1597758
-Ref: Library Names-Footnote-2597978
-Node: General Functions598064
-Node: Strtonum Function599092
-Node: Assert Function601872
-Node: Round Function605198
-Node: Cliff Random Function606739
-Node: Ordinal Functions607755
-Ref: Ordinal Functions-Footnote-1610820
-Ref: Ordinal Functions-Footnote-2611072
-Node: Join Function611283
-Ref: Join Function-Footnote-1613054
-Node: Getlocaltime Function613254
-Node: Readfile Function616990
-Node: Data File Management618829
-Node: Filetrans Function619461
-Node: Rewind Function623530
-Node: File Checking625088
-Ref: File Checking-Footnote-1626220
-Node: Empty Files626421
-Node: Ignoring Assigns628400
-Node: Getopt Function629954
-Ref: Getopt Function-Footnote-1641257
-Node: Passwd Functions641460
-Ref: Passwd Functions-Footnote-1650439
-Node: Group Functions650527
-Ref: Group Functions-Footnote-1658458
-Node: Walking Arrays658671
-Node: Library Functions Summary660274
-Node: Library Exercises661662
-Node: Sample Programs662942
-Node: Running Examples663712
-Node: Clones664440
-Node: Cut Program665664
-Node: Egrep Program675522
-Ref: Egrep Program-Footnote-1683109
-Node: Id Program683219
-Node: Split Program686873
-Ref: Split Program-Footnote-1690411
-Node: Tee Program690539
-Node: Uniq Program693326
-Node: Wc Program700747
-Ref: Wc Program-Footnote-1705012
-Node: Miscellaneous Programs705104
-Node: Dupword Program706317
-Node: Alarm Program708348
-Node: Translate Program713152
-Ref: Translate Program-Footnote-1717543
-Ref: Translate Program-Footnote-2717813
-Node: Labels Program717947
-Ref: Labels Program-Footnote-1721308
-Node: Word Sorting721392
-Node: History Sorting725435
-Node: Extract Program727271
-Node: Simple Sed734807
-Node: Igawk Program737869
-Ref: Igawk Program-Footnote-1752173
-Ref: Igawk Program-Footnote-2752374
-Node: Anagram Program752512
-Node: Signature Program755580
-Node: Programs Summary756827
-Node: Programs Exercises758042
-Node: Advanced Features761693
-Node: Nondecimal Data763641
-Node: Array Sorting765218
-Node: Controlling Array Traversal765915
-Node: Array Sorting Functions774195
-Ref: Array Sorting Functions-Footnote-1778102
-Node: Two-way I/O778296
-Ref: Two-way I/O-Footnote-1783240
-Ref: Two-way I/O-Footnote-2783419
-Node: TCP/IP Networking783501
-Node: Profiling786346
-Node: Advanced Features Summary793888
-Node: Internationalization795752
-Node: I18N and L10N797232
-Node: Explaining gettext797918
-Ref: Explaining gettext-Footnote-1802944
-Ref: Explaining gettext-Footnote-2803128
-Node: Programmer i18n803293
-Ref: Programmer i18n-Footnote-1808087
-Node: Translator i18n808136
-Node: String Extraction808930
-Ref: String Extraction-Footnote-1810063
-Node: Printf Ordering810149
-Ref: Printf Ordering-Footnote-1812931
-Node: I18N Portability812995
-Ref: I18N Portability-Footnote-1815444
-Node: I18N Example815507
-Ref: I18N Example-Footnote-1818213
-Node: Gawk I18N818285
-Node: I18N Summary818923
-Node: Debugger820262
-Node: Debugging821284
-Node: Debugging Concepts821725
-Node: Debugging Terms823581
-Node: Awk Debugging826178
-Node: Sample Debugging Session827070
-Node: Debugger Invocation827590
-Node: Finding The Bug828923
-Node: List of Debugger Commands835405
-Node: Breakpoint Control836737
-Node: Debugger Execution Control840401
-Node: Viewing And Changing Data843761
-Node: Execution Stack847119
-Node: Debugger Info848632
-Node: Miscellaneous Debugger Commands852626
-Node: Readline Support857810
-Node: Limitations858702
-Node: Debugging Summary860976
-Node: Arbitrary Precision Arithmetic862144
-Node: Computer Arithmetic863631
-Ref: Computer Arithmetic-Footnote-1868018
-Node: Math Definitions868075
-Ref: table-ieee-formats871364
-Ref: Math Definitions-Footnote-1871904
-Node: MPFR features872007
-Node: FP Math Caution873624
-Ref: FP Math Caution-Footnote-1874674
-Node: Inexactness of computations875043
-Node: Inexact representation875991
-Node: Comparing FP Values877346
-Node: Errors accumulate878310
-Node: Getting Accuracy879743
-Node: Try To Round882402
-Node: Setting precision883301
-Ref: table-predefined-precision-strings883983
-Node: Setting the rounding mode885776
-Ref: table-gawk-rounding-modes886140
-Ref: Setting the rounding mode-Footnote-1889594
-Node: Arbitrary Precision Integers889773
-Ref: Arbitrary Precision Integers-Footnote-1892754
-Node: POSIX Floating Point Problems892903
-Ref: POSIX Floating Point Problems-Footnote-1896779
-Node: Floating point summary896817
-Node: Dynamic Extensions899021
-Node: Extension Intro900573
-Node: Plugin License901838
-Node: Extension Mechanism Outline902523
-Ref: figure-load-extension902947
-Ref: figure-load-new-function904432
-Ref: figure-call-new-function905434
-Node: Extension API Description907418
-Node: Extension API Functions Introduction908868
-Node: General Data Types913735
-Ref: General Data Types-Footnote-1919428
-Node: Requesting Values919727
-Ref: table-value-types-returned920464
-Node: Memory Allocation Functions921422
-Ref: Memory Allocation Functions-Footnote-1924169
-Node: Constructor Functions924265
-Node: Registration Functions926023
-Node: Extension Functions926708
-Node: Exit Callback Functions929010
-Node: Extension Version String930258
-Node: Input Parsers930908
-Node: Output Wrappers940722
-Node: Two-way processors945238
-Node: Printing Messages947442
-Ref: Printing Messages-Footnote-1948519
-Node: Updating `ERRNO'948671
-Node: Accessing Parameters949410
-Node: Symbol Table Access950640
-Node: Symbol table by name951154
-Node: Symbol table by cookie953130
-Ref: Symbol table by cookie-Footnote-1957263
-Node: Cached values957326
-Ref: Cached values-Footnote-1960830
-Node: Array Manipulation960921
-Ref: Array Manipulation-Footnote-1962019
-Node: Array Data Types962058
-Ref: Array Data Types-Footnote-1964761
-Node: Array Functions964853
-Node: Flattening Arrays968727
-Node: Creating Arrays975579
-Node: Extension API Variables980310
-Node: Extension Versioning980946
-Node: Extension API Informational Variables982847
-Node: Extension API Boilerplate983933
-Node: Finding Extensions987737
-Node: Extension Example988297
-Node: Internal File Description989027
-Node: Internal File Ops993118
-Ref: Internal File Ops-Footnote-11004550
-Node: Using Internal File Ops1004690
-Ref: Using Internal File Ops-Footnote-11007037
-Node: Extension Samples1007305
-Node: Extension Sample File Functions1008829
-Node: Extension Sample Fnmatch1016397
-Node: Extension Sample Fork1017879
-Node: Extension Sample Inplace1019092
-Node: Extension Sample Ord1020767
-Node: Extension Sample Readdir1021603
-Ref: table-readdir-file-types1022459
-Node: Extension Sample Revout1023258
-Node: Extension Sample Rev2way1023849
-Node: Extension Sample Read write array1024590
-Node: Extension Sample Readfile1026469
-Node: Extension Sample API Tests1027569
-Node: Extension Sample Time1028094
-Node: gawkextlib1029409
-Node: Extension summary1032222
-Node: Extension Exercises1035915
-Node: Language History1036637
-Node: V7/SVR3.11038280
-Node: SVR41040600
-Node: POSIX1042042
-Node: BTL1043428
-Node: POSIX/GNU1044162
-Node: Feature History1049878
-Node: Common Extensions1062969
-Node: Ranges and Locales1064281
-Ref: Ranges and Locales-Footnote-11068898
-Ref: Ranges and Locales-Footnote-21068925
-Ref: Ranges and Locales-Footnote-31069159
-Node: Contributors1069380
-Node: History summary1074805
-Node: Installation1076174
-Node: Gawk Distribution1077125
-Node: Getting1077609
-Node: Extracting1078433
-Node: Distribution contents1080075
-Node: Unix Installation1085792
-Node: Quick Installation1086409
-Node: Additional Configuration Options1088851
-Node: Configuration Philosophy1090589
-Node: Non-Unix Installation1092940
-Node: PC Installation1093398
-Node: PC Binary Installation1094709
-Node: PC Compiling1096557
-Ref: PC Compiling-Footnote-11099556
-Node: PC Testing1099661
-Node: PC Using1100837
-Node: Cygwin1104989
-Node: MSYS1105798
-Node: VMS Installation1106312
-Node: VMS Compilation1107108
-Ref: VMS Compilation-Footnote-11108330
-Node: VMS Dynamic Extensions1108388
-Node: VMS Installation Details1109761
-Node: VMS Running1112013
-Node: VMS GNV1114847
-Node: VMS Old Gawk1115570
-Node: Bugs1116040
-Node: Other Versions1120044
-Node: Installation summary1126271
-Node: Notes1127327
-Node: Compatibility Mode1128192
-Node: Additions1128974
-Node: Accessing The Source1129899
-Node: Adding Code1131335
-Node: New Ports1137513
-Node: Derived Files1141994
-Ref: Derived Files-Footnote-11147075
-Ref: Derived Files-Footnote-21147109
-Ref: Derived Files-Footnote-31147705
-Node: Future Extensions1147819
-Node: Implementation Limitations1148425
-Node: Extension Design1149673
-Node: Old Extension Problems1150827
-Ref: Old Extension Problems-Footnote-11152344
-Node: Extension New Mechanism Goals1152401
-Ref: Extension New Mechanism Goals-Footnote-11155761
-Node: Extension Other Design Decisions1155950
-Node: Extension Future Growth1158056
-Node: Old Extension Mechanism1158892
-Node: Notes summary1160654
-Node: Basic Concepts1161840
-Node: Basic High Level1162521
-Ref: figure-general-flow1162793
-Ref: figure-process-flow1163392
-Ref: Basic High Level-Footnote-11166621
-Node: Basic Data Typing1166806
-Node: Glossary1170134
-Node: Copying1195286
-Node: GNU Free Documentation License1232842
-Node: Index1257978
+Ref: Options-Footnote-1128887
+Node: Other Arguments128912
+Node: Naming Standard Input131574
+Node: Environment Variables132667
+Node: AWKPATH Variable133225
+Ref: AWKPATH Variable-Footnote-1136091
+Ref: AWKPATH Variable-Footnote-2136136
+Node: AWKLIBPATH Variable136396
+Node: Other Environment Variables137155
+Node: Exit Status140607
+Node: Include Files141282
+Node: Loading Shared Libraries144860
+Node: Obsolete146244
+Node: Undocumented146941
+Node: Invoking Summary147208
+Node: Regexp148808
+Node: Regexp Usage150267
+Node: Escape Sequences152300
+Node: Regexp Operators158200
+Ref: Regexp Operators-Footnote-1165631
+Ref: Regexp Operators-Footnote-2165778
+Node: Bracket Expressions165876
+Ref: table-char-classes167898
+Node: GNU Regexp Operators170838
+Node: Case-sensitivity174547
+Ref: Case-sensitivity-Footnote-1177439
+Ref: Case-sensitivity-Footnote-2177674
+Node: Leftmost Longest177782
+Node: Computed Regexps178983
+Node: Regexp Summary182355
+Node: Reading Files183824
+Node: Records185916
+Node: awk split records186638
+Node: gawk split records191496
+Ref: gawk split records-Footnote-1196017
+Node: Fields196054
+Ref: Fields-Footnote-1199018
+Node: Nonconstant Fields199104
+Ref: Nonconstant Fields-Footnote-1201334
+Node: Changing Fields201536
+Node: Field Separators207490
+Node: Default Field Splitting210192
+Node: Regexp Field Splitting211309
+Node: Single Character Fields214636
+Node: Command Line Field Separator215695
+Node: Full Line Fields219121
+Ref: Full Line Fields-Footnote-1219629
+Node: Field Splitting Summary219675
+Ref: Field Splitting Summary-Footnote-1222807
+Node: Constant Size222908
+Node: Splitting By Content227514
+Ref: Splitting By Content-Footnote-1231587
+Node: Multiple Line231627
+Ref: Multiple Line-Footnote-1237483
+Node: Getline237662
+Node: Plain Getline239873
+Node: Getline/Variable241968
+Node: Getline/File243115
+Node: Getline/Variable/File244499
+Ref: Getline/Variable/File-Footnote-1246098
+Node: Getline/Pipe246185
+Node: Getline/Variable/Pipe248871
+Node: Getline/Coprocess249978
+Node: Getline/Variable/Coprocess251230
+Node: Getline Notes251967
+Node: Getline Summary254771
+Ref: table-getline-variants255179
+Node: Read Timeout256091
+Ref: Read Timeout-Footnote-1259918
+Node: Command-line directories259976
+Node: Input Summary260880
+Node: Input Exercises264017
+Node: Printing264750
+Node: Print266472
+Node: Print Examples267965
+Node: Output Separators270744
+Node: OFMT272760
+Node: Printf274118
+Node: Basic Printf275024
+Node: Control Letters276563
+Node: Format Modifiers280554
+Node: Printf Examples286581
+Node: Redirection289045
+Node: Special Files296017
+Node: Special FD296550
+Ref: Special FD-Footnote-1300147
+Node: Special Network300221
+Node: Special Caveats301071
+Node: Close Files And Pipes301867
+Ref: Close Files And Pipes-Footnote-1309028
+Ref: Close Files And Pipes-Footnote-2309176
+Node: Output Summary309326
+Node: Output Exercises310323
+Node: Expressions311003
+Node: Values312188
+Node: Constants312864
+Node: Scalar Constants313544
+Ref: Scalar Constants-Footnote-1314403
+Node: Nondecimal-numbers314653
+Node: Regexp Constants317653
+Node: Using Constant Regexps318128
+Node: Variables321200
+Node: Using Variables321855
+Node: Assignment Options323579
+Node: Conversion325454
+Node: Strings And Numbers325978
+Ref: Strings And Numbers-Footnote-1329040
+Node: Locale influences conversions329149
+Ref: table-locale-affects331866
+Node: All Operators332454
+Node: Arithmetic Ops333084
+Node: Concatenation335589
+Ref: Concatenation-Footnote-1338408
+Node: Assignment Ops338514
+Ref: table-assign-ops343497
+Node: Increment Ops344800
+Node: Truth Values and Conditions348238
+Node: Truth Values349321
+Node: Typing and Comparison350370
+Node: Variable Typing351163
+Node: Comparison Operators354815
+Ref: table-relational-ops355225
+Node: POSIX String Comparison358775
+Ref: POSIX String Comparison-Footnote-1359859
+Node: Boolean Ops359997
+Ref: Boolean Ops-Footnote-1364072
+Node: Conditional Exp364163
+Node: Function Calls365890
+Node: Precedence369770
+Node: Locales373439
+Node: Expressions Summary375070
+Node: Patterns and Actions377611
+Node: Pattern Overview378727
+Node: Regexp Patterns380404
+Node: Expression Patterns380947
+Node: Ranges384727
+Node: BEGIN/END387833
+Node: Using BEGIN/END388595
+Ref: Using BEGIN/END-Footnote-1391331
+Node: I/O And BEGIN/END391437
+Node: BEGINFILE/ENDFILE393708
+Node: Empty396639
+Node: Using Shell Variables396956
+Node: Action Overview399239
+Node: Statements401566
+Node: If Statement403414
+Node: While Statement404912
+Node: Do Statement406956
+Node: For Statement408112
+Node: Switch Statement411264
+Node: Break Statement413652
+Node: Continue Statement415693
+Node: Next Statement417518
+Node: Nextfile Statement419908
+Node: Exit Statement422544
+Node: Built-in Variables424948
+Node: User-modified426075
+Ref: User-modified-Footnote-1433764
+Node: Auto-set433826
+Ref: Auto-set-Footnote-1446745
+Ref: Auto-set-Footnote-2446950
+Node: ARGC and ARGV447006
+Node: Pattern Action Summary450910
+Node: Arrays453133
+Node: Array Basics454682
+Node: Array Intro455508
+Ref: figure-array-elements457481
+Ref: Array Intro-Footnote-1460005
+Node: Reference to Elements460133
+Node: Assigning Elements462583
+Node: Array Example463074
+Node: Scanning an Array464806
+Node: Controlling Scanning467807
+Ref: Controlling Scanning-Footnote-1472980
+Node: Delete473296
+Ref: Delete-Footnote-1476047
+Node: Numeric Array Subscripts476104
+Node: Uninitialized Subscripts478287
+Node: Multidimensional479912
+Node: Multiscanning483025
+Node: Arrays of Arrays484614
+Node: Arrays Summary489277
+Node: Functions491382
+Node: Built-in492255
+Node: Calling Built-in493333
+Node: Numeric Functions495321
+Ref: Numeric Functions-Footnote-1500157
+Ref: Numeric Functions-Footnote-2500514
+Ref: Numeric Functions-Footnote-3500562
+Node: String Functions500831
+Ref: String Functions-Footnote-1523828
+Ref: String Functions-Footnote-2523957
+Ref: String Functions-Footnote-3524205
+Node: Gory Details524292
+Ref: table-sub-escapes526065
+Ref: table-sub-proposed527585
+Ref: table-posix-sub528949
+Ref: table-gensub-escapes530489
+Ref: Gory Details-Footnote-1531665
+Node: I/O Functions531816
+Ref: I/O Functions-Footnote-1538926
+Node: Time Functions539073
+Ref: Time Functions-Footnote-1549537
+Ref: Time Functions-Footnote-2549605
+Ref: Time Functions-Footnote-3549763
+Ref: Time Functions-Footnote-4549874
+Ref: Time Functions-Footnote-5549986
+Ref: Time Functions-Footnote-6550213
+Node: Bitwise Functions550479
+Ref: table-bitwise-ops551041
+Ref: Bitwise Functions-Footnote-1555286
+Node: Type Functions555470
+Node: I18N Functions556612
+Node: User-defined558257
+Node: Definition Syntax559061
+Ref: Definition Syntax-Footnote-1564374
+Node: Function Example564443
+Ref: Function Example-Footnote-1567083
+Node: Function Caveats567105
+Node: Calling A Function567623
+Node: Variable Scope568578
+Node: Pass By Value/Reference571566
+Node: Return Statement575076
+Node: Dynamic Typing578060
+Node: Indirect Calls578989
+Node: Functions Summary588702
+Node: Library Functions591241
+Ref: Library Functions-Footnote-1594859
+Ref: Library Functions-Footnote-2595002
+Node: Library Names595173
+Ref: Library Names-Footnote-1598646
+Ref: Library Names-Footnote-2598866
+Node: General Functions598952
+Node: Strtonum Function599980
+Node: Assert Function602760
+Node: Round Function606086
+Node: Cliff Random Function607627
+Node: Ordinal Functions608643
+Ref: Ordinal Functions-Footnote-1611708
+Ref: Ordinal Functions-Footnote-2611960
+Node: Join Function612171
+Ref: Join Function-Footnote-1613942
+Node: Getlocaltime Function614142
+Node: Readfile Function617878
+Node: Data File Management619717
+Node: Filetrans Function620349
+Node: Rewind Function624418
+Node: File Checking625976
+Ref: File Checking-Footnote-1627108
+Node: Empty Files627309
+Node: Ignoring Assigns629288
+Node: Getopt Function630842
+Ref: Getopt Function-Footnote-1642145
+Node: Passwd Functions642348
+Ref: Passwd Functions-Footnote-1651327
+Node: Group Functions651415
+Ref: Group Functions-Footnote-1659346
+Node: Walking Arrays659559
+Node: Library Functions Summary661162
+Node: Library Exercises662550
+Node: Sample Programs663830
+Node: Running Examples664600
+Node: Clones665328
+Node: Cut Program666552
+Node: Egrep Program676410
+Ref: Egrep Program-Footnote-1683997
+Node: Id Program684107
+Node: Split Program687761
+Ref: Split Program-Footnote-1691299
+Node: Tee Program691427
+Node: Uniq Program694214
+Node: Wc Program701635
+Ref: Wc Program-Footnote-1705900
+Node: Miscellaneous Programs705992
+Node: Dupword Program707205
+Node: Alarm Program709236
+Node: Translate Program714040
+Ref: Translate Program-Footnote-1718431
+Ref: Translate Program-Footnote-2718701
+Node: Labels Program718835
+Ref: Labels Program-Footnote-1722196
+Node: Word Sorting722280
+Node: History Sorting726323
+Node: Extract Program728159
+Node: Simple Sed735695
+Node: Igawk Program738757
+Ref: Igawk Program-Footnote-1753061
+Ref: Igawk Program-Footnote-2753262
+Node: Anagram Program753400
+Node: Signature Program756468
+Node: Programs Summary757715
+Node: Programs Exercises758930
+Node: Advanced Features762581
+Node: Nondecimal Data764529
+Node: Array Sorting766106
+Node: Controlling Array Traversal766803
+Node: Array Sorting Functions775083
+Ref: Array Sorting Functions-Footnote-1778990
+Node: Two-way I/O779184
+Ref: Two-way I/O-Footnote-1784128
+Ref: Two-way I/O-Footnote-2784307
+Node: TCP/IP Networking784389
+Node: Profiling787234
+Node: Advanced Features Summary794785
+Node: Internationalization796649
+Node: I18N and L10N798129
+Node: Explaining gettext798815
+Ref: Explaining gettext-Footnote-1803841
+Ref: Explaining gettext-Footnote-2804025
+Node: Programmer i18n804190
+Ref: Programmer i18n-Footnote-1808984
+Node: Translator i18n809033
+Node: String Extraction809827
+Ref: String Extraction-Footnote-1810960
+Node: Printf Ordering811046
+Ref: Printf Ordering-Footnote-1813828
+Node: I18N Portability813892
+Ref: I18N Portability-Footnote-1816341
+Node: I18N Example816404
+Ref: I18N Example-Footnote-1819110
+Node: Gawk I18N819182
+Node: I18N Summary819820
+Node: Debugger821159
+Node: Debugging822181
+Node: Debugging Concepts822622
+Node: Debugging Terms824478
+Node: Awk Debugging827075
+Node: Sample Debugging Session827967
+Node: Debugger Invocation828487
+Node: Finding The Bug829820
+Node: List of Debugger Commands836302
+Node: Breakpoint Control837634
+Node: Debugger Execution Control841298
+Node: Viewing And Changing Data844658
+Node: Execution Stack848016
+Node: Debugger Info849529
+Node: Miscellaneous Debugger Commands853523
+Node: Readline Support858707
+Node: Limitations859599
+Node: Debugging Summary861873
+Node: Arbitrary Precision Arithmetic863041
+Node: Computer Arithmetic864528
+Ref: Computer Arithmetic-Footnote-1868915
+Node: Math Definitions868972
+Ref: table-ieee-formats872261
+Ref: Math Definitions-Footnote-1872801
+Node: MPFR features872904
+Node: FP Math Caution874521
+Ref: FP Math Caution-Footnote-1875571
+Node: Inexactness of computations875940
+Node: Inexact representation876888
+Node: Comparing FP Values878243
+Node: Errors accumulate879207
+Node: Getting Accuracy880640
+Node: Try To Round883299
+Node: Setting precision884198
+Ref: table-predefined-precision-strings884880
+Node: Setting the rounding mode886673
+Ref: table-gawk-rounding-modes887037
+Ref: Setting the rounding mode-Footnote-1890491
+Node: Arbitrary Precision Integers890670
+Ref: Arbitrary Precision Integers-Footnote-1894443
+Node: POSIX Floating Point Problems894592
+Ref: POSIX Floating Point Problems-Footnote-1898468
+Node: Floating point summary898506
+Node: Dynamic Extensions900710
+Node: Extension Intro902262
+Node: Plugin License903527
+Node: Extension Mechanism Outline904212
+Ref: figure-load-extension904636
+Ref: figure-load-new-function906121
+Ref: figure-call-new-function907123
+Node: Extension API Description909107
+Node: Extension API Functions Introduction910557
+Node: General Data Types915424
+Ref: General Data Types-Footnote-1921117
+Node: Requesting Values921416
+Ref: table-value-types-returned922153
+Node: Memory Allocation Functions923111
+Ref: Memory Allocation Functions-Footnote-1925858
+Node: Constructor Functions925954
+Node: Registration Functions927712
+Node: Extension Functions928397
+Node: Exit Callback Functions930699
+Node: Extension Version String931947
+Node: Input Parsers932597
+Node: Output Wrappers942411
+Node: Two-way processors946927
+Node: Printing Messages949131
+Ref: Printing Messages-Footnote-1950208
+Node: Updating `ERRNO'950360
+Node: Accessing Parameters951099
+Node: Symbol Table Access952329
+Node: Symbol table by name952843
+Node: Symbol table by cookie954819
+Ref: Symbol table by cookie-Footnote-1958952
+Node: Cached values959015
+Ref: Cached values-Footnote-1962519
+Node: Array Manipulation962610
+Ref: Array Manipulation-Footnote-1963708
+Node: Array Data Types963747
+Ref: Array Data Types-Footnote-1966450
+Node: Array Functions966542
+Node: Flattening Arrays970416
+Node: Creating Arrays977268
+Node: Extension API Variables981999
+Node: Extension Versioning982635
+Node: Extension API Informational Variables984536
+Node: Extension API Boilerplate985622
+Node: Finding Extensions989426
+Node: Extension Example989986
+Node: Internal File Description990716
+Node: Internal File Ops994807
+Ref: Internal File Ops-Footnote-11006239
+Node: Using Internal File Ops1006379
+Ref: Using Internal File Ops-Footnote-11008726
+Node: Extension Samples1008994
+Node: Extension Sample File Functions1010518
+Node: Extension Sample Fnmatch1018086
+Node: Extension Sample Fork1019568
+Node: Extension Sample Inplace1020781
+Node: Extension Sample Ord1022456
+Node: Extension Sample Readdir1023292
+Ref: table-readdir-file-types1024148
+Node: Extension Sample Revout1024947
+Node: Extension Sample Rev2way1025538
+Node: Extension Sample Read write array1026279
+Node: Extension Sample Readfile1028158
+Node: Extension Sample API Tests1029258
+Node: Extension Sample Time1029783
+Node: gawkextlib1031098
+Node: Extension summary1033911
+Node: Extension Exercises1037604
+Node: Language History1038326
+Node: V7/SVR3.11039969
+Node: SVR41042289
+Node: POSIX1043731
+Node: BTL1045117
+Node: POSIX/GNU1045851
+Node: Feature History1051627
+Node: Common Extensions1064718
+Node: Ranges and Locales1066030
+Ref: Ranges and Locales-Footnote-11070647
+Ref: Ranges and Locales-Footnote-21070674
+Ref: Ranges and Locales-Footnote-31070908
+Node: Contributors1071129
+Node: History summary1076554
+Node: Installation1077923
+Node: Gawk Distribution1078874
+Node: Getting1079358
+Node: Extracting1080182
+Node: Distribution contents1081824
+Node: Unix Installation1087594
+Node: Quick Installation1088211
+Node: Additional Configuration Options1090653
+Node: Configuration Philosophy1092391
+Node: Non-Unix Installation1094742
+Node: PC Installation1095200
+Node: PC Binary Installation1096511
+Node: PC Compiling1098359
+Ref: PC Compiling-Footnote-11101358
+Node: PC Testing1101463
+Node: PC Using1102639
+Node: Cygwin1106791
+Node: MSYS1107600
+Node: VMS Installation1108114
+Node: VMS Compilation1108910
+Ref: VMS Compilation-Footnote-11110132
+Node: VMS Dynamic Extensions1110190
+Node: VMS Installation Details1111563
+Node: VMS Running1113815
+Node: VMS GNV1116649
+Node: VMS Old Gawk1117372
+Node: Bugs1117842
+Node: Other Versions1121846
+Node: Installation summary1128073
+Node: Notes1129129
+Node: Compatibility Mode1129994
+Node: Additions1130776
+Node: Accessing The Source1131701
+Node: Adding Code1133137
+Node: New Ports1139315
+Node: Derived Files1143796
+Ref: Derived Files-Footnote-11148877
+Ref: Derived Files-Footnote-21148911
+Ref: Derived Files-Footnote-31149507
+Node: Future Extensions1149621
+Node: Implementation Limitations1150227
+Node: Extension Design1151475
+Node: Old Extension Problems1152629
+Ref: Old Extension Problems-Footnote-11154146
+Node: Extension New Mechanism Goals1154203
+Ref: Extension New Mechanism Goals-Footnote-11157563
+Node: Extension Other Design Decisions1157752
+Node: Extension Future Growth1159858
+Node: Old Extension Mechanism1160694
+Node: Notes summary1162456
+Node: Basic Concepts1163642
+Node: Basic High Level1164323
+Ref: figure-general-flow1164595
+Ref: figure-process-flow1165194
+Ref: Basic High Level-Footnote-11168423
+Node: Basic Data Typing1168608
+Node: Glossary1171936
+Node: Copying1197088
+Node: GNU Free Documentation License1234644
+Node: Index1259780

End Tag Table