Board logo

标题: [特效代码] [已解决]突发奇想,批处理如何不用FOR实现逐行读取文本内容并跳过/忽略前几行 [打印本页]

作者: 老刘1号    时间: 2016-11-5 12:42     标题: [已解决]突发奇想,批处理如何不用FOR实现逐行读取文本内容并跳过/忽略前几行

自附一段代码,有待改进:
  1. echo off&cls
  2. setlocal enabledelayedexpansion
  3. set skip=2
  4. set filename=1.txt
  5. set /a skip=skip-1
  6. set /a tmp1=1
  7. if !skip! equ 0 (call :不大于0) else call :大于0
  8. (del %tmp%\temp.tmp & del %tmp%\tmp2.tmp)2>nul
  9. goto :eof
  10. :大于0
  11. more +!skip! !filename! >%tmp%\temp.tmp
  12. :start1
  13. more +!tmp1! %tmp%\temp.tmp >%tmp%\tmp2.tmp
  14. <tmp2.tmp set /p msg=
  15. REM 这里写for里的代码:
  16. echo.!msg!
  17. pause
  18. set /a tmp1+=1
  19. if "!msg!" equ "!tmp2!" goto :eof
  20. set tmp2=!msg!
  21. goto :start1
复制代码
试了下,貌似模拟skip成功了

for的话,是酱紫:
  1. echo off&cls
  2. for /f "skip=2" %%a in (1.txt) do echo.%%a&&pause
复制代码
也可当成一个练习咯。
欢迎大家补充。
作者: 老刘1号    时间: 2016-11-5 12:52

本帖最后由 老刘1号 于 2016-11-5 13:15 编辑

回复 1# 老刘1号


    标题改好了……
作者: pcl_test    时间: 2016-11-5 16:40

  1. @echo off
  2. (more "1.txt"&set/p=ж)<nul>"%tmp%\$.t"
  3. set skip=2
  4. (
  5.     :0
  6.     set /a n+=1
  7.     setlocal enabledelayedexpansion
  8.     set /p str=
  9.     if "!str:~,1!" neq "ж" (
  10.         if !n! gtr %skip% echo;!str!
  11.         endlocal&call :0&rem 递归有限
  12.     )
  13. )<"%tmp%\$.t"
  14. pause>nul
复制代码

作者: CommandBatCmd    时间: 2016-11-8 19:52

****** 批次递归超出堆栈限制 ******
递归计数=782,堆栈的使用=90%
******      批处理中止      ******




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2