Skip to content

Instantly share code, notes, and snippets.

@CodyKochmann
Created February 1, 2020 14:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodyKochmann/3dd6c169da84020ca0a94f350a352315 to your computer and use it in GitHub Desktop.
Save CodyKochmann/3dd6c169da84020ca0a94f350a352315 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Install sublime text on debian/ubuntu/kali linux
# by: Cody Kochmann
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
sudo apt 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 update
sudo apt install -y sublime-text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment