xonsh/tests/bin/pwd.bat
2016-09-25 20:43:27 -04:00

15 lines
No EOL
231 B
Batchfile

@echo on
call :s_which py.exe
rem note that %~dp0 is dir of this batch script
if not "%_path%" == "" (
py -3 %~dp0pwd %*
) else (
python %~dp0pwd %*
)
goto :eof
:s_which
setlocal
endlocal & set _path=%~$PATH:1
goto :eof