Skip to content

Commit e6ea61a

Browse files
committed
More scripts
1 parent 6d2f896 commit e6ea61a

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

Mass_Link_Opener/Mass_Link_Opener.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+

Mass_Link_Opener/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Mass Link Opener
2+
This is used to download files from google drive.

Mass_Link_Opener/video_converter.sh

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+

0 commit comments

Comments
 (0)