Skip to content

Commit a7865cc

Browse files
committed
deploy: f0e8d44
1 parent 4578b57 commit a7865cc

File tree

5 files changed

+34
-2
lines changed

5 files changed

+34
-2
lines changed

user/extensions.html

+8
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,14 @@ <h1 id="extensions-over-gnu"><a class="header" href="#extensions-over-gnu">Exten
174174
features that are not supported by GNU coreutils. We take care not to introduce
175175
features that are incompatible with the GNU coreutils. Below is a list of uutils
176176
extensions.</p>
177+
<h2 id="general"><a class="header" href="#general">General</a></h2>
178+
<p>GNU coreutils provides two ways to define short options taking an argument:</p>
179+
<pre><code>$ ls -w 80
180+
$ ls -w80
181+
</code></pre>
182+
<p>We support a third way:</p>
183+
<pre><code>$ ls -w=80
184+
</code></pre>
177185
<h2 id="env"><a class="header" href="#env"><code>env</code></a></h2>
178186
<p><code>env</code> has an additional <code>-f</code>/<code>--file</code> flag that can parse <code>.env</code> files and set
179187
variables accordingly. This feature is adopted from <code>dotenv</code> style packages.</p>

user/print.html

+16
Original file line numberDiff line numberDiff line change
@@ -831,6 +831,14 @@ <h2 id="progress-over-time"><a class="header" href="#progress-over-time">Progres
831831
features that are not supported by GNU coreutils. We take care not to introduce
832832
features that are incompatible with the GNU coreutils. Below is a list of uutils
833833
extensions.</p>
834+
<h2 id="general"><a class="header" href="#general">General</a></h2>
835+
<p>GNU coreutils provides two ways to define short options taking an argument:</p>
836+
<pre><code>$ ls -w 80
837+
$ ls -w80
838+
</code></pre>
839+
<p>We support a third way:</p>
840+
<pre><code>$ ls -w=80
841+
</code></pre>
834842
<h2 id="env"><a class="header" href="#env"><code>env</code></a></h2>
835843
<p><code>env</code> has an additional <code>-f</code>/<code>--file</code> flag that can parse <code>.env</code> files and set
836844
variables accordingly. This feature is adopted from <code>dotenv</code> style packages.</p>
@@ -1232,27 +1240,35 @@ <h2 id="options-6"><a class="header" href="#options-6">Options</a></h2>
12321240
</dd>
12331241
<dt><code>--base64</code></dt>
12341242
<dd>
1243+
<p>same as 'base64' program</p>
12351244
</dd>
12361245
<dt><code>--base64url</code></dt>
12371246
<dd>
1247+
<p>file- and url-safe base64</p>
12381248
</dd>
12391249
<dt><code>--base32</code></dt>
12401250
<dd>
1251+
<p>same as 'base32' program</p>
12411252
</dd>
12421253
<dt><code>--base32hex</code></dt>
12431254
<dd>
1255+
<p>extended hex alphabet base32</p>
12441256
</dd>
12451257
<dt><code>--base16</code></dt>
12461258
<dd>
1259+
<p>hex encoding</p>
12471260
</dd>
12481261
<dt><code>--base2lsbf</code></dt>
12491262
<dd>
1263+
<p>bit string with least significant bit (lsb) first</p>
12501264
</dd>
12511265
<dt><code>--base2msbf</code></dt>
12521266
<dd>
1267+
<p>bit string with most significant bit (msb) first</p>
12531268
</dd>
12541269
<dt><code>--z85</code></dt>
12551270
<dd>
1271+
<p>ascii85-like encoding;<br />when encoding, input length must be a multiple of 4;<br />when decoding, input length must be a multiple of 5</p>
12561272
</dd>
12571273
</dl>
12581274
<h2 id="examples-6"><a class="header" href="#examples-6">Examples</a></h2>

user/searchindex.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

user/searchindex.json

+1-1
Large diffs are not rendered by default.

user/utils/basenc.html

+8
Original file line numberDiff line numberDiff line change
@@ -204,27 +204,35 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
204204
</dd>
205205
<dt><code>--base64</code></dt>
206206
<dd>
207+
<p>same as 'base64' program</p>
207208
</dd>
208209
<dt><code>--base64url</code></dt>
209210
<dd>
211+
<p>file- and url-safe base64</p>
210212
</dd>
211213
<dt><code>--base32</code></dt>
212214
<dd>
215+
<p>same as 'base32' program</p>
213216
</dd>
214217
<dt><code>--base32hex</code></dt>
215218
<dd>
219+
<p>extended hex alphabet base32</p>
216220
</dd>
217221
<dt><code>--base16</code></dt>
218222
<dd>
223+
<p>hex encoding</p>
219224
</dd>
220225
<dt><code>--base2lsbf</code></dt>
221226
<dd>
227+
<p>bit string with least significant bit (lsb) first</p>
222228
</dd>
223229
<dt><code>--base2msbf</code></dt>
224230
<dd>
231+
<p>bit string with most significant bit (msb) first</p>
225232
</dd>
226233
<dt><code>--z85</code></dt>
227234
<dd>
235+
<p>ascii85-like encoding;<br />when encoding, input length must be a multiple of 4;<br />when decoding, input length must be a multiple of 5</p>
228236
</dd>
229237
</dl>
230238
<h2 id="examples"><a class="header" href="#examples">Examples</a></h2>

0 commit comments

Comments
 (0)