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/linux/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`
- 使用特定的分隔符:
`tac --separator {{,}} {{path/to/file1 path/to/file2 ...}}`
- 使用特定的正则表达式作为分隔符:
`tac --regex --separator {{[,;]}} {{path/to/file1 path/to/file2 ...}}`
- 在每个文件之前使用分隔符:
`tac --before {{path/to/file1 path/to/file2 ...}}`