This is a trigger for wget with progress-bar only output.
@@ -86,6 +86,10 @@ help() {
exit 1
}
+# Define file download function
+download_file() {
+ wget $1 -q --show-progress --progress=bar:force
+}
# Defining password-gen function
gen_pass() {
@@ -71,6 +71,10 @@ help() {