uosiu

Add Eminence podcast to MPD

Feb 11th, 2012
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.18 KB | None | 0 0
  1. curl http://eminence.podbean.com/feed/ |
  2. grep 'url=' |
  3. awk '
  4.  match($0,/http[^"]*/) {
  5.    print substr($0,RSTART,RLENGTH)
  6.  }
  7. ' |
  8. while read line; do
  9.   mpc add $line;
  10. done
Advertisement
Add Comment
Please, Sign In to add comment