Skip to content

Instantly share code, notes, and snippets.

@leshy
Created December 10, 2020 08:44
Show Gist options
  • Save leshy/5ef83862094b642f332b6e6723cd89bf to your computer and use it in GitHub Desktop.
Save leshy/5ef83862094b642f332b6e6723cd89bf to your computer and use it in GitHub Desktop.
#!/bin/bash
rm dl.list
for i in $(seq -f "%03g" 1 140)
do
echo "https://archive.org/compress/jwz-mixtape-${i}/formats=VBR%20MP3&file=/jwz-mixtape-${i}.zip" >> dl.list
done
wget -ci dl.list
for f in *.zip; do unzip -d "${f%*.zip}" "$f"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment