回答:
PowerShellでプロファイルのカスタマイズを開始したときに最初に作成したエイリアスは「それ」でした。
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
Unixへの素朴な一致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以降(またはリソースキットをインストールしている場合はWindows 2000 / XP)でコマンドを試してください。
ところで、これは他の質問でより多くの答えを受けました:
where
Where-Object
Powershell のコマンドレットのエイリアスなのでwhere <item>
、Powershellプロンプトで入力しても何も起こりません。したがって、この回答は完全に正しくwhere
ありませんwhere.exe <item>
。最初のリンクされた質問の承認された回答に記載されているように、DOSを取得するには、入力する必要があります。
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コマンドを呼び出します。
このバージョンは、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'
}
両方がパイプラインから、またはパラメーターとして入力を受け入れるコマンドが必要な場合は、これを試してください。
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