tldr/pages.zh/common/cat.md

17 lines
369 B
Markdown
Raw Normal View History

# cat
> 打印和拼接文件的工具。
> 更多信息:<https://manned.org/cat.1posix>.
- 以标准输出,打印文件内容:
`cat {{path/to/file}}`
- 多文件合并到目标文件:
`cat {{path/to/file1 path/to/file2 ...}} > {{target_file}}`
- 多文件合并,并追加到目标文件:
`cat {{path/to/file1 path/to/file2 ...}} >> {{target_file}}`