Skip to content

Instantly share code, notes, and snippets.

@zhuzhuor
Created November 1, 2013 20:05
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zhuzhuor/7271159 to your computer and use it in GitHub Desktop.
Save zhuzhuor/7271159 to your computer and use it in GitHub Desktop.
Batch file to run a Python script in the same folder
@ECHO off
set "script_path=%~dp0"
set "script_path=%script_path%my_script.py"
python %script_path% %*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment