mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
9 lines
126 B
Batchfile
9 lines
126 B
Batchfile
@echo off
|
|
|
|
echo %*|>nul findstr /rx \-.*
|
|
if ERRORLEVEL 1 (
|
|
"%~dp0\jc.bat" "%cd%" %*
|
|
) else (
|
|
python "%~dp0\autojump" %*
|
|
)
|