mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 21:26:01 +02:00
cat: add Japanese translation (#9779)
This commit is contained in:
parent
0609397b17
commit
c2c8ee7c8c
1 changed files with 24 additions and 0 deletions
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 - > {{ファイルパス}}`
|
Loading…
Add table
Reference in a new issue