Added redhat scripts

This commit is contained in:
2021-11-24 09:41:28 +01:00
parent 24c1d834fd
commit a7ebc3ba40
26 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/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
}