1
2
3
4
5
6
7
8
9
10
11
12
13
|
#删除现有Python
##强制删除已安装程序及其关联
rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps
##删除所有残余文件 ##xargs,允许你对输出执行其他某些命令
whereis python |xargs rm -frv
##验证删除,返回无结果
whereis python
#删除现有的yum、强制删除已安装程序及其关联
##强制删除已安装程序及其关联
rpm -qa|grep yum|xargs rpm -ev --allmatches --nodeps
##强制删除所有残余文件
whereis yum |xargs rm -frv
|