summaryrefslogtreecommitdiff
path: root/doc/ifthenelse.html
blob: f78d33b93d917104a7bf0ef986dcf2f7cfd580bf (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
<html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <meta http-equiv="Content-Language" content="en" />
  <title>execline: the ifthenelse command</title>
  <meta name="Description" content="execline: the ifthenelse command" />
  <meta name="Keywords" content="execline command ifthenelse" />
  <!-- <link rel="stylesheet" type="text/css" href="//skarnet.org/default.css" /> -->
 </head>
<body>

<p>
<a href="index.html">execline</a><br />
<a href="//skarnet.org/software/">Software</a><br />
<a href="//skarnet.org/">skarnet.org</a>
</p>

<h1> The <tt>ifthenelse</tt> program </h1>

<p>
<tt>ifthenelse</tt> performs a conditional alternative.
</p>

<h2> Interface </h2>

<p>
 In an <a href="execlineb.html">execlineb</a> script:
</p>

<pre>
     ifthenelse [ -X ] [ -s ] { <em>progif...</em> } { <em>progthen...</em> } { <em>progelse...</em> } <em>prog...</em>
</pre>

<ul>
 <li> <tt>ifthenelse</tt> reads
<em>progif...</em>, <em>progthen...</em> and <em>progelse...</em> in 3
consecutive <a href="el_semicolon.html">blocks</a>. </li>
 <li> <tt>ifthenelse</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>ifthenelse</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>ifthenelse</tt> runs
<em>progthen...</em> as a child process, else it runs <em>progelse...</em>. </li>
 <li> <tt>ifthenelse</tt> waits for its child to complete and puts the exit
status in the <tt>?</tt> environment variable. It then
execs into <em>prog...</em>. </li>
</ul>

<h2> Options </h2>

<ul>
 <li> <tt>-X</tt>&nbsp;: if <em>progif</em> crashes, do not exit; proceed
as if it had returned false. </li>
 <li> <tt>-s</tt>&nbsp;: magic scoping hack. This option does powerful but
ugly things, and is left undocumented on purpose. </li>
</ul>

</body>
</html>