summaryrefslogtreecommitdiff
path: root/doc/multisubstitute.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/multisubstitute.html')
-rw-r--r--doc/multisubstitute.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/multisubstitute.html b/doc/multisubstitute.html
index ecfff9b..be3d455 100644
--- a/doc/multisubstitute.html
+++ b/doc/multisubstitute.html
@@ -32,10 +32,10 @@ its <em>argv</em>, then executes another program.
<pre>
multisubstitute
{
- [ <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="define.html">=</a> [ -n ] [ -s ] [ -C | -c ] [ -d <em>delim</em> ] <em>variable</em> <em>value</em> ]
+ [ <a href="importas.html">$</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="elglob.html">*</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> } ]
<em>...</em>
@@ -55,7 +55,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>import</tt> or <tt>$</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>
@@ -72,8 +72,8 @@ to learn about the syntax of each substitution command. </li>
<pre>
#!/command/execlineb
export A wrong
- define B ${A}
- import A
+ = B ${A}
+ $ A A
echo ${B}
</pre>
@@ -87,8 +87,8 @@ to learn about the syntax of each substitution command. </li>
export A wrong
multisubstitute
{
- define B ${A}
- import A
+ = B ${A}
+ $ A A
}
echo ${B}
</pre>