aboutsummaryrefslogtreecommitdiff
path: root/src/cpt-search
blob: cc37d9a9dfd2e12dd922009cd1c60746863d39b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh -ef
# Search for a package

# shellcheck disable=1091
if command -v cpt-lib >/dev/null; then . cpt-lib; else . ./cpt-lib; fi

parser_definition() {
    setup REST -- "usage: ${0##*/} [pkg...]"
    msg -- '' 'Options:'
    flag all      -s --single init:=1 on:'' -- "Only show the first instance of a package"
    disp :usage   -h --help                     -- "Show this help message"
    disp :version -v --version                  -- "Print version information"
}

eval "$(getoptions      parser_definition parse "$0")"
eval "$(getoptions_help parser_definition usage "$0")"

parse "$@"
eval set -- "$REST"

for pkg; do pkg_find "$pkg" "${all:+all}"; done