Skip to content

Instantly share code, notes, and snippets.

@jaoxford
Created June 19, 2026 21:31
Show Gist options
  • Select an option

  • Save jaoxford/014115da4cdc663fd6c46afdef8e5f30 to your computer and use it in GitHub Desktop.

Select an option

Save jaoxford/014115da4cdc663fd6c46afdef8e5f30 to your computer and use it in GitHub Desktop.
Download all flac tunes from khinsider
BASE="https://downloads.khinsider.com"
ALBUM="/game-soundtracks/album/beatmania-iidx-18-resort-anthem-original-soundtrack-2011"
curl -s "$BASE$ALBUM" \
| grep -oP 'href="/game-soundtracks/album/[^"]+\.mp3"' \
| sed 's/href="//;s/"//' \
| sort -u \
| while read -r songpath; do
flac=$(curl -s "$BASE$songpath" | grep -oP 'https://[^"]+\.flac' | head -1)
[ -n "$flac" ] && wget -q --show-progress -nc "$flac"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment