-
Notifications
You must be signed in to change notification settings - Fork 18
/
install-sublime-text-v2.sh
executable file
·30 lines (21 loc) · 1.28 KB
/
install-sublime-text-v2.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
28
29
#!/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.
#
##################################################################################################################
#https://download.sublimetext.com/sublime_text_3_build_3176_x64.tar.bz2
rm /tmp/sublime-text_build-3176_amd64.deb
wget https://download.sublimetext.com/sublime-text_build-3176_amd64.deb -O /tmp/sublime-text_build-3176_amd64.deb
sudo dpkg -i /tmp/sublime-text_build-3176_amd64.deb
rm /tmp/sublime-text_build-3176_amd64.deb
##################################################################################################################
echo "################################################################"
echo "################ sublime text installed ################"
echo "################################################################"