Last active
December 14, 2015 09:29
-
-
Save fredericoramos/5064818 to your computer and use it in GitHub Desktop.
Linux - using alias to make easy the work ---- atalhos para comandos
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
# | |
################################### | |
# | |
# Alias para facilitar o trabalho | |
# Alias to make easy the work | |
# alias.txt file content | |
# | |
################################## | |
alias l='ls -lhs --color' | |
alias df='df -h' | |
alias shutdown='sudo shutdown -h now' | |
alias reboot='sudo shutdown -r now' | |
sudo su | |
cat /etc/bash.bashrc alias.txt > /etc/bash.bashrc | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment