Created
April 2, 2015 19:14
-
-
Save tlinkner/7b599492ddfdf77d1f57 to your computer and use it in GitHub Desktop.
Bash function to runa simple local 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
server () { | |
python -m SimpleHTTPServer & | |
open http://0.0.0.0:8000 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment