Sha256: c5aba98fc2367460235c1e89a4b099df7bd8cf7c67db9585351d3816eeb43457
Contents?: true
Size: 334 Bytes
Versions: 18
Compression:
Stored size: 334 Bytes
Contents
@ rem "which" workalike for Windows. Searches current directory and PATH for all extensions, stops after first match, and returns meaningful exit value for "system" or "ERRORLEVEL" checks. @setlocal @set P2=.;%PATH% @for %%e in (%PATHEXT%) do @for %%i in (%1%%e) do @if NOT "%%~$P2:i"=="" echo %%~$P2:i && goto end @exit 1 :end
Version data entries
18 entries across 18 versions & 1 rubygems