何かがどこにあるかを PowerShell に尋ねるにはどうすればよいですか?
たとえば、「どのメモ帳」と入力すると、現在のパスに従って、notepad.exe が実行されているディレクトリが返されます。
何かがどこにあるかを PowerShell に尋ねるにはどうすればよいですか?
たとえば、「どのメモ帳」と入力すると、現在のパスに従って、notepad.exe が実行されているディレクトリが返されます。
PowerShell で自分のプロファイルをカスタマイズし始めたときに作成した最初のエイリアスは、'which' でした。
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
Unix との簡単な一致は次のとおりwhich
です。
New-Alias which where.exe
ただし、存在する場合は複数の行を返すため、次のようになります
function which {where.exe command | select -first 1}
これはあなたが望むことをしているようです(私は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
where
Windows 2003以降(またはリソースキットをインストールしている場合はWindows 2000 / XP)でコマンドを試してください。
ところで、これは他の質問でより多くの答えを受け取りました:
このPowerShell を確認してください。
そこに提供されているコードは、次のことを示唆しています。
($Env:Path).Split(";") | Get-ChildItem -filter notepad.exe
使用する:
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'
}