blob: 9cbfdccce4072faf1c22d279e5b2ac6beac29a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="en" />
<title>execline: the ifte command</title>
<meta name="Description" content="execline: the ifte command" />
<meta name="Keywords" content="execline command ifte" />
<!-- <link rel="stylesheet" type="text/css" href="http://skarnet.org/default.css" /> -->
</head>
<body>
<p>
<a href="index.html">execline</a><br />
<a href="http://skarnet.org/software/">Software</a><br />
<a href="http://skarnet.org/">skarnet.org</a>
</p>
<h1> The <tt>ifte</tt> program </h1>
<p>
<tt>ifte</tt> performs a conditional alternative.
</p>
<h2> Interface </h2>
<p>
In an <a href="execlineb.html">execlineb</a> script:
</p>
<pre>
ifte [ -X ] [ -n ] { <em>progthen...</em> } { <em>progelse...</em> } <em>progif...</em>
</pre>
<ul>
<li> <tt>ifte</tt> reads <em>progthen...</em> and <em>progelse...</em> in two
consecutive <a href="el_semicolon.html">blocks</a>. </li>
<li> <tt>ifte</tt> runs <em>progif...</em> as a child process
and waits for it to complete. </li>
<li> If <em>progif...</em> crashes (i.e. is killed by a signal), <tt>ifte</tt>
prints an error message, then exits 128 plus the number of the signal that
killed <em>progif</em>. </li>
<li> If <em>progif...</em> exits zero, <tt>ifte</tt> execs into
<em>progthen...</em>, else it execs into <em>progelse...</em>. </li>
</ul>
<h2> Options </h2>
<ul>
<li> <tt>-X</tt> : do not exit if <em>progif</em> crashes; instead,
proceed as if the test had returned false. </li>
<li> <tt>-n</tt> : negate the test. <em>progthen...</em> will be run
iff <em>progif...</em> exits nonzero. </li>
</ul>
<h2> Notes </h2>
<p>
<tt>ifte</tt> is a simpler version of <a href="ifthenelse.html">ifthenelse</a>.
It performs <em>only</em> conditional execution, not instruction sequence.
</p>
<p>
"<tt>ifthenelse { progif } { progthen } { progelse } remainder</tt>" is the
equivalent of "<tt>foreground { ifte { progthen } { progelse } progif } remainder</tt>".
</p>
</body>
</html>
|