summaryrefslogtreecommitdiff
path: root/doc/multidefine.html
blob: f3909a23e83201e7397d445d90b04bd26932ec79 (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
69
70
<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 multidefine command</title>
  <meta name="Description" content="execline: the multidefine command" />
  <meta name="Keywords" content="execline command multidefine" />
  <!-- <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>multidefine</tt> program </h1>

<p>
<tt>multidefine</tt> splits a value and defines several variables at once,
then executes another program.
</p>

<h2> Interface </h2>

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

<pre>
     multidefine [ -0 ] [ -r ] [ -C | -c ] [ -n ] [ -d <em>delim</em> ] <em>value</em> { <em>variables...</em> } <em>prog...</em>
</pre>

<ul>
 <li> <tt>multidefine</tt> reads a <a href="el_semicolon.html">block</a>
containing a list of variables. That block must not be empty. </li>
 <li> <tt>multidefine</tt> <a href="el_transform.html">splits</a>
<em>value</em>, and performs other operations depending on the given
options. </li>
 <li> <tt>multidefine</tt> performs
<a href="el_substitute.html">parallel substitution</a> on
<em>prog...</em>, using all of the <em>variables</em> in the block as keys.
The first word in the split <em>value</em> is assigned to the first
<em>variable</em>, the second word is assigned to the second <em>variable</em>,
and so on. Every <em>variable</em> is substituted with exactly one word. </li>
 <li> If a <em>variable</em> is the empty word, then the word in the split
<em>value</em> corresponding to its position is not substituted. So you can
use empty words to pad the list of variables and only perform substition
on the relevant fields. </li>
 <li> <tt>multidefine</tt> then execs into the modified <em>prog...</em>. </li>
</ul>

<h2> Options </h2>

<ul>
 <li> <tt>-0</tt>&nbsp;: if there are more <em>variables</em> in the block than
there are words in the split <em>value</em>, the excess variables
will be replaced with zero word. Without this option, the excess variables are
replaced with the empty word. </li>
 <li> <tt>-r</tt>&nbsp;: behave similarly to the "read" shell command.
If there are more words in the split <em>value</em> than there are
<em>variables</em> in the block, the last variable will be replaced with all
the remaining words (and will be split). Without this option, the last variable
is replaced with a single word, and the excess words are lost. </li>
</ul>

</body>
</html>