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

16
pages.zh/common/iconv.md Normal file
View File

@@ -0,0 +1,16 @@
# iconv
> 将文本从一种编码转换为另一种编码。
> 更多信息:<https://manned.org/iconv>。
- 将文件转换为特定编码,并打印到 `stdout`
`iconv -f {{from_encoding}} -t {{to_encoding}} {{input_file}}`
- 将文件转换为当前区域设置的编码,并输出到文件:
`iconv -f {{from_encoding}} {{input_file}} > {{output_file}}`
- 列出支持的编码:
`iconv -l`