Tip Cache
Your source for tech tips
Tip: Run a simple file-sharing web server
Posted By: apeiro
How to quickly share files via HTTP using only Python
This command will share the files in your current directory over HTTP. Use ^C to stop the server.
python -c "import SimpleHTTPServer;SimpleHTTPServer.test()"
