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