1

我需要过滤这个 mpc 输出:

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

对此:

5:03

使用 sed。

4

2 回答 2

2

尝试这样做:

mpc (...) | 
sed -nr '/^\[playing/s@.* ([0-9]+:[0-9]+)/.*@\1@p'
于 2013-02-16T21:26:00.113 回答
1

尝试这个:

sed -r '/playing/!d; s%.*([0-9]+:[0-9]+)/.*%\1%'
于 2013-02-16T21:26:50.947 回答