Skip to content

Instantly share code, notes, and snippets.

Created September 9, 2015 16:21
Show Gist options
  • Save anonymous/4d16523bc72b5e62b7e1 to your computer and use it in GitHub Desktop.
Save anonymous/4d16523bc72b5e62b7e1 to your computer and use it in GitHub Desktop.
最新のNHKラジオニュースを再生する奴
#!/bin/bash
URL=$(curl http://www.nhk.or.jp/r-news/podcast/nhkradionews.xml | grep mp3 | head -n 1 | grep -oE http.*\.mp3)
wget ${URL}
FILENAME=$(basename ${URL})
mpg123 -C ${FILENAME}
rm ${FILENAME}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment