I have by a mistake written this command on a CentOS server
xargs rpm -e|rpm -qa|grep test11
where I meant
rpm -qa|grep test11|xargs rpm -e
which should uninstall all packages matching "test11".
Can someone figure out what the first command do? I am afraid that it un-install ALL packages =(