Skip to content

Commit 02e9c1a

Browse files
committed
deploy: c249eba
1 parent f9c9869 commit 02e9c1a

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

user/print.html

+10-10
Original file line numberDiff line numberDiff line change
@@ -7564,23 +7564,23 @@ <h2 id="options-91"><a class="header" href="#options-91">Options</a></h2>
75647564
</dd>
75657565
</dl>
75667566
<h2 id="examples-80"><a class="header" href="#examples-80">Examples</a></h2>
7567-
<p>Show file properties such as size, permissions, creation and access dates among others:</p>
7567+
<p>Display properties about a specific file such as size, permissions, creation and access dates among others:</p>
75687568
<pre><code class="language-shell">stat {{path/to/file}}
75697569
</code></pre>
7570-
<p>Same as above but in a more concise way:</p>
7571-
<pre><code class="language-shell">stat -t {{path/to/file}}
7570+
<p>Display properties about a specific file such as size, permissions, creation and access dates among others without labels:</p>
7571+
<pre><code class="language-shell">stat --terse {{path/to/file}}
75727572
</code></pre>
7573-
<p>Show filesystem information:</p>
7574-
<pre><code class="language-shell">stat -f {{path/to/file}}
7573+
<p>Display information about the filesystem where a specific file is located:</p>
7574+
<pre><code class="language-shell">stat --file-system {{path/to/file}}
75757575
</code></pre>
75767576
<p>Show only octal file permissions:</p>
7577-
<pre><code class="language-shell">stat -c &quot;%a %n&quot; {{path/to/file}}
7577+
<pre><code class="language-shell">stat --format=&quot;%a %n&quot; {{path/to/file}}
75787578
</code></pre>
7579-
<p>Show owner and group of the file:</p>
7580-
<pre><code class="language-shell">stat -c &quot;%U %G&quot; {{path/to/file}}
7579+
<p>Show the owner and group of a specific file:</p>
7580+
<pre><code class="language-shell">stat --format=&quot;%U %G&quot; {{path/to/file}}
75817581
</code></pre>
7582-
<p>Show the size of the file in bytes:</p>
7583-
<pre><code class="language-shell">stat -c &quot;%s %n&quot; {{path/to/file}}
7582+
<p>Show the size of a specific file in bytes:</p>
7583+
<pre><code class="language-shell">stat --format=&quot;%s %n&quot; {{path/to/file}}
75847584
</code></pre>
75857585
<blockquote>
75867586
<p>The examples are provided by the <a href="https://tldr.sh">tldr-pages project</a> under the <a href="https://github.com/tldr-pages/tldr/blob/main/LICENSE.md">CC BY 4.0 License</a>.</p>

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/stat.html

+10-10
Original file line numberDiff line numberDiff line change
@@ -213,23 +213,23 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
213213
</dd>
214214
</dl>
215215
<h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
216-
<p>Show file properties such as size, permissions, creation and access dates among others:</p>
216+
<p>Display properties about a specific file such as size, permissions, creation and access dates among others:</p>
217217
<pre><code class="language-shell">stat {{path/to/file}}
218218
</code></pre>
219-
<p>Same as above but in a more concise way:</p>
220-
<pre><code class="language-shell">stat -t {{path/to/file}}
219+
<p>Display properties about a specific file such as size, permissions, creation and access dates among others without labels:</p>
220+
<pre><code class="language-shell">stat --terse {{path/to/file}}
221221
</code></pre>
222-
<p>Show filesystem information:</p>
223-
<pre><code class="language-shell">stat -f {{path/to/file}}
222+
<p>Display information about the filesystem where a specific file is located:</p>
223+
<pre><code class="language-shell">stat --file-system {{path/to/file}}
224224
</code></pre>
225225
<p>Show only octal file permissions:</p>
226-
<pre><code class="language-shell">stat -c &quot;%a %n&quot; {{path/to/file}}
226+
<pre><code class="language-shell">stat --format=&quot;%a %n&quot; {{path/to/file}}
227227
</code></pre>
228-
<p>Show owner and group of the file:</p>
229-
<pre><code class="language-shell">stat -c &quot;%U %G&quot; {{path/to/file}}
228+
<p>Show the owner and group of a specific file:</p>
229+
<pre><code class="language-shell">stat --format=&quot;%U %G&quot; {{path/to/file}}
230230
</code></pre>
231-
<p>Show the size of the file in bytes:</p>
232-
<pre><code class="language-shell">stat -c &quot;%s %n&quot; {{path/to/file}}
231+
<p>Show the size of a specific file in bytes:</p>
232+
<pre><code class="language-shell">stat --format=&quot;%s %n&quot; {{path/to/file}}
233233
</code></pre>
234234
<blockquote>
235235
<p>The examples are provided by the <a href="https://tldr.sh">tldr-pages project</a> under the <a href="https://github.com/tldr-pages/tldr/blob/main/LICENSE.md">CC BY 4.0 License</a>.</p>

0 commit comments

Comments
 (0)