Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions script.sh
Original file line number Diff line number Diff line change
@@ -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