mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 05:55:36 -07:00
9 lines
153 B
Bash
Executable File
9 lines
153 B
Bash
Executable File
#!/bin/sh -e
|
|
# Display packages which depend on package
|
|
|
|
[ "$1" ] || set -- "${PWD##*/}"
|
|
|
|
cd "$KISS_ROOT/var/db/kiss/installed"
|
|
|
|
grep "^$1" -- */depends
|