Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

sublime text download ubuntu

wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - 
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt update && sudo apt install sublime-text
Comment

Sublime Text install Ubuntu/Debian

Sublime Text Install apt
The apt repository contains packages for both x86-64 and arm64.

Install the GPG key:

wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -

Ensure apt is set up to work with https sources:
sudo apt-get install apt-transport-https

Select the channel to use:
Stable:
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list

Dev:
echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list

Update apt sources and install Sublime Text:
sudo apt-get update
sudo apt-get install sublime-text
Comment

PREVIOUS NEXT
Code Example
Shell :: change ubuntu username 
Shell :: compress directory with tar and bzip2 
Shell :: Installing the virtualenv for you app 
Shell :: clone a git branch 
Shell :: install amplify cli on mac 
Shell :: crontab in linux 
Shell :: unix cp all files and folders at once 
Shell :: tag gdb follow fork 
Shell :: docker desktop kubernetes dashboard 
Shell :: bash split 
Shell :: poetry python 
Shell :: install bootstrap in angular 
Shell :: nohup output file 
Shell :: how to install winehq in ubuntu?? 
Shell :: install choclatey 
Shell :: kill process from pid 
Shell :: HOW TO SEARCH FOR A FILE IN COMMAND PROMPT 
Shell :: exec into docker container 
Shell :: how to run .sh script in mac 
Shell :: bash_aliases fedora 
Shell :: conda install tokenizers 
Shell :: use latex in github readme 
Shell :: how to install diskpart in ubuntu 
Shell :: get serial number cmd remotely 
Shell :: brew install xcode 
Shell :: extract tar.gz in linux 
Shell :: sed add word to end of line 
Shell :: find change permissions to subdirectories 
Shell :: silent install google chrome powershell 
Shell :: install unrar linux 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =