Skip to content

Instantly share code, notes, and snippets.

@PabloC
Created October 11, 2008 21:16
Show Gist options
  • Save PabloC/16327 to your computer and use it in GitHub Desktop.
Save PabloC/16327 to your computer and use it in GitHub Desktop.
# Rails
alias ss="script/server"
alias sc="script/console"
alias sq="sqlite3 db/development.sqlite3"
alias sqldev="sqlite3 db/development.sqlite3"
alias svn_add_all="svn st --ignore-externals | grep ^? | sed 's/\?/svn add/' | sh"
alias svn_del_all="svn st --ignore-externals | grep ^? | sed 's/\!/svn del/' | sh"
alias cdp="cd $HOME/workspace/proyectos"
alias remove_svn="find . -type d -name .svn | xargs rm -rf"
alias l="ls -last -G"
export LSCOLORS="dxfxcxdxbxegedabagacad"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment