Skip to content

Instantly share code, notes, and snippets.

@jmkim
Created April 17, 2025 04:42
Show Gist options
  • Save jmkim/61111719322b08d03c8becc075d0129d to your computer and use it in GitHub Desktop.
Save jmkim/61111719322b08d03c8becc075d0129d to your computer and use it in GitHub Desktop.
Reverse-dependencies lister
#!/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