-
Notifications
You must be signed in to change notification settings - Fork 18
/
install-atom-v1.sh
executable file
·34 lines (23 loc) · 1.28 KB
/
install-atom-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
28
29
30
31
32
#!/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.
#
##################################################################################################################
# will not install to error....????
rm /tmp/atom-amd64.deb
wget https://atom.io/download/deb -O /tmp/atom-amd64.deb
#curl -o /tmp/code_1.5.3-1474533365_amd64.deb https://code.visualstudio.com/docs/?dv=linux64_deb
sudo dpkg -i /tmp/atom-amd64.deb
#gdebi /tmp/code_1.5.3-1474533365_amd64.deb
rm /tmp/atom-amd64.deb
##################################################################################################################
echo "################################################################"
echo "################### T H E E N D ######################"
echo "################################################################"