diff options
author | Chet Ramey <chet.ramey@case.edu> | 2018-12-20 11:41:58 -0500 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2018-12-20 11:41:58 -0500 |
commit | f250956cb2a8dca13fc0242affc225f9d6983604 (patch) | |
tree | 2df8e15963af786dc8efed1c91c4d823a3bf05bb /doc/bashref.texi | |
parent | 2ae59c1134a75d5778997b7202b15b0586283042 (diff) | |
download | bash-5.0-testing.tar.gz |
bash-5.0-rc1 releasebash-5.0-rc1bash-5.0-testing
Diffstat (limited to 'doc/bashref.texi')
-rw-r--r-- | doc/bashref.texi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/bashref.texi b/doc/bashref.texi index bf95ead5..ed633521 100644 --- a/doc/bashref.texi +++ b/doc/bashref.texi @@ -696,7 +696,8 @@ to delimit commands, equivalent to a semicolon. If a command is terminated by the control operator @samp{&}, the shell executes the command asynchronously in a subshell. -This is known as executing the command in the @var{background}. +This is known as executing the command in the @var{background}, +and these are referred to as @var{asynchronous} commands. The shell does not wait for the command to finish, and the return status is 0 (true). When job control is not active (@pxref{Job Control}), @@ -4207,8 +4208,8 @@ the environment. @end table Using @samp{+} instead of @samp{-} turns off the attribute instead, -with the exceptions that @samp{+a} -may not be used to destroy an array variable and @samp{+r} will not +with the exceptions that @samp{+a} and @samp{+A} +may not be used to destroy array variables and @samp{+r} will not remove the readonly attribute. When used in a function, @code{declare} makes each @var{name} local, as with the @code{local} command, unless the @option{-g} option is used. |