我尝试了一些sed和s / regex /../的组合,但我没有成功。所以这是我的问题:我有一个看起来像这样的文本文件(PCLint输出)
--- Module A
Info: indented message 1
Note: indented message 2
Warning: indented message 3
--- Module B
--- Module C
Info: indented message 1
--- Module D
我想将结果更改为以下内容(teamcity服务消息):
[Start Module="Module A"]
[Message Content="Info: indented message 1"]
[Message Content="Note: indented message 2"]
[Message Content="Warning: indented message 3"]
[End Module="Module A"]
[Start Module="Module B"]
[End Module="Module B"]
[Start Module="Module C"]
[Message Content="Info: indented message 1"]
[End Module="Module C"]
[Start Module="Module D"]
[End Module="Module D"]
所以我知道文本将以某种方式在每个“---”之间的块中拆分。然后我应该用正则表达式的力量包装/替换文本块。但我没有真正的线索如何有效地做到这一点。理想情况下,我喜欢使用busybox中提供的工具,例如sed,awk等保持工具“简单”(需要在Win64上工作)。
正则表达式我可以很好地工作,但我无法确定这个范围。我有什么提示吗?
答案 0 :(得分:4)
Awk可以做到这一点。您需要一个匹配/^---/
的子句,它设置一个变量来记录您所在的模块,并输出前一个模块的结束行(如果有的话)和下一个模块的起始行一。然后是第二个输出消息行的子句。
$ cat input | awk '/^---/ { IFS=" "; oldM=M; M=$3; if (oldM) { print "[End Module=\"Module " oldM "\"]"; }; print "[Begin Module=\"Module " M "\"]"; } /^ (.*)$/ { gsub(/^ +/, "", $0); print " [Message Content=\"" $0 "\"]"; } END { print "[End Module=\"Module " M "\"]"; }'
[Begin Module="Module A"]
[Message Content="Info: indented message 1"]
[Message Content="Note: indented message 2"]
[Message Content="Warning: indented message 3"]
[End Module="Module A"]
[Begin Module="Module B"]
[End Module="Module B"]
[Begin Module="Module C"]
[Message Content="Info: indented message 1"]
[End Module="Module C"]
[Begin Module="Module D"]
[End Module="Module D"]
答案 1 :(得分:1)
为此目的,出现了一个sed
脚本:
translate.sed:
:a
/Module/ {
x
s/.*Module (.*)/[End Module="\1"]/p
x
h
s/(--- )(.*)/[Start Module="\2"]/p
:b
n
/Module/! {
s/(\s*)(.*)/\1[Message Content="\2"]/p
bb
}
/Module/ {
$!ba
h
s/(--- )(.*)/[Start Module="\2"]/p
x
s/.*Module (.*)/[End Module="\1"]/p
}
}
执行它:
sed -nrf translate.sed file.txt
输出:
[Start Module="Module A"]
[Message Content="Info: indented message 1"]
[Message Content="Note: indented message 2"]
[Message Content="Warning: indented message 3"]
[End Module="A"]
[Start Module="Module B"]
[End Module="B"]
[Start Module="Module C"]
[Message Content="Info: indented message 1"]
[End Module="C"]
[Start Module="Module D"]
以下是相同版本的脚本,并添加了解释:
translate.sed
# Define lable 'a' to iterate over modules
:a
# If the line module is matched ...
/Module/ {
# Swap contents of hold and pattern buffer (current line)
x
# If the pattern buffer (former hold buffer)
# contains something it is a module starting line.
# Create and end tag out of it.
s/.*Module (.*)/[End Module="\1"]/p
# Get the current line back from hold buffer
x
h
# Create a start module tag
s/(--- )(.*)/[Start Module="\2"]/p
# Create a label to iterate over messages
:b
# Get next line from input into pattern buffer
# (Overwrite the pattern buffer)
n
# If it is not a module starting line ...
/Module/! {
# ... wrap it into the Message Content tag
s/(\s*)(.*)/\1[Message Content="\2"]/p
# and go on with the next line (step back to b)
bb
}
/Module/ {
# if it is not the last line
# go on with the next module (step back to a)
$!ba
# on the last line ...
# backup the current line in the hold buffer
h
# create start tag
s/(--- )(.*)/[Start Module="\2"]/p
# swap hold and pattern buffer
x
# create the end tag
s/.*Module (.*)/[End Module="\1"]/p
}
}
顺便说一句,它当然也可以是单行:D
sed -rn ':a;/Module/{;x;s/.*Module(.*)/[EndModule="\1"]/p;x;h;s/(---)(.*)/[StartModule="\2"]/p;:b;n;/Module/!{;s/(\s*)(.*)/\1[MessageContent="\2"]/p;;bb;};/Module/{;$!ba;h;s/(---)(.*)/[StartModule="\2"]/p;x;s/.*Module(.*)/[EndModule="\1"]/p;};};' file.txt
答案 2 :(得分:0)
sed '# prepare loading
s/^--- Module \(.*\)/[Start Module="\1"]\
[End Module="\1"]/
s/^\([[:space:]]\{4\}\)\(.*\)/\1[Message Content="\2"]/
H;$!d
# permutation
x;s/\n/²/g;s/$/²/
:cycle
s/²\(\[End[^²]*\)²\([[:space:]][^²]*\)²/²\2²\1/g
t cycle
s/.//;s/.$//;s/²/\
/g
' YourFile
使用recursif修改
d
输出)[^\n]
Normaly,关于GNU sed替换新行没有必要,因此²
直接在代码中更改\n
并删除替换部分