1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 13:06:00 +02:00

forfiles: add Chinese translation

This commit is contained in:
Starccy 2019-03-11 10:22:43 +08:00 committed by Starbeamrainbowlabs
parent 158e8a2ac3
commit 43474ac56b

View file

@ -0,0 +1,27 @@
# forfiles
> 选择一个或多个文件以执行指定的命令.
- 在当前的目录中寻找文件:
`forfiles`
- 在一个指定目录中寻找文件:
`forfiles /p {{目录的路径}}`
- 为每个文件执行指定的命令:
`forfiles /c "{{命令}}"`
- 使用通配符来寻找指定的文件:
`forfiles /m {{通配符}}`
- 递归寻找文件:
`forfiles /s`
- 搜索超过5天的文件:
`forfiles /d {{+5}}`