xonsh/tests/bin/wc.bat
Anthony Scopatz ef0d57aca9 wc command
2016-10-25 20:41:20 -04:00

15 lines
No EOL
229 B
Batchfile

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