mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 14:05:41 -07:00
11 lines
224 B
Bash
Executable File
11 lines
224 B
Bash
Executable File
#!/bin/sh -ef
|
|
#
|
|
# kiss-manifest-tree - Display all files owned by a package.
|
|
|
|
kiss l "${1:-null}"
|
|
|
|
db_dir=$KISS_ROOT/var/db/kiss/installed/${1:-null}
|
|
|
|
printf '%s\n' "[$1]:"
|
|
tree -C --fromfile "$db_dir/manifest" | tail -n +2
|