Skip to content

Instantly share code, notes, and snippets.

@creativeaura
Created July 12, 2012 14:33
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 creativeaura/3098479 to your computer and use it in GitHub Desktop.
Save creativeaura/3098479 to your computer and use it in GitHub Desktop.
Run Python server from any folder on windows
@ECHO OFF
CLS
IF [%1]==[] (
C:\Python27\python.exe -m SimpleHTTPServer
) else (
C:\Python27\python.exe -m SimpleHTTPServer %1
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment