This commit is contained in:
sylvestre
2023-07-22 02:40:16 +00:00
parent 0a51b93385
commit 46e4bd8e0d
5 changed files with 14 additions and 4 deletions
+1
View File
@@ -442,6 +442,7 @@ then add <code>-Z-Zinstrument-coverage</code> flag to <code>RUSTFLAGS</code> env
<li><a href="https://github.com/vlang/coreutils">V lang</a></li>
<li><a href="https://github.com/SerenityOS/serenity/tree/master/Userland/Utilities">SerenityOS</a></li>
<li><a href="https://github.com/dspinellis/unix-history-repo">Initial Unix</a></li>
<li><a href="https://metacpan.org/pod/PerlPowerTools">Perl Power Tools</a></li>
</ul>
<p>However, when reimplementing the tools/options in Rust, don't read their source codes
when they are using reciprocal licenses (ex: GNU GPL, GNU LGPL, etc).</p>
+6 -1
View File
@@ -808,6 +808,7 @@ then add <code>-Z-Zinstrument-coverage</code> flag to <code>RUSTFLAGS</code> env
<li><a href="https://github.com/vlang/coreutils">V lang</a></li>
<li><a href="https://github.com/SerenityOS/serenity/tree/master/Userland/Utilities">SerenityOS</a></li>
<li><a href="https://github.com/dspinellis/unix-history-repo">Initial Unix</a></li>
<li><a href="https://metacpan.org/pod/PerlPowerTools">Perl Power Tools</a></li>
</ul>
<p>However, when reimplementing the tools/options in Rust, don't read their source codes
when they are using reciprocal licenses (ex: GNU GPL, GNU LGPL, etc).</p>
@@ -5000,7 +5001,11 @@ for details about the options it supports.</p>
<dd>
<p>append SUFFIX to TEMPLATE; SUFFIX must not contain a path separator. This option is implied if TEMPLATE does not end with X.</p>
</dd>
<dt><code>--tmpdir=&lt;DIR&gt;</code>, <code>-p &lt;DIR&gt;</code></dt>
<dt><code>-p &lt;DIR&gt;</code></dt>
<dd>
<p>short form of --tmpdir</p>
</dd>
<dt><code>--tmpdir=&lt;DIR&gt;</code></dt>
<dd>
<p>interpret TEMPLATE relative to DIR; if DIR is not specified, use $TMPDIR ($TMP on windows) if set, else /tmp. With this option, TEMPLATE must not be an absolute name; unlike with -t, TEMPLATE may contain slashes, but mktemp creates only the final component</p>
</dd>
+1 -1
View File
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+5 -1
View File
@@ -221,7 +221,11 @@
<dd>
<p>append SUFFIX to TEMPLATE; SUFFIX must not contain a path separator. This option is implied if TEMPLATE does not end with X.</p>
</dd>
<dt><code>--tmpdir=&lt;DIR&gt;</code>, <code>-p &lt;DIR&gt;</code></dt>
<dt><code>-p &lt;DIR&gt;</code></dt>
<dd>
<p>short form of --tmpdir</p>
</dd>
<dt><code>--tmpdir=&lt;DIR&gt;</code></dt>
<dd>
<p>interpret TEMPLATE relative to DIR; if DIR is not specified, use $TMPDIR ($TMP on windows) if set, else /tmp. With this option, TEMPLATE must not be an absolute name; unlike with -t, TEMPLATE may contain slashes, but mktemp creates only the final component</p>
</dd>