返回列表 发帖
答:
是这样么...
  1. @echo off
  2. call :find cn.txt
  3. call :find en.txt
  4. pause
  5. exit
  6. :find
  7. for /f " delims=:" %%i in ('findstr "批处理之家" "%1"') do echo %1
  8. goto :eof
复制代码

===========
end;

TOP

返回列表