diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-25 20:39:25 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-25 20:39:25 +0200 |
commit | b7b15c69c5b56d015df92f4df6c5b1cec59fa71c (patch) | |
tree | 1e80ccdc6c828c1576e66dce3f9290a1ce70251a /doc/gawk.texi | |
parent | e45c816f3e2ef7ee7a07ff0a8daba1b002f06ab3 (diff) | |
download | egawk-b7b15c69c5b56d015df92f4df6c5b1cec59fa71c.tar.gz egawk-b7b15c69c5b56d015df92f4df6c5b1cec59fa71c.tar.bz2 egawk-b7b15c69c5b56d015df92f4df6c5b1cec59fa71c.zip |
More doc updates.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index ae6673cd..9b4d392e 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -4594,6 +4594,14 @@ manipulate the @env{AWKLIBPATH} variable. @code{ENVIRON["AWKLIBPATH"]}. This provides access to the actual search path value from within an @command{awk} program. +Although you can change @code{ENVIRON["AWKLIBPATH"]} within your +@command{awk} program, this has no effect on the running program's +behavior. This makes sense: the @env{AWKLIBPATH} environment variable +is used to find any requested extensions, and they are loaded before +the program starts to run. Once your program is running, all the +extensions have been found, and @command{gawk} no longer needs to use +@env{AWKLIBPATH}. + @node Other Environment Variables @subsection Other Environment Variables |