aboutsummaryrefslogtreecommitdiff
path: root/contrib/cpt-revdepends
blob: 9824877556d69e15f8465c0e64fd3cc8447666e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh -e
# Display packages which depend on package

case "$1" in ''|--help|-h) printf '%s\n' "usage: ${0##*/} [pkg]" ; exit 0 ; esac
cpt-search "$1" >/dev/null

# 'cd' to the database directory as a simple way of
# stripping the path and performing a 'basename'.
cd "$CPT_ROOT/var/db/cpt/installed"

# Use a simple 'grep' to display packages depending on '$1'.
grep "^$1" -- */depends