From b047acf584be1bda36b0a29b7b51f3d1a71ba319 Mon Sep 17 00:00:00 2001 From: Boof <97455552+hexahigh@users.noreply.github.com> Date: Mon, 2 Jan 2023 13:18:42 +0100 Subject: [PATCH] updated some stuff --- .gitignore | 1 + tools/bandwidthuser.sh | 15 +++++++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3dc4669 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.sync \ No newline at end of file diff --git a/tools/bandwidthuser.sh b/tools/bandwidthuser.sh index ef13569..7bef1a2 100644 --- a/tools/bandwidthuser.sh +++ b/tools/bandwidthuser.sh @@ -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 \ No newline at end of file