Skip to content

Instantly share code, notes, and snippets.

@yshalsager
Created July 2, 2018 08:54
Show Gist options
  • Save yshalsager/8eb71153af5a1e8d148d04699bfa5386 to your computer and use it in GitHub Desktop.
Save yshalsager/8eb71153af5a1e8d148d04699bfa5386 to your computer and use it in GitHub Desktop.
mangaforall.com Downloader!
# Usage: ./mangaforall.sh 'mangaurl'
curl -s $1 | grep "zip_url" | tr , '\n' | grep '.zip' | cut -d '"' -f4 | sed 's.\\/./.g' >> links.txt
echo Downloading:
for list in links.txt; do wget -i $list ;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment