2019-10-30 04:51:48 -06:00
|
|
|
#!/bin/sh -e
|
2020-05-01 00:07:20 -06:00
|
|
|
# Display packages which depend on package
|
2019-10-30 04:51:48 -06:00
|
|
|
|
2020-09-04 11:31:30 -06:00
|
|
|
# Use the current directory as the package name if no package is given.
|
2020-08-30 05:36:43 -06:00
|
|
|
[ "$1" ] || {
|
2020-08-30 14:28:01 -06:00
|
|
|
set -- "${PWD##*/}"
|
2020-04-18 03:11:56 -06:00
|
|
|
}
|
|
|
|
|
2019-10-30 04:51:48 -06:00
|
|
|
# 'cd' to the database directory as a simple way of
|
|
|
|
# stripping the path and performing a 'basename'.
|
|
|
|
cd "$KISS_ROOT/var/db/kiss/installed"
|
|
|
|
|
|
|
|
# Use a simple 'grep' to display packages depending on '$1'.
|
|
|
|
grep "^$1" -- */depends
|