diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-03-01 13:56:46 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-03-01 13:56:46 +0000 |
commit | 3d4285c7580f3fda1c66fa9ab3c0463d9edb6449 (patch) | |
tree | ba248bef99aa2564078d3dc1d290946ae5ee57e9 /doc | |
parent | fe1f70d5f729e331facf481ec45cc1c64e095d85 (diff) | |
download | s6-portable-utils-3d4285c7580f3fda1c66fa9ab3c0463d9edb6449.tar.xz |
- New command: dumpenv
- Version: 2.0.3.0 rc
Diffstat (limited to 'doc')
-rw-r--r-- | doc/index.html | 3 | ||||
-rw-r--r-- | doc/s6-dumpenv.html | 55 | ||||
-rw-r--r-- | doc/upgrade.html | 6 |
3 files changed, 63 insertions, 1 deletions
diff --git a/doc/index.html b/doc/index.html index 95b4372..6f18572 100644 --- a/doc/index.html +++ b/doc/index.html @@ -76,7 +76,7 @@ library. </li> <ul> <li> The current released version of s6-portable-utils is -<a href="s6-portable-utils-2.0.2.0.tar.gz">2.0.2.0</a>. </li> +<a href="s6-portable-utils-2.0.3.0.tar.gz">2.0.3.0</a>. </li> <li> Alternatively, you can checkout a copy of the s6-portable-utils git repository: <pre> git clone git://git.skarnet.org/s6-portable-utils </pre> </li> </ul> @@ -113,6 +113,7 @@ the previous versions of s6-portable-utils and the current one. </li> <li> The <a href="s6-clock.html"><tt>s6-clock</tt></a> program </li> <li> The <a href="s6-cut.html"><tt>s6-cut</tt></a> program </li> <li> The <a href="s6-dirname.html"><tt>s6-dirname</tt></a> program </li> + <li> The <a href="s6-dumpenv.html"><tt>s6-dumpenv</tt></a> program </li> <li> The <a href="s6-echo.html"><tt>s6-echo</tt></a> program </li> <li> The <a href="s6-env.html"><tt>s6-env</tt></a> program </li> <li> The <a href="s6-expr.html"><tt>s6-expr</tt></a> program </li> diff --git a/doc/s6-dumpenv.html b/doc/s6-dumpenv.html new file mode 100644 index 0000000..7de65ae --- /dev/null +++ b/doc/s6-dumpenv.html @@ -0,0 +1,55 @@ +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Language" content="en" /> + <title>s6-portable-utils: the s6-dumpenv program</title> + <meta name="Description" content="s6-portable-utils: the s6-dumpenv program" /> + <meta name="Keywords" content="s6-portable-utils command s6-dumpenv environment variables" /> + <!-- <link rel="stylesheet" type="text/css" href="http://skarnet.org/default.css" /> --> + </head> +<body> + +<p> +<a href="index.html">s6-portable-utils</a><br /> +<a href="http://skarnet.org/software/">Software</a><br /> +<a href="http://skarnet.org/">skarnet.org</a> +</p> + +<h1> The <tt>s6-dumpenv</tt> program </h1> + +<p> + s6-dumpenv stores its environment variables into a directory. +</p> + +<h2> Interface </h2> + +<pre> + s6-dumpenv [ -m <em>mode</em> ] <em>dir</em> +</pre> + +<ul> + <li> s6-dumpenv creates the directory <em>dir</em> if it does not exist +yet. </li> + <li> For every environment variable <em>x</em> with value <em>y</em> +that it has, it creates a file <em>dir</em>/<em>x</em> containing +<em>y</em>. </li> + <li> It then exits 0. </li> +</ul> + +<h2> Options </h2> + +<ul> + <li> <tt>-m</tt> <em>mode</em> : create <em>dir</em> with +mode <em>mode</em> if it doesn't exist yet. Default is 0755. </li> +</ul> + +<h2> Notes </h2> + +<ul> + <li> A program <em>prog</em> can be run with the environment in dir +by using <tt><a href="http://skarnet.org/software/s6/s6-envdir.html">s6-envdir</a> +-fn -- <em>dir</em> <em>prog</em></tt>. </li> +</ul> + +</body> +</html> diff --git a/doc/upgrade.html b/doc/upgrade.html index 26bb1a8..1b5cdbb 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -17,6 +17,12 @@ <h1> What has changed in s6-portable-utils </h1> +<h2> in 2.0.3.0 </h2> + +<ul> + <li> New command: <a href="s6-dumpenv.html">s6-dumpenv</a>. </li> +</ul> + <h2> in 2.0.2.0 </h2> <ul> |