bash-4.4 alpha update formatted documentation

This commit is contained in:
Chet Ramey
2015-07-10 11:03:02 -04:00
parent 96f66efe6f
commit eac8fb1b4c
9 changed files with 6127 additions and 5987 deletions
+1752 -1736
View File
File diff suppressed because it is too large Load Diff
+35 -10
View File
@@ -3,7 +3,7 @@
</HEAD>
<BODY><TABLE WIDTH=100%>
<TR>
<TH ALIGN=LEFT width=33%>BASH(1)<TH ALIGN=CENTER width=33%>2015 April 6<TH ALIGN=RIGHT width=33%>BASH(1)
<TH ALIGN=LEFT width=33%>BASH(1)<TH ALIGN=CENTER width=33%>2015 June 11<TH ALIGN=RIGHT width=33%>BASH(1)
</TR>
</TABLE>
<BR><A HREF="#index">Index</A>
@@ -2536,6 +2536,17 @@ Similar to
</FONT>
used when the shell is invoked in POSIX mode.
<DT><B>EXECIGNORE</B>
<DD>
A colon-separated list of extended glob patterns (see <B>Pattern Matching</B>)
defining the list of filenames to be ignored by command search.
Files whose full pathnames match one of these patterns are not considered
executable files for the purposes of completion and command execution.
This does not affect the behavior of the <B>[</B>, <B>test</B>, and <B>[[</B>
commands.
Use this variable to ignore shared library files that have the executable
bit set, but are not executable files.
<DT><B>FCEDIT</B>
<DD>
@@ -8923,7 +8934,8 @@ No effect; the command does nothing beyond expanding
<I>arguments</I>
and performing any specified
redirections. A zero exit code is returned.
redirections.
The return status is zero.
<DT><B> . </B> <I>filename</I> [<I>arguments</I>]<DD>
<DT><B>source</B> <I>filename</I> [<I>arguments</I>]<DD>
@@ -8970,6 +8982,12 @@ is not searched.
If any <I>arguments</I> are supplied, they become the positional
parameters when <I>filename</I> is executed. Otherwise the positional
parameters are unchanged.
If the <B>-T</B> option is enabled, <B>source</B> inherits any trap on
<B>DEBUG</B>; if it is not, any <B>DEBUG</B> trap string is saved and
restored around the call to <B>source</B>, and <B>source</B> unsets the
<B>DEBUG</B> trap while it executes.
If <B>-T</B> is not set, and the sourced file changes
the <B>DEBUG</B> trap, the new value is retained when <B>source</B> completes.
The return status is the status of the last command exited within
the script (0 if no commands are executed), and false if
<I>filename</I>
@@ -10525,8 +10543,9 @@ Delete the history entry at position <I>offset</I>.
<DT><B>-a</B>
<DD>
Append the ``new'' history lines (history lines entered since the
beginning of the current <B>bash</B> session) to the history file.
Append the ``new'' history lines to the history file.
These are history lines entered since the beginning of the current
<B>bash</B> session, but not already appended to the history file.
<DT><B>-n</B>
<DD>
@@ -11194,8 +11213,8 @@ are supplied, the line read is assigned to the variable
<FONT SIZE=-1><B>REPLY</B>.
</FONT>
The return code is zero, unless end-of-file is encountered, <B>read</B>
times out (in which case the return code is greater than 128),
The exit status is zero, unless end-of-file is encountered, <B>read</B>
times out (in which case the status is greater than 128),
a variable assignment error (such as assigning to a readonly variable) occurs,
or an invalid file descriptor is supplied as the argument to <B>-u</B>.
</DL>
@@ -12921,7 +12940,6 @@ which is in seconds;
<B>-p</B>,
which is in units of 512-byte blocks;
and
<B>-P</B>,
<B>-T</B>,
@@ -12935,7 +12953,14 @@ and
and
<B>-u</B>,
which are unscaled values.
which are unscaled values;
and, when in Posix mode,
<B>-c</B>
and
<B>-f</B>,
which are in 512-byte increments.
The return status is 0 unless an invalid option or argument is supplied,
or an error occurs while setting a new limit.
</DL>
@@ -13352,7 +13377,7 @@ There may be only one active coprocess at a time.
<HR>
<TABLE WIDTH=100%>
<TR>
<TH ALIGN=LEFT width=33%>GNU Bash 4.4<TH ALIGN=CENTER width=33%>2015 April 6<TH ALIGN=RIGHT width=33%>BASH(1)
<TH ALIGN=LEFT width=33%>GNU Bash 4.4<TH ALIGN=CENTER width=33%>2015 June 11<TH ALIGN=RIGHT width=33%>BASH(1)
</TR>
</TABLE>
<HR>
@@ -13458,6 +13483,6 @@ There may be only one active coprocess at a time.
</DL>
<HR>
This document was created by man2html from bash.1.<BR>
Time: 06 April 2015 13:59:15 EDT
Time: 10 July 2015 10:23:17 EDT
</BODY>
</HTML>
BIN
View File
Binary file not shown.
+826 -800
View File
File diff suppressed because it is too large Load Diff
+185 -166
View File
@@ -2,9 +2,9 @@ This is bashref.info, produced by makeinfo version 5.2 from
bashref.texi.
This text is a brief description of the features that are present in the
Bash shell (version 4.4, 6 April 2015).
Bash shell (version 4.4, 11 June 2015).
This is Edition 4.4, last updated 6 April 2015, of 'The GNU Bash
This is Edition 4.4, last updated 11 June 2015, of 'The GNU Bash
Reference Manual', for 'Bash', Version 4.4.
Copyright (C) 1988-2014 Free Software Foundation, Inc.
@@ -27,10 +27,10 @@ Bash Features
*************
This text is a brief description of the features that are present in the
Bash shell (version 4.4, 6 April 2015). The Bash home page is
Bash shell (version 4.4, 11 June 2015). The Bash home page is
<http://www.gnu.org/software/bash/>.
This is Edition 4.4, last updated 6 April 2015, of 'The GNU Bash
This is Edition 4.4, last updated 11 June 2015, of 'The GNU Bash
Reference Manual', for 'Bash', Version 4.4.
Bash contains features that appear in other popular shells, and some
@@ -2797,10 +2797,15 @@ standard.
the current directory is searched if FILENAME is not found in
'$PATH'. If any ARGUMENTS are supplied, they become the positional
parameters when FILENAME is executed. Otherwise the positional
parameters are unchanged. The return status is the exit status of
the last command executed, or zero if no commands are executed. If
FILENAME is not found, or cannot be read, the return status is
non-zero. This builtin is equivalent to 'source'.
parameters are unchanged. If the '-T' option is enabled, 'source'
inherits any trap on 'DEBUG'; if it is not, any 'DEBUG' trap string
is saved and restored around the call to 'source', and 'source'
unsets the 'DEBUG' trap while it executes. If '-T' is not set, and
the sourced file changes the 'DEBUG' trap, the new value is
retained when 'source' completes. The return status is the exit
status of the last command executed, or zero if no commands are
executed. If FILENAME is not found, or cannot be read, the return
status is non-zero. This builtin is equivalent to 'source'.
'break'
break [N]
@@ -3670,10 +3675,10 @@ standard.
Splitting::). The backslash character '\' may be used to remove
any special meaning for the next character read and for line
continuation. If no names are supplied, the line read is assigned
to the variable 'REPLY'. The return code is zero, unless
to the variable 'REPLY'. The exit status is zero, unless
end-of-file is encountered, 'read' times out (in which case the
return code is greater than 128), a variable assignment error (such
as assigning to a readonly variable) occurs, or an invalid file
status is greater than 128), a variable assignment error (such as
assigning to a readonly variable) occurs, or an invalid file
descriptor is supplied as the argument to '-u'.
Options, if supplied, have the following meanings:
@@ -3887,8 +3892,10 @@ standard.
limits, if neither '-H' nor '-S' is supplied, both the hard and
soft limits are set. If no option is given, then '-f' is assumed.
Values are in 1024-byte increments, except for '-t', which is in
seconds; '-p', which is in units of 512-byte blocks; and '-P',
'-T', '-b', '-k', '-n' and '-u', which are unscaled values.
seconds; '-p', which is in units of 512-byte blocks; '-P', '-T',
'-b', '-k', '-n' and '-u', which are unscaled values; and, when in
POSIX Mode (*note Bash POSIX Mode::), '-c' and '-f', which are in
512-byte increments.
The return status is zero unless an invalid option or argument is
supplied, or an error occurs while setting a new limit.
@@ -4879,6 +4886,16 @@ Variables::).
The numeric effective user id of the current user. This variable
is readonly.
'EXECIGNORE'
A colon-separated list of extended glob patterns (*note Pattern
Matching::) defining the list of filenames to be ignored by command
search. Files whose full pathnames match one of these patterns are
not considered executable files for the purposes of completion and
command execution. This does not affect the behavior of the '[',
'test', and '[[' commands. Use this variable to ignore shared
library files that have the executable bit set, but are not
executable files.
'FCEDIT'
The editor used as a default by the '-e' option to the 'fc' builtin
command.
@@ -8900,8 +8917,9 @@ history file.
specified as it appears when the history is displayed.
'-a'
Append the new history lines (history lines entered since the
beginning of the current Bash session) to the history file.
Append the new history lines to the history file. These are
history lines entered since the beginning of the current Bash
session, but not already appended to the history file.
'-n'
Append the history lines not already read from the history
@@ -10521,17 +10539,17 @@ D.1 Index of Shell Builtin Commands
* :: Bourne Shell Builtins.
(line 11)
* [: Bourne Shell Builtins.
(line 263)
(line 268)
* alias: Bash Builtins. (line 11)
* bg: Job Control Builtins.
(line 7)
* bind: Bash Builtins. (line 21)
* break: Bourne Shell Builtins.
(line 31)
(line 36)
* builtin: Bash Builtins. (line 101)
* caller: Bash Builtins. (line 110)
* cd: Bourne Shell Builtins.
(line 39)
(line 44)
* command: Bash Builtins. (line 127)
* compgen: Programmable Completion Builtins.
(line 12)
@@ -10540,7 +10558,7 @@ D.1 Index of Shell Builtin Commands
* compopt: Programmable Completion Builtins.
(line 229)
* continue: Bourne Shell Builtins.
(line 80)
(line 85)
* declare: Bash Builtins. (line 147)
* dirs: Directory Stack Builtins.
(line 7)
@@ -10549,21 +10567,21 @@ D.1 Index of Shell Builtin Commands
* echo: Bash Builtins. (line 244)
* enable: Bash Builtins. (line 293)
* eval: Bourne Shell Builtins.
(line 89)
(line 94)
* exec: Bourne Shell Builtins.
(line 97)
(line 102)
* exit: Bourne Shell Builtins.
(line 114)
(line 119)
* export: Bourne Shell Builtins.
(line 121)
(line 126)
* fc: Bash History Builtins.
(line 10)
* fg: Job Control Builtins.
(line 17)
* getopts: Bourne Shell Builtins.
(line 137)
(line 142)
* hash: Bourne Shell Builtins.
(line 180)
(line 185)
* help: Bash Builtins. (line 322)
* history: Bash History Builtins.
(line 40)
@@ -10581,34 +10599,34 @@ D.1 Index of Shell Builtin Commands
* pushd: Directory Stack Builtins.
(line 54)
* pwd: Bourne Shell Builtins.
(line 200)
(line 205)
* read: Bash Builtins. (line 458)
* readarray: Bash Builtins. (line 548)
* readonly: Bourne Shell Builtins.
(line 210)
(line 215)
* return: Bourne Shell Builtins.
(line 229)
(line 234)
* set: The Set Builtin. (line 11)
* shift: Bourne Shell Builtins.
(line 250)
(line 255)
* shopt: The Shopt Builtin. (line 9)
* source: Bash Builtins. (line 557)
* suspend: Job Control Builtins.
(line 100)
* test: Bourne Shell Builtins.
(line 263)
(line 268)
* times: Bourne Shell Builtins.
(line 338)
(line 343)
* trap: Bourne Shell Builtins.
(line 344)
(line 349)
* type: Bash Builtins. (line 562)
* typeset: Bash Builtins. (line 594)
* ulimit: Bash Builtins. (line 600)
* umask: Bourne Shell Builtins.
(line 393)
* unalias: Bash Builtins. (line 697)
(line 398)
* unalias: Bash Builtins. (line 699)
* unset: Bourne Shell Builtins.
(line 411)
(line 416)
* wait: Job Control Builtins.
(line 75)
@@ -10754,59 +10772,60 @@ D.3 Parameter and Variable Index
(line 148)
* ENV: Bash Variables. (line 242)
* EUID: Bash Variables. (line 246)
* EXECIGNORE: Bash Variables. (line 250)
* expand-tilde: Readline Init File Syntax.
(line 159)
* FCEDIT: Bash Variables. (line 250)
* FIGNORE: Bash Variables. (line 254)
* FUNCNAME: Bash Variables. (line 260)
* FUNCNEST: Bash Variables. (line 278)
* GLOBIGNORE: Bash Variables. (line 283)
* GROUPS: Bash Variables. (line 289)
* histchars: Bash Variables. (line 295)
* HISTCMD: Bash Variables. (line 310)
* HISTCONTROL: Bash Variables. (line 315)
* HISTFILE: Bash Variables. (line 331)
* HISTFILESIZE: Bash Variables. (line 335)
* HISTIGNORE: Bash Variables. (line 346)
* FCEDIT: Bash Variables. (line 260)
* FIGNORE: Bash Variables. (line 264)
* FUNCNAME: Bash Variables. (line 270)
* FUNCNEST: Bash Variables. (line 288)
* GLOBIGNORE: Bash Variables. (line 293)
* GROUPS: Bash Variables. (line 299)
* histchars: Bash Variables. (line 305)
* HISTCMD: Bash Variables. (line 320)
* HISTCONTROL: Bash Variables. (line 325)
* HISTFILE: Bash Variables. (line 341)
* HISTFILESIZE: Bash Variables. (line 345)
* HISTIGNORE: Bash Variables. (line 356)
* history-preserve-point: Readline Init File Syntax.
(line 163)
* history-size: Readline Init File Syntax.
(line 169)
* HISTSIZE: Bash Variables. (line 365)
* HISTTIMEFORMAT: Bash Variables. (line 372)
* HISTSIZE: Bash Variables. (line 375)
* HISTTIMEFORMAT: Bash Variables. (line 382)
* HOME: Bourne Shell Variables.
(line 13)
* horizontal-scroll-mode: Readline Init File Syntax.
(line 176)
* HOSTFILE: Bash Variables. (line 380)
* HOSTNAME: Bash Variables. (line 391)
* HOSTTYPE: Bash Variables. (line 394)
* HOSTFILE: Bash Variables. (line 390)
* HOSTNAME: Bash Variables. (line 401)
* HOSTTYPE: Bash Variables. (line 404)
* IFS: Bourne Shell Variables.
(line 18)
* IGNOREEOF: Bash Variables. (line 397)
* IGNOREEOF: Bash Variables. (line 407)
* input-meta: Readline Init File Syntax.
(line 183)
* INPUTRC: Bash Variables. (line 407)
* INPUTRC: Bash Variables. (line 417)
* isearch-terminators: Readline Init File Syntax.
(line 190)
* keymap: Readline Init File Syntax.
(line 197)
* LANG: Bash Variables. (line 411)
* LC_ALL: Bash Variables. (line 415)
* LC_COLLATE: Bash Variables. (line 419)
* LC_CTYPE: Bash Variables. (line 426)
* LANG: Bash Variables. (line 421)
* LC_ALL: Bash Variables. (line 425)
* LC_COLLATE: Bash Variables. (line 429)
* LC_CTYPE: Bash Variables. (line 436)
* LC_MESSAGES: Locale Translation. (line 11)
* LC_MESSAGES <1>: Bash Variables. (line 431)
* LC_NUMERIC: Bash Variables. (line 435)
* LINENO: Bash Variables. (line 439)
* LINES: Bash Variables. (line 443)
* MACHTYPE: Bash Variables. (line 449)
* LC_MESSAGES <1>: Bash Variables. (line 441)
* LC_NUMERIC: Bash Variables. (line 445)
* LINENO: Bash Variables. (line 449)
* LINES: Bash Variables. (line 453)
* MACHTYPE: Bash Variables. (line 459)
* MAIL: Bourne Shell Variables.
(line 22)
* MAILCHECK: Bash Variables. (line 453)
* MAILCHECK: Bash Variables. (line 463)
* MAILPATH: Bourne Shell Variables.
(line 27)
* MAPFILE: Bash Variables. (line 461)
* MAPFILE: Bash Variables. (line 471)
* mark-modified-lines: Readline Init File Syntax.
(line 226)
* mark-symlinked-directories: Readline Init File Syntax.
@@ -10817,41 +10836,41 @@ D.3 Parameter and Variable Index
(line 243)
* meta-flag: Readline Init File Syntax.
(line 183)
* OLDPWD: Bash Variables. (line 465)
* OLDPWD: Bash Variables. (line 475)
* OPTARG: Bourne Shell Variables.
(line 34)
* OPTERR: Bash Variables. (line 468)
* OPTERR: Bash Variables. (line 478)
* OPTIND: Bourne Shell Variables.
(line 38)
* OSTYPE: Bash Variables. (line 472)
* OSTYPE: Bash Variables. (line 482)
* output-meta: Readline Init File Syntax.
(line 248)
* page-completions: Readline Init File Syntax.
(line 253)
* PATH: Bourne Shell Variables.
(line 42)
* PIPESTATUS: Bash Variables. (line 475)
* POSIXLY_CORRECT: Bash Variables. (line 480)
* PPID: Bash Variables. (line 489)
* PROMPT_COMMAND: Bash Variables. (line 493)
* PROMPT_DIRTRIM: Bash Variables. (line 497)
* PIPESTATUS: Bash Variables. (line 485)
* POSIXLY_CORRECT: Bash Variables. (line 490)
* PPID: Bash Variables. (line 499)
* PROMPT_COMMAND: Bash Variables. (line 503)
* PROMPT_DIRTRIM: Bash Variables. (line 507)
* PS1: Bourne Shell Variables.
(line 48)
* PS2: Bourne Shell Variables.
(line 53)
* PS3: Bash Variables. (line 503)
* PS4: Bash Variables. (line 508)
* PWD: Bash Variables. (line 514)
* RANDOM: Bash Variables. (line 517)
* READLINE_LINE: Bash Variables. (line 522)
* READLINE_POINT: Bash Variables. (line 526)
* REPLY: Bash Variables. (line 530)
* PS3: Bash Variables. (line 513)
* PS4: Bash Variables. (line 518)
* PWD: Bash Variables. (line 524)
* RANDOM: Bash Variables. (line 527)
* READLINE_LINE: Bash Variables. (line 532)
* READLINE_POINT: Bash Variables. (line 536)
* REPLY: Bash Variables. (line 540)
* revert-all-at-newline: Readline Init File Syntax.
(line 263)
* SECONDS: Bash Variables. (line 533)
* SHELL: Bash Variables. (line 539)
* SHELLOPTS: Bash Variables. (line 544)
* SHLVL: Bash Variables. (line 553)
* SECONDS: Bash Variables. (line 543)
* SHELL: Bash Variables. (line 549)
* SHELLOPTS: Bash Variables. (line 554)
* SHLVL: Bash Variables. (line 563)
* show-all-if-ambiguous: Readline Init File Syntax.
(line 269)
* show-all-if-unmodified: Readline Init File Syntax.
@@ -10862,10 +10881,10 @@ D.3 Parameter and Variable Index
(line 290)
* TEXTDOMAIN: Locale Translation. (line 11)
* TEXTDOMAINDIR: Locale Translation. (line 11)
* TIMEFORMAT: Bash Variables. (line 558)
* TMOUT: Bash Variables. (line 596)
* TMPDIR: Bash Variables. (line 608)
* UID: Bash Variables. (line 612)
* TIMEFORMAT: Bash Variables. (line 568)
* TMOUT: Bash Variables. (line 606)
* TMPDIR: Bash Variables. (line 618)
* UID: Bash Variables. (line 622)
* vi-cmd-mode-string: Readline Init File Syntax.
(line 303)
* vi-ins-mode-string: Readline Init File Syntax.
@@ -11284,83 +11303,83 @@ Node: Signals113494
Node: Shell Scripts115461
Node: Shell Builtin Commands117976
Node: Bourne Shell Builtins120000
Node: Bash Builtins140242
Node: Modifying Shell Behavior168735
Node: The Set Builtin169080
Node: The Shopt Builtin179493
Node: Special Builtins194122
Node: Shell Variables195101
Node: Bourne Shell Variables195538
Node: Bash Variables197569
Node: Bash Features224441
Node: Invoking Bash225340
Node: Bash Startup Files231289
Node: Interactive Shells236392
Node: What is an Interactive Shell?236802
Node: Is this Shell Interactive?237451
Node: Interactive Shell Behavior238266
Node: Bash Conditional Expressions241565
Node: Shell Arithmetic245566
Node: Aliases248343
Node: Arrays250891
Node: The Directory Stack255975
Node: Directory Stack Builtins256692
Node: Controlling the Prompt259651
Node: The Restricted Shell262397
Node: Bash POSIX Mode264222
Node: Job Control273816
Node: Job Control Basics274276
Node: Job Control Builtins278995
Node: Job Control Variables283466
Node: Command Line Editing284622
Node: Introduction and Notation286293
Node: Readline Interaction287916
Node: Readline Bare Essentials289107
Node: Readline Movement Commands290890
Node: Readline Killing Commands291850
Node: Readline Arguments293768
Node: Searching294812
Node: Readline Init File296998
Node: Readline Init File Syntax298145
Node: Conditional Init Constructs317870
Node: Sample Init File320395
Node: Bindable Readline Commands323512
Node: Commands For Moving324716
Node: Commands For History325859
Node: Commands For Text330148
Node: Commands For Killing333537
Node: Numeric Arguments336018
Node: Commands For Completion337157
Node: Keyboard Macros341348
Node: Miscellaneous Commands342035
Node: Readline vi Mode347839
Node: Programmable Completion348746
Node: Programmable Completion Builtins356207
Node: A Programmable Completion Example366093
Node: Using History Interactively371345
Node: Bash History Facilities372029
Node: Bash History Builtins375028
Node: History Interaction378959
Node: Event Designators381665
Node: Word Designators382884
Node: Modifiers384521
Node: Installing Bash385923
Node: Basic Installation387060
Node: Compilers and Options389751
Node: Compiling For Multiple Architectures390492
Node: Installation Names392155
Node: Specifying the System Type392973
Node: Sharing Defaults393689
Node: Operation Controls394362
Node: Optional Features395320
Node: Reporting Bugs405577
Node: Major Differences From The Bourne Shell406771
Node: GNU Free Documentation License423623
Node: Indexes448800
Node: Builtin Index449254
Node: Reserved Word Index456081
Node: Variable Index458529
Node: Function Index473696
Node: Concept Index486916
Node: Bash Builtins140602
Node: Modifying Shell Behavior169196
Node: The Set Builtin169541
Node: The Shopt Builtin179954
Node: Special Builtins194583
Node: Shell Variables195562
Node: Bourne Shell Variables195999
Node: Bash Variables198030
Node: Bash Features225430
Node: Invoking Bash226329
Node: Bash Startup Files232278
Node: Interactive Shells237381
Node: What is an Interactive Shell?237791
Node: Is this Shell Interactive?238440
Node: Interactive Shell Behavior239255
Node: Bash Conditional Expressions242554
Node: Shell Arithmetic246555
Node: Aliases249332
Node: Arrays251880
Node: The Directory Stack256964
Node: Directory Stack Builtins257681
Node: Controlling the Prompt260640
Node: The Restricted Shell263386
Node: Bash POSIX Mode265211
Node: Job Control274805
Node: Job Control Basics275265
Node: Job Control Builtins279984
Node: Job Control Variables284455
Node: Command Line Editing285611
Node: Introduction and Notation287282
Node: Readline Interaction288905
Node: Readline Bare Essentials290096
Node: Readline Movement Commands291879
Node: Readline Killing Commands292839
Node: Readline Arguments294757
Node: Searching295801
Node: Readline Init File297987
Node: Readline Init File Syntax299134
Node: Conditional Init Constructs318859
Node: Sample Init File321384
Node: Bindable Readline Commands324501
Node: Commands For Moving325705
Node: Commands For History326848
Node: Commands For Text331137
Node: Commands For Killing334526
Node: Numeric Arguments337007
Node: Commands For Completion338146
Node: Keyboard Macros342337
Node: Miscellaneous Commands343024
Node: Readline vi Mode348828
Node: Programmable Completion349735
Node: Programmable Completion Builtins357196
Node: A Programmable Completion Example367082
Node: Using History Interactively372334
Node: Bash History Facilities373018
Node: Bash History Builtins376017
Node: History Interaction380014
Node: Event Designators382720
Node: Word Designators383939
Node: Modifiers385576
Node: Installing Bash386978
Node: Basic Installation388115
Node: Compilers and Options390806
Node: Compiling For Multiple Architectures391547
Node: Installation Names393210
Node: Specifying the System Type394028
Node: Sharing Defaults394744
Node: Operation Controls395417
Node: Optional Features396375
Node: Reporting Bugs406632
Node: Major Differences From The Bourne Shell407826
Node: GNU Free Documentation License424678
Node: Indexes449855
Node: Builtin Index450309
Node: Reserved Word Index457136
Node: Variable Index459584
Node: Function Index474824
Node: Concept Index488044

End Tag Table
+797 -768
View File
File diff suppressed because it is too large Load Diff
+374 -367
View File
File diff suppressed because it is too large Load Diff
+2154 -2136
View File
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -1,9 +1,9 @@
%!PS-Adobe-3.0
%%Creator: groff version 1.22.2
%%CreationDate: Mon Apr 6 13:59:04 2015
%%Creator: groff version 1.22.3
%%CreationDate: Fri Jul 10 10:23:01 2015
%%DocumentNeededResources: font Times-Roman
%%+ font Times-Bold
%%DocumentSuppliedResources: procset grops 1.22 2
%%DocumentSuppliedResources: procset grops 1.22 3
%%Pages: 1
%%PageOrder: Ascend
%%DocumentMedia: Default 612 792 0 () ()
@@ -13,7 +13,7 @@
%%PageMedia: Default
%%EndDefaults
%%BeginProlog
%%BeginResource: procset grops 1.22 2
%%BeginResource: procset grops 1.22 3
%!PS-Adobe-3.0 Resource-ProcSet
/setpacking where{
pop