mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
updated some stuff
This commit is contained in:
parent
37f0cdde89
commit
b047acf584
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.sync
|
||||||
@ -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 (( ; ; ))
|
for (( ; ; ))
|
||||||
do
|
do
|
||||||
wget boof.eu.org/favicon.png
|
wget $link -O DELETEME
|
||||||
rm -rf favicon.png
|
rm -rf DELETEME
|
||||||
|
let num ++ 1
|
||||||
|
while [ "$shownum" = "true" ]
|
||||||
|
echo $num
|
||||||
done
|
done
|
||||||
Loading…
x
Reference in New Issue
Block a user