Skip to content

Instantly share code, notes, and snippets.

@localhost
Created February 23, 2009 16:08
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 localhost/69020 to your computer and use it in GitHub Desktop.
Save localhost/69020 to your computer and use it in GitHub Desktop.
# type "webshare" to share the current directory, "webshare [PORT] /foo/bar"
# or "webshare -C /foo/bar" to share a different directory.
# use CTRL+C or /shutdown as URL to stop the server.
alias webshare='ruby -r webrick -e "include WEBrick;s=HTTPServer.new(:Port=>ARGV[0]||8000,:DocumentRoot=>ARGV[1]||Dir::pwd);k=lambda{s.shutdown};s.mount_proc(\"/shutdown\",k);trap(:INT,k);s.start"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment