我试图使用grep,awk或任何linux命令提取文件信息
拥有:文件
Getting Table 'TABLEA'
GET TABLE TABLEA
(value(1)
)
/
Getting Table 'TABLEB'
GET TABLE TABLEB
(value(1)
,other value(2)
)
/
WANT
包含以下内容的输出
Getting Table 'TABLEA'
GET TABLE TABLEA
(value(1)
)
/
答案 0 :(得分:0)
这样可行:
grep -A 4 "^Getting Table 'TABLEA'"
它将在行的开头获取模式,打印它,然后继续打印4行(-A 4
选项)