aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.info
diff options
context:
space:
mode:
Diffstat (limited to 'doc/gawk.info')
-rw-r--r--doc/gawk.info1345
1 files changed, 695 insertions, 650 deletions
diff --git a/doc/gawk.info b/doc/gawk.info
index 42465c42..f1aa1f4a 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -2575,10 +2575,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'
@@ -2964,11 +2962,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.
@@ -3358,15 +3351,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
@@ -10218,10 +10213,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
@@ -11754,6 +11757,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
@@ -19690,8 +19708,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
@@ -22167,6 +22185,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
@@ -26193,6 +26234,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
@@ -27096,7 +27139,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
@@ -27138,11 +27183,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
@@ -31081,20 +31125,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)
@@ -31102,9 +31146,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)
@@ -31112,32 +31156,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)
@@ -31199,10 +31243,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.
@@ -31242,7 +31286,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)
@@ -31411,7 +31455,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)
@@ -31469,10 +31513,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.
@@ -31512,7 +31556,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)
@@ -31617,7 +31661,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)
@@ -31815,7 +31859,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)
@@ -31846,13 +31890,13 @@ Index
* dark corner, CONVFMT variable: Strings And Numbers. (line 40)
* dark corner, escape sequences: Other Arguments. (line 35)
* 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)
@@ -31999,7 +32043,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)
@@ -32038,12 +32082,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)
@@ -32066,7 +32110,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 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 124)
@@ -32076,7 +32120,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.
@@ -32084,7 +32128,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 152)
* differences in awk and gawk, trunc-mod operation: Arithmetic Ops.
@@ -32100,6 +32144,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)
@@ -32123,8 +32168,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)
@@ -32179,13 +32224,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)
@@ -32218,10 +32263,10 @@ Index
* exit status, of VMS: VMS Running. (line 29)
* exit the debugger: Miscellaneous Debugger Commands.
(line 99)
-* exp: Numeric Functions. (line 18)
+* exp: Numeric Functions. (line 33)
* expand utility: Very Simple. (line 72)
* Expat XML parser library: gawkextlib. (line 35)
-* exponent: Numeric Functions. (line 18)
+* exponent: Numeric Functions. (line 33)
* expressions: Expressions. (line 6)
* expressions, as patterns: Expression Patterns. (line 6)
* expressions, assignment: Assignment Ops. (line 6)
@@ -32239,7 +32284,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)
@@ -32321,7 +32366,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)
@@ -32389,9 +32434,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.
@@ -32428,7 +32473,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.
@@ -32441,7 +32486,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)
@@ -32492,7 +32537,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 12)
* gawk, awk and <1>: This Manual. (line 14)
* gawk, awk and: Preface. (line 21)
@@ -32513,13 +32558,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 130)
-* gawk, extensions, disabling: Options. (line 254)
+* gawk, escape sequences: Escape Sequences. (line 132)
+* gawk, extensions, disabling: Options. (line 252)
* gawk, features, adding: Adding Code. (line 6)
* gawk, features, advanced: Advanced Features. (line 6)
* gawk, field separators and: User-modified. (line 71)
@@ -32530,7 +32575,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.
@@ -32561,7 +32606,7 @@ Index
* gawk, OS/2 version of: PC Using. (line 16)
* gawk, PROCINFO array in <1>: Two-way I/O. (line 99)
* gawk, PROCINFO array in <2>: Time Functions. (line 47)
-* gawk, PROCINFO array in: Auto-set. (line 129)
+* gawk, PROCINFO array in: Auto-set. (line 137)
* gawk, regexp constants and: Using Constant Regexps.
(line 28)
* gawk, regular expressions, case sensitivity: Case-sensitivity.
@@ -32569,18 +32614,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 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 268)
+* gawk, SYMTAB array in: Auto-set. (line 276)
* 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)
@@ -32662,7 +32707,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.
@@ -32763,7 +32808,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)
@@ -32892,7 +32937,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)
@@ -32908,14 +32953,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)
@@ -32955,8 +33000,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)
@@ -32968,8 +33013,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)
@@ -32991,7 +33036,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)
@@ -33020,7 +33065,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.
@@ -33029,9 +33074,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.
@@ -33145,7 +33190,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)
@@ -33187,14 +33232,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.
@@ -33212,7 +33257,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)
@@ -33233,7 +33278,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.
@@ -33261,11 +33306,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)
@@ -33308,24 +33353,24 @@ Index
* printing, unduplicated lines of text: Uniq Program. (line 6)
* printing, user information: Id Program. (line 6)
* private variables: Library Names. (line 11)
-* process group idIDof gawk process: Auto-set. (line 182)
-* process ID of gawk process: Auto-set. (line 185)
+* process group idIDof gawk process: Auto-set. (line 190)
+* process ID of gawk process: Auto-set. (line 193)
* processes, two-way communications with: Two-way I/O. (line 6)
* processing data: Basic High Level. (line 6)
* PROCINFO array <1>: Passwd Functions. (line 6)
* PROCINFO array <2>: Time Functions. (line 47)
-* PROCINFO array: Auto-set. (line 129)
+* PROCINFO array: Auto-set. (line 137)
* PROCINFO array, and communications via ptys: Two-way I/O. (line 99)
* PROCINFO array, and group membership: Group Functions. (line 6)
* PROCINFO array, and user and group ID numbers: Id Program. (line 15)
* PROCINFO array, testing the field splitting: Passwd Functions.
(line 161)
-* PROCINFO array, uses: Auto-set. (line 241)
+* PROCINFO array, uses: Auto-set. (line 249)
* PROCINFO, values of sorted_in: Controlling Scanning.
(line 26)
* profiling awk programs: Profiling. (line 6)
* profiling awk programs, dynamically: Profiling. (line 179)
-* program identifiers: Auto-set. (line 147)
+* program identifiers: Auto-set. (line 155)
* program, definition of: Getting Started. (line 21)
* programming conventions, --non-decimal-data option: Nondecimal Data.
(line 36)
@@ -33369,12 +33414,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)
@@ -33444,7 +33489,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)
@@ -33484,7 +33529,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 251)
+* RLENGTH variable: Auto-set. (line 259)
* RLENGTH variable, match() function and: String Functions. (line 224)
* Robbins, Arnold <1>: Future Extensions. (line 6)
* Robbins, Arnold <2>: Bugs. (line 32)
@@ -33502,7 +33547,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)
@@ -33510,9 +33555,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 257)
+* RSTART variable: Auto-set. (line 265)
* RSTART variable, match() function and: String Functions. (line 224)
-* 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 124)
* Rubin, Paul <1>: Contributors. (line 15)
@@ -33525,14 +33570,14 @@ Index
(line 68)
* sample debugging session: Sample Debugging Session.
(line 6)
-* sandbox mode: Options. (line 286)
+* sandbox mode: Options. (line 284)
* save debugger options: Debugger Info. (line 84)
* scalar or array: Type Functions. (line 11)
* scalar values: Basic Data Typing. (line 13)
* scanning arrays: Scanning an Array. (line 6)
* scanning multidimensional arrays: Multiscanning. (line 11)
* Schorr, Andrew <1>: Contributors. (line 133)
-* Schorr, Andrew <2>: Auto-set. (line 291)
+* Schorr, Andrew <2>: Auto-set. (line 299)
* Schorr, Andrew: Acknowledgments. (line 60)
* Schreiber, Bert: Acknowledgments. (line 38)
* Schreiber, Rita: Acknowledgments. (line 38)
@@ -33552,7 +33597,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)
@@ -33613,14 +33658,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 138)
* 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.
@@ -33653,8 +33698,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)
@@ -33704,10 +33749,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)
@@ -33779,9 +33824,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 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 75)
@@ -33848,7 +33893,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)
@@ -33904,7 +33949,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 131)
* Unix awk, password files, field separators and: Command Line Field Separator.
@@ -33959,10 +34004,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)
@@ -33996,7 +34041,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)
@@ -34088,514 +34133,514 @@ Node: Intro Summary110071
Node: Invoking Gawk110954
Node: Command Line112469
Node: Options113260
-Ref: Options-Footnote-1129036
-Node: Other Arguments129061
-Node: Naming Standard Input131889
-Node: Environment Variables132982
-Node: AWKPATH Variable133540
-Ref: AWKPATH Variable-Footnote-1136406
-Ref: AWKPATH Variable-Footnote-2136451
-Node: AWKLIBPATH Variable136711
-Node: Other Environment Variables137470
-Node: Exit Status141127
-Node: Include Files141802
-Node: Loading Shared Libraries145380
-Node: Obsolete146764
-Node: Undocumented147461
-Node: Invoking Summary147728
-Node: Regexp149328
-Node: Regexp Usage150787
-Node: Escape Sequences152820
-Node: Regexp Operators158808
-Ref: Regexp Operators-Footnote-1166239
-Ref: Regexp Operators-Footnote-2166386
-Node: Bracket Expressions166484
-Ref: table-char-classes168502
-Node: Leftmost Longest171442
-Node: Computed Regexps172646
-Node: GNU Regexp Operators176024
-Node: Case-sensitivity179730
-Ref: Case-sensitivity-Footnote-1182620
-Ref: Case-sensitivity-Footnote-2182855
-Node: Regexp Summary182963
-Node: Reading Files184432
-Node: Records186524
-Node: awk split records187246
-Node: gawk split records192104
-Ref: gawk split records-Footnote-1196625
-Node: Fields196662
-Ref: Fields-Footnote-1199626
-Node: Nonconstant Fields199712
-Ref: Nonconstant Fields-Footnote-1201942
-Node: Changing Fields202144
-Node: Field Separators208098
-Node: Default Field Splitting210800
-Node: Regexp Field Splitting211917
-Node: Single Character Fields215244
-Node: Command Line Field Separator216303
-Node: Full Line Fields219729
-Ref: Full Line Fields-Footnote-1220237
-Node: Field Splitting Summary220283
-Ref: Field Splitting Summary-Footnote-1223415
-Node: Constant Size223516
-Node: Splitting By Content228122
-Ref: Splitting By Content-Footnote-1232195
-Node: Multiple Line232235
-Ref: Multiple Line-Footnote-1238091
-Node: Getline238270
-Node: Plain Getline240481
-Node: Getline/Variable243187
-Node: Getline/File244334
-Node: Getline/Variable/File245718
-Ref: Getline/Variable/File-Footnote-1247317
-Node: Getline/Pipe247404
-Node: Getline/Variable/Pipe250090
-Node: Getline/Coprocess251197
-Node: Getline/Variable/Coprocess252449
-Node: Getline Notes253186
-Node: Getline Summary255990
-Ref: table-getline-variants256398
-Node: Read Timeout257310
-Ref: Read Timeout-Footnote-1261137
-Node: Command-line directories261195
-Node: Input Summary262099
-Node: Input Exercises265236
-Node: Printing265964
-Node: Print267686
-Node: Print Examples269179
-Node: Output Separators271958
-Node: OFMT273974
-Node: Printf275332
-Node: Basic Printf276238
-Node: Control Letters277777
-Node: Format Modifiers281768
-Node: Printf Examples287795
-Node: Redirection290259
-Node: Special Files297231
-Node: Special FD297764
-Ref: Special FD-Footnote-1301361
-Node: Special Network301435
-Node: Special Caveats302285
-Node: Close Files And Pipes303081
-Ref: Close Files And Pipes-Footnote-1310242
-Ref: Close Files And Pipes-Footnote-2310390
-Node: Output Summary310540
-Node: Output Exercises311537
-Node: Expressions312217
-Node: Values313402
-Node: Constants314078
-Node: Scalar Constants314758
-Ref: Scalar Constants-Footnote-1315617
-Node: Nondecimal-numbers315867
-Node: Regexp Constants318867
-Node: Using Constant Regexps319392
-Node: Variables322464
-Node: Using Variables323119
-Node: Assignment Options325025
-Node: Conversion326900
-Node: Strings And Numbers327424
-Ref: Strings And Numbers-Footnote-1330486
-Node: Locale influences conversions330595
-Ref: table-locale-affects333312
-Node: All Operators333900
-Node: Arithmetic Ops334530
-Node: Concatenation337035
-Ref: Concatenation-Footnote-1339854
-Node: Assignment Ops339960
-Ref: table-assign-ops344943
-Node: Increment Ops346246
-Node: Truth Values and Conditions349684
-Node: Truth Values350767
-Node: Typing and Comparison351816
-Node: Variable Typing352609
-Node: Comparison Operators356261
-Ref: table-relational-ops356671
-Node: POSIX String Comparison360221
-Ref: POSIX String Comparison-Footnote-1361305
-Node: Boolean Ops361443
-Ref: Boolean Ops-Footnote-1365782
-Node: Conditional Exp365873
-Node: Function Calls367600
-Node: Precedence371480
-Node: Locales375149
-Node: Expressions Summary376780
-Node: Patterns and Actions379321
-Node: Pattern Overview380437
-Node: Regexp Patterns382114
-Node: Expression Patterns382657
-Node: Ranges386437
-Node: BEGIN/END389543
-Node: Using BEGIN/END390305
-Ref: Using BEGIN/END-Footnote-1393041
-Node: I/O And BEGIN/END393147
-Node: BEGINFILE/ENDFILE395418
-Node: Empty398349
-Node: Using Shell Variables398666
-Node: Action Overview400949
-Node: Statements403276
-Node: If Statement405124
-Node: While Statement406622
-Node: Do Statement408666
-Node: For Statement409822
-Node: Switch Statement412974
-Node: Break Statement415362
-Node: Continue Statement417403
-Node: Next Statement419228
-Node: Nextfile Statement421598
-Node: Exit Statement424255
-Node: Built-in Variables426659
-Node: User-modified427786
-Ref: User-modified-Footnote-1435475
-Node: Auto-set435537
-Ref: Auto-set-Footnote-1448389
-Ref: Auto-set-Footnote-2448594
-Node: ARGC and ARGV448650
-Node: Pattern Action Summary452554
-Node: Arrays454777
-Node: Array Basics456326
-Node: Array Intro457152
-Ref: figure-array-elements459125
-Ref: Array Intro-Footnote-1461649
-Node: Reference to Elements461777
-Node: Assigning Elements464227
-Node: Array Example464718
-Node: Scanning an Array466450
-Node: Controlling Scanning469451
-Ref: Controlling Scanning-Footnote-1474624
-Node: Delete474940
-Ref: Delete-Footnote-1477691
-Node: Numeric Array Subscripts477748
-Node: Uninitialized Subscripts479931
-Node: Multidimensional481558
-Node: Multiscanning484671
-Node: Arrays of Arrays486260
-Node: Arrays Summary490923
-Node: Functions493028
-Node: Built-in493901
-Node: Calling Built-in494979
-Node: Numeric Functions496967
-Ref: Numeric Functions-Footnote-1501001
-Ref: Numeric Functions-Footnote-2501358
-Ref: Numeric Functions-Footnote-3501406
-Node: String Functions501675
-Ref: String Functions-Footnote-1524672
-Ref: String Functions-Footnote-2524801
-Ref: String Functions-Footnote-3525049
-Node: Gory Details525136
-Ref: table-sub-escapes526909
-Ref: table-sub-proposed528429
-Ref: table-posix-sub529793
-Ref: table-gensub-escapes531333
-Ref: Gory Details-Footnote-1532509
-Node: I/O Functions532660
-Ref: I/O Functions-Footnote-1539770
-Node: Time Functions539917
-Ref: Time Functions-Footnote-1550381
-Ref: Time Functions-Footnote-2550449
-Ref: Time Functions-Footnote-3550607
-Ref: Time Functions-Footnote-4550718
-Ref: Time Functions-Footnote-5550830
-Ref: Time Functions-Footnote-6551057
-Node: Bitwise Functions551323
-Ref: table-bitwise-ops551885
-Ref: Bitwise Functions-Footnote-1556130
-Node: Type Functions556314
-Node: I18N Functions557456
-Node: User-defined559101
-Node: Definition Syntax559905
-Ref: Definition Syntax-Footnote-1565309
-Node: Function Example565378
-Ref: Function Example-Footnote-1568018
-Node: Function Caveats568040
-Node: Calling A Function568558
-Node: Variable Scope569513
-Node: Pass By Value/Reference572501
-Node: Return Statement576011
-Node: Dynamic Typing578995
-Node: Indirect Calls579924
-Ref: Indirect Calls-Footnote-1589640
-Node: Functions Summary589768
-Node: Library Functions592418
-Ref: Library Functions-Footnote-1596036
-Ref: Library Functions-Footnote-2596179
-Node: Library Names596350
-Ref: Library Names-Footnote-1599823
-Ref: Library Names-Footnote-2600043
-Node: General Functions600129
-Node: Strtonum Function601157
-Node: Assert Function604059
-Node: Round Function607385
-Node: Cliff Random Function608926
-Node: Ordinal Functions609942
-Ref: Ordinal Functions-Footnote-1613007
-Ref: Ordinal Functions-Footnote-2613259
-Node: Join Function613470
-Ref: Join Function-Footnote-1615241
-Node: Getlocaltime Function615441
-Node: Readfile Function619177
-Node: Data File Management621016
-Node: Filetrans Function621648
-Node: Rewind Function625717
-Node: File Checking627275
-Ref: File Checking-Footnote-1628407
-Node: Empty Files628608
-Node: Ignoring Assigns630587
-Node: Getopt Function632141
-Ref: Getopt Function-Footnote-1643405
-Node: Passwd Functions643608
-Ref: Passwd Functions-Footnote-1652587
-Node: Group Functions652675
-Ref: Group Functions-Footnote-1660606
-Node: Walking Arrays660819
-Node: Library Functions Summary662422
-Node: Library Exercises663810
-Node: Sample Programs665090
-Node: Running Examples665860
-Node: Clones666588
-Node: Cut Program667812
-Node: Egrep Program677670
-Ref: Egrep Program-Footnote-1685257
-Node: Id Program685367
-Node: Split Program689021
-Ref: Split Program-Footnote-1692559
-Node: Tee Program692687
-Node: Uniq Program695474
-Node: Wc Program702897
-Ref: Wc Program-Footnote-1707162
-Node: Miscellaneous Programs707254
-Node: Dupword Program708467
-Node: Alarm Program710498
-Node: Translate Program715302
-Ref: Translate Program-Footnote-1719875
-Ref: Translate Program-Footnote-2720145
-Node: Labels Program720284
-Ref: Labels Program-Footnote-1723645
-Node: Word Sorting723729
-Node: History Sorting727772
-Node: Extract Program729608
-Node: Simple Sed737144
-Node: Igawk Program740206
-Ref: Igawk Program-Footnote-1754510
-Ref: Igawk Program-Footnote-2754711
-Node: Anagram Program754849
-Node: Signature Program757917
-Node: Programs Summary759164
-Node: Programs Exercises760379
-Ref: Programs Exercises-Footnote-1764510
-Node: Advanced Features764601
-Node: Nondecimal Data766549
-Node: Array Sorting768126
-Node: Controlling Array Traversal768823
-Node: Array Sorting Functions777103
-Ref: Array Sorting Functions-Footnote-1781010
-Node: Two-way I/O781204
-Ref: Two-way I/O-Footnote-1786148
-Ref: Two-way I/O-Footnote-2786327
-Node: TCP/IP Networking786409
-Node: Profiling789251
-Node: Advanced Features Summary796793
-Node: Internationalization798657
-Node: I18N and L10N800137
-Node: Explaining gettext800823
-Ref: Explaining gettext-Footnote-1805849
-Ref: Explaining gettext-Footnote-2806033
-Node: Programmer i18n806198
-Ref: Programmer i18n-Footnote-1810992
-Node: Translator i18n811041
-Node: String Extraction811835
-Ref: String Extraction-Footnote-1812968
-Node: Printf Ordering813054
-Ref: Printf Ordering-Footnote-1815836
-Node: I18N Portability815900
-Ref: I18N Portability-Footnote-1818349
-Node: I18N Example818412
-Ref: I18N Example-Footnote-1821118
-Node: Gawk I18N821190
-Node: I18N Summary821828
-Node: Debugger823167
-Node: Debugging824189
-Node: Debugging Concepts824630
-Node: Debugging Terms826486
-Node: Awk Debugging829083
-Node: Sample Debugging Session829975
-Node: Debugger Invocation830495
-Node: Finding The Bug831831
-Node: List of Debugger Commands838310
-Node: Breakpoint Control839642
-Node: Debugger Execution Control843306
-Node: Viewing And Changing Data846666
-Node: Execution Stack850024
-Node: Debugger Info851537
-Node: Miscellaneous Debugger Commands855531
-Node: Readline Support860715
-Node: Limitations861607
-Node: Debugging Summary863880
-Node: Arbitrary Precision Arithmetic865048
-Node: Computer Arithmetic866535
-Ref: Computer Arithmetic-Footnote-1870922
-Node: Math Definitions870979
-Ref: table-ieee-formats874268
-Ref: Math Definitions-Footnote-1874808
-Node: MPFR features874911
-Node: FP Math Caution876528
-Ref: FP Math Caution-Footnote-1877578
-Node: Inexactness of computations877947
-Node: Inexact representation878895
-Node: Comparing FP Values880250
-Node: Errors accumulate881214
-Node: Getting Accuracy882647
-Node: Try To Round885306
-Node: Setting precision886205
-Ref: table-predefined-precision-strings886887
-Node: Setting the rounding mode888680
-Ref: table-gawk-rounding-modes889044
-Ref: Setting the rounding mode-Footnote-1892498
-Node: Arbitrary Precision Integers892677
-Ref: Arbitrary Precision Integers-Footnote-1895658
-Node: POSIX Floating Point Problems895807
-Ref: POSIX Floating Point Problems-Footnote-1899683
-Node: Floating point summary899721
-Node: Dynamic Extensions901925
-Node: Extension Intro903477
-Node: Plugin License904742
-Node: Extension Mechanism Outline905427
-Ref: figure-load-extension905851
-Ref: figure-load-new-function907336
-Ref: figure-call-new-function908338
-Node: Extension API Description910322
-Node: Extension API Functions Introduction911772
-Node: General Data Types916639
-Ref: General Data Types-Footnote-1922332
-Node: Requesting Values922631
-Ref: table-value-types-returned923368
-Node: Memory Allocation Functions924326
-Ref: Memory Allocation Functions-Footnote-1927073
-Node: Constructor Functions927169
-Node: Registration Functions928927
-Node: Extension Functions929612
-Node: Exit Callback Functions931914
-Node: Extension Version String933162
-Node: Input Parsers933812
-Node: Output Wrappers943626
-Node: Two-way processors948142
-Node: Printing Messages950346
-Ref: Printing Messages-Footnote-1951423
-Node: Updating `ERRNO'951575
-Node: Accessing Parameters952314
-Node: Symbol Table Access953544
-Node: Symbol table by name954058
-Node: Symbol table by cookie956034
-Ref: Symbol table by cookie-Footnote-1960167
-Node: Cached values960230
-Ref: Cached values-Footnote-1963734
-Node: Array Manipulation963825
-Ref: Array Manipulation-Footnote-1964923
-Node: Array Data Types964962
-Ref: Array Data Types-Footnote-1967665
-Node: Array Functions967757
-Node: Flattening Arrays971631
-Node: Creating Arrays978483
-Node: Extension API Variables983214
-Node: Extension Versioning983850
-Node: Extension API Informational Variables985751
-Node: Extension API Boilerplate986837
-Node: Finding Extensions990641
-Node: Extension Example991201
-Node: Internal File Description991931
-Node: Internal File Ops996022
-Ref: Internal File Ops-Footnote-11007454
-Node: Using Internal File Ops1007594
-Ref: Using Internal File Ops-Footnote-11009941
-Node: Extension Samples1010209
-Node: Extension Sample File Functions1011733
-Node: Extension Sample Fnmatch1019301
-Node: Extension Sample Fork1020783
-Node: Extension Sample Inplace1021996
-Node: Extension Sample Ord1023671
-Node: Extension Sample Readdir1024507
-Ref: table-readdir-file-types1025363
-Node: Extension Sample Revout1026162
-Node: Extension Sample Rev2way1026753
-Node: Extension Sample Read write array1027494
-Node: Extension Sample Readfile1029373
-Node: Extension Sample API Tests1030473
-Node: Extension Sample Time1030998
-Node: gawkextlib1032313
-Node: Extension summary1035126
-Node: Extension Exercises1038819
-Node: Language History1039541
-Node: V7/SVR3.11041184
-Node: SVR41043504
-Node: POSIX1044946
-Node: BTL1046332
-Node: POSIX/GNU1047066
-Node: Feature History1052782
-Node: Common Extensions1065873
-Node: Ranges and Locales1067185
-Ref: Ranges and Locales-Footnote-11071802
-Ref: Ranges and Locales-Footnote-21071829
-Ref: Ranges and Locales-Footnote-31072063
-Node: Contributors1072284
-Node: History summary1077709
-Node: Installation1079078
-Node: Gawk Distribution1080029
-Node: Getting1080513
-Node: Extracting1081337
-Node: Distribution contents1082979
-Node: Unix Installation1088696
-Node: Quick Installation1089313
-Node: Additional Configuration Options1091755
-Node: Configuration Philosophy1093493
-Node: Non-Unix Installation1095844
-Node: PC Installation1096302
-Node: PC Binary Installation1097613
-Node: PC Compiling1099461
-Ref: PC Compiling-Footnote-11102460
-Node: PC Testing1102565
-Node: PC Using1103741
-Node: Cygwin1107893
-Node: MSYS1108702
-Node: VMS Installation1109216
-Node: VMS Compilation1110012
-Ref: VMS Compilation-Footnote-11111234
-Node: VMS Dynamic Extensions1111292
-Node: VMS Installation Details1112665
-Node: VMS Running1114917
-Node: VMS GNV1117751
-Node: VMS Old Gawk1118474
-Node: Bugs1118944
-Node: Other Versions1122948
-Node: Installation summary1129172
-Node: Notes1130228
-Node: Compatibility Mode1131093
-Node: Additions1131875
-Node: Accessing The Source1132800
-Node: Adding Code1134236
-Node: New Ports1140414
-Node: Derived Files1144895
-Ref: Derived Files-Footnote-11150370
-Ref: Derived Files-Footnote-21150404
-Ref: Derived Files-Footnote-31151000
-Node: Future Extensions1151114
-Node: Implementation Limitations1151720
-Node: Extension Design1152968
-Node: Old Extension Problems1154122
-Ref: Old Extension Problems-Footnote-11155639
-Node: Extension New Mechanism Goals1155696
-Ref: Extension New Mechanism Goals-Footnote-11159056
-Node: Extension Other Design Decisions1159245
-Node: Extension Future Growth1161351
-Node: Old Extension Mechanism1162187
-Node: Notes summary1163949
-Node: Basic Concepts1165135
-Node: Basic High Level1165816
-Ref: figure-general-flow1166088
-Ref: figure-process-flow1166687
-Ref: Basic High Level-Footnote-11169916
-Node: Basic Data Typing1170101
-Node: Glossary1173429
-Node: Copying1198581
-Node: GNU Free Documentation License1236137
-Node: Index1261273
+Ref: Options-Footnote-1128907
+Node: Other Arguments128932
+Node: Naming Standard Input131760
+Node: Environment Variables132853
+Node: AWKPATH Variable133411
+Ref: AWKPATH Variable-Footnote-1136277
+Ref: AWKPATH Variable-Footnote-2136322
+Node: AWKLIBPATH Variable136582
+Node: Other Environment Variables137341
+Node: Exit Status140793
+Node: Include Files141468
+Node: Loading Shared Libraries145046
+Node: Obsolete146430
+Node: Undocumented147127
+Node: Invoking Summary147394
+Node: Regexp148994
+Node: Regexp Usage150453
+Node: Escape Sequences152486
+Node: Regexp Operators158557
+Ref: Regexp Operators-Footnote-1165988
+Ref: Regexp Operators-Footnote-2166135
+Node: Bracket Expressions166233
+Ref: table-char-classes168251
+Node: Leftmost Longest171191
+Node: Computed Regexps172395
+Node: GNU Regexp Operators175773
+Node: Case-sensitivity179479
+Ref: Case-sensitivity-Footnote-1182369
+Ref: Case-sensitivity-Footnote-2182604
+Node: Regexp Summary182712
+Node: Reading Files184181
+Node: Records186273
+Node: awk split records186995
+Node: gawk split records191853
+Ref: gawk split records-Footnote-1196374
+Node: Fields196411
+Ref: Fields-Footnote-1199375
+Node: Nonconstant Fields199461
+Ref: Nonconstant Fields-Footnote-1201691
+Node: Changing Fields201893
+Node: Field Separators207847
+Node: Default Field Splitting210549
+Node: Regexp Field Splitting211666
+Node: Single Character Fields214993
+Node: Command Line Field Separator216052
+Node: Full Line Fields219478
+Ref: Full Line Fields-Footnote-1219986
+Node: Field Splitting Summary220032
+Ref: Field Splitting Summary-Footnote-1223164
+Node: Constant Size223265
+Node: Splitting By Content227871
+Ref: Splitting By Content-Footnote-1231944
+Node: Multiple Line231984
+Ref: Multiple Line-Footnote-1237840
+Node: Getline238019
+Node: Plain Getline240230
+Node: Getline/Variable242936
+Node: Getline/File244083
+Node: Getline/Variable/File245467
+Ref: Getline/Variable/File-Footnote-1247066
+Node: Getline/Pipe247153
+Node: Getline/Variable/Pipe249839
+Node: Getline/Coprocess250946
+Node: Getline/Variable/Coprocess252198
+Node: Getline Notes252935
+Node: Getline Summary255739
+Ref: table-getline-variants256147
+Node: Read Timeout257059
+Ref: Read Timeout-Footnote-1260886
+Node: Command-line directories260944
+Node: Input Summary261848
+Node: Input Exercises264985
+Node: Printing265713
+Node: Print267435
+Node: Print Examples268928
+Node: Output Separators271707
+Node: OFMT273723
+Node: Printf275081
+Node: Basic Printf275987
+Node: Control Letters277526
+Node: Format Modifiers281517
+Node: Printf Examples287544
+Node: Redirection290008
+Node: Special Files296980
+Node: Special FD297513
+Ref: Special FD-Footnote-1301110
+Node: Special Network301184
+Node: Special Caveats302034
+Node: Close Files And Pipes302830
+Ref: Close Files And Pipes-Footnote-1309991
+Ref: Close Files And Pipes-Footnote-2310139
+Node: Output Summary310289
+Node: Output Exercises311286
+Node: Expressions311966
+Node: Values313151
+Node: Constants313827
+Node: Scalar Constants314507
+Ref: Scalar Constants-Footnote-1315366
+Node: Nondecimal-numbers315616
+Node: Regexp Constants318616
+Node: Using Constant Regexps319141
+Node: Variables322213
+Node: Using Variables322868
+Node: Assignment Options324774
+Node: Conversion326649
+Node: Strings And Numbers327173
+Ref: Strings And Numbers-Footnote-1330235
+Node: Locale influences conversions330344
+Ref: table-locale-affects333061
+Node: All Operators333649
+Node: Arithmetic Ops334279
+Node: Concatenation336784
+Ref: Concatenation-Footnote-1339603
+Node: Assignment Ops339709
+Ref: table-assign-ops344692
+Node: Increment Ops345995
+Node: Truth Values and Conditions349433
+Node: Truth Values350516
+Node: Typing and Comparison351565
+Node: Variable Typing352358
+Node: Comparison Operators356010
+Ref: table-relational-ops356420
+Node: POSIX String Comparison359970
+Ref: POSIX String Comparison-Footnote-1361054
+Node: Boolean Ops361192
+Ref: Boolean Ops-Footnote-1365531
+Node: Conditional Exp365622
+Node: Function Calls367349
+Node: Precedence371229
+Node: Locales374898
+Node: Expressions Summary376529
+Node: Patterns and Actions379070
+Node: Pattern Overview380186
+Node: Regexp Patterns381863
+Node: Expression Patterns382406
+Node: Ranges386186
+Node: BEGIN/END389292
+Node: Using BEGIN/END390054
+Ref: Using BEGIN/END-Footnote-1392790
+Node: I/O And BEGIN/END392896
+Node: BEGINFILE/ENDFILE395167
+Node: Empty398098
+Node: Using Shell Variables398415
+Node: Action Overview400698
+Node: Statements403025
+Node: If Statement404873
+Node: While Statement406371
+Node: Do Statement408415
+Node: For Statement409571
+Node: Switch Statement412723
+Node: Break Statement415111
+Node: Continue Statement417152
+Node: Next Statement418977
+Node: Nextfile Statement421347
+Node: Exit Statement424004
+Node: Built-in Variables426408
+Node: User-modified427535
+Ref: User-modified-Footnote-1435224
+Node: Auto-set435286
+Ref: Auto-set-Footnote-1448475
+Ref: Auto-set-Footnote-2448680
+Node: ARGC and ARGV448736
+Node: Pattern Action Summary452640
+Node: Arrays454863
+Node: Array Basics456412
+Node: Array Intro457238
+Ref: figure-array-elements459211
+Ref: Array Intro-Footnote-1461735
+Node: Reference to Elements461863
+Node: Assigning Elements464313
+Node: Array Example464804
+Node: Scanning an Array466536
+Node: Controlling Scanning469537
+Ref: Controlling Scanning-Footnote-1474710
+Node: Delete475026
+Ref: Delete-Footnote-1477777
+Node: Numeric Array Subscripts477834
+Node: Uninitialized Subscripts480017
+Node: Multidimensional481644
+Node: Multiscanning484757
+Node: Arrays of Arrays486346
+Node: Arrays Summary491009
+Node: Functions493114
+Node: Built-in493987
+Node: Calling Built-in495065
+Node: Numeric Functions497053
+Ref: Numeric Functions-Footnote-1501889
+Ref: Numeric Functions-Footnote-2502246
+Ref: Numeric Functions-Footnote-3502294
+Node: String Functions502563
+Ref: String Functions-Footnote-1525560
+Ref: String Functions-Footnote-2525689
+Ref: String Functions-Footnote-3525937
+Node: Gory Details526024
+Ref: table-sub-escapes527797
+Ref: table-sub-proposed529317
+Ref: table-posix-sub530681
+Ref: table-gensub-escapes532221
+Ref: Gory Details-Footnote-1533397
+Node: I/O Functions533548
+Ref: I/O Functions-Footnote-1540658
+Node: Time Functions540805
+Ref: Time Functions-Footnote-1551269
+Ref: Time Functions-Footnote-2551337
+Ref: Time Functions-Footnote-3551495
+Ref: Time Functions-Footnote-4551606
+Ref: Time Functions-Footnote-5551718
+Ref: Time Functions-Footnote-6551945
+Node: Bitwise Functions552211
+Ref: table-bitwise-ops552773
+Ref: Bitwise Functions-Footnote-1557018
+Node: Type Functions557202
+Node: I18N Functions558344
+Node: User-defined559989
+Node: Definition Syntax560793
+Ref: Definition Syntax-Footnote-1566197
+Node: Function Example566266
+Ref: Function Example-Footnote-1568906
+Node: Function Caveats568928
+Node: Calling A Function569446
+Node: Variable Scope570401
+Node: Pass By Value/Reference573389
+Node: Return Statement576899
+Node: Dynamic Typing579883
+Node: Indirect Calls580812
+Ref: Indirect Calls-Footnote-1590528
+Node: Functions Summary590656
+Node: Library Functions593306
+Ref: Library Functions-Footnote-1596924
+Ref: Library Functions-Footnote-2597067
+Node: Library Names597238
+Ref: Library Names-Footnote-1600711
+Ref: Library Names-Footnote-2600931
+Node: General Functions601017
+Node: Strtonum Function602045
+Node: Assert Function604947
+Node: Round Function608273
+Node: Cliff Random Function609814
+Node: Ordinal Functions610830
+Ref: Ordinal Functions-Footnote-1613895
+Ref: Ordinal Functions-Footnote-2614147
+Node: Join Function614358
+Ref: Join Function-Footnote-1616129
+Node: Getlocaltime Function616329
+Node: Readfile Function620065
+Node: Data File Management621904
+Node: Filetrans Function622536
+Node: Rewind Function626605
+Node: File Checking628163
+Ref: File Checking-Footnote-1629295
+Node: Empty Files629496
+Node: Ignoring Assigns631475
+Node: Getopt Function633029
+Ref: Getopt Function-Footnote-1644293
+Node: Passwd Functions644496
+Ref: Passwd Functions-Footnote-1653475
+Node: Group Functions653563
+Ref: Group Functions-Footnote-1661494
+Node: Walking Arrays661707
+Node: Library Functions Summary663310
+Node: Library Exercises664698
+Node: Sample Programs665978
+Node: Running Examples666748
+Node: Clones667476
+Node: Cut Program668700
+Node: Egrep Program678558
+Ref: Egrep Program-Footnote-1686145
+Node: Id Program686255
+Node: Split Program689909
+Ref: Split Program-Footnote-1693447
+Node: Tee Program693575
+Node: Uniq Program696362
+Node: Wc Program703785
+Ref: Wc Program-Footnote-1708050
+Node: Miscellaneous Programs708142
+Node: Dupword Program709355
+Node: Alarm Program711386
+Node: Translate Program716190
+Ref: Translate Program-Footnote-1720763
+Ref: Translate Program-Footnote-2721033
+Node: Labels Program721172
+Ref: Labels Program-Footnote-1724533
+Node: Word Sorting724617
+Node: History Sorting728660
+Node: Extract Program730496
+Node: Simple Sed738032
+Node: Igawk Program741094
+Ref: Igawk Program-Footnote-1755398
+Ref: Igawk Program-Footnote-2755599
+Node: Anagram Program755737
+Node: Signature Program758805
+Node: Programs Summary760052
+Node: Programs Exercises761267
+Ref: Programs Exercises-Footnote-1765398
+Node: Advanced Features765489
+Node: Nondecimal Data767437
+Node: Array Sorting769014
+Node: Controlling Array Traversal769711
+Node: Array Sorting Functions777991
+Ref: Array Sorting Functions-Footnote-1781898
+Node: Two-way I/O782092
+Ref: Two-way I/O-Footnote-1787036
+Ref: Two-way I/O-Footnote-2787215
+Node: TCP/IP Networking787297
+Node: Profiling790139
+Node: Advanced Features Summary797690
+Node: Internationalization799554
+Node: I18N and L10N801034
+Node: Explaining gettext801720
+Ref: Explaining gettext-Footnote-1806746
+Ref: Explaining gettext-Footnote-2806930
+Node: Programmer i18n807095
+Ref: Programmer i18n-Footnote-1811889
+Node: Translator i18n811938
+Node: String Extraction812732
+Ref: String Extraction-Footnote-1813865
+Node: Printf Ordering813951
+Ref: Printf Ordering-Footnote-1816733
+Node: I18N Portability816797
+Ref: I18N Portability-Footnote-1819246
+Node: I18N Example819309
+Ref: I18N Example-Footnote-1822015
+Node: Gawk I18N822087
+Node: I18N Summary822725
+Node: Debugger824064
+Node: Debugging825086
+Node: Debugging Concepts825527
+Node: Debugging Terms827383
+Node: Awk Debugging829980
+Node: Sample Debugging Session830872
+Node: Debugger Invocation831392
+Node: Finding The Bug832728
+Node: List of Debugger Commands839207
+Node: Breakpoint Control840539
+Node: Debugger Execution Control844203
+Node: Viewing And Changing Data847563
+Node: Execution Stack850921
+Node: Debugger Info852434
+Node: Miscellaneous Debugger Commands856428
+Node: Readline Support861612
+Node: Limitations862504
+Node: Debugging Summary864777
+Node: Arbitrary Precision Arithmetic865945
+Node: Computer Arithmetic867432
+Ref: Computer Arithmetic-Footnote-1871819
+Node: Math Definitions871876
+Ref: table-ieee-formats875165
+Ref: Math Definitions-Footnote-1875705
+Node: MPFR features875808
+Node: FP Math Caution877425
+Ref: FP Math Caution-Footnote-1878475
+Node: Inexactness of computations878844
+Node: Inexact representation879792
+Node: Comparing FP Values881147
+Node: Errors accumulate882111
+Node: Getting Accuracy883544
+Node: Try To Round886203
+Node: Setting precision887102
+Ref: table-predefined-precision-strings887784
+Node: Setting the rounding mode889577
+Ref: table-gawk-rounding-modes889941
+Ref: Setting the rounding mode-Footnote-1893395
+Node: Arbitrary Precision Integers893574
+Ref: Arbitrary Precision Integers-Footnote-1897347
+Node: POSIX Floating Point Problems897496
+Ref: POSIX Floating Point Problems-Footnote-1901372
+Node: Floating point summary901410
+Node: Dynamic Extensions903614
+Node: Extension Intro905166
+Node: Plugin License906431
+Node: Extension Mechanism Outline907116
+Ref: figure-load-extension907540
+Ref: figure-load-new-function909025
+Ref: figure-call-new-function910027
+Node: Extension API Description912011
+Node: Extension API Functions Introduction913461
+Node: General Data Types918328
+Ref: General Data Types-Footnote-1924021
+Node: Requesting Values924320
+Ref: table-value-types-returned925057
+Node: Memory Allocation Functions926015
+Ref: Memory Allocation Functions-Footnote-1928762
+Node: Constructor Functions928858
+Node: Registration Functions930616
+Node: Extension Functions931301
+Node: Exit Callback Functions933603
+Node: Extension Version String934851
+Node: Input Parsers935501
+Node: Output Wrappers945315
+Node: Two-way processors949831
+Node: Printing Messages952035
+Ref: Printing Messages-Footnote-1953112
+Node: Updating `ERRNO'953264
+Node: Accessing Parameters954003
+Node: Symbol Table Access955233
+Node: Symbol table by name955747
+Node: Symbol table by cookie957723
+Ref: Symbol table by cookie-Footnote-1961856
+Node: Cached values961919
+Ref: Cached values-Footnote-1965423
+Node: Array Manipulation965514
+Ref: Array Manipulation-Footnote-1966612
+Node: Array Data Types966651
+Ref: Array Data Types-Footnote-1969354
+Node: Array Functions969446
+Node: Flattening Arrays973320
+Node: Creating Arrays980172
+Node: Extension API Variables984903
+Node: Extension Versioning985539
+Node: Extension API Informational Variables987440
+Node: Extension API Boilerplate988526
+Node: Finding Extensions992330
+Node: Extension Example992890
+Node: Internal File Description993620
+Node: Internal File Ops997711
+Ref: Internal File Ops-Footnote-11009143
+Node: Using Internal File Ops1009283
+Ref: Using Internal File Ops-Footnote-11011630
+Node: Extension Samples1011898
+Node: Extension Sample File Functions1013422
+Node: Extension Sample Fnmatch1020990
+Node: Extension Sample Fork1022472
+Node: Extension Sample Inplace1023685
+Node: Extension Sample Ord1025360
+Node: Extension Sample Readdir1026196
+Ref: table-readdir-file-types1027052
+Node: Extension Sample Revout1027851
+Node: Extension Sample Rev2way1028442
+Node: Extension Sample Read write array1029183
+Node: Extension Sample Readfile1031062
+Node: Extension Sample API Tests1032162
+Node: Extension Sample Time1032687
+Node: gawkextlib1034002
+Node: Extension summary1036815
+Node: Extension Exercises1040508
+Node: Language History1041230
+Node: V7/SVR3.11042873
+Node: SVR41045193
+Node: POSIX1046635
+Node: BTL1048021
+Node: POSIX/GNU1048755
+Node: Feature History1054531
+Node: Common Extensions1067622
+Node: Ranges and Locales1068934
+Ref: Ranges and Locales-Footnote-11073551
+Ref: Ranges and Locales-Footnote-21073578
+Ref: Ranges and Locales-Footnote-31073812
+Node: Contributors1074033
+Node: History summary1079458
+Node: Installation1080827
+Node: Gawk Distribution1081778
+Node: Getting1082262
+Node: Extracting1083086
+Node: Distribution contents1084728
+Node: Unix Installation1090498
+Node: Quick Installation1091115
+Node: Additional Configuration Options1093557
+Node: Configuration Philosophy1095295
+Node: Non-Unix Installation1097646
+Node: PC Installation1098104
+Node: PC Binary Installation1099415
+Node: PC Compiling1101263
+Ref: PC Compiling-Footnote-11104262
+Node: PC Testing1104367
+Node: PC Using1105543
+Node: Cygwin1109695
+Node: MSYS1110504
+Node: VMS Installation1111018
+Node: VMS Compilation1111814
+Ref: VMS Compilation-Footnote-11113036
+Node: VMS Dynamic Extensions1113094
+Node: VMS Installation Details1114467
+Node: VMS Running1116719
+Node: VMS GNV1119553
+Node: VMS Old Gawk1120276
+Node: Bugs1120746
+Node: Other Versions1124750
+Node: Installation summary1130974
+Node: Notes1132030
+Node: Compatibility Mode1132895
+Node: Additions1133677
+Node: Accessing The Source1134602
+Node: Adding Code1136038
+Node: New Ports1142216
+Node: Derived Files1146697
+Ref: Derived Files-Footnote-11152172
+Ref: Derived Files-Footnote-21152206
+Ref: Derived Files-Footnote-31152802
+Node: Future Extensions1152916
+Node: Implementation Limitations1153522
+Node: Extension Design1154770
+Node: Old Extension Problems1155924
+Ref: Old Extension Problems-Footnote-11157441
+Node: Extension New Mechanism Goals1157498
+Ref: Extension New Mechanism Goals-Footnote-11160858
+Node: Extension Other Design Decisions1161047
+Node: Extension Future Growth1163153
+Node: Old Extension Mechanism1163989
+Node: Notes summary1165751
+Node: Basic Concepts1166937
+Node: Basic High Level1167618
+Ref: figure-general-flow1167890
+Ref: figure-process-flow1168489
+Ref: Basic High Level-Footnote-11171718
+Node: Basic Data Typing1171903
+Node: Glossary1175231
+Node: Copying1200383
+Node: GNU Free Documentation License1237939
+Node: Index1263075

End Tag Table