cat: add Japanese translation (#9779)

pull/3/head
Kumamoto 2023-01-17 21:24:42 +09:00 committed by GitHub
parent 0609397b17
commit c2c8ee7c8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
pages.ja/common/cat.md Normal file
View 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 - > {{ファイルパス}}`