aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.info
diff options
context:
space:
mode:
Diffstat (limited to 'doc/gawk.info')
-rw-r--r--doc/gawk.info1388
1 files changed, 732 insertions, 656 deletions
diff --git a/doc/gawk.info b/doc/gawk.info
index 94170939..caa557e8 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -2588,10 +2588,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'
@@ -2980,13 +2978,6 @@ change. The variables are:
supposed to be differences, but occasionally theory and practice
don't coordinate with each other.)
-`GAWK_NO_PP_RUN'
- If this variable exists, then when invoked with the
- `--pretty-print' option, `gawk' skips running the program.
-
- CAUTION: This variable will not survive into the next major
- release.
-
`GAWK_STACKSIZE'
This specifies the amount by which `gawk' should grow its internal
evaluation stack, when needed.
@@ -3378,15 +3369,17 @@ sequences apply to both string constants and regexp constants:
`\xHH...'
The hexadecimal value HH, where HH stands for a sequence of
- hexadecimal digits (`0'-`9', and either `A'-`F' or `a'-`f'). Like
- the same construct in ISO C, the escape sequence continues until
- the first nonhexadecimal digit is seen. (c.e.) However, using
- more than two hexadecimal digits produces undefined results. (The
- `\x' escape sequence is not allowed in POSIX `awk'.)
+ hexadecimal digits (`0'-`9', and either `A'-`F' or `a'-`f'). A
+ maximum of two digts are allowed after the `\x'. Any further
+ hexadecimal digits are treated as simple letters or numbers.
+ (c.e.)
- CAUTION: The next major relase of `gawk' will change, such
- that a maximum of two hexadecimal digits following the `\x'
- will be used.
+ CAUTION: In ISO C, the escape sequence continues until the
+ first nonhexadecimal digit is seen. For many years, `gawk'
+ would continue incorporating hexadecimal digits into the
+ value until a non-hexadecimal digit or the end of the string
+ was encountered. However, using more than two hexadecimal
+ digits produces
`\/'
A literal slash (necessary for regexp constants only). This
@@ -10259,10 +10252,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
@@ -11812,6 +11813,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
@@ -19862,8 +19878,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
@@ -22348,6 +22364,62 @@ 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)
+ {
+ split("", result)
+
+ numerator = int(numerator)
+ denominator = int(denominator)
+ result["quotient"] = int(numerator / denominator)
+ result["remainder"] = int(numerator % denominator)
+
+ return 0.0
+ }
+
+ The following example program, contributed by Katie Wasserman, uses
+`div()' to compute the digits of pi to as many places as you choose to
+set:
+
+ # pi.awk --- compute the digits of pi
+
+ BEGIN {
+ digits = 100000
+ two = 2 * 10 ^ digits
+ pi = two
+ for (m = digits * 4; m > 0; --m) {
+ d = m * 2 + 1
+ x = pi * m
+ div(x, d, result)
+ pi = result["quotient"]
+ pi = pi + two
+ }
+ print pi
+ }
+
+ When asked about the algorithm used, Katie replied:
+
+ It's not that well known but it's not that obscure either. It's
+ Euler's modification to Newton's method for calculating pi. Take
+ a look at lines (23) - (25) here:
+ `http://mathworld.wolfram.com/PiFormulas.htm'.
+
+ The algorithm I wrote simply expands the multiply by 2 and works
+ from the innermost expression outwards. I used this to program HP
+ calculators because it's quite easy to modify for tiny memory
+ devices with smallish word sizes. See
+ `http://www.hpmuseum.org/cgi-sys/cgiwrap/hpmuseum/articles.cgi?read=899'.
+
---------- Footnotes ----------
(1) Weisstein, Eric W. `Sylvester's Sequence'. From MathWorld--A
@@ -26372,6 +26444,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
@@ -27274,7 +27348,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
@@ -27316,11 +27392,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
@@ -31266,20 +31341,20 @@ Index
* --include option: Options. (line 159)
* --lint option <1>: Options. (line 185)
* --lint option: Command Line. (line 20)
-* --lint-old option: Options. (line 297)
+* --lint-old option: Options. (line 295)
* --load option: Options. (line 173)
* --non-decimal-data option <1>: Nondecimal Data. (line 6)
* --non-decimal-data option: Options. (line 211)
* --non-decimal-data option, strtonum() function and: Nondecimal Data.
(line 35)
-* --optimize option: Options. (line 239)
-* --posix option: Options. (line 256)
-* --posix option, --traditional option and: Options. (line 275)
+* --optimize option: Options. (line 237)
+* --posix option: Options. (line 254)
+* --posix option, --traditional option and: Options. (line 273)
* --pretty-print option: Options. (line 226)
* --profile option <1>: Profiling. (line 12)
-* --profile option: Options. (line 244)
-* --re-interval option: Options. (line 281)
-* --sandbox option: Options. (line 288)
+* --profile option: Options. (line 242)
+* --re-interval option: Options. (line 279)
+* --sandbox option: Options. (line 286)
* --sandbox option, disabling system() function: I/O Functions.
(line 96)
* --sandbox option, input redirection with getline: Getline. (line 19)
@@ -31287,9 +31362,9 @@ Index
(line 6)
* --source option: Options. (line 117)
* --traditional option: Options. (line 81)
-* --traditional option, --posix option and: Options. (line 275)
+* --traditional option, --posix option and: Options. (line 273)
* --use-lc-numeric option: Options. (line 221)
-* --version option: Options. (line 302)
+* --version option: Options. (line 300)
* --with-whiny-user-strftime configuration option: Additional Configuration Options.
(line 35)
* -b option: Options. (line 68)
@@ -31297,32 +31372,32 @@ Index
* -c option: Options. (line 81)
* -D option: Options. (line 108)
* -d option: Options. (line 93)
-* -e option: Options. (line 338)
+* -e option: Options. (line 336)
* -E option: Options. (line 125)
* -e option: Options. (line 117)
* -f option: Options. (line 25)
* -F option: Options. (line 21)
* -f option: Long. (line 12)
-* -F option, -Ft sets FS to TAB: Options. (line 310)
+* -F option, -Ft sets FS to TAB: Options. (line 308)
* -F option, command-line: Command Line Field Separator.
(line 6)
-* -f option, multiple uses: Options. (line 315)
+* -f option, multiple uses: Options. (line 313)
* -g option: Options. (line 147)
* -h option: Options. (line 154)
* -i option: Options. (line 159)
-* -L option: Options. (line 297)
+* -L option: Options. (line 295)
* -l option: Options. (line 173)
* -M option: Options. (line 205)
* -N option: Options. (line 221)
* -n option: Options. (line 211)
-* -O option: Options. (line 239)
+* -O option: Options. (line 237)
* -o option: Options. (line 226)
-* -P option: Options. (line 256)
-* -p option: Options. (line 244)
-* -r option: Options. (line 281)
-* -S option: Options. (line 288)
+* -P option: Options. (line 254)
+* -p option: Options. (line 242)
+* -r option: Options. (line 279)
+* -S option: Options. (line 286)
* -v option: Assignment Options. (line 12)
-* -V option: Options. (line 302)
+* -V option: Options. (line 300)
* -v option: Options. (line 32)
* -W option: Options. (line 46)
* . (period), regexp operator: Regexp Operators. (line 44)
@@ -31384,10 +31459,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.
@@ -31427,7 +31502,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)
@@ -31595,7 +31670,7 @@ Index
* awf (amazingly workable formatter) program: Glossary. (line 24)
* awk debugging, enabling: Options. (line 108)
* awk language, POSIX version: Assignment Ops. (line 137)
-* awk profiling, enabling: Options. (line 244)
+* awk profiling, enabling: Options. (line 242)
* awk programs <1>: Two Rules. (line 6)
* awk programs <2>: Executable Scripts. (line 6)
* awk programs: Getting Started. (line 12)
@@ -31653,10 +31728,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.
@@ -31696,7 +31771,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)
@@ -31801,7 +31876,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)
@@ -31995,7 +32070,7 @@ Index
* cosine: Numeric Functions. (line 15)
* counting: Wc Program. (line 6)
* csh utility: Statements/Lines. (line 44)
-* csh utility, POSIXLY_CORRECT environment variable: Options. (line 356)
+* csh utility, POSIXLY_CORRECT environment variable: Options. (line 354)
* csh utility, |& operator, comparison with: Two-way I/O. (line 25)
* ctime() user-defined function: Function Example. (line 74)
* currency symbols, localization: Explaining gettext. (line 104)
@@ -32026,13 +32101,13 @@ Index
* dark corner, CONVFMT variable: Strings And Numbers. (line 40)
* dark corner, escape sequences: Other Arguments. (line 38)
* dark corner, escape sequences, for metacharacters: Escape Sequences.
- (line 140)
+ (line 142)
* dark corner, exit statement: Exit Statement. (line 30)
* dark corner, field separators: Field Splitting Summary.
(line 46)
-* dark corner, FILENAME variable <1>: Auto-set. (line 90)
+* dark corner, FILENAME variable <1>: Auto-set. (line 98)
* dark corner, FILENAME variable: Getline Notes. (line 19)
-* dark corner, FNR/NR variables: Auto-set. (line 313)
+* dark corner, FNR/NR variables: Auto-set. (line 321)
* dark corner, format-control characters: Control Letters. (line 18)
* dark corner, FS as null string: Single Character Fields.
(line 20)
@@ -32180,7 +32255,7 @@ Index
* debugger, read commands from a file: Debugger Info. (line 96)
* debugging awk programs: Debugger. (line 6)
* debugging gawk, bug reports: Bugs. (line 9)
-* decimal point character, locale specific: Options. (line 272)
+* decimal point character, locale specific: Options. (line 270)
* decrement operators: Increment Ops. (line 35)
* default keyword: Switch Statement. (line 6)
* Deifik, Scott <1>: Bugs. (line 72)
@@ -32219,12 +32294,12 @@ Index
(line 81)
* differences in awk and gawk, command-line directories: Command-line directories.
(line 6)
-* differences in awk and gawk, ERRNO variable: Auto-set. (line 74)
+* differences in awk and gawk, ERRNO variable: Auto-set. (line 82)
* differences in awk and gawk, error messages: Special FD. (line 19)
* differences in awk and gawk, FIELDWIDTHS variable: User-modified.
(line 37)
* differences in awk and gawk, FPAT variable: User-modified. (line 43)
-* differences in awk and gawk, FUNCTAB variable: Auto-set. (line 115)
+* differences in awk and gawk, FUNCTAB variable: Auto-set. (line 123)
* differences in awk and gawk, function arguments (gawk): Calling Built-in.
(line 16)
* differences in awk and gawk, getline command: Getline. (line 19)
@@ -32247,7 +32322,7 @@ Index
(line 262)
* differences in awk and gawk, print/printf statements: Format Modifiers.
(line 13)
-* differences in awk and gawk, PROCINFO array: Auto-set. (line 129)
+* differences in awk and gawk, PROCINFO array: Auto-set. (line 137)
* differences in awk and gawk, read timeouts: Read Timeout. (line 6)
* differences in awk and gawk, record separators: awk split records.
(line 125)
@@ -32257,7 +32332,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.
@@ -32265,7 +32340,7 @@ Index
* differences in awk and gawk, strings: Scalar Constants. (line 20)
* differences in awk and gawk, strings, storing: gawk split records.
(line 77)
-* differences in awk and gawk, SYMTAB variable: Auto-set. (line 268)
+* differences in awk and gawk, SYMTAB variable: Auto-set. (line 276)
* differences in awk and gawk, TEXTDOMAIN variable: User-modified.
(line 151)
* differences in awk and gawk, trunc-mod operation: Arithmetic Ops.
@@ -32281,6 +32356,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)
@@ -32305,8 +32381,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)
@@ -32361,13 +32437,13 @@ Index
(line 11)
* EREs (Extended Regular Expressions): Bracket Expressions. (line 26)
* ERRNO variable <1>: TCP/IP Networking. (line 54)
-* ERRNO variable: Auto-set. (line 74)
+* ERRNO variable: Auto-set. (line 82)
* ERRNO variable, with BEGINFILE pattern: BEGINFILE/ENDFILE. (line 26)
* ERRNO variable, with close() function: Close Files And Pipes.
(line 140)
* ERRNO variable, with getline command: Getline. (line 19)
* error handling: Special FD. (line 19)
-* error handling, ERRNO variable and: Auto-set. (line 74)
+* error handling, ERRNO variable and: Auto-set. (line 82)
* error output: Special FD. (line 6)
* escape processing, gsub()/gensub()/sub() functions: Gory Details.
(line 6)
@@ -32400,10 +32476,10 @@ Index
* exit status, of VMS: VMS Running. (line 29)
* exit the debugger: Miscellaneous Debugger Commands.
(line 99)
-* exp: Numeric Functions. (line 18)
+* exp: Numeric Functions. (line 33)
* expand utility: Very Simple. (line 72)
* Expat XML parser library: gawkextlib. (line 31)
-* exponent: Numeric Functions. (line 18)
+* exponent: Numeric Functions. (line 33)
* expressions: Expressions. (line 6)
* expressions, as patterns: Expression Patterns. (line 6)
* expressions, assignment: Assignment Ops. (line 6)
@@ -32421,7 +32497,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)
@@ -32503,7 +32579,7 @@ Index
* file names, distinguishing: Auto-set. (line 56)
* file names, in compatibility mode: Special Caveats. (line 9)
* file names, standard streams in gawk: Special FD. (line 48)
-* FILENAME variable <1>: Auto-set. (line 90)
+* FILENAME variable <1>: Auto-set. (line 98)
* FILENAME variable: Reading Files. (line 6)
* FILENAME variable, getline, setting with: Getline Notes. (line 19)
* filenames, assignments as: Ignoring Assigns. (line 6)
@@ -32571,9 +32647,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 313)
+* FNR variable, changing: Auto-set. (line 321)
* for statement: For Statement. (line 6)
* for statement, looping over arrays: Scanning an Array. (line 20)
* fork() extension function: Extension Sample Fork.
@@ -32610,7 +32686,7 @@ Index
* FS variable, --field-separator option and: Options. (line 21)
* FS variable, as null string: Single Character Fields.
(line 20)
-* FS variable, as TAB character: Options. (line 268)
+* FS variable, as TAB character: Options. (line 266)
* FS variable, changing value of: Field Separators. (line 35)
* FS variable, running awk programs and: Cut Program. (line 63)
* FS variable, setting from command line: Command Line Field Separator.
@@ -32623,7 +32699,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)
@@ -32673,7 +32749,7 @@ Index
* G-d: Acknowledgments. (line 94)
* Garfinkle, Scott: Contributors. (line 34)
* gawk program, dynamic profiling: Profiling. (line 179)
-* gawk version: Auto-set. (line 206)
+* gawk version: Auto-set. (line 214)
* gawk, ARGIND variable in: Other Arguments. (line 15)
* gawk, awk and <1>: This Manual. (line 14)
* gawk, awk and: Preface. (line 21)
@@ -32691,13 +32767,13 @@ Index
* gawk, distribution: Distribution contents.
(line 6)
* gawk, ERRNO variable in <1>: TCP/IP Networking. (line 54)
-* gawk, ERRNO variable in <2>: Auto-set. (line 74)
+* gawk, ERRNO variable in <2>: Auto-set. (line 82)
* gawk, ERRNO variable in <3>: BEGINFILE/ENDFILE. (line 26)
* gawk, ERRNO variable in <4>: Close Files And Pipes.
(line 140)
* gawk, ERRNO variable in: Getline. (line 19)
-* gawk, escape sequences: Escape Sequences. (line 130)
-* gawk, extensions, disabling: Options. (line 256)
+* gawk, escape sequences: Escape Sequences. (line 132)
+* gawk, extensions, disabling: Options. (line 254)
* gawk, features, adding: Adding Code. (line 6)
* gawk, features, advanced: Advanced Features. (line 6)
* gawk, field separators and: User-modified. (line 71)
@@ -32708,7 +32784,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.
@@ -32740,7 +32816,7 @@ Index
* gawk, predefined variables and: Built-in Variables. (line 14)
* gawk, PROCINFO array in <1>: Two-way I/O. (line 99)
* gawk, PROCINFO array in <2>: Time Functions. (line 47)
-* gawk, PROCINFO array in: Auto-set. (line 129)
+* gawk, PROCINFO array in: Auto-set. (line 137)
* gawk, regexp constants and: Using Constant Regexps.
(line 28)
* gawk, regular expressions, case sensitivity: Case-sensitivity.
@@ -32748,18 +32824,18 @@ Index
* gawk, regular expressions, operators: GNU Regexp Operators.
(line 6)
* gawk, regular expressions, precedence: Regexp Operators. (line 161)
-* gawk, RT variable in <1>: Auto-set. (line 264)
+* gawk, RT variable in <1>: Auto-set. (line 272)
* gawk, RT variable in <2>: Multiple Line. (line 129)
* gawk, RT variable in: awk split records. (line 125)
* gawk, See Also awk: Preface. (line 34)
* gawk, source code, obtaining: Getting. (line 6)
* gawk, splitting fields and: Constant Size. (line 88)
* gawk, string-translation functions: I18N Functions. (line 6)
-* gawk, SYMTAB array in: Auto-set. (line 268)
+* gawk, SYMTAB array in: Auto-set. (line 276)
* gawk, TEXTDOMAIN variable in: User-modified. (line 151)
* gawk, timestamps: Time Functions. (line 6)
* gawk, uses for: Preface. (line 34)
-* gawk, versions of, information about, printing: Options. (line 302)
+* gawk, versions of, information about, printing: Options. (line 300)
* gawk, VMS version of: VMS Installation. (line 6)
* gawk, word-boundary operator: GNU Regexp Operators.
(line 63)
@@ -32841,7 +32917,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.
@@ -32942,7 +33018,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)
@@ -33071,7 +33147,7 @@ Index
* lint checking, empty programs: Command Line. (line 16)
* lint checking, issuing warnings: Options. (line 185)
* lint checking, POSIXLY_CORRECT environment variable: Options.
- (line 341)
+ (line 339)
* lint checking, undefined functions: Pass By Value/Reference.
(line 88)
* LINT variable: User-modified. (line 88)
@@ -33087,14 +33163,14 @@ Index
* loading, extensions: Options. (line 173)
* local variables, in a function: Variable Scope. (line 6)
* locale categories: Explaining gettext. (line 81)
-* locale decimal point character: Options. (line 272)
+* locale decimal point character: Options. (line 270)
* locale, definition of: Locales. (line 6)
* localization: I18N and L10N. (line 6)
* localization, See internationalization, localization: I18N and L10N.
(line 6)
-* log: Numeric Functions. (line 30)
+* log: Numeric Functions. (line 45)
* log files, timestamps in: Time Functions. (line 6)
-* logarithm: Numeric Functions. (line 30)
+* logarithm: Numeric Functions. (line 45)
* logical false/true: Truth Values. (line 6)
* logical operators, See Boolean expressions: Boolean Ops. (line 6)
* login information: Passwd Functions. (line 16)
@@ -33135,8 +33211,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)
@@ -33148,8 +33224,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)
@@ -33169,7 +33245,7 @@ Index
* networks, programming: TCP/IP Networking. (line 6)
* networks, support for: Special Network. (line 6)
* newlines <1>: Boolean Ops. (line 69)
-* newlines <2>: Options. (line 262)
+* newlines <2>: Options. (line 260)
* newlines: Statements/Lines. (line 6)
* newlines, as field separators: Default Field Splitting.
(line 6)
@@ -33198,7 +33274,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.
@@ -33207,9 +33283,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 313)
+* NR variable, changing: Auto-set. (line 321)
* null strings <1>: Basic Data Typing. (line 26)
* null strings <2>: Truth Values. (line 6)
* null strings <3>: Regexp Field Splitting.
@@ -33323,7 +33399,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)
@@ -33365,14 +33441,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.
@@ -33390,7 +33466,7 @@ Index
* portability, NF variable, decrementing: Changing Fields. (line 115)
* portability, operators: Increment Ops. (line 60)
* portability, operators, not in POSIX awk: Precedence. (line 98)
-* portability, POSIXLY_CORRECT environment variable: Options. (line 361)
+* portability, POSIXLY_CORRECT environment variable: Options. (line 359)
* portability, substr() function: String Functions. (line 511)
* portable object files <1>: Translator i18n. (line 6)
* portable object files: Explaining gettext. (line 37)
@@ -33411,7 +33487,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.
@@ -33439,11 +33515,11 @@ Index
* POSIX awk, regular expressions and: Regexp Operators. (line 161)
* POSIX awk, timestamps and: Time Functions. (line 6)
* POSIX awk, | I/O operator and: Getline/Pipe. (line 55)
-* POSIX mode: Options. (line 256)
+* POSIX mode: Options. (line 254)
* POSIX, awk and: Preface. (line 21)
* POSIX, gawk extensions not included in: POSIX/GNU. (line 6)
* POSIX, programs, implementing in awk: Clones. (line 6)
-* POSIXLY_CORRECT environment variable: Options. (line 341)
+* POSIXLY_CORRECT environment variable: Options. (line 339)
* PREC variable: User-modified. (line 123)
* precedence <1>: Precedence. (line 6)
* precedence: Increment Ops. (line 60)
@@ -33490,24 +33566,24 @@ Index
* printing, unduplicated lines of text: Uniq Program. (line 6)
* printing, user information: Id Program. (line 6)
* private variables: Library Names. (line 11)
-* process group idIDof gawk process: Auto-set. (line 182)
-* process ID of gawk process: Auto-set. (line 185)
+* process group idIDof gawk process: Auto-set. (line 190)
+* process ID of gawk process: Auto-set. (line 193)
* processes, two-way communications with: Two-way I/O. (line 6)
* processing data: Basic High Level. (line 6)
* PROCINFO array <1>: Passwd Functions. (line 6)
* PROCINFO array <2>: Time Functions. (line 47)
-* PROCINFO array: Auto-set. (line 129)
+* PROCINFO array: Auto-set. (line 137)
* PROCINFO array, and communications via ptys: Two-way I/O. (line 99)
* PROCINFO array, and group membership: Group Functions. (line 6)
* PROCINFO array, and user and group ID numbers: Id Program. (line 15)
* PROCINFO array, testing the field splitting: Passwd Functions.
(line 154)
-* PROCINFO array, uses: Auto-set. (line 241)
+* PROCINFO array, uses: Auto-set. (line 249)
* PROCINFO, values of sorted_in: Controlling Scanning.
(line 26)
* profiling awk programs: Profiling. (line 6)
* profiling awk programs, dynamically: Profiling. (line 179)
-* program identifiers: Auto-set. (line 147)
+* program identifiers: Auto-set. (line 155)
* program, definition of: Getting Started. (line 21)
* programming conventions, --non-decimal-data option: Nondecimal Data.
(line 35)
@@ -33551,12 +33627,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)
@@ -33625,7 +33701,7 @@ Index
(line 59)
* regular expressions, gawk, command-line options: GNU Regexp Operators.
(line 70)
-* regular expressions, interval expressions and: Options. (line 281)
+* regular expressions, interval expressions and: Options. (line 279)
* regular expressions, leftmost longest match: Leftmost Longest.
(line 6)
* regular expressions, operators <1>: Regexp Operators. (line 6)
@@ -33665,7 +33741,7 @@ Index
* right shift: Bitwise Functions. (line 53)
* right shift, bitwise: Bitwise Functions. (line 32)
* Ritchie, Dennis: Basic Data Typing. (line 54)
-* RLENGTH variable: Auto-set. (line 251)
+* RLENGTH variable: Auto-set. (line 259)
* RLENGTH variable, match() function and: String Functions. (line 227)
* Robbins, Arnold <1>: Future Extensions. (line 6)
* Robbins, Arnold <2>: Bugs. (line 72)
@@ -33683,7 +33759,7 @@ Index
* Robbins, Miriam <2>: Getline/Pipe. (line 39)
* Robbins, Miriam: Acknowledgments. (line 94)
* Rommel, Kai Uwe: Contributors. (line 42)
-* round to nearest integer: Numeric Functions. (line 23)
+* round to nearest integer: Numeric Functions. (line 38)
* round() user-defined function: Round Function. (line 16)
* rounding numbers: Round Function. (line 6)
* ROUNDMODE variable: User-modified. (line 127)
@@ -33691,9 +33767,9 @@ Index
* RS variable: awk split records. (line 12)
* RS variable, multiline records and: Multiple Line. (line 17)
* rshift: Bitwise Functions. (line 53)
-* RSTART variable: Auto-set. (line 257)
+* RSTART variable: Auto-set. (line 265)
* RSTART variable, match() function and: String Functions. (line 227)
-* RT variable <1>: Auto-set. (line 264)
+* RT variable <1>: Auto-set. (line 272)
* RT variable <2>: Multiple Line. (line 129)
* RT variable: awk split records. (line 125)
* Rubin, Paul <1>: Contributors. (line 15)
@@ -33706,14 +33782,14 @@ Index
(line 68)
* sample debugging session: Sample Debugging Session.
(line 6)
-* sandbox mode: Options. (line 288)
+* sandbox mode: Options. (line 286)
* save debugger options: Debugger Info. (line 84)
* scalar or array: Type Functions. (line 11)
* scalar values: Basic Data Typing. (line 13)
* scanning arrays: Scanning an Array. (line 6)
* scanning multidimensional arrays: Multiscanning. (line 11)
* Schorr, Andrew <1>: Contributors. (line 133)
-* Schorr, Andrew <2>: Auto-set. (line 296)
+* Schorr, Andrew <2>: Auto-set. (line 304)
* Schorr, Andrew: Acknowledgments. (line 60)
* Schreiber, Bert: Acknowledgments. (line 38)
* Schreiber, Rita: Acknowledgments. (line 38)
@@ -33733,7 +33809,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)
@@ -33794,14 +33870,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 311)
+* sidebar, Changing NR and FNR: Auto-set. (line 319)
* sidebar, Controlling Output Buffering with system(): I/O Functions.
(line 137)
* sidebar, Escape Sequences for Metacharacters: Escape Sequences.
- (line 134)
+ (line 136)
* sidebar, FS and IGNORECASE: Field Splitting Summary.
(line 64)
* sidebar, Interactive Versus Noninteractive Buffering: I/O Functions.
@@ -33834,8 +33910,8 @@ Index
* SIGUSR1 signal, for dynamic profiling: Profiling. (line 188)
* silent debugger command: Debugger Execution Control.
(line 10)
-* sin: Numeric Functions. (line 76)
-* sine: Numeric Functions. (line 76)
+* sin: Numeric Functions. (line 91)
+* sine: Numeric Functions. (line 91)
* single quote ('): One-shot. (line 15)
* single quote (') in gawk command lines: Long. (line 35)
* single quote ('), in shell commands: Quoting. (line 48)
@@ -33885,10 +33961,10 @@ Index
* sprintf() function, OFMT variable and: User-modified. (line 113)
* sprintf() function, print/printf statements and: Round Function.
(line 6)
-* sqrt: Numeric Functions. (line 79)
+* sqrt: Numeric Functions. (line 94)
* square brackets ([]), regexp operator: Regexp Operators. (line 56)
-* square root: Numeric Functions. (line 79)
-* srand: Numeric Functions. (line 83)
+* square root: Numeric Functions. (line 94)
+* srand: Numeric Functions. (line 98)
* stack frame: Debugging Terms. (line 10)
* Stallman, Richard <1>: Glossary. (line 296)
* Stallman, Richard <2>: Contributors. (line 23)
@@ -33960,9 +34036,9 @@ Index
* substr: String Functions. (line 480)
* substring: String Functions. (line 480)
* Sumner, Andrew: Other Versions. (line 64)
-* supplementary groups of gawk process: Auto-set. (line 236)
+* supplementary groups of gawk process: Auto-set. (line 244)
* switch statement: Switch Statement. (line 6)
-* SYMTAB array: Auto-set. (line 268)
+* SYMTAB array: Auto-set. (line 276)
* syntactic ambiguity: /= operator vs. /=.../ regexp constant: Assignment Ops.
(line 148)
* system: I/O Functions. (line 74)
@@ -34029,7 +34105,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)
@@ -34085,7 +34161,7 @@ Index
* uniq.awk program: Uniq Program. (line 65)
* Unix: Glossary. (line 611)
* Unix awk, backslashes in escape sequences: Escape Sequences.
- (line 130)
+ (line 132)
* Unix awk, close() function and: Close Files And Pipes.
(line 132)
* Unix awk, password files, field separators and: Command Line Field Separator.
@@ -34139,10 +34215,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)
@@ -34179,7 +34255,7 @@ Index
* whitespace, as field separators: Default Field Splitting.
(line 6)
* whitespace, functions, calling: Calling Built-in. (line 10)
-* whitespace, newlines as: Options. (line 262)
+* whitespace, newlines as: Options. (line 260)
* Williams, Kent: Contributors. (line 34)
* Woehlke, Matthew: Contributors. (line 79)
* Woods, John: Contributors. (line 27)
@@ -34271,518 +34347,518 @@ Node: Intro Summary110454
Node: Invoking Gawk111337
Node: Command Line112852
Node: Options113643
-Ref: Options-Footnote-1129538
-Node: Other Arguments129563
-Node: Naming Standard Input132524
-Node: Environment Variables133617
-Node: AWKPATH Variable134175
-Ref: AWKPATH Variable-Footnote-1137027
-Ref: AWKPATH Variable-Footnote-2137072
-Node: AWKLIBPATH Variable137332
-Node: Other Environment Variables138091
-Node: Exit Status141811
-Node: Include Files142486
-Node: Loading Shared Libraries146074
-Node: Obsolete147501
-Node: Undocumented148198
-Node: Invoking Summary148465
-Node: Regexp150131
-Node: Regexp Usage151590
-Node: Escape Sequences153623
-Node: Regexp Operators159640
-Ref: Regexp Operators-Footnote-1167074
-Ref: Regexp Operators-Footnote-2167221
-Node: Bracket Expressions167319
-Ref: table-char-classes169336
-Node: Leftmost Longest172276
-Node: Computed Regexps173578
-Node: GNU Regexp Operators176975
-Node: Case-sensitivity180677
-Ref: Case-sensitivity-Footnote-1183567
-Ref: Case-sensitivity-Footnote-2183802
-Node: Regexp Summary183910
-Node: Reading Files185379
-Node: Records187473
-Node: awk split records188205
-Node: gawk split records193119
-Ref: gawk split records-Footnote-1197658
-Node: Fields197695
-Ref: Fields-Footnote-1200493
-Node: Nonconstant Fields200579
-Ref: Nonconstant Fields-Footnote-1202815
-Node: Changing Fields203017
-Node: Field Separators208949
-Node: Default Field Splitting211653
-Node: Regexp Field Splitting212770
-Node: Single Character Fields216120
-Node: Command Line Field Separator217179
-Node: Full Line Fields220391
-Ref: Full Line Fields-Footnote-1220899
-Node: Field Splitting Summary220945
-Ref: Field Splitting Summary-Footnote-1224076
-Node: Constant Size224177
-Node: Splitting By Content228783
-Ref: Splitting By Content-Footnote-1232856
-Node: Multiple Line232896
-Ref: Multiple Line-Footnote-1238785
-Node: Getline238964
-Node: Plain Getline241175
-Node: Getline/Variable243815
-Node: Getline/File244962
-Node: Getline/Variable/File246346
-Ref: Getline/Variable/File-Footnote-1247947
-Node: Getline/Pipe248034
-Node: Getline/Variable/Pipe250717
-Node: Getline/Coprocess251848
-Node: Getline/Variable/Coprocess253100
-Node: Getline Notes253839
-Node: Getline Summary256631
-Ref: table-getline-variants257043
-Node: Read Timeout257872
-Ref: Read Timeout-Footnote-1261686
-Node: Command-line directories261744
-Node: Input Summary262648
-Node: Input Exercises265900
-Node: Printing266628
-Node: Print268405
-Node: Print Examples269862
-Node: Output Separators272641
-Node: OFMT274659
-Node: Printf276013
-Node: Basic Printf276798
-Node: Control Letters278369
-Node: Format Modifiers282353
-Node: Printf Examples288360
-Node: Redirection290842
-Node: Special FD297681
-Ref: Special FD-Footnote-1300838
-Node: Special Files300912
-Node: Other Inherited Files301528
-Node: Special Network302528
-Node: Special Caveats303389
-Node: Close Files And Pipes304340
-Ref: Close Files And Pipes-Footnote-1311519
-Ref: Close Files And Pipes-Footnote-2311667
-Node: Output Summary311817
-Node: Output Exercises312813
-Node: Expressions313493
-Node: Values314678
-Node: Constants315354
-Node: Scalar Constants316034
-Ref: Scalar Constants-Footnote-1316893
-Node: Nondecimal-numbers317143
-Node: Regexp Constants320143
-Node: Using Constant Regexps320668
-Node: Variables323806
-Node: Using Variables324461
-Node: Assignment Options326371
-Node: Conversion328246
-Node: Strings And Numbers328770
-Ref: Strings And Numbers-Footnote-1331834
-Node: Locale influences conversions331943
-Ref: table-locale-affects334688
-Node: All Operators335276
-Node: Arithmetic Ops335906
-Node: Concatenation338411
-Ref: Concatenation-Footnote-1341230
-Node: Assignment Ops341336
-Ref: table-assign-ops346319
-Node: Increment Ops347597
-Node: Truth Values and Conditions351035
-Node: Truth Values352118
-Node: Typing and Comparison353167
-Node: Variable Typing353960
-Node: Comparison Operators357612
-Ref: table-relational-ops358022
-Node: POSIX String Comparison361537
-Ref: POSIX String Comparison-Footnote-1362609
-Node: Boolean Ops362747
-Ref: Boolean Ops-Footnote-1367226
-Node: Conditional Exp367317
-Node: Function Calls369044
-Node: Precedence372924
-Node: Locales376592
-Node: Expressions Summary378223
-Node: Patterns and Actions380797
-Node: Pattern Overview381917
-Node: Regexp Patterns383596
-Node: Expression Patterns384139
-Node: Ranges387919
-Node: BEGIN/END391025
-Node: Using BEGIN/END391787
-Ref: Using BEGIN/END-Footnote-1394524
-Node: I/O And BEGIN/END394630
-Node: BEGINFILE/ENDFILE396944
-Node: Empty399845
-Node: Using Shell Variables400162
-Node: Action Overview402438
-Node: Statements404765
-Node: If Statement406613
-Node: While Statement408111
-Node: Do Statement410139
-Node: For Statement411281
-Node: Switch Statement414436
-Node: Break Statement416824
-Node: Continue Statement418865
-Node: Next Statement420690
-Node: Nextfile Statement423070
-Node: Exit Statement425700
-Node: Built-in Variables428103
-Node: User-modified429236
-Ref: User-modified-Footnote-1436916
-Node: Auto-set436978
-Ref: Auto-set-Footnote-1450008
-Ref: Auto-set-Footnote-2450213
-Node: ARGC and ARGV450269
-Node: Pattern Action Summary454473
-Node: Arrays456900
-Node: Array Basics458229
-Node: Array Intro459073
-Ref: figure-array-elements461037
-Ref: Array Intro-Footnote-1463561
-Node: Reference to Elements463689
-Node: Assigning Elements466139
-Node: Array Example466630
-Node: Scanning an Array468388
-Node: Controlling Scanning471404
-Ref: Controlling Scanning-Footnote-1476593
-Node: Numeric Array Subscripts476909
-Node: Uninitialized Subscripts479094
-Node: Delete480711
-Ref: Delete-Footnote-1483455
-Node: Multidimensional483512
-Node: Multiscanning486607
-Node: Arrays of Arrays488196
-Node: Arrays Summary492957
-Node: Functions495062
-Node: Built-in495935
-Node: Calling Built-in497013
-Node: Numeric Functions499001
-Ref: Numeric Functions-Footnote-1503023
-Ref: Numeric Functions-Footnote-2503380
-Ref: Numeric Functions-Footnote-3503428
-Node: String Functions503697
-Ref: String Functions-Footnote-1527169
-Ref: String Functions-Footnote-2527298
-Ref: String Functions-Footnote-3527546
-Node: Gory Details527633
-Ref: table-sub-escapes529414
-Ref: table-sub-proposed530934
-Ref: table-posix-sub532298
-Ref: table-gensub-escapes533838
-Ref: Gory Details-Footnote-1534670
-Node: I/O Functions534821
-Ref: I/O Functions-Footnote-1541922
-Node: Time Functions542069
-Ref: Time Functions-Footnote-1552538
-Ref: Time Functions-Footnote-2552606
-Ref: Time Functions-Footnote-3552764
-Ref: Time Functions-Footnote-4552875
-Ref: Time Functions-Footnote-5552987
-Ref: Time Functions-Footnote-6553214
-Node: Bitwise Functions553480
-Ref: table-bitwise-ops554042
-Ref: Bitwise Functions-Footnote-1558350
-Node: Type Functions558519
-Node: I18N Functions559668
-Node: User-defined561313
-Node: Definition Syntax562117
-Ref: Definition Syntax-Footnote-1567523
-Node: Function Example567592
-Ref: Function Example-Footnote-1570509
-Node: Function Caveats570531
-Node: Calling A Function571049
-Node: Variable Scope572004
-Node: Pass By Value/Reference574992
-Node: Return Statement578502
-Node: Dynamic Typing581486
-Node: Indirect Calls582415
-Ref: Indirect Calls-Footnote-1593719
-Node: Functions Summary593847
-Node: Library Functions596546
-Ref: Library Functions-Footnote-1600164
-Ref: Library Functions-Footnote-2600307
-Node: Library Names600478
-Ref: Library Names-Footnote-1603938
-Ref: Library Names-Footnote-2604158
-Node: General Functions604244
-Node: Strtonum Function605347
-Node: Assert Function608367
-Node: Round Function611691
-Node: Cliff Random Function613232
-Node: Ordinal Functions614248
-Ref: Ordinal Functions-Footnote-1617313
-Ref: Ordinal Functions-Footnote-2617565
-Node: Join Function617776
-Ref: Join Function-Footnote-1619547
-Node: Getlocaltime Function619747
-Node: Readfile Function623488
-Node: Shell Quoting625458
-Node: Data File Management626859
-Node: Filetrans Function627491
-Node: Rewind Function631550
-Node: File Checking632935
-Ref: File Checking-Footnote-1634263
-Node: Empty Files634464
-Node: Ignoring Assigns636443
-Node: Getopt Function637994
-Ref: Getopt Function-Footnote-1649454
-Node: Passwd Functions649657
-Ref: Passwd Functions-Footnote-1658508
-Node: Group Functions658596
-Ref: Group Functions-Footnote-1666499
-Node: Walking Arrays666712
-Node: Library Functions Summary668315
-Node: Library Exercises669716
-Node: Sample Programs670996
-Node: Running Examples671766
-Node: Clones672494
-Node: Cut Program673718
-Node: Egrep Program683448
-Ref: Egrep Program-Footnote-1690952
-Node: Id Program691062
-Node: Split Program694706
-Ref: Split Program-Footnote-1698152
-Node: Tee Program698280
-Node: Uniq Program701067
-Node: Wc Program708488
-Ref: Wc Program-Footnote-1712736
-Node: Miscellaneous Programs712828
-Node: Dupword Program714041
-Node: Alarm Program716072
-Node: Translate Program720876
-Ref: Translate Program-Footnote-1725440
-Node: Labels Program725710
-Ref: Labels Program-Footnote-1729059
-Node: Word Sorting729143
-Node: History Sorting733213
-Node: Extract Program735049
-Node: Simple Sed742581
-Node: Igawk Program745643
-Ref: Igawk Program-Footnote-1759969
-Ref: Igawk Program-Footnote-2760170
-Ref: Igawk Program-Footnote-3760292
-Node: Anagram Program760407
-Node: Signature Program763469
-Node: Programs Summary764716
-Node: Programs Exercises765909
-Ref: Programs Exercises-Footnote-1770040
-Node: Advanced Features770131
-Node: Nondecimal Data772079
-Node: Array Sorting773669
-Node: Controlling Array Traversal774366
-Ref: Controlling Array Traversal-Footnote-1782697
-Node: Array Sorting Functions782815
-Ref: Array Sorting Functions-Footnote-1786707
-Node: Two-way I/O786901
-Ref: Two-way I/O-Footnote-1791845
-Ref: Two-way I/O-Footnote-2792031
-Node: TCP/IP Networking792113
-Node: Profiling794985
-Node: Advanced Features Summary802529
-Node: Internationalization804462
-Node: I18N and L10N805942
-Node: Explaining gettext806628
-Ref: Explaining gettext-Footnote-1811657
-Ref: Explaining gettext-Footnote-2811841
-Node: Programmer i18n812006
-Ref: Programmer i18n-Footnote-1816872
-Node: Translator i18n816921
-Node: String Extraction817715
-Ref: String Extraction-Footnote-1818846
-Node: Printf Ordering818932
-Ref: Printf Ordering-Footnote-1821718
-Node: I18N Portability821782
-Ref: I18N Portability-Footnote-1824231
-Node: I18N Example824294
-Ref: I18N Example-Footnote-1827094
-Node: Gawk I18N827166
-Node: I18N Summary827804
-Node: Debugger829143
-Node: Debugging830165
-Node: Debugging Concepts830606
-Node: Debugging Terms832463
-Node: Awk Debugging835038
-Node: Sample Debugging Session835930
-Node: Debugger Invocation836450
-Node: Finding The Bug837834
-Node: List of Debugger Commands844309
-Node: Breakpoint Control845641
-Node: Debugger Execution Control849333
-Node: Viewing And Changing Data852697
-Node: Execution Stack856062
-Node: Debugger Info857700
-Node: Miscellaneous Debugger Commands861717
-Node: Readline Support866909
-Node: Limitations867801
-Node: Debugging Summary869898
-Node: Arbitrary Precision Arithmetic871066
-Node: Computer Arithmetic872482
-Ref: table-numeric-ranges876083
-Ref: Computer Arithmetic-Footnote-1876942
-Node: Math Definitions876999
-Ref: table-ieee-formats880286
-Ref: Math Definitions-Footnote-1880890
-Node: MPFR features880995
-Node: FP Math Caution882666
-Ref: FP Math Caution-Footnote-1883716
-Node: Inexactness of computations884085
-Node: Inexact representation885033
-Node: Comparing FP Values886388
-Node: Errors accumulate887461
-Node: Getting Accuracy888894
-Node: Try To Round891553
-Node: Setting precision892452
-Ref: table-predefined-precision-strings893136
-Node: Setting the rounding mode894930
-Ref: table-gawk-rounding-modes895294
-Ref: Setting the rounding mode-Footnote-1898748
-Node: Arbitrary Precision Integers898927
-Ref: Arbitrary Precision Integers-Footnote-1901918
-Node: POSIX Floating Point Problems902067
-Ref: POSIX Floating Point Problems-Footnote-1905943
-Node: Floating point summary905981
-Node: Dynamic Extensions908173
-Node: Extension Intro909725
-Node: Plugin License910991
-Node: Extension Mechanism Outline911788
-Ref: figure-load-extension912216
-Ref: figure-register-new-function913696
-Ref: figure-call-new-function914700
-Node: Extension API Description916686
-Node: Extension API Functions Introduction918136
-Node: General Data Types922972
-Ref: General Data Types-Footnote-1928659
-Node: Memory Allocation Functions928958
-Ref: Memory Allocation Functions-Footnote-1931788
-Node: Constructor Functions931884
-Node: Registration Functions933618
-Node: Extension Functions934303
-Node: Exit Callback Functions936599
-Node: Extension Version String937847
-Node: Input Parsers938497
-Node: Output Wrappers948312
-Node: Two-way processors952828
-Node: Printing Messages955032
-Ref: Printing Messages-Footnote-1956109
-Node: Updating `ERRNO'956261
-Node: Requesting Values957001
-Ref: table-value-types-returned957729
-Node: Accessing Parameters958687
-Node: Symbol Table Access959918
-Node: Symbol table by name960432
-Node: Symbol table by cookie962412
-Ref: Symbol table by cookie-Footnote-1966551
-Node: Cached values966614
-Ref: Cached values-Footnote-1970118
-Node: Array Manipulation970209
-Ref: Array Manipulation-Footnote-1971307
-Node: Array Data Types971346
-Ref: Array Data Types-Footnote-1974003
-Node: Array Functions974095
-Node: Flattening Arrays977949
-Node: Creating Arrays984836
-Node: Extension API Variables989603
-Node: Extension Versioning990239
-Node: Extension API Informational Variables992140
-Node: Extension API Boilerplate993228
-Node: Finding Extensions997044
-Node: Extension Example997604
-Node: Internal File Description998376
-Node: Internal File Ops1002443
-Ref: Internal File Ops-Footnote-11014101
-Node: Using Internal File Ops1014241
-Ref: Using Internal File Ops-Footnote-11016624
-Node: Extension Samples1016897
-Node: Extension Sample File Functions1018421
-Node: Extension Sample Fnmatch1026023
-Node: Extension Sample Fork1027505
-Node: Extension Sample Inplace1028718
-Node: Extension Sample Ord1030393
-Node: Extension Sample Readdir1031229
-Ref: table-readdir-file-types1032085
-Node: Extension Sample Revout1032896
-Node: Extension Sample Rev2way1033487
-Node: Extension Sample Read write array1034228
-Node: Extension Sample Readfile1036167
-Node: Extension Sample Time1037262
-Node: Extension Sample API Tests1038611
-Node: gawkextlib1039102
-Node: Extension summary1041752
-Node: Extension Exercises1045434
-Node: Language History1046156
-Node: V7/SVR3.11047813
-Node: SVR41049994
-Node: POSIX1051439
-Node: BTL1052828
-Node: POSIX/GNU1053562
-Node: Feature History1059131
-Node: Common Extensions1072222
-Node: Ranges and Locales1073546
-Ref: Ranges and Locales-Footnote-11078185
-Ref: Ranges and Locales-Footnote-21078212
-Ref: Ranges and Locales-Footnote-31078446
-Node: Contributors1078667
-Node: History summary1084207
-Node: Installation1085576
-Node: Gawk Distribution1086532
-Node: Getting1087016
-Node: Extracting1087840
-Node: Distribution contents1089482
-Node: Unix Installation1095199
-Node: Quick Installation1095816
-Node: Additional Configuration Options1098247
-Node: Configuration Philosophy1099987
-Node: Non-Unix Installation1102338
-Node: PC Installation1102796
-Node: PC Binary Installation1104122
-Node: PC Compiling1105970
-Ref: PC Compiling-Footnote-11108991
-Node: PC Testing1109096
-Node: PC Using1110272
-Node: Cygwin1114387
-Node: MSYS1115210
-Node: VMS Installation1115708
-Node: VMS Compilation1116500
-Ref: VMS Compilation-Footnote-11117722
-Node: VMS Dynamic Extensions1117780
-Node: VMS Installation Details1119464
-Node: VMS Running1121716
-Node: VMS GNV1124557
-Node: VMS Old Gawk1125291
-Node: Bugs1125761
-Node: Other Versions1129665
-Node: Installation summary1135878
-Node: Notes1136934
-Node: Compatibility Mode1137799
-Node: Additions1138581
-Node: Accessing The Source1139506
-Node: Adding Code1140942
-Node: New Ports1147114
-Node: Derived Files1151596
-Ref: Derived Files-Footnote-11157071
-Ref: Derived Files-Footnote-21157105
-Ref: Derived Files-Footnote-31157701
-Node: Future Extensions1157815
-Node: Implementation Limitations1158421
-Node: Extension Design1159669
-Node: Old Extension Problems1160823
-Ref: Old Extension Problems-Footnote-11162340
-Node: Extension New Mechanism Goals1162397
-Ref: Extension New Mechanism Goals-Footnote-11165757
-Node: Extension Other Design Decisions1165946
-Node: Extension Future Growth1168054
-Node: Old Extension Mechanism1168890
-Node: Notes summary1170652
-Node: Basic Concepts1171838
-Node: Basic High Level1172519
-Ref: figure-general-flow1172791
-Ref: figure-process-flow1173390
-Ref: Basic High Level-Footnote-11176619
-Node: Basic Data Typing1176804
-Node: Glossary1180132
-Node: Copying1205290
-Node: GNU Free Documentation License1242846
-Node: Index1267982
+Ref: Options-Footnote-1129409
+Node: Other Arguments129434
+Node: Naming Standard Input132395
+Node: Environment Variables133488
+Node: AWKPATH Variable134046
+Ref: AWKPATH Variable-Footnote-1136898
+Ref: AWKPATH Variable-Footnote-2136943
+Node: AWKLIBPATH Variable137203
+Node: Other Environment Variables137962
+Node: Exit Status141453
+Node: Include Files142128
+Node: Loading Shared Libraries145716
+Node: Obsolete147143
+Node: Undocumented147840
+Node: Invoking Summary148107
+Node: Regexp149773
+Node: Regexp Usage151232
+Node: Escape Sequences153265
+Node: Regexp Operators159365
+Ref: Regexp Operators-Footnote-1166799
+Ref: Regexp Operators-Footnote-2166946
+Node: Bracket Expressions167044
+Ref: table-char-classes169061
+Node: Leftmost Longest172001
+Node: Computed Regexps173303
+Node: GNU Regexp Operators176700
+Node: Case-sensitivity180402
+Ref: Case-sensitivity-Footnote-1183292
+Ref: Case-sensitivity-Footnote-2183527
+Node: Regexp Summary183635
+Node: Reading Files185104
+Node: Records187198
+Node: awk split records187930
+Node: gawk split records192844
+Ref: gawk split records-Footnote-1197383
+Node: Fields197420
+Ref: Fields-Footnote-1200218
+Node: Nonconstant Fields200304
+Ref: Nonconstant Fields-Footnote-1202540
+Node: Changing Fields202742
+Node: Field Separators208674
+Node: Default Field Splitting211378
+Node: Regexp Field Splitting212495
+Node: Single Character Fields215845
+Node: Command Line Field Separator216904
+Node: Full Line Fields220116
+Ref: Full Line Fields-Footnote-1220624
+Node: Field Splitting Summary220670
+Ref: Field Splitting Summary-Footnote-1223801
+Node: Constant Size223902
+Node: Splitting By Content228508
+Ref: Splitting By Content-Footnote-1232581
+Node: Multiple Line232621
+Ref: Multiple Line-Footnote-1238510
+Node: Getline238689
+Node: Plain Getline240900
+Node: Getline/Variable243540
+Node: Getline/File244687
+Node: Getline/Variable/File246071
+Ref: Getline/Variable/File-Footnote-1247672
+Node: Getline/Pipe247759
+Node: Getline/Variable/Pipe250442
+Node: Getline/Coprocess251573
+Node: Getline/Variable/Coprocess252825
+Node: Getline Notes253564
+Node: Getline Summary256356
+Ref: table-getline-variants256768
+Node: Read Timeout257597
+Ref: Read Timeout-Footnote-1261411
+Node: Command-line directories261469
+Node: Input Summary262373
+Node: Input Exercises265625
+Node: Printing266353
+Node: Print268130
+Node: Print Examples269587
+Node: Output Separators272366
+Node: OFMT274384
+Node: Printf275738
+Node: Basic Printf276523
+Node: Control Letters278094
+Node: Format Modifiers282078
+Node: Printf Examples288085
+Node: Redirection290567
+Node: Special FD297406
+Ref: Special FD-Footnote-1300563
+Node: Special Files300637
+Node: Other Inherited Files301253
+Node: Special Network302253
+Node: Special Caveats303114
+Node: Close Files And Pipes304065
+Ref: Close Files And Pipes-Footnote-1311244
+Ref: Close Files And Pipes-Footnote-2311392
+Node: Output Summary311542
+Node: Output Exercises312538
+Node: Expressions313218
+Node: Values314403
+Node: Constants315079
+Node: Scalar Constants315759
+Ref: Scalar Constants-Footnote-1316618
+Node: Nondecimal-numbers316868
+Node: Regexp Constants319868
+Node: Using Constant Regexps320393
+Node: Variables323531
+Node: Using Variables324186
+Node: Assignment Options326096
+Node: Conversion327971
+Node: Strings And Numbers328495
+Ref: Strings And Numbers-Footnote-1331559
+Node: Locale influences conversions331668
+Ref: table-locale-affects334413
+Node: All Operators335001
+Node: Arithmetic Ops335631
+Node: Concatenation338136
+Ref: Concatenation-Footnote-1340955
+Node: Assignment Ops341061
+Ref: table-assign-ops346044
+Node: Increment Ops347322
+Node: Truth Values and Conditions350760
+Node: Truth Values351843
+Node: Typing and Comparison352892
+Node: Variable Typing353685
+Node: Comparison Operators357337
+Ref: table-relational-ops357747
+Node: POSIX String Comparison361262
+Ref: POSIX String Comparison-Footnote-1362334
+Node: Boolean Ops362472
+Ref: Boolean Ops-Footnote-1366951
+Node: Conditional Exp367042
+Node: Function Calls368769
+Node: Precedence372649
+Node: Locales376317
+Node: Expressions Summary377948
+Node: Patterns and Actions380522
+Node: Pattern Overview381642
+Node: Regexp Patterns383321
+Node: Expression Patterns383864
+Node: Ranges387644
+Node: BEGIN/END390750
+Node: Using BEGIN/END391512
+Ref: Using BEGIN/END-Footnote-1394249
+Node: I/O And BEGIN/END394355
+Node: BEGINFILE/ENDFILE396669
+Node: Empty399570
+Node: Using Shell Variables399887
+Node: Action Overview402163
+Node: Statements404490
+Node: If Statement406338
+Node: While Statement407836
+Node: Do Statement409864
+Node: For Statement411006
+Node: Switch Statement414161
+Node: Break Statement416549
+Node: Continue Statement418590
+Node: Next Statement420415
+Node: Nextfile Statement422795
+Node: Exit Statement425425
+Node: Built-in Variables427828
+Node: User-modified428961
+Ref: User-modified-Footnote-1436641
+Node: Auto-set436703
+Ref: Auto-set-Footnote-1450070
+Ref: Auto-set-Footnote-2450275
+Node: ARGC and ARGV450331
+Node: Pattern Action Summary454535
+Node: Arrays456962
+Node: Array Basics458291
+Node: Array Intro459135
+Ref: figure-array-elements461099
+Ref: Array Intro-Footnote-1463623
+Node: Reference to Elements463751
+Node: Assigning Elements466201
+Node: Array Example466692
+Node: Scanning an Array468450
+Node: Controlling Scanning471466
+Ref: Controlling Scanning-Footnote-1476655
+Node: Numeric Array Subscripts476971
+Node: Uninitialized Subscripts479156
+Node: Delete480773
+Ref: Delete-Footnote-1483517
+Node: Multidimensional483574
+Node: Multiscanning486669
+Node: Arrays of Arrays488258
+Node: Arrays Summary493019
+Node: Functions495124
+Node: Built-in495997
+Node: Calling Built-in497075
+Node: Numeric Functions499063
+Ref: Numeric Functions-Footnote-1503887
+Ref: Numeric Functions-Footnote-2504244
+Ref: Numeric Functions-Footnote-3504292
+Node: String Functions504561
+Ref: String Functions-Footnote-1528033
+Ref: String Functions-Footnote-2528162
+Ref: String Functions-Footnote-3528410
+Node: Gory Details528497
+Ref: table-sub-escapes530278
+Ref: table-sub-proposed531798
+Ref: table-posix-sub533162
+Ref: table-gensub-escapes534702
+Ref: Gory Details-Footnote-1535534
+Node: I/O Functions535685
+Ref: I/O Functions-Footnote-1542786
+Node: Time Functions542933
+Ref: Time Functions-Footnote-1553402
+Ref: Time Functions-Footnote-2553470
+Ref: Time Functions-Footnote-3553628
+Ref: Time Functions-Footnote-4553739
+Ref: Time Functions-Footnote-5553851
+Ref: Time Functions-Footnote-6554078
+Node: Bitwise Functions554344
+Ref: table-bitwise-ops554906
+Ref: Bitwise Functions-Footnote-1559214
+Node: Type Functions559383
+Node: I18N Functions560532
+Node: User-defined562177
+Node: Definition Syntax562981
+Ref: Definition Syntax-Footnote-1568387
+Node: Function Example568456
+Ref: Function Example-Footnote-1571373
+Node: Function Caveats571395
+Node: Calling A Function571913
+Node: Variable Scope572868
+Node: Pass By Value/Reference575856
+Node: Return Statement579366
+Node: Dynamic Typing582350
+Node: Indirect Calls583279
+Ref: Indirect Calls-Footnote-1594583
+Node: Functions Summary594711
+Node: Library Functions597410
+Ref: Library Functions-Footnote-1601028
+Ref: Library Functions-Footnote-2601171
+Node: Library Names601342
+Ref: Library Names-Footnote-1604802
+Ref: Library Names-Footnote-2605022
+Node: General Functions605108
+Node: Strtonum Function606211
+Node: Assert Function609231
+Node: Round Function612555
+Node: Cliff Random Function614096
+Node: Ordinal Functions615112
+Ref: Ordinal Functions-Footnote-1618177
+Ref: Ordinal Functions-Footnote-2618429
+Node: Join Function618640
+Ref: Join Function-Footnote-1620411
+Node: Getlocaltime Function620611
+Node: Readfile Function624352
+Node: Shell Quoting626322
+Node: Data File Management627723
+Node: Filetrans Function628355
+Node: Rewind Function632414
+Node: File Checking633799
+Ref: File Checking-Footnote-1635127
+Node: Empty Files635328
+Node: Ignoring Assigns637307
+Node: Getopt Function638858
+Ref: Getopt Function-Footnote-1650318
+Node: Passwd Functions650521
+Ref: Passwd Functions-Footnote-1659372
+Node: Group Functions659460
+Ref: Group Functions-Footnote-1667363
+Node: Walking Arrays667576
+Node: Library Functions Summary669179
+Node: Library Exercises670580
+Node: Sample Programs671860
+Node: Running Examples672630
+Node: Clones673358
+Node: Cut Program674582
+Node: Egrep Program684312
+Ref: Egrep Program-Footnote-1691816
+Node: Id Program691926
+Node: Split Program695570
+Ref: Split Program-Footnote-1699016
+Node: Tee Program699144
+Node: Uniq Program701931
+Node: Wc Program709352
+Ref: Wc Program-Footnote-1713600
+Node: Miscellaneous Programs713692
+Node: Dupword Program714905
+Node: Alarm Program716936
+Node: Translate Program721740
+Ref: Translate Program-Footnote-1726304
+Node: Labels Program726574
+Ref: Labels Program-Footnote-1729923
+Node: Word Sorting730007
+Node: History Sorting734077
+Node: Extract Program735913
+Node: Simple Sed743445
+Node: Igawk Program746507
+Ref: Igawk Program-Footnote-1760833
+Ref: Igawk Program-Footnote-2761034
+Ref: Igawk Program-Footnote-3761156
+Node: Anagram Program761271
+Node: Signature Program764333
+Node: Programs Summary765580
+Node: Programs Exercises766773
+Ref: Programs Exercises-Footnote-1770904
+Node: Advanced Features770995
+Node: Nondecimal Data772943
+Node: Array Sorting774533
+Node: Controlling Array Traversal775230
+Ref: Controlling Array Traversal-Footnote-1783561
+Node: Array Sorting Functions783679
+Ref: Array Sorting Functions-Footnote-1787571
+Node: Two-way I/O787765
+Ref: Two-way I/O-Footnote-1792709
+Ref: Two-way I/O-Footnote-2792895
+Node: TCP/IP Networking792977
+Node: Profiling795849
+Node: Advanced Features Summary803402
+Node: Internationalization805335
+Node: I18N and L10N806815
+Node: Explaining gettext807501
+Ref: Explaining gettext-Footnote-1812530
+Ref: Explaining gettext-Footnote-2812714
+Node: Programmer i18n812879
+Ref: Programmer i18n-Footnote-1817745
+Node: Translator i18n817794
+Node: String Extraction818588
+Ref: String Extraction-Footnote-1819719
+Node: Printf Ordering819805
+Ref: Printf Ordering-Footnote-1822591
+Node: I18N Portability822655
+Ref: I18N Portability-Footnote-1825104
+Node: I18N Example825167
+Ref: I18N Example-Footnote-1827967
+Node: Gawk I18N828039
+Node: I18N Summary828677
+Node: Debugger830016
+Node: Debugging831038
+Node: Debugging Concepts831479
+Node: Debugging Terms833336
+Node: Awk Debugging835911
+Node: Sample Debugging Session836803
+Node: Debugger Invocation837323
+Node: Finding The Bug838707
+Node: List of Debugger Commands845182
+Node: Breakpoint Control846514
+Node: Debugger Execution Control850206
+Node: Viewing And Changing Data853570
+Node: Execution Stack856935
+Node: Debugger Info858573
+Node: Miscellaneous Debugger Commands862590
+Node: Readline Support867782
+Node: Limitations868674
+Node: Debugging Summary870771
+Node: Arbitrary Precision Arithmetic871939
+Node: Computer Arithmetic873355
+Ref: table-numeric-ranges876956
+Ref: Computer Arithmetic-Footnote-1877815
+Node: Math Definitions877872
+Ref: table-ieee-formats881159
+Ref: Math Definitions-Footnote-1881763
+Node: MPFR features881868
+Node: FP Math Caution883539
+Ref: FP Math Caution-Footnote-1884589
+Node: Inexactness of computations884958
+Node: Inexact representation885906
+Node: Comparing FP Values887261
+Node: Errors accumulate888334
+Node: Getting Accuracy889767
+Node: Try To Round892426
+Node: Setting precision893325
+Ref: table-predefined-precision-strings894009
+Node: Setting the rounding mode895803
+Ref: table-gawk-rounding-modes896167
+Ref: Setting the rounding mode-Footnote-1899621
+Node: Arbitrary Precision Integers899800
+Ref: Arbitrary Precision Integers-Footnote-1904704
+Node: POSIX Floating Point Problems904853
+Ref: POSIX Floating Point Problems-Footnote-1908729
+Node: Floating point summary908767
+Node: Dynamic Extensions910959
+Node: Extension Intro912511
+Node: Plugin License913777
+Node: Extension Mechanism Outline914574
+Ref: figure-load-extension915002
+Ref: figure-register-new-function916482
+Ref: figure-call-new-function917486
+Node: Extension API Description919472
+Node: Extension API Functions Introduction920922
+Node: General Data Types925758
+Ref: General Data Types-Footnote-1931445
+Node: Memory Allocation Functions931744
+Ref: Memory Allocation Functions-Footnote-1934574
+Node: Constructor Functions934670
+Node: Registration Functions936404
+Node: Extension Functions937089
+Node: Exit Callback Functions939385
+Node: Extension Version String940633
+Node: Input Parsers941283
+Node: Output Wrappers951098
+Node: Two-way processors955614
+Node: Printing Messages957818
+Ref: Printing Messages-Footnote-1958895
+Node: Updating `ERRNO'959047
+Node: Requesting Values959787
+Ref: table-value-types-returned960515
+Node: Accessing Parameters961473
+Node: Symbol Table Access962704
+Node: Symbol table by name963218
+Node: Symbol table by cookie965198
+Ref: Symbol table by cookie-Footnote-1969337
+Node: Cached values969400
+Ref: Cached values-Footnote-1972904
+Node: Array Manipulation972995
+Ref: Array Manipulation-Footnote-1974093
+Node: Array Data Types974132
+Ref: Array Data Types-Footnote-1976789
+Node: Array Functions976881
+Node: Flattening Arrays980735
+Node: Creating Arrays987622
+Node: Extension API Variables992389
+Node: Extension Versioning993025
+Node: Extension API Informational Variables994926
+Node: Extension API Boilerplate996014
+Node: Finding Extensions999830
+Node: Extension Example1000390
+Node: Internal File Description1001162
+Node: Internal File Ops1005229
+Ref: Internal File Ops-Footnote-11016887
+Node: Using Internal File Ops1017027
+Ref: Using Internal File Ops-Footnote-11019410
+Node: Extension Samples1019683
+Node: Extension Sample File Functions1021207
+Node: Extension Sample Fnmatch1028809
+Node: Extension Sample Fork1030291
+Node: Extension Sample Inplace1031504
+Node: Extension Sample Ord1033179
+Node: Extension Sample Readdir1034015
+Ref: table-readdir-file-types1034871
+Node: Extension Sample Revout1035682
+Node: Extension Sample Rev2way1036273
+Node: Extension Sample Read write array1037014
+Node: Extension Sample Readfile1038953
+Node: Extension Sample Time1040048
+Node: Extension Sample API Tests1041397
+Node: gawkextlib1041888
+Node: Extension summary1044538
+Node: Extension Exercises1048220
+Node: Language History1048942
+Node: V7/SVR3.11050599
+Node: SVR41052780
+Node: POSIX1054225
+Node: BTL1055614
+Node: POSIX/GNU1056348
+Node: Feature History1061977
+Node: Common Extensions1075068
+Node: Ranges and Locales1076392
+Ref: Ranges and Locales-Footnote-11081031
+Ref: Ranges and Locales-Footnote-21081058
+Ref: Ranges and Locales-Footnote-31081292
+Node: Contributors1081513
+Node: History summary1087053
+Node: Installation1088422
+Node: Gawk Distribution1089378
+Node: Getting1089862
+Node: Extracting1090686
+Node: Distribution contents1092328
+Node: Unix Installation1098098
+Node: Quick Installation1098715
+Node: Additional Configuration Options1101146
+Node: Configuration Philosophy1102886
+Node: Non-Unix Installation1105237
+Node: PC Installation1105695
+Node: PC Binary Installation1107021
+Node: PC Compiling1108869
+Ref: PC Compiling-Footnote-11111890
+Node: PC Testing1111995
+Node: PC Using1113171
+Node: Cygwin1117286
+Node: MSYS1118109
+Node: VMS Installation1118607
+Node: VMS Compilation1119399
+Ref: VMS Compilation-Footnote-11120621
+Node: VMS Dynamic Extensions1120679
+Node: VMS Installation Details1122363
+Node: VMS Running1124615
+Node: VMS GNV1127456
+Node: VMS Old Gawk1128190
+Node: Bugs1128660
+Node: Other Versions1132564
+Node: Installation summary1138777
+Node: Notes1139833
+Node: Compatibility Mode1140698
+Node: Additions1141480
+Node: Accessing The Source1142405
+Node: Adding Code1143841
+Node: New Ports1150013
+Node: Derived Files1154495
+Ref: Derived Files-Footnote-11159970
+Ref: Derived Files-Footnote-21160004
+Ref: Derived Files-Footnote-31160600
+Node: Future Extensions1160714
+Node: Implementation Limitations1161320
+Node: Extension Design1162568
+Node: Old Extension Problems1163722
+Ref: Old Extension Problems-Footnote-11165239
+Node: Extension New Mechanism Goals1165296
+Ref: Extension New Mechanism Goals-Footnote-11168656
+Node: Extension Other Design Decisions1168845
+Node: Extension Future Growth1170953
+Node: Old Extension Mechanism1171789
+Node: Notes summary1173551
+Node: Basic Concepts1174737
+Node: Basic High Level1175418
+Ref: figure-general-flow1175690
+Ref: figure-process-flow1176289
+Ref: Basic High Level-Footnote-11179518
+Node: Basic Data Typing1179703
+Node: Glossary1183031
+Node: Copying1208189
+Node: GNU Free Documentation License1245745
+Node: Index1270881

End Tag Table