Created
April 5, 2015 04:24
-
-
Save deevus/b99755c6b0ef794bfafa to your computer and use it in GitHub Desktop.
Posh version of scoop-list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: scoop plist <query> | |
# Summary: A posh version of scoop list | |
# Help: Lists the apps installed in scoop | |
param($query) | |
$(scoop shellinit) | |
. "$env:SCOOP_HOME/lib/core.ps1" | |
. "$env:SCOOP_HOME/lib/manifest.ps1" | |
. "$env:SCOOP_HOME/lib/versions.ps1" | |
. "$env:SCOOP_HOME/lib/buckets.ps1" | |
function posh_list($query) { | |
$local = installed_apps $false | % { @{ name = $_ } } | |
$global = installed_apps $true | % { @{ name = $_; global = $true } } | |
$apps = @($local) + @($global) | |
$app_list = @($apps | sort { $_.name } | ? { !$query -or ($_.name -match $query) } | % { | |
$manifest, $bucket = find_manifest $_.name | |
if(!$bucket) { $bucket = "main" } | |
[pscustomobject]@{ | |
"Name" = $_.name; | |
"Version" = $manifest.version; | |
"Bucket" = $bucket; | |
} | |
}) | |
$exp = @{expression={$_.name};Label="App"}, ` | |
@{expression={$_.version};Label="Version"}, ` | |
@{expression={$_.bucket};Label="Bucket"} | |
$app_list | |
} | |
function installed_apps($global) { | |
$dir = appsdir $global | |
if(test-path $dir) { | |
gci $dir | where { $_.psiscontainer -and $_.name -ne 'scoop' } | % { $_.name } | |
} | |
} | |
posh_list $query | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment