Skip to content

Instantly share code, notes, and snippets.

@Oneiroi
Created October 9, 2011 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oneiroi/1273628 to your computer and use it in GitHub Desktop.
Save Oneiroi/1273628 to your computer and use it in GitHub Desktop.
Find packaes with no dependencies
rpm -qa | while read pname; do RES=`rpm -qR $pname`; [[ "$RES" == "" ]] && echo "$pname has no deps"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment