Skip to content

Instantly share code, notes, and snippets.

@e30chris
Last active December 16, 2015 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save e30chris/5350009 to your computer and use it in GitHub Desktop.
Save e30chris/5350009 to your computer and use it in GitHub Desktop.
Linux aliases
# Aliases
alias la='ls -alhFG'
alias c='clear'
alias c.='cd ../'
alias c..='cd ../../'
alias c~='cd ~'
alias f='mdfind -name'
alias gh='history |grep'
alias gp='ps -aux |grep'
alias p='pwd'
alias pp='popd'
alias pu='pushd'
alias vi='vim'
alias tcpd='tcpdump -i eth0 -s65535 -X ip proto \\tcp and port'
alias mv="mv -v"
alias vg="vagrant"
alias tb="tugboat"
#jekyll stuff
alias rakgen='rake -v generate'
alias rakdep='rake -v deploy'
#git stuff
alias gs='git status'
alias ga='git add '
alias gb='git branch '
alias gc='git commit'
alias gd='git diff'
alias gk='gitk --all&'
alias gx='gitx --all'
# sublime text
alias subl='~/Applications/Sublime\ Text\ 2/sublime_text'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment