summaryrefslogtreecommitdiff
path: root/doc/multisubstitute.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/multisubstitute.html')
-rw-r--r--doc/multisubstitute.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/multisubstitute.html b/doc/multisubstitute.html
index ecfff9b..99994df 100644
--- a/doc/multisubstitute.html
+++ b/doc/multisubstitute.html
@@ -34,7 +34,6 @@ its <em>argv</em>, then executes another program.
{
[ <a href="define.html">define</a> [ -n ] [ -s ] [ -C | -c ] [ -d <em>delim</em> ] <em>variable</em> <em>value</em> ]
[ <a href="importas.html">importas</a> [ -i | -D <em>default</em> ] [ -n ] [ -s ] [ -C | -c ] [ -d <em>delim</em> ] <em>variable</em> <em>envvar</em> ]
- [ <a href="import.html">import</a> [ -i | -D <em>default</em> ] [ -n ] [ -s ] [ -C | -c ] [ -d <em>delim</em> ] <em>envvar</em> ]
[ <a href="elglob.html">elglob</a> [ -v ] [ -w ] [ -s ] [ -m ] [ -e ] [ -0 ] <em>variable</em> <em>pattern</em> ]
[ <a href="elgetpositionals.html">elgetpositionals</a> [ -P <em>sharp</em> ] ]
[ <a href="multidefine.html">multidefine</a> <em>value</em> { <em>variable...</em> } ]
@@ -55,7 +54,7 @@ to learn about the syntax of each substitution command. </li>
<h2> Options </h2>
<ul>
- <li> If an <tt>import</tt> or <tt>importas</tt> directive was given with the
+ <li> If an <tt>importas</tt> directive was given with the
<tt>-i</tt> option, and the looked up variable is undefined,
<tt>multisubstitute</tt> will exit 100. </li>
</ul>
@@ -73,7 +72,7 @@ to learn about the syntax of each substitution command. </li>
#!/command/execlineb
export A wrong
define B ${A}
- import A
+ importas A A
echo ${B}
</pre>
@@ -88,7 +87,7 @@ to learn about the syntax of each substitution command. </li>
multisubstitute
{
define B ${A}
- import A
+ importas A A
}
echo ${B}
</pre>