Como pergunto ao PowerShell onde está alguma coisa?
Por exemplo, "qual bloco de notas" e ele retorna o diretório em que o bloco de notas.exe é executado de acordo com os caminhos atuais.
Como pergunto ao PowerShell onde está alguma coisa?
Por exemplo, "qual bloco de notas" e ele retorna o diretório em que o bloco de notas.exe é executado de acordo com os caminhos atuais.
Respostas:
O primeiro alias que fiz quando comecei a personalizar meu perfil no PowerShell foi 'what'.
New-Alias which get-command
Para adicionar isso ao seu perfil, digite o seguinte:
"`nNew-Alias which get-command" | add-content $profile
O `n no início da última linha é garantir que ele comece como uma nova linha.
Get-Command <command> | Format-Table Path, Name
para que eu possa obter o caminho onde o comando fica também.
select -expandproperty Path
.
(gcm <command>).definition
para obter apenas o (s) caminho (s). gcm
é o alias padrão para Get-Command
. Você também pode usar curingas, por exemplo: (gcm win*.exe).definition
.
Aqui está um equivalente * nix real, ou seja, fornece saída no estilo * nix.
Get-Command <your command> | Select-Object -ExpandProperty Definition
Apenas substitua pelo que você está procurando.
PS C:\> Get-Command notepad.exe | Select-Object -ExpandProperty Definition
C:\Windows\system32\notepad.exe
Quando você o adiciona ao seu perfil, você deseja usar uma função em vez de um alias, porque não pode usar aliases com pipes:
function which($name)
{
Get-Command $name | Select-Object -ExpandProperty Definition
}
Agora, quando você recarrega seu perfil, pode fazer o seguinte:
PS C:\> which notepad
C:\Windows\system32\notepad.exe
okta
que aponta para um script do Powershell chamado okta.ps1
que não está no meu $PATH
. O uso da resposta aceita retorna o nome do script ( okta -> okta.ps1
). Isso está bom, mas não me diz a localização de okta.ps1
. Usar esta resposta, no entanto, me dá todo o caminho ( C:\Users\blah\etc\scripts\okta.ps1
). Então, um de mim.
Normalmente, apenas digito:
gcm notepad
ou
gcm note*
gcm é o alias padrão para Get-Command.
No meu sistema, o gcm note * gera:
[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
Você obtém o diretório e o comando que correspondem ao que você está procurando.
gcm note* | select CommandType, Name, Definition
. Se você executá-lo com freqüência, provavelmente deve envolvê-lo em uma função.
Tente este exemplo:
(Get-Command notepad.exe).Path
(gcm py.exe).path
Minha proposição para a função Que:
function which($cmd) { get-command $cmd | % { $_.Path } }
PS C:\> which devcon
C:\local\code\bin\devcon.exe
Uma partida rápida e suja com o Unix which
é
New-Alias which where.exe
Mas ele retorna várias linhas, se existirem, e então se torna
function which {where.exe command | select -first 1}
where.exe where
devo dizer-lheC:\Windows\System32\where.exe
where.exe
é equivalente a which -a
, pois devolverá todos os executáveis correspondentes, não apenas o primeiro a ser executado. Ou seja, where.exe notepad
dá c:\windows\notepad.exe
e c:\windows\system32\notepad.exe
. Portanto, isso não é particularmente adequado para o formulário $(which command)
. (Outro problema é que ele imprimirá uma mensagem de erro útil e agradável se o comando não for encontrado, o que também não será muito bom $()
- que pode ser remediado /Q
, mas não como um alias.)
where
parece procurar a variável PATH do sistema e não a variável PATH do shell atual. Veja esta pergunta
Isso parece fazer o que você deseja (eu o encontrei em 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
Verifique este PowerShell Which .
O código fornecido lá sugere o seguinte:
($Env:Path).Split(";") | Get-ChildItem -filter notepad.exe
Tente o where
comando no Windows 2003 ou posterior (ou Windows 2000 / XP, se você instalou um Resource Kit).
BTW, isso recebeu mais respostas em outras perguntas:
where
aliases ao Where-Object
commandlet no Powershell, portanto, digitar where <item>
um prompt do Powershell não produz nada. Esta resposta é, portanto, completamente incorreta - conforme observado na resposta aceita na primeira pergunta vinculada, para obter o DOS where
, você precisa digitar where.exe <item>
.
Eu tenho essa which
função avançada no meu perfil do 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 }
}
}
Usar:
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"
}
Ou esta versão, chamando o comando where original.
Esta versão também funciona melhor, porque não se limita aos arquivos 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'
}
Se você deseja um comamnd que aceite entrada do pipeline ou como paramater, tente o seguinte:
function which($name) {
if ($name) { $input = $name }
Get-Command $input | Select-Object -ExpandProperty Path
}
copie e cole o comando no seu perfil ( notepad $profile
).
Exemplos:
❯ echo clang.exe | which
C:\Program Files\LLVM\bin\clang.exe
❯ which clang.exe
C:\Program Files\LLVM\bin\clang.exe