消除shell脚本中的某些输出行

时间:2017-03-15 06:07:34

标签: sql oracle shell

SQL>COUNT(*)

34369

SQL> Disconnected from Oracle Database 10g Release 10.2.0.5.0 - 64bit Production

以上是我的查询输出,我需要在输出屏幕中显示计数值

1 个答案:

答案 0 :(得分:0)

sed -n '/COUNT(\*)/{n;n;p}' inputfile
     34369

grep + tail组合:

grep -A2 'COUNT' inputfile|tail -1
     34369