Last active
December 10, 2020 08:54
-
-
Save lakgani/9c9d553a87df525aad9afb5b8c704306 to your computer and use it in GitHub Desktop.
Init script setup new Ubuntu machine with necessary tools and configuration
This file contains 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/bash | |
sudo apt update | |
sudo apt install vim git htop \ | |
make g++ zsh tmux | |
git config --global user.name "Ganesh Pendyala" | |
git config --global credential.helper store | |
mkdir -p ~/$USER/Programming | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment