Hacker News new | ask | show | jobs
Web server in 50 lines of bash (github.com)
2 points by esad 4979 days ago
1 comments

Or in 3 lines:

    #!/bin/sh
    cd $1
    python -m SimpleHTTPServer 8000