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

View File

@@ -1,24 +1,24 @@
# textutil
> 用于操作各种格式的文本文件。
> 更多信息:<https://keith.github.io/xcode-man-pages/textutil.1.html>.
> 操作各种格式的文本文件。
> 更多信息:<https://keith.github.io/xcode-man-pages/textutil.1.html>
- 显示`foo.rtf` 的信息:
- 显示关 `foo.rtf` 的信息:
`textutil -info {{foo.rtf}}`
`textutil -info {{path/to/foo.rtf}}`
-`foo.rtf` 转换为 `foo.html`
`textutil -convert {{html}} {{foo.rtf}}`
`textutil -convert {{html}} {{path/to/foo.rtf}}`
-带格式的 rtf 文本转换为普通 txt 文本:
-文本转换为普通文本:
`textutil {{foo.rtf}} -convert {{txt}}`
`textutil {{path/to/foo.rtf}} -convert {{txt}}`
-`foo.txt` 转换为 `foo.rtf`, 字体使用 Times 字号 10
-`foo.txt` 转换为 `foo.rtf`使用 Times 10 作为字体
`textutil -convert {{rtf}} -font {{Times}} -fontsize {{10}} {{foo.txt}}`
`textutil -convert {{rtf}} -font {{Times}} -fontsize {{10}} {{path/to/foo.txt}}`
- 加载当前目录中的所有 RTF 文件,连接其内容,并将结果`index.html` 写入HTML 标题设置为"多个文件"
- 加载当前目录中的所有 RTF 文件,连接其内容,并将结果写出`index.html`HTML 标题设置为 "多个文件"
`textutil -cat {{html}} -title "多个文件" -output {{index.html}} *.rtf`
`textutil -cat {{html}} -title "多个文件" -output {{path/to/index.html}} *.rtf`