1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 22:10:45 +00:00
wting_autojump/bin/j.bat

15 lines
335 B
Batchfile
Raw Normal View History

2014-01-12 19:34:28 +00:00
@echo off
echo %*|>nul findstr /rx \-.*
if ERRORLEVEL 1 (
for /f %%G in ('python %~dp0\autojump %*') do set new_path=%%G
if exist %new_path%/nul (
cd %new_path%
) else (
echo autojump: directory %* not found
echo try `autojump --help` for more information
)
echo %new_path%
) else (
python %~dp0\autojump %*
)