This repository has been archived on 2021-11-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
sh_multi_install/common/redhat/apps/sublime_text.sh
2021-11-24 09:41:28 +01:00

11 lines
347 B
Bash

#!/bin/bash
install_sublime_text() {
echo "Installing sublime-text"
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo dnf-key add -
sudo dnf install dnf-transport-https -y
sudo add-dnf-repository "deb https://download.sublimetext.com/ dnf/stable/"
sudo dnf update
sudo dnf install sublime-text -y
}