Skip to content

Instantly share code, notes, and snippets.

@chrsr
Created February 19, 2013 04:13
Show Gist options
  • Save chrsr/4983058 to your computer and use it in GitHub Desktop.
Save chrsr/4983058 to your computer and use it in GitHub Desktop.
Simple python server
# Simple Python Server
# --------------------------------------------------
function server() {
local port="${1:-8000}"
open "http://localhost:${port}/"
python -m SimpleHTTPServer "$port"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment