File tree 3 files changed +29
-0
lines changed
3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ # Author: Gilles Biagomba
3
+ # Program: mass_link_opener.sh
4
+ # Description: This script was written to open multiple links in a text file.\n
5
+ for links in $( cat links.txt) ; do
6
+ echo " ----------------------------------------------------------"
7
+ echo " You are downloading G-Drive Link:"
8
+ echo $links
9
+ echo " ----------------------------------------------------------"
10
+ firefox --new-tab $links
11
+ done
12
+
Original file line number Diff line number Diff line change
1
+ # Mass Link Opener
2
+ This is used to download files from google drive.
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ # Author: Gilles Biagomba
3
+ # Program: video_converter.sh
4
+ # Description: This script was written to convert webm files to mp4 files.\n
5
+ # links: https://youtu.be/NHGZCqRTWgw
6
+ # links: http://k4linux.com/2015/09/kali-linux-20-tutorials-convert-video.html
7
+ #
8
+ for vids in $( cat videos) ; do
9
+ echo " ----------------------------------------------------------"
10
+ echo " You are downloading G-Drive Link:"
11
+ echo $vids
12
+ echo " ----------------------------------------------------------"
13
+ avconv -i " $vids " -c:v libx264 -crf 20 -c:a aac -strict experimental " $vids .mp4"
14
+ done
15
+
You can’t perform that action at this time.
0 commit comments