Created
November 1, 2013 20:05
-
-
Save zhuzhuor/7271159 to your computer and use it in GitHub Desktop.
Batch file to run a Python script in the same folder
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
@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