PowerShellに何かを尋ねるにはどうすればよいですか?
たとえば、「which notepad」は、現在のパスに従ってnotepad.exeが実行されるディレクトリを返します。
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 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
ディレクトリと、探しているものに一致するコマンドを取得します。
この例を試してください:
(Get-Command notepad.exe).Path
Which関数に対する私の提案:
function which($cmd) { get-command $cmd | % { $_.Path } }
PS C:\> which devcon
C:\local\code\bin\devcon.exe
これはあなたが望むことをするようです(私は 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 which 。
そこに提供されているコードはこれを示唆しています:
($Env:Path).Split(";") | Get-ChildItem -filter notepad.exe
Windows 2003以降(またはリソースキットをインストールした場合はWindows 2000/XP)で where
コマンドを試してください。
ところで、これは他の質問でより多くの回答を受け取りました:
Unix which
への手っ取り早い一致は
New-Alias which where.exe
ただし、複数の行が存在する場合は返されるため、
$(where.exe command | select -first 1)
私はGet-Command | Format-List
、またはそれより短い2つのエイリアスを使用し、powershell.exe
のみにエイリアスを使用しています。
gcm powershell | fl
このようなエイリアスを見つけることができます:
alias -definition Format-List
タブ補完は、gcm
で機能します。
PowerShellプロファイルに次のwhich
高度な関数があります。
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コマンドを呼び出します。
このバージョンは、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'
}