Skip to content

Instantly share code, notes, and snippets.

@dky
Created May 9, 2013 17:34
Show Gist options
  • Save dky/5549104 to your computer and use it in GitHub Desktop.
Save dky/5549104 to your computer and use it in GitHub Desktop.
For loop to remove unnecessary firmware packages.
for i in `rpm -qa |grep -i firmware`; do rpm -e $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment