Created
June 26, 2018 08:26
-
-
Save srkiNZ84/144db084bd7965b520a036973cdab5fb to your computer and use it in GitHub Desktop.
My .bash_aliases file
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
# Most of these from: http://www.cyberciti.biz/tips/bash-aliases-mac-centos-linux-unix.html | |
alias ll='ls -alh' | |
# Directory Navigation | |
alias cd..='cd ..' | |
alias ..='cd ..' | |
alias ...='cd ../../' | |
alias ....='cd ../../../' | |
alias .....='cd ../../../../' | |
alias .4='cd ../../../../' | |
alias .5='cd ../../../../..' | |
alias diff='colordiff -u --ignore-all-space' | |
alias h='history' | |
alias ports='netstat -tulanp' | |
alias wget='wget -c' | |
alias df='df -H' | |
alias du='du -ch' | |
alias l='ls -CF' | |
alias f='pushd `dirname $_`' | |
alias g='git' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment