我有一个 xml 文件,我喜欢grep
单词“user=”之后的任何内容。比方说,xml文件的内容是这样的,
id="2ZG66N" impl="BatchJob" type="BATCH" user="t2036sl"
id="43EGTT" impl="BatchJob" type="BATCH" user="T8478AC"
我想要的输出:
t2036sl
T8478AC
我的代码
grep -Eo 'user="([^[:xdigit:]]+)' file.xml
这给出了错误的输出。
你需要PRCE来做到这一点: