Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 336 Bytes

Windows_Commands.md

File metadata and controls

14 lines (11 loc) · 336 Bytes

Windows 常用命令

  • 查找当前文件夹下的 proof.txt 文件:
# 当前路径下递归搜索
dir /S proof.txt
  • 查找 c 盘下所有以 .txt 结尾的文件:
for /r c:\ %i in (*.txt) do @echo %i