mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
16 lines
347 B
Bash
16 lines
347 B
Bash
#Settings
|
|
echo Please input the url of the item you wish to download.
|
|
read link
|
|
echo Do you want to display how many times you have downloaded the file?
|
|
echo True/False
|
|
read shownum
|
|
let num = 0
|
|
#The downloader
|
|
for (( ; ; ))
|
|
do
|
|
wget $link -O DELETEME
|
|
rm -rf DELETEME
|
|
let num ++ 1
|
|
while [ "$shownum" = "true" ]
|
|
echo $num
|
|
done |