Let's say there is a band on bandcamp you like and you would like to listne to their music even if zou are online. You may already know youtube-dl, but it's tedeous to download all the albums individually.
First let's define a function that returns all the links to every album of one band.
bandcamp_album_links () {
BAND=$(echo $1 | grep -Po 'https?://\w+\.bandcamp\.com')
for ALBUM in $(curl -s $BAND/music | grep -Po '/album/[\w-]+')
do