mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 14:05:41 -07:00
fdf2775640
kiss' help output will now include all executables found in $PATH which begin with kiss-*. A comment string is optionally usable via setting the second line of the script to a string. Example: ... This also means that 'kiss <script name>' is also possible now. If I have a script in my $PATH called kiss-depends, I can now use it via kiss with 'kiss depends'.
25 lines
648 B
Bash
Executable File
25 lines
648 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}")
|
|
|
|
# Check if the file exists and exit if it is not.
|
|
[ -f "$file" ] || {
|
|
printf '%s\n' "error: file '$1' doesn't exist." >&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] owns '$1'"
|