답변:
PowerShell에서 프로필을 사용자 지정하기 시작한 첫 번째 별칭은 'which'였습니다.
New-Alias which get-command
이것을 프로필에 추가하려면 다음을 입력하십시오.
"`nNew-Alias which get-command" | add-content $profile
마지막 줄의 시작에서`n은 새로운 줄로 시작되도록하는 것입니다.
Get-Command <command> | Format-Table Path, Name
그래서 명령이있는 경로를 얻을 수있다.
select -expandproperty Path
.
(gcm <command>).definition
경로 만 얻기 위해 사용하십시오 . gcm
의 기본 별칭입니다 Get-Command
. 와일드 카드를 사용할 수도 있습니다 (예 :) (gcm win*.exe).definition
.
다음은 실제 * 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
okta
Powershell 스크립트를 가리키는 별명 okta.ps1
이 $PATH
있습니다. 허용 된 답변을 사용하면 스크립트 이름 ( okta -> okta.ps1
)이 반환 됩니다. 괜찮지 만의 위치를 알려주지 않습니다 okta.ps1
. 그러나이 답변을 사용하면 전체 경로 ( C:\Users\blah\etc\scripts\okta.ps1
)를 얻을 수 있습니다. 나에게서 +1.
나는 보통 다음을 입력합니다.
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
찾고있는 것과 일치하는 디렉토리와 명령을 얻습니다.
gcm note* | select CommandType, Name, Definition
. 자주 실행한다면 아마도 함수로 감싸 야 할 것입니다.
이 예를보십시오 :
(Get-Command notepad.exe).Path
(gcm py.exe).path
유닉스와의 빠르고 더러워진 일치 which
는
New-Alias which where.exe
그러나 여러 줄이 있으면 반환합니다.
function which {where.exe command | select -first 1}
where.exe where
당신을 말해야한다C:\Windows\System32\where.exe
where.exe
동등 which -a
이 위로 제공되는 바와 같이, 모든 매칭을 실행 아니라 처음 실행한다. 즉, where.exe notepad
제공 c:\windows\notepad.exe
하고 c:\windows\system32\notepad.exe
. 따라서 이것은 특히 양식에 적합 하지 않습니다$(which command)
. (또 다른 문제는 명령을 찾을 수 없으면 멋지고 유용한 오류 메시지를 인쇄한다는 것입니다.이 오류 메시지는 훌륭하게 확장되지는 않습니다 .이 방법은 별명 $()
으로 해결할 수는 /Q
없지만 별칭 으로 해결할 수는 없습니다.
이것은 당신이 원하는 것을하는 것처럼 보입니다 ( 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 이상 (또는 Resource Kit를 설치 한 경우 Windows 2000 / XP) 명령을 .
BTW, 다른 질문에 더 많은 답변을 받았습니다.
where
Where-Object
Powershell 의 커맨드 렛에 별명을 지정하므로 where <item>
Powershell 프롬프트에 입력 하면 아무것도 생성되지 않습니다. 따라서이 답변은 완전히 잘못되었습니다. 첫 번째 링크 된 질문에 허용 된 답변에 나와있는 것처럼 DOS where
를 사용하려면 입력해야합니다 where.exe <item>
.
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 }
}
}
사용하다:
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'
}
파이프 라인 또는 매개 변수로 입력을 허용하는 커 머드를 원하면 다음을 시도해야합니다.
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