python 比较两台linux系统rpm包安装是否相同
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 比较两台linux系统rpm包安装是否相同相关的知识,希望对你有一定的参考价值。
import re
Setaliyun=set(‘‘)
Setczgame=set(‘‘)
with open(‘alirpm.txt‘,‘r‘) as f:
for line in f:
Result=re.subn(‘-\d.*‘,‘‘,line)[0]
Setaliyun.add(Result)
#print(Setaliyun)
with open(‘gamerpm.txt‘,‘r‘) as f:
for line in f:
Result=re.subn(‘-\d.*‘,‘‘,line)[0]
Setczgame.add(Result)
#print(Setczgame)
#print(Setaliyun-Setczgame)
print(Setczgame-Setaliyun)
以上是关于python 比较两台linux系统rpm包安装是否相同的主要内容,如果未能解决你的问题,请参考以下文章
我的linux系统里没有安装rpm,rpm包哪里下载,怎么安装。