aboutsummaryrefslogtreecommitdiff
path: root/contrib/cpt-manifest-tree
blob: 599c0bd8ff0e365e25512434453439b9547b7c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh -ef
# Display all files owned by a package with a tree view

## SYNOPSIS:
## .Nm
## .Op Ar package
## DESCRIPTION:
## .Nm
## prints the manifest of the given package to the standard output as a tree
## view. If no package name is given,
## .Nm
## will use the name of the current directory for the package.
## see: tree.1

case "$1" in
    --help|-h)
        printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]"
        exit 0
        ;;
    '') set -- "${PWD##*/}"
esac
cpt-list "$1" >/dev/null
printf '%s\n' "[$1]:"
tree -C --fromfile "$CPT_ROOT/var/db/cpt/installed/$1/manifest" | sed 1,2d