blob: 86fb22e56592dc4a523ce8eae913e089e7c2dfcd (
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
|
<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>tipidee: the tipidee-config-preprocess internal program</title>
<meta name="Description" content="tipidee: the tipidee-config-preprocess internal program" />
<meta name="Keywords" content="tipidee tipidee web server configuration text compilation preprocessing internal libexec preprocessor include" />
<!-- <link rel="stylesheet" type="text/css" href="//skarnet.org/default.css" /> -->
</head>
<body>
<p>
<a href="index.html">tipidee</a><br />
<a href="//skarnet.org/software/">Software</a><br />
<a href="//skarnet.org/">skarnet.org</a>
</p>
<h1> The <tt>tipidee-config-preprocess</tt> internal program </h1>
<p>
<tt>tipidee-config-preprocess</tt> is a tool that reads a line-based
configuration file like <a href="tipidee.conf.html">tipidee.conf</a>
containing <tt>!include</tt>, <tt>!includedir</tt> and <tt>!included:</tt>
directives, and preprocesses it, replacing the lines where these directive
appear with the full contents of included files where appropriate.
</p>
<p>
<tt>tipidee-config-preprocess</tt> is not supposed to be invoked
directly by the user. It is automatically invoked by the
<a href="tipidee-config.html">tipidee-config</a> program.
</p>
<h2> Interface </h2>
<pre>
tipidee-config-preprocess <em>file</em>
</pre>
<ul>
<li> tipidee-config-preprocess reads <em>file</em> and
writes its contents to stdout. </li>
<li> If <em>file</em> contains a line starting with <tt>!included:</tt>,
this line is not printed. </li>
<li> If <em>file</em> contains a line starting with <tt>!include</tt> or
<tt>!includedir</tt>, this line is replaced with the contents of
appropriately included files. </li>
<li> tipidee-config-preprocess then exits 0. </li>
</ul>
<p>
TODO: write this page.
</p>
<h2> Exit codes </h2>
<h2> Options </h2>
<h2> Detailed operation </h2>
<h2> Notes </h2>
</body>
</html>
|