我通常与大型XML文件的方式,一般通过做字数grep
确认一定的统计数据。
例如,我要确保我有至少五个实例widget
通过一个单一的XML文件:
cat test.xml | grep -ic widget
此外,我只是想能够登录该行widget
出现,即:
cat test.xml | grep -i widget > ~/log.txt
不过,我真正需要的关键信息的XML代码块widget
出现在示例文件可能看起来像:
<test> blah blah
blah blah blah
widget
blah blah blah
</test>
<formula>
blah
<details>
widget
</details>
</formula>
我试图从示例文本下面的输出上面,即:
<test>widget</test>
<formula>widget</formula>
实际上,我试图让与适用于XML文本/被周围的任意字符串代码块标记标签的最高水平单行widget
。
有没有人有通过命令行的一个班轮实施这有什么建议?
谢谢。
同时使用非优雅的方式sed
和awk
:
sed -ne '/[Ww][Ii][Dd][Gg][Ee][Tt]/,/^<\// {//p}' file.txt | awk 'NR%2==1 { sub(/^[ \t]+/, ""); search = $0 } NR%2==0 { end = $0; sub(/^<\//, "<"); printf "%s%s%s\n", $0, search, end }'
结果:
<test>widget</test>
<formula>widget</formula>
说明:
## The sed pipe:
sed -ne '/[Ww][Ii][Dd][Gg][Ee][Tt]/,/^<\// {//p}'
## This finds the widget pattern, ignoring case, then finds the last,
## highest level markup tag (these must match the start of the line)
## Ultimately, this prints two lines for each pattern match
## Now the awk pipe:
NR%2==1 { sub(/^[ \t]+/, ""); search = $0 }
## This takes the first line (the widget pattern) and removes leading
## whitespace, saving the pattern in 'search'
NR%2==0 { end = $0; sub(/^<\//, "<"); printf "%s%s%s\n", $0, search, end }
## This finds the next line (which is even), and stores the markup tag in 'end'
## We then remove the slash from this tag and print it, the widget pattern, and
## the saved markup tag
HTH
sed -nr '/^(<[^>]*>).*/{s//\1/;h};/widget/{g;p}' test.xml
版画
<test>
<formula>
如果打印你想要的确切格式桑达只有一个班轮会比较复杂。
编辑:
你可以使用/widget/I
不是/widget/
为不区分大小写的匹配widget
在GNU sed的,否则使用[Ww]
对于每个字母作为对方的回答。
这可能会为你(GUN SED)工作:
sed '/^<[^/]/!d;:a;/^<\([^>]*>\).*<\/\1/!{$!N;ba};/^<\([^>]*>\).*\(widget\).*<\/\1/s//<\1\2<\/\1/p;d' file
需要gawk
有在正则表达式RS
BEGIN {
# make a stream of words
RS="(\n| )"
}
# match </tag>
/<\// {
s--
next
}
# match <tag>
/</ {
if (!s) {
tag=substr($0, 2)
}
s++
}
$0=="widget" {
print "<" tag $0 "</" tag
}