On Thu, 2006-01-19 at 14:02 +0300, Systems Administrator wrote: > > But what I was thinking of was more like this. If I remember correctly it > > listed all 'duplicate' entries. > > > > rpm -qa | sort | uniq -c | grep -v??? and that is all that I can > > remember > > try rpm -qa | sort | uniq -c > or > rpm -qa | sort | uniq -D > or > rpm -qa | sort | uniq -d > I really should read the man page every now and again... "uniq -d" is much cleaner :-) rpm -q $(rpm -qa --queryformat %{NAME}'\n' | sort | uniq -d)