mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2026-09-08 22:46:03 +00:00
38 lines
1.1 KiB
PowerShell
38 lines
1.1 KiB
PowerShell
# Usage: scoop which <command>
|
|
# Summary: Locate a program path
|
|
# Help: Finds the path to a program that was installed with Scoop
|
|
param($command)
|
|
. "$psscriptroot\..\lib\core.ps1"
|
|
. "$psscriptroot\..\lib\help.ps1"
|
|
|
|
reset_aliases
|
|
|
|
if(!$command) { 'ERROR: <command> missing'; my_usage; exit 1 }
|
|
|
|
try { $gcm = gcm "$command.ps1" -ea stop } catch { }
|
|
if(!$gcm) { [console]::error.writeline("'$command' not found"); exit 3 }
|
|
|
|
$path = "$($gcm.path)"
|
|
$usershims = "$(resolve-path $(shimdir $false))"
|
|
$globalshims = fullpath (shimdir $true) # don't resolve: may not exist
|
|
|
|
if($path -like "$usershims*" -or $path -like "$globalshims*") {
|
|
$shimtext = gc $path
|
|
|
|
$exepath = ($shimtext |? { $_.startswith('$path') }).split(' ') | select -Last 1 | iex
|
|
|
|
if (![system.io.path]::ispathrooted($exepath)) {
|
|
$exepath = resolve-path (join-path (split-path $path) $exepath)
|
|
}
|
|
|
|
friendly_path $exepath
|
|
} elseif($gcm.commandtype -eq 'Alias') {
|
|
scoop which $gcm.resolvedcommandname
|
|
} else {
|
|
[console]::error.writeline("Not a scoop shim.")
|
|
$path
|
|
exit 2
|
|
}
|
|
|
|
exit 0
|