Skip to content

Instantly share code, notes, and snippets.

@robstarbuck
Last active August 18, 2016 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robstarbuck/69903288e9c9ba33d36b to your computer and use it in GitHub Desktop.
Save robstarbuck/69903288e9c9ba33d36b to your computer and use it in GitHub Desktop.
Start a HTTP server and open in chrome
#!/bin/bash
${1:=8000}
python -m SimpleHTTPServer $1 & open -a "Google Chrome" http://localhost:$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment