add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

25
pages.zh/common/tac.md Normal file
View File

@@ -0,0 +1,25 @@
# tac
> 以反向顺序显示和连接文件的行。
> 另见:`cat`。
> 更多信息:<https://www.gnu.org/software/coreutils/tac>。
- 以反向顺序连接特定文件:
`tac {{path/to/file1 path/to/file2 ...}}`
- 以反向顺序显示 `stdin`
`{{cat path/to/file}} | tac`
- 使用特定的 [s]eparator
`tac -s {{separator}} {{path/to/file1 path/to/file2 ...}}`
- 使用特定的 [r]egex 作为 [s]eparator
`tac -r -s {{separator}} {{path/to/file1 path/to/file2 ...}}`
- 在每个文件之前使用分隔符 [b]
`tac -b {{path/to/file1 path/to/file2 ...}}`