38

我想知道 CMD shell 使用的是哪个版本的可执行文件。在任何 unix shell 中,我都会使用which它来找到它。

Windows shell 中是否有等效命令?

4

2 回答 2

71

各种各样的。

  1. where是直接等价的:

    C:\Users\Joey>where cmd
    C:\Windows\System32\cmd.exe
    

    请注意,在 PowerShell 中where本身是 的别名Where-Object,因此您需要where.exe在 PowerShell 中使用。

  2. cmd您还可以使用for

    C:\Users\Joey>for %x in (powershell.exe) do @echo %~$PATH:x
    C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
    
  3. 在 PowerShell中,如果您传递一个参数Get-Command,它的别名gcm会执行相同的操作(但也适用于 PowerShell 中的别名、cmdlet 和函数):

    PS C:\Users\Joey> Get-Command where
    
    CommandType     Name          Definition
    -----------     ----          ----------
    Alias           where         Where-Object
    Application     where.exe     C:\Windows\system32\where.exe
    

    第一个返回的命令是要执行的命令。

于 2012-06-13T06:53:23.217 回答
4

WHERE命令与 unix 不太一样,which因为它列出了在当前目录或 PATH 中找到的所有匹配文件。正如乔伊所说,列出的第一个是执行的那个。创建一个只返回第一个找到的批处理脚本很简单。

@echo off
for /f "delims=" %%F in ('where %1') do (
  echo %%F
  exit /b
)

但是WHERE比较慢。

下面是一个更快且功能更多的 WHICH.BAT 脚本。它使用广泛的延迟扩展切换,因为:1)如果有未引用的特殊字符,扩展 %PATH% 是不可靠的。2) 在启用延迟扩展时扩展 FOR 变量会损坏包含!.

::WHICH.BAT  CommandName  [ReturnVar]
::
::  Determines the full path of the file that would execute if
::  CommandName were executed.
::
::  The result is stored in variable ReturnVar, or else it is
::  echoed to stdout if ReturnVar is not specified.
::
::  If no file is found, then an error message is echoed to stderr.
::
::  The ERRORLEVEL is set to one of the following values
::    0 - Success: A matching file was found
::    1 - CommandName is an internal command
::    2 - No file was found and CommandName is not an internal command
::    3 - Improper syntax - no CommandName specified
::
@echo off
setlocal disableDelayedExpansion

set "file=%~1"
setlocal enableDelayedExpansion

if not defined file (
  >&2 echo Syntax error: No CommandName specified
  exit /b 3
)


:: test for internal command
echo(!file!|findstr /i "[^abcdefghijklmnopqrstuvwxyz]" >nul || (
  set "empty=!temp!\emptyFolder"
  md "!empty!" 2>nul
  del /q "!empty!\*" 2>nul >nul
  setlocal
  pushd "!empty!"
  set path=
  (call )
  !file! /? >nul 2>nul
  if not errorlevel 9009 (
    >&2 echo "!file!" is an internal command
    popd
    exit /b 1
  )
  popd
  endlocal
)


:: test for external command
set "noExt="
if "%~x1" neq "" if "!PATHEXT:%~x1=!" neq "!PATHEXT!" set noExt="";
set "modpath=.\;!PATH!"
@for %%E in (%noExt%%PATHEXT%) do @for %%F in ("!file!%%~E") do (
  setlocal disableDelayedExpansion
  if not "%%~$modpath:F"=="" if not exist "%%~$modpath:F\" (
    endlocal & endlocal & endlocal
    if "%~2"=="" (echo %%~$modpath:F) else set "%~2=%%~$modpath:F"
    exit /b 0
  )
  endlocal
)
endlocal


>&2 echo "%~1" is not a valid command
exit /b 2

更新

我不得不对上面的脚本进行重大修改,因为如果在 PATH 中的某处碰巧存在具有相同根名称的 exe 文件,它会错误地将内部命令列为外部命令。

于 2012-06-13T11:51:15.183 回答