Skip to content

Instantly share code, notes, and snippets.

@benkahle
Created September 5, 2014 03:47
Show Gist options
  • Save benkahle/2acca734f214610252ad to your computer and use it in GitHub Desktop.
Save benkahle/2acca734f214610252ad to your computer and use it in GitHub Desktop.
Common Bash Aliases
alias rp='ps -ef | grep'
alias js='node -i'
alias mat='matlab'
alias open='xdg-open'
alias ll='ls -lh'
alias la='ls -A'
alias gs='git status'
alias gsu='git status -uno'
#alias gp='git push'
alias gu='git pull'
compdef _git gu=git-pull
#alias ga='git add'
alias gfa='git fetch --all'
compdef _git gfa=git-fetch
alias ge='git checkout'
compdef _git ge=git-checkout
alias gam='git commit -am'
compdef _git gam=git-commit
alias qfind='sudo find / -iname'
alias acs='apt-cache search'
alias ad='sudo apt-get update'
alias ag='sudo apt-get upgrade'
alias ai='sudo apt-get install'
alias ar='sudo apt-get remove'
alias zshrc='vim ~/.zshrc'
alias aliases='cat ~/bash_aliases'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment