我有一个包含以下内容的文件:
ok: [10.9.22.122] => {
"out.stdout_lines": [
"cgit-1.1-11.el7.x86_64",
"python-paramiko-2.1.1-0.9.el7.noarch",
"varnish-libs-4.0.5-1.el7.x86_64",
"kernel-3.10.0-862.el7.x86_64"
]
}
ok: [10.9.33.123] => {
"out.stdout_lines": [
"python-paramiko-2.1.1-0.9.el7.noarch"
]
}
ok: [10.9.44.124] => {
"out.stdout_lines": [
"python-paramiko-2.1.1-0.9.el7.noarch",
"kernel-3.10.0-862.el7.x86_64"
]
}
ok: [10.9.33.29] => {
"out.stdout_lines": []
}
ok: [10.9.22.28] => {
"out.stdout_lines": [
"NetworkManager-tui-1:1.12.0-8.el7_6.x86_64",
"java-1.8.0-openjdk-javadoc-zip-debug-1:1.8.0.171-8.b10.el7_5.noarch",
"java-1.8.0-openjdk-src-1:1.8.0.171-8.b10.el7_5.x86_64",
"kernel-3.10.0-862.el7.x86_64",
"kernel-tools-3.10.0-862.el7.x86_64",
]
}
ok: [10.2.2.2] => {
"out.stdout_lines": [
"monitorix-3.10.1-1.el6.noarch",
"singularity-runtime-2.6.1-1.1.el6.x86_64"
]
}
ok: [10.9.22.33] => {
"out.stdout_lines": [
"NetworkManager-1:1.12.0-8.el7_6.x86_64",
"gnupg2-2.0.22-5.el7_5.x86_64",
"kernel-3.10.0-862.el7.x86_64",
]
}
如果进入[]
包含stout_line
,我需要提取kernel*
之间的IP。
我想“模拟”子字符串,以将内容的“块”保存到变量中并遍历所有文件。
如果我有很多定界符,我将如何使用sed
或其他方法来执行此操作?
答案 0 :(得分:3)
一种GNU awk
解决方案:
awk -F'\\]|\\[' 'tolower($3)~/"out.stdout_lines" *:/ && tolower($4)~/"kernel/{print "The IP " $2 " cointain Kernel"}' RS='}' file
输出:
The IP 10.9.22.122 cointain Kernel
The IP 10.9.44.124 cointain Kernel
The IP 10.9.22.28 cointain Kernel
The IP 10.9.22.33 cointain Kernel
我将]
或[
用作FS
字段分隔符,并将}
用作RS
记录分隔符。
这样IP就会变成$2
。
此解决方案取决于结构,这意味着"out.stdout_lines"
必须位于[ip]
之后的字段中,如示例所示。
另一种GNU awk方式,没有上述限制:
awk -F']' 'match(tolower($0),/"out\.stdout_lines": *\[([^\]]+)/,m){if(m[1]~/"kernel/)print "The IP " substr($1, index($1,"[")+1) " cointain Kernel"}' RS='}' file
相同的输出。 tolower
用于不区分大小写的匹配,如果要完全匹配,可以将其删除或仅使用Revision 6中的解决方案。
结合起来有两种优点,第三种方法:
awk -F'\\]|\\[' 'match(tolower($0),/"out\.stdout_lines": *\[([^\]]+)/,m){if(m[1]~/"kernel/)print "The IP " $2 " cointain Kernel"}' RS='}' file
如果不需要区分大小写的匹配,请将tolower($0)
更改为$0
。
答案 1 :(得分:2)
$ gawk -v RS="ok: " -F " => " '$2 ~ /[Kk]ernel/ { printf "The IP %s contains Kernel\n", $1 }' file
The IP [10.9.22.122] contains Kernel
The IP [10.9.44.124] contains Kernel
答案 2 :(得分:1)
由于数据的格式非常正确,因此可以使用awk(gawk):
awk '
# get the ip address
/ok:/ {ip = gensub(/[^0-9\.]/, "", "g", $2) }
# check the stdout_lines block and print Kernal and ip saved from the above line
/"out.stdout_lines":/,/\]/ { if (/\<[Kk]ernel\>/) print ip}
' file
#10.9.22.122
#10.9.44.124
#10.9.22.28
#10.9.22.28
#10.9.22.33
注意:
out.stdout_lines
块下,同一IP可能会获得多个内核文件,这将多次产生相同IP。如果发生这种情况,只需将结果通过管道传递到| uniq
答案 3 :(得分:1)
这可能对您有用(GNU sed):
sed -n '/ok:/{s/[^0-9.]//g;:a;N;/]/!ba;/stdout_line.*kernel/P}' file
设置-n
以禁止隐式打印
如果一行包含字符串ok:
,这是一个IP地址,则除去整数和句点以外的所有行。
追加更多行,直到遇到包含]
的行,并且如果模式空间同时包含stdout_line
和kernel
,则打印第一行。
答案 4 :(得分:0)
快速解决方案: #!/ bin / bash
AWK='
/^ok:/ { gsub(/^.*\[/,""); gsub(/].*$/,""); ip=$0 }
/"Kernel-default/ { if (ip) print ip; ip="" }
'
awk "$AWK" INPUT
答案 5 :(得分:0)
请尝试以下方法,这对我相信的大多数awk
都适用。(我在条件匹配中添加了[kK]
,因此它应该寻找kernal
或{{ 1}}都是两个字符串(因为OP的先前示例使用大写字母Kernal
,而现在只有K
个小写字母,因此请在此处进行介绍)。
k
说明: 添加上述代码的说明。
awk '
/ok/{
gsub(/.*\[|\].*/,"")
ip=$0
}
/stdout_line/{
found=1
next
}
found && /[kK]ernel/{
print ip
}
/}/{
ip=found=""
}
' Input_file
输出如下。
awk ' ##Starting awk program here.
/ok/{ ##Checking condition if a line contains string ok in it then do following.
gsub(/.*\[|\].*/,"") ##Globally substituting everything till [ and everything till ] with NULL in current line.
ip=$0 ##Creating variable named ip whose values is current line value(edited one).
} ##Closing BLOCK for ok string check condition.
/stdout_line/{ ##Checking condition if a line contains stdout_line then do following.
found=1 ##Set value of variable named found to 1 here.
next ##next will skip all further statements from here.
} ##Closing BLOCK for stdout_line string check condition here.
found && /[kK]ernel/{ ##Checking condition if variable found is NOT NULL and string Kernel found in current line then do following.
print ip ##Printing value of variable ip here.
} ##Closing BLOCK for above condition now.
/}/{ ##Checking condition if a line contains } then do following.
ip=found="" ##Nullify ip and found variable here.
} ##Closing BLOCK for } checking condition.
' Input_file ##Mentioning Input_file name here.
答案 6 :(得分:0)
使用Perl
$ perl -0777 -ne 's!\[(\S+)\].+?\{(.+?)\}!$y=$1;$x=$2;$x=~/kernel/ ? print "$y\n":""!sge' brenn.log
10.9.22.122
10.9.44.124
10.9.22.28
10.9.22.33
$