Last active
October 3, 2020 10:04
-
-
Save renlstr-dev/301305af4e0887726ae08666484e7650 to your computer and use it in GitHub Desktop.
rendg-dev-setup.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Author : RenDG | |
# Script follows here: | |
#update bash | |
sudo apt-get autoclean | |
sudo apt-get install --only-upgrade bash | |
sudo apt-get upgrade | |
# install dev tools | |
sudo apt-get install git-extras | |
#install github cli | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key C99B11DEB97541F0 | |
sudo apt-add-repository https://cli.github.com/packages | |
sudo apt update | |
sudo apt install gh | |
#install cowsay | |
sudo apt-get install cowsay | |
#install fortune | |
sudo apt-get install fortune |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment