需要从文件中提取字符串

时间:2014-07-31 10:00:27

标签: unix

<token text="everyone"/></string></equals></in></filter></or></and><in><scope text="/hardwiring.excludequery"/><token text="taloglsppublishedº00051974"/></in></andnot>) MANAGED(0, 0) STATS(0.0213, 0.0006, 1))]

假设我有这种类型的多行文件,我只需要从多行中提取 STATS(0.0213,0.0006,1)部分。

请建议一种方法,并解释使用的命令。??

1 个答案:

答案 0 :(得分:0)

您可以使用grep

grep -Eo 'STATS\([^)]*\)' yourfile

(OR)

grep -o 'STATS([^)]*)' yourfile