【求助】sed 匹配行数怎么统计

【求助】sed 匹配行数怎么统计

sed -n 会把匹配的行号返回,怎么返回一共有几行呢?      
复制内容到剪贴板
代码:
[color=blue]-(user@host:tty)-(tmp)-
[419 0] %[/color] cat -n file
     1  key1
     2      line1
     3  
     4  key2
     5      line2
     6      line3
     7      line33
     8      line44
     9  
    10  key3
    11      line4
    12      line5
    13      line6
[color=blue]-(user@host:tty)-(tmp)-
[419 0] %[/color] sed -n '$=' file
13
[color=blue]-(user@host:tty)-(tmp)-
[419 0] %[/color]