Last active
August 16, 2019 16:12
quickly install sublime text on target linux machine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#oneliner(s) | |
#curl -L https://tinyurl.com/gotsublime | sh | |
#curl -L https://tinyurl.com/getsublime-sh | sh | |
#apt | |
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - | |
sudo apt-get install -y apt-transport-https | |
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list | |
sudo apt-get update | |
sudo apt-get install -y sublime-text | |
#run | |
/opt/sublime_text/sublime_text & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment