This file contains 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
alias ll='ls -lah' | |
alias virtualenv2='~/Library/Python/2.7/bin/virtualenv' | |
alias virtualenv3='~/Library/Python/3.4/bin/virtualenv' | |
alias pg-server='pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start' | |
alias pg-server-stop='pg_ctl -D /usr/local/var/postgres stop -s -m fast' | |
alias pg-server-status='pg_ctl -D /usr/local/var/postgres status' |
This file contains 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
@ECHO OFF | |
IF NOT "%~f0" == "~f0" GOTO :WinNT | |
@"%~dp0ruby.exe" "%~dp0rails" %1 %2 %3 %4 %5 %6 %7 %8 %9 | |
GOTO :EOF | |
:WinNT | |
@"%~dp0ruby.exe" "%~dpn0" %* |