From 6398a190ac745639c50c8a42de5d30db6a1dd899 Mon Sep 17 00:00:00 2001 From: JahanRajKar Singh Date: Fri, 29 Dec 2017 23:41:43 -0500 Subject: [PATCH] Add files via upload --- script.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 script.sh diff --git a/script.sh b/script.sh new file mode 100644 index 0000000..df16392 --- /dev/null +++ b/script.sh @@ -0,0 +1,10 @@ +#!/bin/bash +script=("python youtube.py 2 youtubeLinks.txt 50 184") #Make changes you wish to do here. +counter=1 +echo $script +while [ $counter -le 10 ] # replace 10 with number of times you want to run the script +do + $script + ((counter++)) +done +echo "Done" # you will see Done when script has run 10 times