Эквивалент команды *Nix 'which' в Powershell?

кто-нибудь знает, как спросить powershell, где что-то есть?
Например, "какой блокнот" и он возвращает каталог, где Блокнот.exe запускается в соответствии с текущими путями.

12 ответов


самый первый псевдоним, который я сделал, когда начал настраивать свой профиль в powershell, был "который".

New-Alias which get-command

чтобы добавить это в свой профиль, введите следующее:

"`nNew-Alias which get-command" | add-content $profile

' n должен гарантировать, что он начнется как новая строка.


вот фактический эквивалент *nix, т. е. он дает выход в стиле *nix.

Get-Command <your command> | Select-Object -ExpandProperty Definition

просто замените все, что вы ищете.

PS C:\> Get-Command notepad.exe | Select-Object -ExpandProperty Definition
C:\Windows\system32\notepad.exe

когда вы добавляете его в свой профиль, вы захотите использовать функцию, а не псевдоним, потому что вы не можете использовать псевдонимы с трубами:

function which($name)
{
    Get-Command $name | Select-Object -ExpandProperty Definition
}

теперь, когда вы перезагружаете свой профиль, вы можете сделать это:

PS C:\> which notepad
C:\Windows\system32\notepad.exe

Я обычно просто типа:

gcm notepad

или

gcm note*

GCM-псевдоним по умолчанию для Get-Command.

В моей системе, GCM Примечание * выходы:

[27] » gcm note*

CommandType     Name                                                     Definition
-----------     ----                                                     ----------
Application     notepad.exe                                              C:\WINDOWS\notepad.exe
Application     notepad.exe                                              C:\WINDOWS\system32\notepad.exe
Application     Notepad2.exe                                             C:\Utils\Notepad2.exe
Application     Notepad2.ini                                             C:\Utils\Notepad2.ini

вы получаете каталог и команду, которая соответствует то, что вы ищете.


попробуйте этот пример:

(Get-Command notepad.exe).Path

это, кажется, делает то, что вы хотите (я нашел его на http://huddledmasses.org/powershell-find-path/ )

Function Find-Path($Path, [switch]$All=$false, [Microsoft.PowerShell.Commands.TestPathType]$type="Any")
## You could  comment out the function stuff and use it as a script instead, with this line:
# param($Path, [switch]$All=$false, [Microsoft.PowerShell.Commands.TestPathType]$type="Any")
   if($(Test-Path $Path -Type $type)) {
      return $path
   } else {
      [string[]]$paths = @($pwd);
      $paths += "$pwd;$env:path".split(";")

      $paths = Join-Path $paths $(Split-Path $Path -leaf) | ? { Test-Path $_ -Type $type }
      if($paths.Length -gt 0) {
         if($All) {
            return $paths;
         } else {
            return $paths[0]
         }
      }
   }
   throw "Couldn't find a matching path of type $type"
}
Set-Alias find Find-Path

проверить это Powershell, Который

код, предоставленный там, предполагает это

($Env:Path).Split(";") | Get-ChildItem -filter notepad.exe

попробовать where команда в Windows 2003 или более поздней версии (или Windows 2000 / XP, если вы установили набор ресурсов):http://ss64.com/nt/where.html

кстати, это получило больше ответов в других потоках:

есть ли эквивалент", который " в Windows?

Powershell эквивалентно unix


мое предложение для функции Which:

function which($cmd) { get-command $cmd | % { $_.Path } }

PS C:\> which devcon

C:\local\code\bin\devcon.exe


quickndirty матч с Unix which is

New-Alias which where.exe

но он возвращает несколько строк, если они существуют, тогда она становится

$(where.exe command | select -first 1)


мне нравится get-command / format-list или:

gcm powershell | fl

Вы можете найти псевдонимы вроде этого:

alias -definition format-list

Tab завершение работы с gcm.


function Which([string] $cmd) {
  $path = (($Env:Path).Split(";") | Select -uniq | Where { $_.Length } | Where { Test-Path $_ } | Get-ChildItem -filter $cmd).FullName
  if ($path) { $path.ToString() }
}

# check if Chocolatey is installed
if (Which('cinst.bat')) {
  Write-Host "yes"
} else {
  Write-Host "no"
}

или эта версия, вызывающая исходную команду where. Эта версия также работает лучше, потому что не ограничивается bat файлы

function which([string] $cmd) {
  $where = iex $(Join-Path $env:SystemRoot "System32\where.exe $cmd 2>&1")
  $first = $($where -split '[\r\n]')
  if ($first.getType().BaseType.Name -eq 'Array') {
    $first = $first[0]
  }
  if (Test-Path $first) {
    $first
  }
}

# check if Curl is installed
if (which('curl')) {
  echo 'yes'
} else {
  echo 'no'
}

у меня есть это which расширенная функция в моем профиле PowerShell:

function which {
<#
.SYNOPSIS
Identifies the source of a PowerShell command.
.DESCRIPTION
Identifies the source of a PowerShell command. External commands (Applications) are identified by the path to the executable
(which must be in the system PATH); cmdlets and functions are identified as such and the name of the module they are defined in
provided; aliases are expanded and the source of the alias definition is returned.
.INPUTS
No inputs; you cannot pipe data to this function.
.OUTPUTS
.PARAMETER Name
The name of the command to be identified.
.EXAMPLE
PS C:\Users\Smith\Documents> which Get-Command

Get-Command: Cmdlet in module Microsoft.PowerShell.Core

(Identifies type and source of command)
.EXAMPLE
PS C:\Users\Smith\Documents> which notepad

C:\WINDOWS\SYSTEM32\notepad.exe

(Indicates the full path of the executable)
#>
    param(
    [String]$name
    )

    $cmd = Get-Command $name
    $redirect = $null
    switch ($cmd.CommandType) {
        "Alias"          { "{0}: Alias for ({1})" -f $cmd.Name, (. { which cmd.Definition } ) }
        "Application"    { $cmd.Source }
        "Cmdlet"         { "{0}: {1} {2}" -f $cmd.Name, $cmd.CommandType, (. { if ($cmd.Source.Length) { "in module {0}" -f $cmd.Source} else { "from unspecified source" } } ) }
        "Function"       { "{0}: {1} {2}" -f $cmd.Name, $cmd.CommandType, (. { if ($cmd.Source.Length) { "in module {0}" -f $cmd.Source} else { "from unspecified source" } } ) }
        "Workflow"       { "{0}: {1} {2}" -f $cmd.Name, $cmd.CommandType, (. { if ($cmd.Source.Length) { "in module {0}" -f $cmd.Source} else { "from unspecified source" } } ) }
        "ExternalScript" { $cmd.Source }
        default          { $cmd }
    }
}