使用sed进行输出过滤



我需要过滤这个mpc输出:

Burzum - Budstikken
[playing] #6/7   5:03/10:10 (49%)
volume: 60%   repeat: off   random: on    single: off   consume: offere

对此:

5:03

使用sed。

尝试这样做:

mpc (...) | 
sed -nr '/^[playing/s@.* ([0-9]+:[0-9]+)/.*@1@p'

试试这个:

sed -r '/playing/!d; s%.*([0-9]+:[0-9]+)/.*%1%'

相关内容

  • 没有找到相关文章

最新更新