/ Published in: Bash
Expand |
Embed | Plain Text
#! /bin/bash function usage { echo 'Download stream specified by Winamp playlist URL.' echo '' echo 'usage: getm3u.sh urls .. ' echo '' exit } if [ $# -eq 0 ] ; then usage fi for url in $* do wget "`curl -s $url | tail -n 1`" done
You need to login to post a comment.
