diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-04-21 12:39:30 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-04-21 12:39:30 +0000 |
commit | 74ee963d3b9c8a007d3dd357fae21d710fd61d34 (patch) | |
tree | 2d45cfff8eed4dfcb310730ef4fc4be5beb119ef /doc/execlineb.html | |
parent | aaaad5c4d2196adb4907f09d161bf8f9146fa0ae (diff) | |
download | execline-74ee963d3b9c8a007d3dd357fae21d710fd61d34.tar.xz |
Add dummy -e option to execlineb
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'doc/execlineb.html')
-rw-r--r-- | doc/execlineb.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/execlineb.html b/doc/execlineb.html index f9d3e4d..ff9fe5c 100644 --- a/doc/execlineb.html +++ b/doc/execlineb.html @@ -27,7 +27,7 @@ then executes into that command line. <h2> Interface </h2> <pre> - execlineb [ -q | -w | -W ] [ -p | -P | -S <em>nmin</em> | -s <em>nmin</em> ] -c <em>script</em> [ <em>args...</em> ] + execlineb [ -q | -w | -W ] [ -p | -P | -S <em>nmin</em> | -s <em>nmin</em> ] [ -e ] -c <em>script</em> [ <em>args...</em> ] </pre> <p> @@ -35,7 +35,7 @@ or </p> <pre> - execlineb [ -q | -w | -W ] [ -p | -P | -S <em>nmin</em> | -s <em>nmin</em> ] <em>scriptfile</em> [ <em>args...</em> ] + execlineb [ -q | -w | -W ] [ -p | -P | -S <em>nmin</em> | -s <em>nmin</em> ] [ -e ] <em>scriptfile</em> [ <em>args...</em> ] </pre> <p> @@ -100,6 +100,12 @@ not stay in memory like a traditional <em>interpreter</em> would. </li> <h2> Options </h2> <ul> + <li> <tt>-e</tt> : this option is ignored. This is meant to support +the use of execlineb in conjuction with programs that invoke +<tt>$SHELL -ec <em>script</em></tt>; the effect of <tt>/bin/sh -e</tt> +can be natively replicated in execline scripts if you use the +<a href="if.html">if</a> command instead of the +<a href="foreground.html">foreground</a> command. </li> <li> <tt>-c <em>script</em></tt> : execute <em>script</em>, do not look for a file. </li> </ul> |