Created
March 4, 2011 00:03
-
-
Save v9n/853883 to your computer and use it in GitHub Desktop.
Comic Download
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| #http://60s.com.vn/image/truyentranh/comic/1zdsssdfxfdyhxjtgiu87xaxz65tx0dfgtthyux761xx/daubeptrudanh/tap9/img/Untitled-24.jpg | |
| hashKey='1zdsssdfxfdyhxjtgiu87xaxz65tx0dfgtthyux761xx' | |
| comicName='daubeptrudanh' | |
| episode=1 | |
| maxEpisode=37 | |
| startPage=1 | |
| endPage=211 | |
| mkdir "$comicName" | |
| for i in $(seq $episode 1 $maxEpisode) | |
| do | |
| mkdir "$comicName/tap$i" | |
| echo "Created folder tap$i " | |
| cd "$comicName/tap$i" | |
| for page in $(seq $startPage 1 $endPage) | |
| do | |
| wget "http://60s.com.vn/image/truyentranh/comic/$hashKey/$comicName/tap$i/img/Untitled-$page.jpg" | |
| done | |
| cd ../.. | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment