取回最后一个.fm来自bash的歌曲
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了取回最后一个.fm来自bash的歌曲相关的知识,希望对你有一定的参考价值。
This script fetches the current playing song of user XY
curl -s http://www.last.fm/user/$LASTFMUSER | grep -A 1 subjectCell | sed -e 's#<[^>]*>##g' | head -n2 | tail -n1 | sed 's/^[[:space:]]*//g'
以上是关于取回最后一个.fm来自bash的歌曲的主要内容,如果未能解决你的问题,请参考以下文章