[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
#*http://www.bathome.net/s/tool/index.html?down&key=gawk
#*提取多个文本指定字符串所在行之后的10行内容
#*&cls&dir /a-d/b *.txt|gawk -f "%~f0">"result.log"&pause&exit
BEGIN{
    while(getline file>0){
        t=0;print file;
        while(getline<file>0){
            if(t>0&&t<=11)print;
            if(index($0, "指定字符串"))t=1;
            if(t)t++;if(t>11)break;
        }
        close(file);
    }
}
1

评分人数

TOP

回复 16# pcl_test

非常感谢,这个测试提取4000文件没问题!

TOP

本帖最后由 WHY 于 2016-12-1 08:09 编辑
  1. @echo off & setlocal enabledelayedexpansion
  2. (for %%i in (*.txt) do (
  3.     set "n="
  4.     for /f "delims=" %%j in ('type "%%i"') do (
  5.         set "s=%%j"
  6.         if defined n (
  7.             if !n! LEQ 10 set /a n+=1 & echo;!s!
  8.         ) else (
  9.             if "!s:abc=!" NEQ "!s!" set n=1
  10.         )
  11.     )
  12. ))>Result.Log
复制代码
1

评分人数

TOP

  1. PowerShell -c "Select-String -Path *.txt -Encoding Default 'abc' -Context 10|%%{$_.Context.PostContext}">Result.Log
复制代码
1

评分人数

TOP

返回列表