Created
February 23, 2009 16:08
-
-
Save localhost/69020 to your computer and use it in GitHub Desktop.
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
# 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