aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.info
diff options
context:
space:
mode:
Diffstat (limited to 'doc/gawk.info')
-rw-r--r--doc/gawk.info1337
1 files changed, 690 insertions, 647 deletions
diff --git a/doc/gawk.info b/doc/gawk.info
index 39da4897..05434558 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -2568,10 +2568,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'
@@ -2953,11 +2951,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.
@@ -3347,15 +3340,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
@@ -10181,10 +10176,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
@@ -11702,6 +11705,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
@@ -19628,8 +19646,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
@@ -22104,6 +22122,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
@@ -27033,7 +27074,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
@@ -27075,11 +27118,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
@@ -31012,20 +31054,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)
@@ -31033,9 +31075,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)
@@ -31043,32 +31085,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)
@@ -31127,10 +31169,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.
@@ -31171,7 +31213,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)
@@ -31340,7 +31382,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)
@@ -31400,10 +31442,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 +31486,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 +31591,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 +31788,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 +31819,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 +31972,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 +32011,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 +32039,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 +32049,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 +32057,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 +32073,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 +32098,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 24)
* egrep.awk program: Egrep Program. (line 54)
@@ -32112,13 +32155,13 @@ Index
(line 11)
* EREs (Extended Regular Expressions): Bracket Expressions. (line 24)
* 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)
@@ -32151,10 +32194,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)
@@ -32172,7 +32215,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)
@@ -32251,7 +32294,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)
@@ -32319,9 +32362,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.
@@ -32358,7 +32401,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.
@@ -32371,7 +32414,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)
@@ -32421,7 +32464,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)
@@ -32442,13 +32485,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)
@@ -32459,7 +32502,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.
@@ -32490,7 +32533,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.
@@ -32498,18 +32541,18 @@ Index
* gawk, regular expressions, operators: GNU Regexp Operators.
(line 6)
* gawk, regular expressions, precedence: Regexp Operators. (line 162)
-* 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)
@@ -32591,7 +32634,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.
@@ -32690,7 +32733,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)
@@ -32819,7 +32862,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)
@@ -32833,14 +32876,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)
@@ -32880,8 +32923,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)
@@ -32893,8 +32936,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)
@@ -32917,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)
@@ -32946,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.
@@ -32955,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.
@@ -33072,7 +33115,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 80)
* password file: Passwd Functions. (line 16)
@@ -33114,14 +33157,14 @@ Index
* plus sign (+), += operator: Assignment Ops. (line 82)
* plus sign (+), regexp operator: Regexp Operators. (line 103)
* 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 42)
* 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.
@@ -33139,7 +33182,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)
@@ -33160,7 +33203,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 24)
* POSIX awk, bracket expressions and, character classes: Bracket Expressions.
@@ -33188,11 +33231,11 @@ Index
* POSIX awk, regular expressions and: Regexp Operators. (line 162)
* 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)
@@ -33235,24 +33278,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)
@@ -33296,12 +33339,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)
@@ -33371,7 +33414,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)
@@ -33411,7 +33454,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)
@@ -33429,7 +33472,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)
@@ -33437,9 +33480,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)
@@ -33452,14 +33495,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)
@@ -33479,7 +33522,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)
@@ -33541,14 +33584,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.
@@ -33581,8 +33624,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)
@@ -33632,10 +33675,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)
@@ -33707,9 +33750,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)
@@ -33776,7 +33819,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)
@@ -33832,7 +33875,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.
@@ -33887,10 +33930,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)
@@ -33924,7 +33967,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)
@@ -34018,511 +34061,511 @@ Node: Intro Summary110017
Node: Invoking Gawk110783
Node: Command Line112298
Node: Options113089
-Ref: Options-Footnote-1128865
-Node: Other Arguments128890
-Node: Naming Standard Input131552
-Node: Environment Variables132645
-Node: AWKPATH Variable133203
-Ref: AWKPATH Variable-Footnote-1136069
-Ref: AWKPATH Variable-Footnote-2136114
-Node: AWKLIBPATH Variable136374
-Node: Other Environment Variables137133
-Node: Exit Status140790
-Node: Include Files141465
-Node: Loading Shared Libraries145043
-Node: Obsolete146427
-Node: Undocumented147124
-Node: Invoking Summary147391
-Node: Regexp148991
-Node: Regexp Usage150441
-Node: Escape Sequences152474
-Node: Regexp Operators158291
-Ref: Regexp Operators-Footnote-1165771
-Ref: Regexp Operators-Footnote-2165918
-Node: Bracket Expressions166016
-Ref: table-char-classes167906
-Node: GNU Regexp Operators170846
-Node: Case-sensitivity174555
-Ref: Case-sensitivity-Footnote-1177447
-Ref: Case-sensitivity-Footnote-2177682
-Node: Leftmost Longest177790
-Node: Computed Regexps178991
-Node: Regexp Summary182363
-Node: Reading Files183832
-Node: Records185924
-Node: awk split records186667
-Node: gawk split records191525
-Ref: gawk split records-Footnote-1196046
-Node: Fields196083
-Ref: Fields-Footnote-1199047
-Node: Nonconstant Fields199133
-Ref: Nonconstant Fields-Footnote-1201363
-Node: Changing Fields201565
-Node: Field Separators207519
-Node: Default Field Splitting210221
-Node: Regexp Field Splitting211338
-Node: Single Character Fields214665
-Node: Command Line Field Separator215724
-Node: Full Line Fields219150
-Ref: Full Line Fields-Footnote-1219658
-Node: Field Splitting Summary219704
-Ref: Field Splitting Summary-Footnote-1222836
-Node: Constant Size222937
-Node: Splitting By Content227543
-Ref: Splitting By Content-Footnote-1231616
-Node: Multiple Line231656
-Ref: Multiple Line-Footnote-1237512
-Node: Getline237691
-Node: Plain Getline239907
-Node: Getline/Variable242002
-Node: Getline/File243149
-Node: Getline/Variable/File244533
-Ref: Getline/Variable/File-Footnote-1246132
-Node: Getline/Pipe246219
-Node: Getline/Variable/Pipe248905
-Node: Getline/Coprocess250012
-Node: Getline/Variable/Coprocess251264
-Node: Getline Notes252001
-Node: Getline Summary254805
-Ref: table-getline-variants255213
-Node: Read Timeout256125
-Ref: Read Timeout-Footnote-1259952
-Node: Command-line directories260010
-Node: Input Summary260914
-Node: Input Exercises264051
-Node: Printing264784
-Node: Print266506
-Node: Print Examples267999
-Node: Output Separators270778
-Node: OFMT272794
-Node: Printf274152
-Node: Basic Printf275058
-Node: Control Letters276597
-Node: Format Modifiers280588
-Node: Printf Examples286615
-Node: Redirection289079
-Node: Special Files296051
-Node: Special FD296584
-Ref: Special FD-Footnote-1300181
-Node: Special Network300255
-Node: Special Caveats301105
-Node: Close Files And Pipes301901
-Ref: Close Files And Pipes-Footnote-1309062
-Ref: Close Files And Pipes-Footnote-2309210
-Node: Output Summary309360
-Node: Output exercises310357
-Node: Expressions311037
-Node: Values312222
-Node: Constants312898
-Node: Scalar Constants313578
-Ref: Scalar Constants-Footnote-1314437
-Node: Nondecimal-numbers314687
-Node: Regexp Constants317687
-Node: Using Constant Regexps318162
-Node: Variables321234
-Node: Using Variables321889
-Node: Assignment Options323613
-Node: Conversion325488
-Node: Strings And Numbers326012
-Ref: Strings And Numbers-Footnote-1329074
-Node: Locale influences conversions329183
-Ref: table-locale-affects331900
-Node: All Operators332488
-Node: Arithmetic Ops333118
-Node: Concatenation335623
-Ref: Concatenation-Footnote-1338442
-Node: Assignment Ops338548
-Ref: table-assign-ops343531
-Node: Increment Ops344834
-Node: Truth Values and Conditions348272
-Node: Truth Values349355
-Node: Typing and Comparison350404
-Node: Variable Typing351197
-Node: Comparison Operators354849
-Ref: table-relational-ops355259
-Node: POSIX String Comparison358809
-Ref: POSIX String Comparison-Footnote-1359893
-Node: Boolean Ops360031
-Ref: Boolean Ops-Footnote-1364101
-Node: Conditional Exp364192
-Node: Function Calls365919
-Node: Precedence369799
-Node: Locales373468
-Node: Expressions Summary375099
-Node: Patterns and Actions377640
-Node: Pattern Overview378756
-Node: Regexp Patterns380433
-Node: Expression Patterns380976
-Node: Ranges384757
-Node: BEGIN/END387863
-Node: Using BEGIN/END388625
-Ref: Using BEGIN/END-Footnote-1391361
-Node: I/O And BEGIN/END391467
-Node: BEGINFILE/ENDFILE393738
-Node: Empty396669
-Node: Using Shell Variables396986
-Node: Action Overview399269
-Node: Statements401596
-Node: If Statement403444
-Node: While Statement404942
-Node: Do Statement406986
-Node: For Statement408142
-Node: Switch Statement411294
-Node: Break Statement413682
-Node: Continue Statement415723
-Node: Next Statement417548
-Node: Nextfile Statement419938
-Node: Exit Statement422574
-Node: Built-in Variables424978
-Node: User-modified426105
-Ref: User-modified-Footnote-1433794
-Node: Auto-set433856
-Ref: Auto-set-Footnote-1446438
-Ref: Auto-set-Footnote-2446643
-Node: ARGC and ARGV446699
-Node: Pattern Action Summary450603
-Node: Arrays452826
-Node: Array Basics454375
-Node: Array Intro455201
-Ref: figure-array-elements457174
-Node: Reference to Elements459581
-Node: Assigning Elements461960
-Node: Array Example462451
-Node: Scanning an Array464183
-Node: Controlling Scanning467184
-Ref: Controlling Scanning-Footnote-1472357
-Node: Delete472673
-Ref: Delete-Footnote-1475424
-Node: Numeric Array Subscripts475481
-Node: Uninitialized Subscripts477664
-Node: Multidimensional479289
-Node: Multiscanning482402
-Node: Arrays of Arrays483991
-Node: Arrays Summary488654
-Node: Functions490759
-Node: Built-in491632
-Node: Calling Built-in492710
-Node: Numeric Functions494698
-Ref: Numeric Functions-Footnote-1498732
-Ref: Numeric Functions-Footnote-2499089
-Ref: Numeric Functions-Footnote-3499137
-Node: String Functions499406
-Ref: String Functions-Footnote-1522403
-Ref: String Functions-Footnote-2522532
-Ref: String Functions-Footnote-3522780
-Node: Gory Details522867
-Ref: table-sub-escapes524640
-Ref: table-sub-proposed526160
-Ref: table-posix-sub527524
-Ref: table-gensub-escapes529064
-Ref: Gory Details-Footnote-1530240
-Node: I/O Functions530391
-Ref: I/O Functions-Footnote-1537501
-Node: Time Functions537648
-Ref: Time Functions-Footnote-1548112
-Ref: Time Functions-Footnote-2548180
-Ref: Time Functions-Footnote-3548338
-Ref: Time Functions-Footnote-4548449
-Ref: Time Functions-Footnote-5548561
-Ref: Time Functions-Footnote-6548788
-Node: Bitwise Functions549054
-Ref: table-bitwise-ops549616
-Ref: Bitwise Functions-Footnote-1553861
-Node: Type Functions554045
-Node: I18N Functions555187
-Node: User-defined556832
-Node: Definition Syntax557636
-Ref: Definition Syntax-Footnote-1562815
-Node: Function Example562884
-Ref: Function Example-Footnote-1565524
-Node: Function Caveats565546
-Node: Calling A Function566064
-Node: Variable Scope567019
-Node: Pass By Value/Reference570007
-Node: Return Statement573517
-Node: Dynamic Typing576501
-Node: Indirect Calls577430
-Node: Functions Summary587143
-Node: Library Functions589682
-Ref: Library Functions-Footnote-1593300
-Ref: Library Functions-Footnote-2593443
-Node: Library Names593614
-Ref: Library Names-Footnote-1597087
-Ref: Library Names-Footnote-2597307
-Node: General Functions597393
-Node: Strtonum Function598421
-Node: Assert Function601201
-Node: Round Function604527
-Node: Cliff Random Function606068
-Node: Ordinal Functions607084
-Ref: Ordinal Functions-Footnote-1610161
-Ref: Ordinal Functions-Footnote-2610413
-Node: Join Function610624
-Ref: Join Function-Footnote-1612395
-Node: Getlocaltime Function612595
-Node: Readfile Function616331
-Node: Data File Management618170
-Node: Filetrans Function618802
-Node: Rewind Function622871
-Node: File Checking624429
-Ref: File Checking-Footnote-1625561
-Node: Empty Files625762
-Node: Ignoring Assigns627741
-Node: Getopt Function629295
-Ref: Getopt Function-Footnote-1640598
-Node: Passwd Functions640801
-Ref: Passwd Functions-Footnote-1649780
-Node: Group Functions649868
-Ref: Group Functions-Footnote-1657809
-Node: Walking Arrays658022
-Node: Library Functions Summary659625
-Node: Library exercises661013
-Node: Sample Programs662293
-Node: Running Examples663063
-Node: Clones663791
-Node: Cut Program665015
-Node: Egrep Program674883
-Ref: Egrep Program-Footnote-1682854
-Node: Id Program682964
-Node: Split Program686628
-Ref: Split Program-Footnote-1690166
-Node: Tee Program690294
-Node: Uniq Program693101
-Node: Wc Program700531
-Ref: Wc Program-Footnote-1704796
-Node: Miscellaneous Programs704888
-Node: Dupword Program706101
-Node: Alarm Program708132
-Node: Translate Program712946
-Ref: Translate Program-Footnote-1717337
-Ref: Translate Program-Footnote-2717607
-Node: Labels Program717741
-Ref: Labels Program-Footnote-1721112
-Node: Word Sorting721196
-Node: History Sorting725239
-Node: Extract Program727075
-Node: Simple Sed734611
-Node: Igawk Program737673
-Ref: Igawk Program-Footnote-1751977
-Ref: Igawk Program-Footnote-2752178
-Node: Anagram Program752316
-Node: Signature Program755384
-Node: Programs Summary756631
-Node: Programs Exercises757846
-Node: Advanced Features761497
-Node: Nondecimal Data763445
-Node: Array Sorting765022
-Node: Controlling Array Traversal765719
-Node: Array Sorting Functions773999
-Ref: Array Sorting Functions-Footnote-1777906
-Node: Two-way I/O778100
-Ref: Two-way I/O-Footnote-1783044
-Ref: Two-way I/O-Footnote-2783223
-Node: TCP/IP Networking783305
-Node: Profiling786150
-Node: Advanced Features Summary793692
-Node: Internationalization795556
-Node: I18N and L10N797036
-Node: Explaining gettext797722
-Ref: Explaining gettext-Footnote-1802748
-Ref: Explaining gettext-Footnote-2802932
-Node: Programmer i18n803097
-Ref: Programmer i18n-Footnote-1807891
-Node: Translator i18n807940
-Node: String Extraction808734
-Ref: String Extraction-Footnote-1809867
-Node: Printf Ordering809953
-Ref: Printf Ordering-Footnote-1812735
-Node: I18N Portability812799
-Ref: I18N Portability-Footnote-1815248
-Node: I18N Example815311
-Ref: I18N Example-Footnote-1818017
-Node: Gawk I18N818089
-Node: I18N Summary818727
-Node: Debugger820066
-Node: Debugging821088
-Node: Debugging Concepts821529
-Node: Debugging Terms823385
-Node: Awk Debugging825982
-Node: Sample Debugging Session826874
-Node: Debugger Invocation827394
-Node: Finding The Bug828727
-Node: List of Debugger Commands835209
-Node: Breakpoint Control836541
-Node: Debugger Execution Control840205
-Node: Viewing And Changing Data843565
-Node: Execution Stack846923
-Node: Debugger Info848436
-Node: Miscellaneous Debugger Commands852430
-Node: Readline Support857614
-Node: Limitations858506
-Node: Debugging Summary860780
-Node: Arbitrary Precision Arithmetic861948
-Node: Computer Arithmetic863435
-Ref: Computer Arithmetic-Footnote-1867822
-Node: Math Definitions867879
-Ref: table-ieee-formats871168
-Ref: Math Definitions-Footnote-1871708
-Node: MPFR features871811
-Node: FP Math Caution873428
-Ref: FP Math Caution-Footnote-1874478
-Node: Inexactness of computations874847
-Node: Inexact representation875795
-Node: Comparing FP Values877150
-Node: Errors accumulate878114
-Node: Getting Accuracy879547
-Node: Try To Round882206
-Node: Setting precision883105
-Ref: table-predefined-precision-strings883787
-Node: Setting the rounding mode885580
-Ref: table-gawk-rounding-modes885944
-Ref: Setting the rounding mode-Footnote-1889398
-Node: Arbitrary Precision Integers889577
-Ref: Arbitrary Precision Integers-Footnote-1892558
-Node: POSIX Floating Point Problems892707
-Ref: POSIX Floating Point Problems-Footnote-1896583
-Node: Floating point summary896621
-Node: Dynamic Extensions898825
-Node: Extension Intro900377
-Node: Plugin License901642
-Node: Extension Mechanism Outline902327
-Ref: figure-load-extension902751
-Ref: figure-load-new-function904236
-Ref: figure-call-new-function905238
-Node: Extension API Description907222
-Node: Extension API Functions Introduction908672
-Node: General Data Types913539
-Ref: General Data Types-Footnote-1919232
-Node: Requesting Values919531
-Ref: table-value-types-returned920268
-Node: Memory Allocation Functions921226
-Ref: Memory Allocation Functions-Footnote-1923973
-Node: Constructor Functions924069
-Node: Registration Functions925827
-Node: Extension Functions926512
-Node: Exit Callback Functions928814
-Node: Extension Version String930062
-Node: Input Parsers930712
-Node: Output Wrappers940526
-Node: Two-way processors945042
-Node: Printing Messages947246
-Ref: Printing Messages-Footnote-1948323
-Node: Updating `ERRNO'948475
-Node: Accessing Parameters949214
-Node: Symbol Table Access950444
-Node: Symbol table by name950958
-Node: Symbol table by cookie952934
-Ref: Symbol table by cookie-Footnote-1957067
-Node: Cached values957130
-Ref: Cached values-Footnote-1960634
-Node: Array Manipulation960725
-Ref: Array Manipulation-Footnote-1961823
-Node: Array Data Types961862
-Ref: Array Data Types-Footnote-1964565
-Node: Array Functions964657
-Node: Flattening Arrays968531
-Node: Creating Arrays975383
-Node: Extension API Variables980114
-Node: Extension Versioning980750
-Node: Extension API Informational Variables982651
-Node: Extension API Boilerplate983737
-Node: Finding Extensions987541
-Node: Extension Example988101
-Node: Internal File Description988831
-Node: Internal File Ops992922
-Ref: Internal File Ops-Footnote-11004354
-Node: Using Internal File Ops1004494
-Ref: Using Internal File Ops-Footnote-11006841
-Node: Extension Samples1007109
-Node: Extension Sample File Functions1008633
-Node: Extension Sample Fnmatch1016201
-Node: Extension Sample Fork1017683
-Node: Extension Sample Inplace1018896
-Node: Extension Sample Ord1020571
-Node: Extension Sample Readdir1021407
-Ref: table-readdir-file-types1022263
-Node: Extension Sample Revout1023062
-Node: Extension Sample Rev2way1023653
-Node: Extension Sample Read write array1024394
-Node: Extension Sample Readfile1026273
-Node: Extension Sample API Tests1027373
-Node: Extension Sample Time1027898
-Node: gawkextlib1029213
-Node: Extension summary1032026
-Node: Extension Exercises1035719
-Node: Language History1036441
-Node: V7/SVR3.11038084
-Node: SVR41040404
-Node: POSIX1041846
-Node: BTL1043232
-Node: POSIX/GNU1043966
-Node: Feature History1049682
-Node: Common Extensions1062773
-Node: Ranges and Locales1064085
-Ref: Ranges and Locales-Footnote-11068702
-Ref: Ranges and Locales-Footnote-21068729
-Ref: Ranges and Locales-Footnote-31068963
-Node: Contributors1069184
-Node: History summary1074609
-Node: Installation1075978
-Node: Gawk Distribution1076929
-Node: Getting1077413
-Node: Extracting1078237
-Node: Distribution contents1079879
-Node: Unix Installation1085596
-Node: Quick Installation1086213
-Node: Additional Configuration Options1088655
-Node: Configuration Philosophy1090393
-Node: Non-Unix Installation1092744
-Node: PC Installation1093202
-Node: PC Binary Installation1094513
-Node: PC Compiling1096361
-Ref: PC Compiling-Footnote-11099360
-Node: PC Testing1099465
-Node: PC Using1100641
-Node: Cygwin1104793
-Node: MSYS1105602
-Node: VMS Installation1106116
-Node: VMS Compilation1106912
-Ref: VMS Compilation-Footnote-11108134
-Node: VMS Dynamic Extensions1108192
-Node: VMS Installation Details1109565
-Node: VMS Running1111817
-Node: VMS GNV1114651
-Node: VMS Old Gawk1115374
-Node: Bugs1115844
-Node: Other Versions1119848
-Node: Installation summary1126075
-Node: Notes1127131
-Node: Compatibility Mode1127996
-Node: Additions1128778
-Node: Accessing The Source1129703
-Node: Adding Code1131139
-Node: New Ports1137317
-Node: Derived Files1141798
-Ref: Derived Files-Footnote-11146879
-Ref: Derived Files-Footnote-21146913
-Ref: Derived Files-Footnote-31147509
-Node: Future Extensions1147623
-Node: Implementation Limitations1148229
-Node: Extension Design1149477
-Node: Old Extension Problems1150631
-Ref: Old Extension Problems-Footnote-11152148
-Node: Extension New Mechanism Goals1152205
-Ref: Extension New Mechanism Goals-Footnote-11155565
-Node: Extension Other Design Decisions1155754
-Node: Extension Future Growth1157860
-Node: Old Extension Mechanism1158696
-Node: Notes summary1160458
-Node: Basic Concepts1161644
-Node: Basic High Level1162325
-Ref: figure-general-flow1162597
-Ref: figure-process-flow1163196
-Ref: Basic High Level-Footnote-11166425
-Node: Basic Data Typing1166610
-Node: Glossary1169938
-Node: Copying1195090
-Node: GNU Free Documentation License1232646
-Node: Index1257782
+Ref: Options-Footnote-1128736
+Node: Other Arguments128761
+Node: Naming Standard Input131423
+Node: Environment Variables132516
+Node: AWKPATH Variable133074
+Ref: AWKPATH Variable-Footnote-1135940
+Ref: AWKPATH Variable-Footnote-2135985
+Node: AWKLIBPATH Variable136245
+Node: Other Environment Variables137004
+Node: Exit Status140456
+Node: Include Files141131
+Node: Loading Shared Libraries144709
+Node: Obsolete146093
+Node: Undocumented146790
+Node: Invoking Summary147057
+Node: Regexp148657
+Node: Regexp Usage150107
+Node: Escape Sequences152140
+Node: Regexp Operators158040
+Ref: Regexp Operators-Footnote-1165520
+Ref: Regexp Operators-Footnote-2165667
+Node: Bracket Expressions165765
+Ref: table-char-classes167655
+Node: GNU Regexp Operators170595
+Node: Case-sensitivity174304
+Ref: Case-sensitivity-Footnote-1177196
+Ref: Case-sensitivity-Footnote-2177431
+Node: Leftmost Longest177539
+Node: Computed Regexps178740
+Node: Regexp Summary182112
+Node: Reading Files183581
+Node: Records185673
+Node: awk split records186416
+Node: gawk split records191274
+Ref: gawk split records-Footnote-1195795
+Node: Fields195832
+Ref: Fields-Footnote-1198796
+Node: Nonconstant Fields198882
+Ref: Nonconstant Fields-Footnote-1201112
+Node: Changing Fields201314
+Node: Field Separators207268
+Node: Default Field Splitting209970
+Node: Regexp Field Splitting211087
+Node: Single Character Fields214414
+Node: Command Line Field Separator215473
+Node: Full Line Fields218899
+Ref: Full Line Fields-Footnote-1219407
+Node: Field Splitting Summary219453
+Ref: Field Splitting Summary-Footnote-1222585
+Node: Constant Size222686
+Node: Splitting By Content227292
+Ref: Splitting By Content-Footnote-1231365
+Node: Multiple Line231405
+Ref: Multiple Line-Footnote-1237261
+Node: Getline237440
+Node: Plain Getline239656
+Node: Getline/Variable241751
+Node: Getline/File242898
+Node: Getline/Variable/File244282
+Ref: Getline/Variable/File-Footnote-1245881
+Node: Getline/Pipe245968
+Node: Getline/Variable/Pipe248654
+Node: Getline/Coprocess249761
+Node: Getline/Variable/Coprocess251013
+Node: Getline Notes251750
+Node: Getline Summary254554
+Ref: table-getline-variants254962
+Node: Read Timeout255874
+Ref: Read Timeout-Footnote-1259701
+Node: Command-line directories259759
+Node: Input Summary260663
+Node: Input Exercises263800
+Node: Printing264533
+Node: Print266255
+Node: Print Examples267748
+Node: Output Separators270527
+Node: OFMT272543
+Node: Printf273901
+Node: Basic Printf274807
+Node: Control Letters276346
+Node: Format Modifiers280337
+Node: Printf Examples286364
+Node: Redirection288828
+Node: Special Files295800
+Node: Special FD296333
+Ref: Special FD-Footnote-1299930
+Node: Special Network300004
+Node: Special Caveats300854
+Node: Close Files And Pipes301650
+Ref: Close Files And Pipes-Footnote-1308811
+Ref: Close Files And Pipes-Footnote-2308959
+Node: Output Summary309109
+Node: Output exercises310106
+Node: Expressions310786
+Node: Values311971
+Node: Constants312647
+Node: Scalar Constants313327
+Ref: Scalar Constants-Footnote-1314186
+Node: Nondecimal-numbers314436
+Node: Regexp Constants317436
+Node: Using Constant Regexps317911
+Node: Variables320983
+Node: Using Variables321638
+Node: Assignment Options323362
+Node: Conversion325237
+Node: Strings And Numbers325761
+Ref: Strings And Numbers-Footnote-1328823
+Node: Locale influences conversions328932
+Ref: table-locale-affects331649
+Node: All Operators332237
+Node: Arithmetic Ops332867
+Node: Concatenation335372
+Ref: Concatenation-Footnote-1338191
+Node: Assignment Ops338297
+Ref: table-assign-ops343280
+Node: Increment Ops344583
+Node: Truth Values and Conditions348021
+Node: Truth Values349104
+Node: Typing and Comparison350153
+Node: Variable Typing350946
+Node: Comparison Operators354598
+Ref: table-relational-ops355008
+Node: POSIX String Comparison358558
+Ref: POSIX String Comparison-Footnote-1359642
+Node: Boolean Ops359780
+Ref: Boolean Ops-Footnote-1363850
+Node: Conditional Exp363941
+Node: Function Calls365668
+Node: Precedence369548
+Node: Locales373217
+Node: Expressions Summary374848
+Node: Patterns and Actions377389
+Node: Pattern Overview378505
+Node: Regexp Patterns380182
+Node: Expression Patterns380725
+Node: Ranges384506
+Node: BEGIN/END387612
+Node: Using BEGIN/END388374
+Ref: Using BEGIN/END-Footnote-1391110
+Node: I/O And BEGIN/END391216
+Node: BEGINFILE/ENDFILE393487
+Node: Empty396418
+Node: Using Shell Variables396735
+Node: Action Overview399018
+Node: Statements401345
+Node: If Statement403193
+Node: While Statement404691
+Node: Do Statement406735
+Node: For Statement407891
+Node: Switch Statement411043
+Node: Break Statement413431
+Node: Continue Statement415472
+Node: Next Statement417297
+Node: Nextfile Statement419687
+Node: Exit Statement422323
+Node: Built-in Variables424727
+Node: User-modified425854
+Ref: User-modified-Footnote-1433543
+Node: Auto-set433605
+Ref: Auto-set-Footnote-1446524
+Ref: Auto-set-Footnote-2446729
+Node: ARGC and ARGV446785
+Node: Pattern Action Summary450689
+Node: Arrays452912
+Node: Array Basics454461
+Node: Array Intro455287
+Ref: figure-array-elements457260
+Node: Reference to Elements459667
+Node: Assigning Elements462046
+Node: Array Example462537
+Node: Scanning an Array464269
+Node: Controlling Scanning467270
+Ref: Controlling Scanning-Footnote-1472443
+Node: Delete472759
+Ref: Delete-Footnote-1475510
+Node: Numeric Array Subscripts475567
+Node: Uninitialized Subscripts477750
+Node: Multidimensional479375
+Node: Multiscanning482488
+Node: Arrays of Arrays484077
+Node: Arrays Summary488740
+Node: Functions490845
+Node: Built-in491718
+Node: Calling Built-in492796
+Node: Numeric Functions494784
+Ref: Numeric Functions-Footnote-1499620
+Ref: Numeric Functions-Footnote-2499977
+Ref: Numeric Functions-Footnote-3500025
+Node: String Functions500294
+Ref: String Functions-Footnote-1523291
+Ref: String Functions-Footnote-2523420
+Ref: String Functions-Footnote-3523668
+Node: Gory Details523755
+Ref: table-sub-escapes525528
+Ref: table-sub-proposed527048
+Ref: table-posix-sub528412
+Ref: table-gensub-escapes529952
+Ref: Gory Details-Footnote-1531128
+Node: I/O Functions531279
+Ref: I/O Functions-Footnote-1538389
+Node: Time Functions538536
+Ref: Time Functions-Footnote-1549000
+Ref: Time Functions-Footnote-2549068
+Ref: Time Functions-Footnote-3549226
+Ref: Time Functions-Footnote-4549337
+Ref: Time Functions-Footnote-5549449
+Ref: Time Functions-Footnote-6549676
+Node: Bitwise Functions549942
+Ref: table-bitwise-ops550504
+Ref: Bitwise Functions-Footnote-1554749
+Node: Type Functions554933
+Node: I18N Functions556075
+Node: User-defined557720
+Node: Definition Syntax558524
+Ref: Definition Syntax-Footnote-1563703
+Node: Function Example563772
+Ref: Function Example-Footnote-1566412
+Node: Function Caveats566434
+Node: Calling A Function566952
+Node: Variable Scope567907
+Node: Pass By Value/Reference570895
+Node: Return Statement574405
+Node: Dynamic Typing577389
+Node: Indirect Calls578318
+Node: Functions Summary588031
+Node: Library Functions590570
+Ref: Library Functions-Footnote-1594188
+Ref: Library Functions-Footnote-2594331
+Node: Library Names594502
+Ref: Library Names-Footnote-1597975
+Ref: Library Names-Footnote-2598195
+Node: General Functions598281
+Node: Strtonum Function599309
+Node: Assert Function602089
+Node: Round Function605415
+Node: Cliff Random Function606956
+Node: Ordinal Functions607972
+Ref: Ordinal Functions-Footnote-1611049
+Ref: Ordinal Functions-Footnote-2611301
+Node: Join Function611512
+Ref: Join Function-Footnote-1613283
+Node: Getlocaltime Function613483
+Node: Readfile Function617219
+Node: Data File Management619058
+Node: Filetrans Function619690
+Node: Rewind Function623759
+Node: File Checking625317
+Ref: File Checking-Footnote-1626449
+Node: Empty Files626650
+Node: Ignoring Assigns628629
+Node: Getopt Function630183
+Ref: Getopt Function-Footnote-1641486
+Node: Passwd Functions641689
+Ref: Passwd Functions-Footnote-1650668
+Node: Group Functions650756
+Ref: Group Functions-Footnote-1658697
+Node: Walking Arrays658910
+Node: Library Functions Summary660513
+Node: Library exercises661901
+Node: Sample Programs663181
+Node: Running Examples663951
+Node: Clones664679
+Node: Cut Program665903
+Node: Egrep Program675771
+Ref: Egrep Program-Footnote-1683742
+Node: Id Program683852
+Node: Split Program687516
+Ref: Split Program-Footnote-1691054
+Node: Tee Program691182
+Node: Uniq Program693989
+Node: Wc Program701419
+Ref: Wc Program-Footnote-1705684
+Node: Miscellaneous Programs705776
+Node: Dupword Program706989
+Node: Alarm Program709020
+Node: Translate Program713834
+Ref: Translate Program-Footnote-1718225
+Ref: Translate Program-Footnote-2718495
+Node: Labels Program718629
+Ref: Labels Program-Footnote-1722000
+Node: Word Sorting722084
+Node: History Sorting726127
+Node: Extract Program727963
+Node: Simple Sed735499
+Node: Igawk Program738561
+Ref: Igawk Program-Footnote-1752865
+Ref: Igawk Program-Footnote-2753066
+Node: Anagram Program753204
+Node: Signature Program756272
+Node: Programs Summary757519
+Node: Programs Exercises758734
+Node: Advanced Features762385
+Node: Nondecimal Data764333
+Node: Array Sorting765910
+Node: Controlling Array Traversal766607
+Node: Array Sorting Functions774887
+Ref: Array Sorting Functions-Footnote-1778794
+Node: Two-way I/O778988
+Ref: Two-way I/O-Footnote-1783932
+Ref: Two-way I/O-Footnote-2784111
+Node: TCP/IP Networking784193
+Node: Profiling787038
+Node: Advanced Features Summary794589
+Node: Internationalization796453
+Node: I18N and L10N797933
+Node: Explaining gettext798619
+Ref: Explaining gettext-Footnote-1803645
+Ref: Explaining gettext-Footnote-2803829
+Node: Programmer i18n803994
+Ref: Programmer i18n-Footnote-1808788
+Node: Translator i18n808837
+Node: String Extraction809631
+Ref: String Extraction-Footnote-1810764
+Node: Printf Ordering810850
+Ref: Printf Ordering-Footnote-1813632
+Node: I18N Portability813696
+Ref: I18N Portability-Footnote-1816145
+Node: I18N Example816208
+Ref: I18N Example-Footnote-1818914
+Node: Gawk I18N818986
+Node: I18N Summary819624
+Node: Debugger820963
+Node: Debugging821985
+Node: Debugging Concepts822426
+Node: Debugging Terms824282
+Node: Awk Debugging826879
+Node: Sample Debugging Session827771
+Node: Debugger Invocation828291
+Node: Finding The Bug829624
+Node: List of Debugger Commands836106
+Node: Breakpoint Control837438
+Node: Debugger Execution Control841102
+Node: Viewing And Changing Data844462
+Node: Execution Stack847820
+Node: Debugger Info849333
+Node: Miscellaneous Debugger Commands853327
+Node: Readline Support858511
+Node: Limitations859403
+Node: Debugging Summary861677
+Node: Arbitrary Precision Arithmetic862845
+Node: Computer Arithmetic864332
+Ref: Computer Arithmetic-Footnote-1868719
+Node: Math Definitions868776
+Ref: table-ieee-formats872065
+Ref: Math Definitions-Footnote-1872605
+Node: MPFR features872708
+Node: FP Math Caution874325
+Ref: FP Math Caution-Footnote-1875375
+Node: Inexactness of computations875744
+Node: Inexact representation876692
+Node: Comparing FP Values878047
+Node: Errors accumulate879011
+Node: Getting Accuracy880444
+Node: Try To Round883103
+Node: Setting precision884002
+Ref: table-predefined-precision-strings884684
+Node: Setting the rounding mode886477
+Ref: table-gawk-rounding-modes886841
+Ref: Setting the rounding mode-Footnote-1890295
+Node: Arbitrary Precision Integers890474
+Ref: Arbitrary Precision Integers-Footnote-1894247
+Node: POSIX Floating Point Problems894396
+Ref: POSIX Floating Point Problems-Footnote-1898272
+Node: Floating point summary898310
+Node: Dynamic Extensions900514
+Node: Extension Intro902066
+Node: Plugin License903331
+Node: Extension Mechanism Outline904016
+Ref: figure-load-extension904440
+Ref: figure-load-new-function905925
+Ref: figure-call-new-function906927
+Node: Extension API Description908911
+Node: Extension API Functions Introduction910361
+Node: General Data Types915228
+Ref: General Data Types-Footnote-1920921
+Node: Requesting Values921220
+Ref: table-value-types-returned921957
+Node: Memory Allocation Functions922915
+Ref: Memory Allocation Functions-Footnote-1925662
+Node: Constructor Functions925758
+Node: Registration Functions927516
+Node: Extension Functions928201
+Node: Exit Callback Functions930503
+Node: Extension Version String931751
+Node: Input Parsers932401
+Node: Output Wrappers942215
+Node: Two-way processors946731
+Node: Printing Messages948935
+Ref: Printing Messages-Footnote-1950012
+Node: Updating `ERRNO'950164
+Node: Accessing Parameters950903
+Node: Symbol Table Access952133
+Node: Symbol table by name952647
+Node: Symbol table by cookie954623
+Ref: Symbol table by cookie-Footnote-1958756
+Node: Cached values958819
+Ref: Cached values-Footnote-1962323
+Node: Array Manipulation962414
+Ref: Array Manipulation-Footnote-1963512
+Node: Array Data Types963551
+Ref: Array Data Types-Footnote-1966254
+Node: Array Functions966346
+Node: Flattening Arrays970220
+Node: Creating Arrays977072
+Node: Extension API Variables981803
+Node: Extension Versioning982439
+Node: Extension API Informational Variables984340
+Node: Extension API Boilerplate985426
+Node: Finding Extensions989230
+Node: Extension Example989790
+Node: Internal File Description990520
+Node: Internal File Ops994611
+Ref: Internal File Ops-Footnote-11006043
+Node: Using Internal File Ops1006183
+Ref: Using Internal File Ops-Footnote-11008530
+Node: Extension Samples1008798
+Node: Extension Sample File Functions1010322
+Node: Extension Sample Fnmatch1017890
+Node: Extension Sample Fork1019372
+Node: Extension Sample Inplace1020585
+Node: Extension Sample Ord1022260
+Node: Extension Sample Readdir1023096
+Ref: table-readdir-file-types1023952
+Node: Extension Sample Revout1024751
+Node: Extension Sample Rev2way1025342
+Node: Extension Sample Read write array1026083
+Node: Extension Sample Readfile1027962
+Node: Extension Sample API Tests1029062
+Node: Extension Sample Time1029587
+Node: gawkextlib1030902
+Node: Extension summary1033715
+Node: Extension Exercises1037408
+Node: Language History1038130
+Node: V7/SVR3.11039773
+Node: SVR41042093
+Node: POSIX1043535
+Node: BTL1044921
+Node: POSIX/GNU1045655
+Node: Feature History1051371
+Node: Common Extensions1064462
+Node: Ranges and Locales1065774
+Ref: Ranges and Locales-Footnote-11070391
+Ref: Ranges and Locales-Footnote-21070418
+Ref: Ranges and Locales-Footnote-31070652
+Node: Contributors1070873
+Node: History summary1076298
+Node: Installation1077667
+Node: Gawk Distribution1078618
+Node: Getting1079102
+Node: Extracting1079926
+Node: Distribution contents1081568
+Node: Unix Installation1087338
+Node: Quick Installation1087955
+Node: Additional Configuration Options1090397
+Node: Configuration Philosophy1092135
+Node: Non-Unix Installation1094486
+Node: PC Installation1094944
+Node: PC Binary Installation1096255
+Node: PC Compiling1098103
+Ref: PC Compiling-Footnote-11101102
+Node: PC Testing1101207
+Node: PC Using1102383
+Node: Cygwin1106535
+Node: MSYS1107344
+Node: VMS Installation1107858
+Node: VMS Compilation1108654
+Ref: VMS Compilation-Footnote-11109876
+Node: VMS Dynamic Extensions1109934
+Node: VMS Installation Details1111307
+Node: VMS Running1113559
+Node: VMS GNV1116393
+Node: VMS Old Gawk1117116
+Node: Bugs1117586
+Node: Other Versions1121590
+Node: Installation summary1127817
+Node: Notes1128873
+Node: Compatibility Mode1129738
+Node: Additions1130520
+Node: Accessing The Source1131445
+Node: Adding Code1132881
+Node: New Ports1139059
+Node: Derived Files1143540
+Ref: Derived Files-Footnote-11148621
+Ref: Derived Files-Footnote-21148655
+Ref: Derived Files-Footnote-31149251
+Node: Future Extensions1149365
+Node: Implementation Limitations1149971
+Node: Extension Design1151219
+Node: Old Extension Problems1152373
+Ref: Old Extension Problems-Footnote-11153890
+Node: Extension New Mechanism Goals1153947
+Ref: Extension New Mechanism Goals-Footnote-11157307
+Node: Extension Other Design Decisions1157496
+Node: Extension Future Growth1159602
+Node: Old Extension Mechanism1160438
+Node: Notes summary1162200
+Node: Basic Concepts1163386
+Node: Basic High Level1164067
+Ref: figure-general-flow1164339
+Ref: figure-process-flow1164938
+Ref: Basic High Level-Footnote-11168167
+Node: Basic Data Typing1168352
+Node: Glossary1171680
+Node: Copying1196832
+Node: GNU Free Documentation License1234388
+Node: Index1259524

End Tag Table