Releases: okibcn/ss
Releases · okibcn/ss
6.1
5.0
4.0
3.0
2.01
CHANGES IN THIS RELEASE
- Internal code cleanup.
- New stopwatch feature that displays the time taken for the search.
- Speed improvements, now the average remains below 350 ms.
1.0
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)