Difference between revisions of "Rpm commands"

From iRASPA
Jump to: navigation, search
(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")
(No difference)

Revision as of 17:28, 25 May 2020

Remove all rpms that contain the string "intel"

rpm -qa | grep intel | while read -r line; do yum remove -y $line; done