10 lines
311 B
Bash
10 lines
311 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
install_sublime_text() {
|
||
|
ehco "Installing sublime-text"
|
||
|
curl -fsSL https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
|
||
|
sudo add-apt-repository "deb https://download.sublimetext.com/ apt/stable/"
|
||
|
|
||
|
sudo apt-get update
|
||
|
sudo apt-get install sublime-text -y
|
||
|
}
|