Skip to content

1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 08 Feb 09:07
· 27 commits to main since this release
70071ff

Initial release

Usage: ss [OPTIONS] [Patterns]

ss searches in all the known buckets at a lighning speed. It not only searches
in the name field, but also in the desscription. Regex and UTF-8 compatible.

Options:

no opt. searches for all the matches in the name and description fields.
-n Searches only in the name field.
-s Simple search. searches an exact name match (implies -n).
-e Full expanded regex search.
-l Search latest versions only
-r raw, no color and no header. Outputs data as a PowerShell object.
-h Prints this help

Examples:

 ss scoop search (all the packages with both words in the name or description)
 ss -n nvidia driver (the name contains both 'nvidia' AND 'driver')
 ss -n "nvidia|radeon" tool  (contains 'tool' and, 'nvidia' or 'radeon')
 ss -l search scoop (the latest manifests of scoop search utilities)
 ss -n -l -e ss$ ^s (latests versions of apps ending in 'ss' starting with 's')
 ss -l 音乐 (UTF-8 search)
 $apps = ss -r .*  (stores in `$apps a PSObject with all the Scoop manifests)