#!/bin/bash if [ -z "$1" ]; then echo "usage:" echo " $0 " echo "" echo " can be domain.tld or domaine.tld/music" exit fi base=$(echo $1 | sed -e "s/\/$//") urls=$(curl $base -o /tmp/bandcamp_out &> /dev/null ; cat /tmp/bandcamp_out | grep "href=\"/album" | cut -d"\"" -f2) base=$(echo $base | sed -e "s/\/music//") for url in $urls; do echo "Downloading $(echo $url | sed -e "s/^\/album\///g") album..." bandcamp-dl $base$url if [ $? -ne 0 ]; then echo "Are you sure that $base$url is a valid album url?" exit fi done