cat: add Japanese translation (#9779)
This commit is contained in:
24
pages.ja/common/cat.md
Normal file
24
pages.ja/common/cat.md
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
# cat
|
||||||
|
|
||||||
|
> ファイルの出力と連結を行います。
|
||||||
|
> 詳しくはこちら: <https://www.gnu.org/software/coreutils/cat>
|
||||||
|
|
||||||
|
- ファイルの内容を標準出力に出力する:
|
||||||
|
|
||||||
|
`cat {{ファイルパス}}`
|
||||||
|
|
||||||
|
- 複数ファイルを連結して1つの出力ファイルにする:
|
||||||
|
|
||||||
|
`cat {{ファイルパス1 ファイルパス2 ...}} > {{出力ファイルパス}}`
|
||||||
|
|
||||||
|
- 複数ファイルを1つの出力ファイルに追加する:
|
||||||
|
|
||||||
|
`cat {{ファイルパス1 ファイルパス2 ...}} >> {{出力ファイルパス}}`
|
||||||
|
|
||||||
|
- ファイルの内容をバッファリング(一時保存)せずに出力ファイルにコピーする:
|
||||||
|
|
||||||
|
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
|
||||||
|
|
||||||
|
- `stdin`(標準入力)をファイルに書き込む:
|
||||||
|
|
||||||
|
`cat - > {{ファイルパス}}`
|
Reference in New Issue
Block a user