pages*: update outdated pages (#11821)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>
This commit is contained in:
Sebastiaan Speck
2023-12-28 16:48:20 +01:00
committed by GitHub
parent 7635f3426f
commit dcb53c85a0
83 changed files with 228 additions and 360 deletions

View File

@@ -5,20 +5,12 @@
- 以标准输出,打印文件内容:
`cat {{file}}`
`cat {{path/to/file}}`
- 多文件合并到目标文件:
`cat {{file1}} {{file2}} > {{target_file}}`
`cat {{path/to/file1 path/to/file2 ...}} > {{target_file}}`
- 多文件合并,并追加到目标文件:
`cat {{file1}} {{file2}} >> {{target_file}}`
- 显示行号:
`cat -n {{file}}`
- 显示不可打印和空白的字符(使用 `M-` 前缀标记非 ASCII 字符):
`cat -v -t -e {{file}}`
`cat {{path/to/file1 path/to/file2 ...}} >> {{target_file}}`