Skip to content

Instantly share code, notes, and snippets.

@wincentbalin
Created December 15, 2017 22:42
Show Gist options
  • Save wincentbalin/411d89dea8a0a017eb4068cf5a007b2e to your computer and use it in GitHub Desktop.
Save wincentbalin/411d89dea8a0a017eb4068cf5a007b2e to your computer and use it in GitHub Desktop.
Run IDLE from a batch file
@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