Created
August 25, 2012 10:53
-
-
Save ronbeltran/3463631 to your computer and use it in GitHub Desktop.
Bashrc Custom Alias
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
# custom alias | |
alias free="free -m" | |
alias cls="clear" | |
alias l="ls -lrt" | |
alias update="sudo apt-get update" | |
alias install="sudo apt-get install" | |
alias upgrade="sudo apt-get dist-upgrade" | |
alias remove="sudo apt-get remove" | |
alias reboot="sudo reboot" | |
alias shutdown="sudo shutdown -h now" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment