Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Requesting a downloader. I wrote a script for it. #907

Closed
Subash-Chandra opened this issue Jul 24, 2020 · 0 comments
Closed

Requesting a downloader. I wrote a script for it. #907

Subash-Chandra opened this issue Jul 24, 2020 · 0 comments

Comments

@Subash-Chandra
Copy link

Subash-Chandra commented Jul 24, 2020

#!/bin/bash
read -er -p "Insert the invariable part of the url:" url
read -p "How many pictures in the album" max
read -er -p "Insert the directory where you want the images to be downloaded in:" dire
read -p "Insert the prefix that every image will have before the number:" prefix
cont=0
while [ $cont -lt $max ]; do
let cont=cont+1
cd $dire
wget $url$cont.jpg -O $prefix$cont.jpg
done

@Subash-Chandra Subash-Chandra changed the title Requesting a downloader for Hentai-Cosplays.com. I wrote a script for it. Requesting a downloader. I wrote a script for it. Apr 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants