.gz文件日志中txt列表中的大grep

时间:2019-02-28 17:00:32

标签: bash csv awk grep zgrep

这是我的问题(对我来说实际上是一个大问题)。

我有一个带有1.130.395行的txt文件,如下例所示:

10812
10954
10963
11070
11099
10963
11070
11099
betti.bt
betti12
betti1419432307
19442407
19451970
19461949

我有2000个.gz日志文件。

我需要为.txt文件的每一行都对所有.gz文件执行grep。

这是gz文件内容的示例,示例行:

time=2019-02-28 00:03:32,299|requestid=30ed0f2b-9c44-47d0-abdf-b3a04dbb560e|severity=INFO |severitynumber=0|url=/user/profile/oauth/{token}|params=username:juvexamore,token:b73ad88b-b201-33ce-a924-6f4eb498e01f,userIp:10.94.66.74,dtt:No|result=SUCCESS
time=2019-02-28 00:03:37,096|requestid=8ebca6cd-04ee-4818-817d-30f78ee95731|severity=INFO |severitynumber=0|url=/user/profile/oauth/{token}|params=username:10963,token:1d99be3e-325f-3982-a668-30494cab9a96,userIp:10.94.66.74,dtt:No|result=SUCCESS

txt文件包含用户名。 我需要在gz文件中搜索是否存在带有“配置文件”参数的url和“ result = SUCCESS”的用户名。

如果发现某些内容,则仅写入日志文件: username found; name of the log file in which it was found

做某事是可能的吗? 我知道我需要使用zgrep命令,但是有人可以帮助我....可以自动执行该流程以使其顺利进行吗?

谢谢

2 个答案:

答案 0 :(得分:0)

使用covs<-stack(NDVI,BTA,biovars) plot(covs) 进行重写。它读取并哈希getline用户名,然后用gzips作为参数file.txt给出的gzips,直到获得带有split的字段,提取实际的用户名并从哈希中搜索。未经正确测试等。免责声明。让我知道它是否有效:

username:

运行它(使用2个相同数据的副本):

$ cat script.awk
BEGIN{
    while (( getline line < ARGV[1]) > 0 ) {       # read the username file
        a[line]                                    # and hash to a
    }
    close(ARGV[1])
    for(i=2;i<ARGC;i++) {                          # read all the other files
        cmd = "gunzip --to-stdout " ARGV[i]        # form uncompress command
        while (( cmd | getline line ) > 0 ) {      # read line by line
            m=split(line,t,"|")                    # split at pipe
            if(t[m]!="result=SUCCESS")             # check only SUCCESS records
                continue
            n=split(t[6],b,/[=,]/)                 # username in 6th field
            for(j=1;j<=n;j++)                      # split to find it, set to u var:
                if(match(b[j],/^username:/)&&((u=substr(b[j],RSTART+RLENGTH)) in a)) {
                    print u,"found in",ARGV[i]     # output if found in a hash
                        break                      # exit for loop once found
                }
        }
        close(cmd)
    }
}

答案 1 :(得分:0)

我只是想做(未品尝):

zgrep -H 'url=/user/profile/oauth/{token}|params=username:.*result=SUCCESS' *.gz |
awk -F'[=:,]' -v OFS=';' 'NR==FNR{names[$0];next} $12 in names{print $12, $1}' names.txt - |
sort -u

或可能更有效,因为它删除了zgrep输出的每一行的NR==FNR测试:

zgrep -H 'url=/user/profile/oauth/{token}|params=username:.*result=SUCCESS' *.gz |
awk -F'[=:,]' -v OFS=';' '
    BEGIN {
        while ( (getline line < "names.txt") > 0 ) {
            names[line]
        }
        close("names.txt")
    }
    $12 in names{print $12, $1}' |
sort -u

如果给定的用户名只能在给定的日志文件中出现一次,或者如果您实际上希望多次出现以产生多条输出行,则不需要最后的| sort -u