1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
kiss/contrib/kiss-owns
Dylan Araps f59b725cdd
kiss-owns: Make output simpler.
This changes the output of the utility to the package name of the
match if one exists. The utility is now usable in scripts.
2020-07-28 02:30:09 +03:00

24 lines
581 B
Bash
Executable File

#!/bin/sh -e
# Check which package owns a file
# Strip 'KISS_ROOT' from the file path if passed and
# follow symlinks.
file=$(readlink -f "$KISS_ROOT/${1##$KISS_ROOT}")
[ -f "$file" ] || {
printf 'usage: kiss-owns [/path/to/file]\n' >&2
exit 1
}
# Print the full path to the manifest file which contains
# the match to our search.
pkg_owns=$(grep -lFx "${file##$KISS_ROOT}" \
"$KISS_ROOT/var/db/kiss/installed/"*/manifest)
# Extract the package name from the path above.
pkg_owns=${pkg_owns%/*}
pkg_owns=${pkg_owns##*/}
printf '%s\n' "$pkg_owns"