@ECHO OFF
REM which.cmd -- emulate UNIX which(1) utility
if "%1"=="" goto err
for %%I in (%1) do echo %%~$PATH:I
goto out
:err
echo Usage: which FILENAME
:out
| | Jason Spence ( |
I had to write this to help troubleshoot a problem someone was having:
- Post a new comment
- 0 comments
- Post a new comment
- 0 comments