blob: 29ad1b60dd9f040b89f2ccdb828e9e685a1ba4db (
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
|
<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 withstdinas command</title>
<meta name="Description" content="execline: the withstdinas command" />
<meta name="Keywords" content="execline command withstdinas" />
<!-- <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>withstdinas</tt> program </h1>
<p>
<tt>withstdinas</tt> reads the entirety of its standard input in an
environment variable, and runs another program with that additional
environment variable.
</p>
<h2> Interface </h2>
<p>
In an <a href="execlineb.html">execlineb</a> script:
</p>
<pre>
withstdinas [ -i | -D <em>default</em> ] [ -n ] <em>variable</em> <em>prog...</em>
</pre>
<ul>
<li> <tt>withstdinas</tt> reads its stdin until EOF. </li>
<li> It then execs into <em>prog...</em>, with
<em>variable</em> added to the environment; the value of
<em>variable</em> is what was read on stdin. </li>
</ul>
<h2> Options </h2>
<ul>
<li> <tt>-i</tt> : insist. If the data on stdin is invalid as
an environment variable, for instance if it contains a null
character, <tt>withstdinas</tt> exits 1. </li>
<li> <tt>-D <em>default</em></tt> : default value.
If the data on stdin is invalid, <em>default</em> is used as
<em>variable</em>'s value. If neither the <tt>-i</tt> nor the <tt>-D</tt>
option have been given, <tt>withstdinas</tt> execs into
<em>prog...</em> with <em>variable</em> containing whatever value could be read on stdin,
cut before the first null character. </li>
<li> <tt>-n</tt> : chomp an ending newline off stdin. </li>
</ul>
<h2> Notes </h2>
<ul>
<li> You can start <em>prog...</em> with "import -u <em>variable</em>"
to perform variable substitution. </li>
</ul>
</body>
</html>
|