mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 05:55:36 -07:00
15 lines
344 B
Bash
Executable File
15 lines
344 B
Bash
Executable File
#!/bin/sh -ef
|
|
#
|
|
# kiss-manifest-tree - Display all files owned by a package.
|
|
|
|
db_dir=$KISS_ROOT/var/db/kiss/installed/${1-null}
|
|
|
|
# Check if package is installed and exit if it is not.
|
|
[ -d "$db_dir" ] || {
|
|
printf '%s\n' "error: '$1' not installed." >&2
|
|
exit 1
|
|
}
|
|
|
|
printf '%s\n' "[$1]:"
|
|
tree -C --fromfile "$db_dir/manifest" | tail -n +2
|