xonsh/tests/bin/cat.bat

16 lines
232 B
Batchfile
Raw Normal View History

2016-10-25 20:27:27 -04:00
@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