Created
June 24, 2014 16:31
-
-
Save adrienjoly/70510bfbd4e0ce302566 to your computer and use it in GitHub Desktop.
Simple HTTP server
This file contains hidden or 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
| # set mac osx's terminal title | |
| echo -n -e "\033]0;http server\007" | |
| # make sure to switch to the script's dir (e.g. when launched via mac osx's finder) | |
| cd `dirname "$0"` | |
| python -m SimpleHTTPServer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment