Removing a bunch of the same rpms.




Use this command line to remove a whole series of rpms of the same family.

note the use of the --nodeps option.

for i in `rpm -qa | grep openssh` ; do rpm -e --nodeps $i ; done