Created
November 11, 2010 15:13
-
-
Save Mikulas/672618 to your computer and use it in GitHub Desktop.
Mac shell script for opening web projects
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
#!/bin/bash | |
x=`pwd` | |
x=$(echo $x|sed 's/\/Volumes\/Data\/Web/localhost/g') | |
open -a Google\ Chrome http://$x/www/ | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment