Rpm commands
Revision as of 16:28, 25 May 2020 by David Dubbeldam (talk | contribs) (Created page with " Remove all rpms that contain the string "intel" rpm -qa | grep intel | while read -r line; do yum remove -y $line; done")
Remove all rpms that contain the string "intel"
rpm -qa | grep intel | while read -r line; do yum remove -y $line; done