common/z*: add Chinese translation (#14773)

* common/z*: add Chinese translation

* Update zoxide.md

* Update zoxide.md
This commit is contained in:
Jin
2024-12-04 01:52:45 -05:00
committed by GitHub
parent bfb80d23f3
commit e5305a1865
44 changed files with 830 additions and 0 deletions

21
pages.zh/common/zmv.md Normal file
View File

@@ -0,0 +1,21 @@
# zmv
> 移动或重命名符合指定扩展模式的文件。
> 请参阅:`zcp` 和 `zln`。
> 更多信息:<https://zsh.sourceforge.net/Doc/Release/User-Contributions.html>.
- 使用类似正则表达式的模式移动文件:
`zmv '{{(*).log}}' '{{$1.txt}}'`
- 预览移动结果,但不进行任何实际更改:
`zmv -n '{{(*).log}}' '{{$1.txt}}'`
- 交互式移动文件,在每次更改之前进行提示:
`zmv -i '{{(*).log}}' '{{$1.txt}}'`
- 在执行时详细打印每个操作:
`zmv -v '{{(*).log}}' '{{$1.txt}}'`