Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite6c78b9

Browse files
committed
deploy:f0e8d44
1 parent9839da3 commite6c78b9

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

‎user/print.html‎

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ <h2 id="options-7"><a class="header" href="#options-7">Options</a></h2>
13741374
</dd>
13751375
</dl>
13761376
<h2id="examples-7"><aclass="header"href="#examples-7">Examples</a></h2>
1377-
<p>Print the contents of a file tothe standard output:</p>
1377+
<p>Print the contents of a file to<code>stdout</code>:</p>
13781378
<pre><codeclass="language-shell">cat {{path/to/file}}
13791379
</code></pre>
13801380
<p>Concatenate several files into an output file:</p>
@@ -3393,10 +3393,10 @@ <h2 id="options-27"><a class="header" href="#options-27">Options</a></h2>
33933393
</dd>
33943394
</dl>
33953395
<h2id="examples-27"><aclass="header"href="#examples-27">Examples</a></h2>
3396-
<p>Convert tabs in each file to spaces, writing tostandard output:</p>
3396+
<p>Convert tabs in each file to spaces, writing to<code>stdout</code>:</p>
33973397
<pre><codeclass="language-shell">expand {{path/to/file}}
33983398
</code></pre>
3399-
<p>Convert tabs to spaces, reading fromstandard input:</p>
3399+
<p>Convert tabs to spaces, reading from<code>stdin</code>:</p>
34003400
<pre><codeclass="language-shell">expand
34013401
</code></pre>
34023402
<p>Do not convert tabs after non blanks:</p>
@@ -5336,7 +5336,7 @@ <h2 id="examples-53"><a class="header" href="#examples-53">Examples</a></h2>
53365336
<p>Number non-blank lines in a file:</p>
53375337
<pre><codeclass="language-shell">nl {{path/to/file}}
53385338
</code></pre>
5339-
<p>Read fromstandard output:</p>
5339+
<p>Read from<code>stdout</code>:</p>
53405340
<pre><codeclass="language-shell">cat {{path/to/file}} | nl {{options}} -
53415341
</code></pre>
53425342
<p>Number only the lines with printable text:</p>
@@ -8224,13 +8224,13 @@ <h2 id="options-92"><a class="header" href="#options-92">Options</a></h2>
82248224
<p>NOTE: If<code>COMMAND</code> adjusts the buffering of its standard streams (<code>tee</code> does for e.g.) then that will override corresponding settings changed by<code>stdbuf</code>.
82258225
Also some filters (like<code>dd</code> and<code>cat</code> etc.) don't use streams for I/O, and are thus unaffected by<code>stdbuf</code> settings.</p>
82268226
<h2id="examples-83"><aclass="header"href="#examples-83">Examples</a></h2>
8227-
<p>Changethe standard input buffer size to 512 KiB:</p>
8227+
<p>Change<code>stdin</code> buffer size to 512 KiB:</p>
82288228
<pre><codeclass="language-shell">stdbuf --input={{512K}} {{command}}
82298229
</code></pre>
8230-
<p>Changethe standard output buffer to line-buffered:</p>
8230+
<p>Change<code>stdout</code> buffer to line-buffered:</p>
82318231
<pre><codeclass="language-shell">stdbuf --output={{L}} {{command}}
82328232
</code></pre>
8233-
<p>Changethe standard error buffer to unbuffered:</p>
8233+
<p>Change<code>stderr</code> buffer to unbuffered:</p>
82348234
<pre><codeclass="language-shell">stdbuf --error={{0}} {{command}}
82358235
</code></pre>
82368236
<blockquote>
@@ -8542,13 +8542,13 @@ <h2 id="options-98"><a class="header" href="#options-98">Options</a></h2>
85428542
</dl>
85438543
<p>If a FILE is -, it refers to a file named - .</p>
85448544
<h2id="examples-89"><aclass="header"href="#examples-89">Examples</a></h2>
8545-
<p>Copystandard inputto each file, and also tostandard output:</p>
8545+
<p>Copy<code>stdin</code>to each file, and also to<code>stdout</code>:</p>
85468546
<pre><codeclass="language-shell">echo &quot;example&quot; | tee {{path/to/file}}
85478547
</code></pre>
85488548
<p>Append to the given files, do not overwrite:</p>
85498549
<pre><codeclass="language-shell">echo &quot;example&quot; | tee -a {{path/to/file}}
85508550
</code></pre>
8551-
<p>Printstandard input to the terminal, and also pipe it into another program for further processing:</p>
8551+
<p>Print<code>stdin</code> to the terminal, and also pipe it into another program for further processing:</p>
85528552
<pre><codeclass="language-shell">echo &quot;example&quot; | tee {{/dev/tty}} | {{xargs printf &quot;[%s]&quot;}}
85538553
</code></pre>
85548554
<p>Create a directory called &quot;example&quot;, count the number of characters in &quot;example&quot; and write &quot;example&quot; to the terminal:</p>
@@ -9158,10 +9158,10 @@ <h2 id="options-108"><a class="header" href="#options-108">Options</a></h2>
91589158
</dd>
91599159
</dl>
91609160
<h2id="examples-99"><aclass="header"href="#examples-99">Examples</a></h2>
9161-
<p>Convert blanks in each file to tabs, writing tostandard output:</p>
9161+
<p>Convert blanks in each file to tabs, writing to<code>stdout</code>:</p>
91629162
<pre><codeclass="language-shell">unexpand {{path/to/file}}
91639163
</code></pre>
9164-
<p>Convert blanks to tabs, reading fromstandard output:</p>
9164+
<p>Convert blanks to tabs, reading from<code>stdout</code>:</p>
91659165
<pre><codeclass="language-shell">unexpand
91669166
</code></pre>
91679167
<p>Convert all blanks, instead of just initial blanks:</p>

