-
Notifications
You must be signed in to change notification settings - Fork 25
/
install-google-chrome-v1.sh
executable file
·27 lines (21 loc) · 1.24 KB
/
install-google-chrome-v1.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
# donwloading and installing google chrome for netflix e.g.
rm /tmp/google-chrome-stable_current_amd64.deb
echo "downloading google chrome latest stable edition"
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/google-chrome-stable_current_amd64.deb
sudo dpkg -i /tmp/google-chrome-stable_current_amd64.deb
rm /tmp/google-chrome-stable_current_amd64.deb
echo "################################################################"
echo "################### google chrome installed #################"
echo "################################################################"