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,16 +1,16 @@
# fd
> `find` 的替代工具
> `find` 的替代方案
> 旨在比 `find` 更快且更易于使用。
> 更多信息:<https://github.com/sharkdp/fd>.
> 更多信息:<https://github.com/sharkdp/fd>
- 递归查找当前目录中匹配特定模式的文件:
- 当前目录中递归查找匹配特定模式的文件:
`fd "{{字符串|正则表达式}}"`
`fd "{{string|regex}}"`
- 查找以特定字符串开头的文件:
`fd "{{^字符串}}"`
`fd "{{^string}}"`
- 查找具有特定扩展名的文件:
@@ -18,12 +18,12 @@
- 在特定目录中查找文件:
`fd "{{字符串|正则表达式}}" {{路径/到/目录}}`
`fd "{{string|regex}}" {{path/to/directory}}`
- 在搜索中包含被忽略和隐藏的文件:
`fd --hidden --no-ignore "{{字符串|正则表达式}}"`
`fd --hidden --no-ignore "{{string|regex}}"`
- 对每个返回的搜索结果执行命令:
`fd "{{字符串|正则表达式}}" --exec {{命令}}`
`fd "{{string|regex}}" --exec {{command}}`