Yet more changes. Still not ready to be published.

This commit is contained in:
franl 2002-10-25 19:55:41 +00:00
parent 2ab82fc9ad
commit 120e67f439
1 changed files with 58 additions and 0 deletions

View File

@ -537,6 +537,21 @@ Hello world</programlisting>
</para>
</listitem>
<listitem>
<para>
Job control commands are not available in a Bash script.
Specifically, after launching a background job by appending
"<computeroutput>&amp;</computeroutput>" to a command, you cannot use
the <computeroutput><command>bg</command></computeroutput>,
<computeroutput><command>fg</command></computeroutput>, and
<computeroutput><command>jobs</command></computeroutput> commands to
examine and manipulate the background job. You also cannot use the
"<computeroutput><command>kill %X</command></computeroutput>" form of
the <computeroutput><command>kill</command></computeroutput> command
to kill background jobs.
</para>
</listitem>
<listitem>
<para>
<emphasis>What else?</emphasis>
@ -551,6 +566,17 @@ Hello world</programlisting>
</listitem>
</orderedlist>
</sect2>
<sect2 id="sect-quotes">
<title>Using Quotes</title>
<para>*** UNDER CONSTRUCTION ***</para>
<!--
*************************************************************
* UNDER CONSTRUCTION *
*************************************************************
-->
</sect2>
</sect1>
<sect1 id="sect-io-redirection">
@ -660,6 +686,22 @@ echo Hello world > xyz</programlisting>
<sect1 id="sect-variables">
<title>Variables</title>
<sect2 id="sect-kinds-of-variables">
<title>Kinds of Variables</title>
</sect2>
<sect2 id="sect-using">
<title>Using Variables</title>
</sect2>
<sect2 id="sect-builtin-variables">
<title>Built-in Variables</title>
</sect2>
<sect2 id="sect-fancy-expansion">
<title>Fancy Variable Expansion</title>
</sect2>
<para>*** UNDER CONSTRUCTION ***</para>
<!--
Cover command expansion operator (`...`) here.
@ -672,6 +714,22 @@ echo Hello world > xyz</programlisting>
<sect1 id="sect-conditionals">
<title>Conditionals</title>
<sect2 id="sect-test-command">
<title>The <command>test</command> Command</title>
</sect2>
<sect2 id="sect-if-statements">
<title>If Statements</title>
</sect2>
<sect2 id="sect-while-loops">
<title>While and Until Loops</title>
</sect2>
<sect2 id="sect-for-loops">
<title>For Loops</title>
</sect2>
<para>*** UNDER CONSTRUCTION ***</para>
<!--
*************************************************************