You've already forked uutils.github.io
mirror of
https://github.com/uutils/uutils.github.io.git
synced 2026-06-10 16:12:28 -07:00
deploy: f0e8d44e6e
This commit is contained in:
+28
-2
@@ -1659,6 +1659,10 @@ chown [OPTION]... --reference=RFILE FILE...
|
||||
<dl><dt></dt>
|
||||
<dd>
|
||||
</dd>
|
||||
<dt><code>--algorithm=<ALGORITHM></code>, <code>-a <ALGORITHM></code></dt>
|
||||
<dd>
|
||||
<p>select the digest type to use. See DIGEST below</p>
|
||||
</dd>
|
||||
<dt><code>--help</code>, <code>-h</code></dt>
|
||||
<dd>
|
||||
<p>Print help information</p>
|
||||
@@ -1668,6 +1672,18 @@ chown [OPTION]... --reference=RFILE FILE...
|
||||
<p>Print version information</p>
|
||||
</dd>
|
||||
</dl>
|
||||
<p>DIGEST determines the digest algorithm and default output format:</p>
|
||||
<p>-a=sysv: (equivalent to sum -s)
|
||||
-a=bsd: (equivalent to sum -r)
|
||||
-a=crc: (equivalent to cksum)
|
||||
-a=md5: (equivalent to md5sum)
|
||||
-a=sha1: (equivalent to sha1sum)
|
||||
-a=sha224: (equivalent to sha224sum)
|
||||
-a=sha256: (equivalent to sha256sum)
|
||||
-a=sha384: (equivalent to sha384sum)
|
||||
-a=sha512: (equivalent to sha512sum)
|
||||
-a=blake2b: (equivalent to b2sum)
|
||||
-a=sm3: (only available through cksum)</p>
|
||||
<h2 id="examples-12"><a class="header" href="#examples-12">Examples</a></h2>
|
||||
<p>Display a 32-bit checksum, size in bytes and filename:</p>
|
||||
<pre><code class="language-shell">cksum {{path/to/file}}
|
||||
@@ -4375,6 +4391,14 @@ ln [OPTION]... -t DIRECTORY TARGET...
|
||||
<p>Print version information</p>
|
||||
</dd>
|
||||
</dl>
|
||||
<p>In the 1st form, create a link to TARGET with the name LINK_NAME.
|
||||
In the 2nd form, create a link to TARGET in the current directory.
|
||||
In the 3rd and 4th forms, create links to each TARGET in DIRECTORY.
|
||||
Create hard links by default, symbolic links with --symbolic.
|
||||
By default, each destination (name of new link) should not already exist.
|
||||
When creating hard links, each TARGET must exist. Symbolic links
|
||||
can hold arbitrary text; if later resolved, a relative link is
|
||||
interpreted in relation to its parent directory.</p>
|
||||
<h2 id="examples-41"><a class="header" href="#examples-41">Examples</a></h2>
|
||||
<p>Create a symbolic link to a file or directory:</p>
|
||||
<pre><code class="language-shell">ln -s {{/path/to/file_or_directory}} {{path/to/symlink}}
|
||||
@@ -7879,9 +7903,11 @@ to be recovered later.</p>
|
||||
</div>
|
||||
<pre><code>shuf [OPTION]... [FILE]
|
||||
shuf -e [OPTION]... [ARG]...
|
||||
shuf -i LO-HI [OPTION]...
|
||||
shuf -i LO-HI [OPTION]...;
|
||||
</code></pre>
|
||||
<p>Shuffle the input by outputting a random permutation of input lines. Each output permutation is equally likely. With no FILE, or when FILE is -, read standard input.</p>
|
||||
<p>Shuffle the input by outputting a random permutation of input lines.
|
||||
Each output permutation is equally likely.
|
||||
With no FILE, or when FILE is -, read standard input.</p>
|
||||
<h2 id="options-87"><a class="header" href="#options-87">Options</a></h2>
|
||||
<dl><dt><code>--echo=<ARG></code>, <code>-e <ARG></code></dt>
|
||||
<dd>
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -184,6 +184,10 @@
|
||||
<dl><dt></dt>
|
||||
<dd>
|
||||
</dd>
|
||||
<dt><code>--algorithm=<ALGORITHM></code>, <code>-a <ALGORITHM></code></dt>
|
||||
<dd>
|
||||
<p>select the digest type to use. See DIGEST below</p>
|
||||
</dd>
|
||||
<dt><code>--help</code>, <code>-h</code></dt>
|
||||
<dd>
|
||||
<p>Print help information</p>
|
||||
@@ -193,6 +197,18 @@
|
||||
<p>Print version information</p>
|
||||
</dd>
|
||||
</dl>
|
||||
<p>DIGEST determines the digest algorithm and default output format:</p>
|
||||
<p>-a=sysv: (equivalent to sum -s)
|
||||
-a=bsd: (equivalent to sum -r)
|
||||
-a=crc: (equivalent to cksum)
|
||||
-a=md5: (equivalent to md5sum)
|
||||
-a=sha1: (equivalent to sha1sum)
|
||||
-a=sha224: (equivalent to sha224sum)
|
||||
-a=sha256: (equivalent to sha256sum)
|
||||
-a=sha384: (equivalent to sha384sum)
|
||||
-a=sha512: (equivalent to sha512sum)
|
||||
-a=blake2b: (equivalent to b2sum)
|
||||
-a=sm3: (only available through cksum)</p>
|
||||
<h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
|
||||
<p>Display a 32-bit checksum, size in bytes and filename:</p>
|
||||
<pre><code class="language-shell">cksum {{path/to/file}}
|
||||
|
||||
@@ -248,6 +248,14 @@ ln [OPTION]... -t DIRECTORY TARGET...
|
||||
<p>Print version information</p>
|
||||
</dd>
|
||||
</dl>
|
||||
<p>In the 1st form, create a link to TARGET with the name LINK_NAME.
|
||||
In the 2nd form, create a link to TARGET in the current directory.
|
||||
In the 3rd and 4th forms, create links to each TARGET in DIRECTORY.
|
||||
Create hard links by default, symbolic links with --symbolic.
|
||||
By default, each destination (name of new link) should not already exist.
|
||||
When creating hard links, each TARGET must exist. Symbolic links
|
||||
can hold arbitrary text; if later resolved, a relative link is
|
||||
interpreted in relation to its parent directory.</p>
|
||||
<h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
|
||||
<p>Create a symbolic link to a file or directory:</p>
|
||||
<pre><code class="language-shell">ln -s {{/path/to/file_or_directory}} {{path/to/symlink}}
|
||||
|
||||
@@ -179,9 +179,11 @@
|
||||
</div>
|
||||
<pre><code>shuf [OPTION]... [FILE]
|
||||
shuf -e [OPTION]... [ARG]...
|
||||
shuf -i LO-HI [OPTION]...
|
||||
shuf -i LO-HI [OPTION]...;
|
||||
</code></pre>
|
||||
<p>Shuffle the input by outputting a random permutation of input lines. Each output permutation is equally likely. With no FILE, or when FILE is -, read standard input.</p>
|
||||
<p>Shuffle the input by outputting a random permutation of input lines.
|
||||
Each output permutation is equally likely.
|
||||
With no FILE, or when FILE is -, read standard input.</p>
|
||||
<h2 id="options"><a class="header" href="#options">Options</a></h2>
|
||||
<dl><dt><code>--echo=<ARG></code>, <code>-e <ARG></code></dt>
|
||||
<dd>
|
||||
|
||||
Reference in New Issue
Block a user