Created
December 15, 2017 22:42
-
-
Save wincentbalin/411d89dea8a0a017eb4068cf5a007b2e to your computer and use it in GitHub Desktop.
Run IDLE from a batch file
This file contains 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 | |
if "%1" == "" goto start_without_arguments | |
:start_with_arguments | |
start /B python -m idlelib.idle %1 %2 %3 %4 %5 %6 %7 %8 %9 | |
exit /B | |
:start_without_arguments | |
python -m idlelib.idle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment