Created
April 17, 2025 04:42
-
-
Save jmkim/61111719322b08d03c8becc075d0129d to your computer and use it in GitHub Desktop.
Reverse-dependencies lister
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
LIST_PATH="$1" | |
LIST="$(cat $LIST_PATH)" | |
for pkg in $LIST | |
do | |
echo "" | |
echo "------------------------------------------------------" | |
echo "$pkg" | |
echo "" | |
reverse-depends -b "$pkg" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment