You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/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
The text was updated successfully, but these errors were encountered:
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
#!/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
The text was updated successfully, but these errors were encountered: