Files
tldr/pages.zh/common/unexpand.md
Jin 2a4ef14253 common/u*: add Chinese translation (#14688)
* common/u*: add Chinese translation

* Update uv-tool.md

* Update ugrep.md
2024-11-19 01:23:02 -08:00

25 lines
611 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# unexpand
> 将空格转换为制表符。
> 更多信息:<https://www.gnu.org/software/coreutils/unexpand>.
- 将每个文件中的空格转换为制表符,并写入到 `stdout`
`unexpand {{路径/到/文件}}`
- 将空格转换为制表符,从 `stdout` 读取:
`unexpand`
- 转换所有空格,而不仅仅是开头的空格:
`unexpand -a {{路径/到/文件}}`
- 仅转换开头的空格序列(覆盖 -a
`unexpand --first-only {{路径/到/文件}}`
- 将制表符间隔设置为某个字符数,而不是 8启用 -a
`unexpand -t {{数量}} {{路径/到/文件}}`