mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
16 lines
232 B
Batchfile
16 lines
232 B
Batchfile
![]() |
@echo on
|
||
|
call :s_which py.exe
|
||
|
rem note that %~dp0 is dir of this batch script
|
||
|
if not "%_path%" == "" (
|
||
|
py -3 %~dp0cat %*
|
||
|
) else (
|
||
|
python %~dp0cat %*
|
||
|
)
|
||
|
|
||
|
goto :eof
|
||
|
|
||
|
:s_which
|
||
|
setlocal
|
||
|
endlocal & set _path=%~$PATH:1
|
||
|
goto :eof
|