updated some stuff

This commit is contained in:
Boof 2023-01-02 13:18:42 +01:00 committed by GitHub
parent 37f0cdde89
commit b047acf584
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.sync

View File

@ -1,5 +1,16 @@
#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 boof.eu.org/favicon.png
rm -rf favicon.png
wget $link -O DELETEME
rm -rf DELETEME
let num ++ 1
while [ "$shownum" = "true" ]
echo $num
done