Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この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%'