PowerShell의 * Nix 'which'명령과 동일합니까?


404

PowerShell이 ​​어디에 있는지 어떻게 물어 보나요?

예를 들어, "어떤 메모장"이고 현재 경로에 따라 notepad.exe가 실행되는 디렉토리를 반환합니다.

답변:


390

PowerShell에서 프로필을 사용자 지정하기 시작한 첫 번째 별칭은 'which'였습니다.

New-Alias which get-command

이것을 프로필에 추가하려면 다음을 입력하십시오.

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

마지막 줄의 시작에서`n은 새로운 줄로 시작되도록하는 것입니다.


1
프로필 스크립트에 넣을 수 있습니다. 더 많은 프로파일에 - msdn.microsoft.com/en-us/library/bb613488(VS.85).aspx
스티븐 무 라프 스키

61
나는 달리기를 좋아한다. Get-Command <command> | Format-Table Path, Name그래서 명령이있는 경로를 얻을 수있다.
jrsconfitto

4
'|를 입력하지 않고 항상 경로를 가질 수있는 방법이 있습니까? 형식 표 경로, 이름 '?
기 illa

10
경로를 제공하는 유닉스 스타일의 동작을 원한다면 get-command의 출력을로 파이프해야합니다 select -expandproperty Path.
Casey

5
(gcm <command>).definition경로 만 얻기 위해 사용하십시오 . gcm의 기본 별칭입니다 Get-Command. 와일드 카드를 사용할 수도 있습니다 (예 :) (gcm win*.exe).definition.
Sachin Joseph

165

다음은 실제 * 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

22
이 대체 구문을 사용합니다 : "(Get-Command notepad) .definition"
Yann

2
@ B00merang 문법은 훌륭하지만 (더욱 간결 해 보이지만) 불행히도 파이프를 제거하더라도 찾고자하는 프로그램의 이름을 포함시키지 않으면 별칭으로 추가 될 수 없습니다.
petrsnd

4
이것은 오래된 게시물이지만 누군가가 Google에서 여기와 같이 보낸 경우 (이것처럼)이 답변은 허용되는 답변보다 더 많은 유형의 Powershell 명령으로 작동합니다. 예를 들어, my에없는 oktaPowershell 스크립트를 가리키는 별명 okta.ps1$PATH있습니다. 허용 된 답변을 사용하면 스크립트 이름 ( okta -> okta.ps1)이 반환 됩니다. 괜찮지 만의 위치를 ​​알려주지 않습니다 okta.ps1. 그러나이 답변을 사용하면 전체 경로 ( C:\Users\blah\etc\scripts\okta.ps1)를 얻을 수 있습니다. 나에게서 +1.
skye-- 캡틴

88

나는 보통 다음을 입력합니다.

gcm notepad

또는

gcm note*

gcm은 Get-Command의 기본 별칭입니다.

내 시스템에서 gcm note * 출력 :

[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

찾고있는 것과 일치하는 디렉토리와 명령을 얻습니다.


약간 혼란 스럽지만 사용자 정의 함수와 임의의 분할보다 더 깨끗합니다.
DevelopingChris

1
powershell 명령 프롬프트에 "gcm notepad"를 입력하면 처음 두 열과 비어있는 'ModuleName'이라는 세 번째 열이 나타납니다. 기본적으로 '정의'열을 강제로 나열하는 방법을 알고 있습니까?
Piyush Soni

3
@PiyushSoni는 아마도 PowerShell의 업데이트 버전 때문일 것입니다. 같은 작업을 수행하면 언제든지 다른 열을 표시 할 수 있습니다 gcm note* | select CommandType, Name, Definition. 자주 실행한다면 아마도 함수로 감싸 야 할 것입니다.
David Mohundro

40

이 예를보십시오 :

(Get-Command notepad.exe).Path

2
OP가 더 잘 이해할 수 있도록 더 많은 코드 나 설명을 추가하십시오. 감사합니다.
sshashank124

3
한 번만 실제로 이것을 기억할 수 있도록 적은 코드를 추가해 주셔서 감사합니다. : P
albertjan

1
이것이 내가 원하는 것입니다! gcm에서도 작동합니다 :(gcm py.exe).path
Bill Agee

7

어떤 함수에 대한 나의 제안 :

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

PS C:\> which devcon

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

이것은 허용되는 것보다 더 나은 대답입니다. 더 나은 출력을 제공하기 위해 위에서 제안한 후 처리 접미사를 추가 할 수 있습니다. 별명은 그렇지 않습니다.
BobHy

5

유닉스와의 빠르고 더러워진 일치 which

New-Alias which where.exe

그러나 여러 줄이 있으면 반환합니다.

function which {where.exe command | select -first 1}

1
where.exe where당신을 말해야한다C:\Windows\System32\where.exe
크리스 F 캐롤

1
where.exe동등 which -a이 위로 제공되는 바와 같이, 모든 매칭을 실행 아니라 처음 실행한다. 즉, where.exe notepad제공 c:\windows\notepad.exe하고 c:\windows\system32\notepad.exe. 따라서 이것은 특히 양식에 적합 하지 않습니다$(which command) . (또 다른 문제는 명령을 찾을 수 없으면 멋지고 유용한 오류 메시지를 인쇄한다는 것입니다.이 오류 메시지는 훌륭하게 확장되지는 않습니다 .이 방법은 별명 $()으로 해결할 수는 /Q없지만 별칭 으로 해결할 수는 없습니다.
Jeroen Mostert

요점을 알았어. 대답을 편집했지만 예, 더 이상 깔끔한 해결책은 아닙니다.
Chris F Carroll

1
where현재 쉘 PATH 변수가 아닌 시스템 PATH 변수를 검색 하는 것 같습니다. 이 질문
Leonardo

3

이것은 당신이 원하는 것을하는 것처럼 보입니다 ( 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

그러나 어떤 파일 (형식)
과도

3

PowerShell을 확인하십시오. .

제공된 코드는 다음을 제안합니다.

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

2
몇 년이 지났지 만 내 경로에 "% systemroot % \ system32 \ ..."가 있고 PowerShell은 해당 환경 변수를 확장하지 않고이 작업을 수행하는 동안 오류가 발생합니다.
TessellatingHeckler

3

나는 Get-Command | Format-List두 가지에 대해서만 별칭을 사용하고 싶 거나 짧습니다 powershell.exe.

gcm powershell | fl

다음과 같은 별칭을 찾을 수 있습니다.

alias -definition Format-List

탭 완성은에서 작동합니다 gcm.


2

시도 whereWindows 2003 이상 (또는 Resource Kit를 설치 한 경우 Windows 2000 / XP) 명령을 .

BTW, 다른 질문에 더 많은 답변을 받았습니다.

Windows에 'which'에 해당하는 것이 있습니까?

유닉스 which명령 과 동등한 PowerShell ?


4
whereWhere-ObjectPowershell 의 커맨드 렛에 별명을 지정하므로 where <item>Powershell 프롬프트에 입력 하면 아무것도 생성되지 않습니다. 따라서이 답변은 완전히 잘못되었습니다. 첫 번째 링크 된 질문에 허용 된 답변에 나와있는 것처럼 DOS where를 사용하려면 입력해야합니다 where.exe <item>.
Ian Kemp

0

whichPowerShell 프로필 에이 고급 기능 이 있습니다 .

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 }
    }
}

0

사용하다:

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 명령을 호출합니다.

이 버전은 박쥐 파일에만 국한되지 않기 때문에 더 잘 작동합니다.

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'
}

0

파이프 라인 또는 매개 변수로 입력을 허용하는 커 머드를 원하면 다음을 시도해야합니다.

function which($name) {
    if ($name) { $input = $name }
    Get-Command $input | Select-Object -ExpandProperty Path
}

명령을 프로필에 복사하여 붙여 넣습니다 ( notepad $profile).

예 :

 echo clang.exe | which
C:\Program Files\LLVM\bin\clang.exe

 which clang.exe
C:\Program Files\LLVM\bin\clang.exe
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.