1 2 3 4 5 6 7 8 9 10 11
#!/bin/sh world="/var/lib/portage/world" [ -f "${world}" ] || exit while read -r line; do if [ -n "$(qdepends --quiet --query "${line}")" ]; then echo "${line}" fi done <"${world}"
Consider giving Nix/NixOS a try! <3