Last active
December 10, 2015 21:18
-
-
Save mateusreis/4494511 to your computer and use it in GitHub Desktop.
.bashrc 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
alias la='ls -lha' | |
alias ls='ls -hF' | |
alias ll='ls -lhF' | |
alias l='ls -lAhF' | |
alias cd..="cd .." | |
alias ssh="ssh -X" | |
alias gk='gitk --all 2> /dev/null &' | |
alias mv="mv -i" | |
alias cp="cp -i" | |
alias ls="ls -G" | |
alias cl="clear" | |
alias ..="cd .." | |
alias cd..="cd .." | |
alias ww='cd /var/www' | |
alias www='cd /var/www' | |
alias home='cd ~' | |
alias HOME='cd ~' | |
alias projetos='cd ~/Projetos' | |
alias proj='cd ~/Projetos' | |
alias download='cd ~/Downloads' | |
alias download='cd ~/Downloads' | |
alias dl='cd ~/Downloads' | |
alias desk='cd ~/Desktop' | |
alias desktop='cd ~/Desktop' | |
alias Desk='cd ~/Desktop' | |
alias Desktop='cd ~/Desktop' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment