Add named_python.bat.

master
voussoir 2021-01-16 15:00:17 -08:00
parent a065d222ff
commit 196edb24ac
No known key found for this signature in database
GPG Key ID: 5F7554F8C26DACCB
1 changed files with 12 additions and 0 deletions

12
named_python.bat Normal file
View File

@ -0,0 +1,12 @@
@echo off
rem Because Python is interpreted, when you look at the task manager process
rem list you'll see that every running python instance has the same name,
rem python.exe. This scripts helps you name the executables so they stand out.
rem For the time being this script doesn't automatically call your new exe,
rem you have to write a second command to actually run it. Batch doesn't have a
rem good way to pass "all arguments after %1" to the new program.
set real=C:\Python\__latest\python.exe
set named=C:\Python\__latest\python-%1.exe
if not exist %named% (mklink /h %named% %real%) else (echo %named%)