Skip to content

Instantly share code, notes, and snippets.

@ryanirelan
Created February 6, 2009 21:03
Show Gist options
  • Save ryanirelan/59614 to your computer and use it in GitHub Desktop.
Save ryanirelan/59614 to your computer and use it in GitHub Desktop.
# RYAN'S BASH ALIASES
alias home='cd ~'
alias c='clear'
alias ..='cd ..'
alias pg='ping google.com'
alias proj='cd ~/projects'
alias airbag='cd ~/projects/airbag'
alias l='ls -lah'
alias incoming='cd ~/Desktop/Incoming'
alias outgoing='cd ~/Desktop/Outgoing'
alias pending='cd ~/Desktop/Pending'
# svn specific
alias sup='svn up'
alias scom='svn commit'
alias svnaddall='svn status | grep "^\?" | awk "{print \$2}" | xargs svn add'
# remove .svn files from directory
alias removesvn='find ./ -name ".svn" | xargs rm -Rf'
# textmate i love thee!
alias m='mate'
# other useful stuff
# change default file format for screenshots
alias sff='defaults write com.apple.screencapture type' # and the append the format jpg bmp pdf png etc
# ssh into my slice
alias slice='ssh xxxx@xxxxxx'
#ssh into my railsmachine server (eescreencasts.com)
alias railsmachine='ssh xxxxx@xxxxx'
#ssh into airbag dev server
alias devmini='ssh xxxx@xxxxx'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment