首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > windows >

windows文本查寻批处理程序

2012-07-20 
windows文本查找批处理程序1.保存以下内容为bat文件:@echo offdir *.tmp /b dir.txtfor /F %%a in (dir.

windows文本查找批处理程序
1.保存以下内容为bat文件:
@echo off
dir *.tmp /b > dir.txt
for /F %%a in (dir.txt) do (
find "查询内容" %%a && echo %%a >> log.txt
)
del dir.txt
echo done!
pause

2.把保存的bat文件放到查找文件所在同级目录。

3.运行bat文件,完成后可以查看log.txt里的查找记录。

热点排行