Skip to content

Instantly share code, notes, and snippets.

@mmizutani
Forked from JeffreyWay/gist:1525217
Created January 19, 2014 11:52
Show Gist options
  • Save mmizutani/8503811 to your computer and use it in GitHub Desktop.
Save mmizutani/8503811 to your computer and use it in GitHub Desktop.
alias server='open http://localhost:8000 && python -m SimpleHTTPServer'
@mmizutani
Copy link
Author

function server() {
local port="${1:-8000}"
gnome-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