‎user/searchindex.js‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎user/searchindex.json‎

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎user/utils/cat.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
247247
</dd>
248248
</dl>
249249
<h2id="examples"><aclass="header"href="#examples">Examples</a></h2>
250-
<p>Print the contents of a file tothe standard output:</p>
250+
<p>Print the contents of a file to<code>stdout</code>:</p>
251251
<pre><codeclass="language-shell">cat {{path/to/file}}
252252
</code></pre>
253253
<p>Concatenate several files into an output file:</p>

‎user/utils/expand.html‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,10 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
223223
</dd>
224224
</dl>
225225
<h2id="examples"><aclass="header"href="#examples">Examples</a></h2>
226-
<p>Convert tabs in each file to spaces, writing tostandard output:</p>
226+
<p>Convert tabs in each file to spaces, writing to<code>stdout</code>:</p>
227227
<pre><codeclass="language-shell">expand {{path/to/file}}
228228
</code></pre>
229-
<p>Convert tabs to spaces, reading fromstandard input:</p>
229+
<p>Convert tabs to spaces, reading from<code>stdin</code>:</p>
230230
<pre><codeclass="language-shell">expand
231231
</code></pre>
232232
<p>Do not convert tabs after non blanks:</p>

‎user/utils/nl.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ <h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
275275
<p>Number non-blank lines in a file:</p>
276276
<pre><codeclass="language-shell">nl {{path/to/file}}
277277
</code></pre>
278-
<p>Read fromstandard output:</p>
278+
<p>Read from<code>stdout</code>:</p>
279279
<pre><codeclass="language-shell">cat {{path/to/file}} | nl {{options}} -
280280
</code></pre>
281281
<p>Number only the lines with printable text:</p>

‎user/utils/stdbuf.html‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,13 +230,13 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
230230
<p>NOTE: If<code>COMMAND</code> adjusts the buffering of its standard streams (<code>tee</code> does for e.g.) then that will override corresponding settings changed by<code>stdbuf</code>.
231231
Also some filters (like<code>dd</code> and<code>cat</code> etc.) don't use streams for I/O, and are thus unaffected by<code>stdbuf</code> settings.</p>
232232
<h2id="examples"><aclass="header"href="#examples">Examples</a></h2>
233-
<p>Changethe standard input buffer size to 512 KiB:</p>
233+
<p>Change<code>stdin</code> buffer size to 512 KiB:</p>
234234
<pre><codeclass="language-shell">stdbuf --input={{512K}} {{command}}
235235
</code></pre>
236-
<p>Changethe standard output buffer to line-buffered:</p>
236+
<p>Change<code>stdout</code> buffer to line-buffered:</p>
237237
<pre><codeclass="language-shell">stdbuf --output={{L}} {{command}}
238238
</code></pre>
239-
<p>Changethe standard error buffer to unbuffered:</p>
239+
<p>Change<code>stderr</code> buffer to unbuffered:</p>
240240
<pre><codeclass="language-shell">stdbuf --error={{0}} {{command}}
241241
</code></pre>
242242
<blockquote>

‎user/utils/tee.html‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,13 +227,13 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
227227
</dl>
228228
<p>If a FILE is -, it refers to a file named - .</p>
229229
<h2id="examples"><aclass="header"href="#examples">Examples</a></h2>
230-
<p>Copystandard inputto each file, and also tostandard output:</p>
230+
<p>Copy<code>stdin</code>to each file, and also to<code>stdout</code>:</p>
231231
<pre><codeclass="language-shell">echo &quot;example&quot; | tee {{path/to/file}}
232232
</code></pre>
233233
<p>Append to the given files, do not overwrite:</p>
234234
<pre><codeclass="language-shell">echo &quot;example&quot; | tee -a {{path/to/file}}
235235
</code></pre>
236-
<p>Printstandard input to the terminal, and also pipe it into another program for further processing:</p>
236+
<p>Print<code>stdin</code> to the terminal, and also pipe it into another program for further processing:</p>
237237
<pre><codeclass="language-shell">echo &quot;example&quot; | tee {{/dev/tty}} | {{xargs printf &quot;[%s]&quot;}}
238238
</code></pre>
239239
<p>Create a directory called &quot;example&quot;, count the number of characters in &quot;example&quot; and write &quot;example&quot; to the terminal:</p>

‎user/utils/unexpand.html‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,10 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
227227
</dd>
228228
</dl>
229229
<h2id="examples"><aclass="header"href="#examples">Examples</a></h2>
230-
<p>Convert blanks in each file to tabs, writing tostandard output:</p>
230+
<p>Convert blanks in each file to tabs, writing to<code>stdout</code>:</p>
231231
<pre><codeclass="language-shell">unexpand {{path/to/file}}
232232
</code></pre>
233-
<p>Convert blanks to tabs, reading fromstandard output:</p>
233+
<p>Convert blanks to tabs, reading from<code>stdout</code>:</p>
234234
<pre><codeclass="language-shell">unexpand
235235
</code></pre>
236236
<p>Convert all blanks, instead of just initial blanks:</p>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp