Files
tldr/pages.zh/linux/cat.md

28 lines
645 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# cat
> 打印和连接文件。
> 更多信息:<https://www.gnu.org/software/coreutils/cat>。
- 将文件的内容打印到 `stdout`
`cat {{path/to/file}}`
- 将多个文件连接到一个输出文件:
`cat {{path/to/file1 path/to/file2 ...}} > {{path/to/output_file}}`
- 将多个文件追加到一个输出文件:
`cat {{path/to/file1 path/to/file2 ...}} >> {{path/to/output_file}}`
-`stdin` 写入文件:
`cat - > {{path/to/file}}`
- 为所有输出行编号:
`cat -n {{path/to/file}}`
- 显示不可打印和空白字符如果是非ASCII字符则带有 `M-` 前缀):
`cat -v -t -e {{path/to/file}}`