Hi binarydemon
There are a lot of duplicate entries in there as well. I copied and pasted that list into a file called abc. Then I ran:
tc@box:~$ awk '$1=$1' abc | sort -u
Xorg-7.7-bin.tcz
expat2.tcz
fontconfig.tcz
freetype.tcz
glib2.tcz
libGL.tcz
libICE.tcz
libSM.tcz
libX11.tcz
libXau.tcz
libXaw.tcz
libXcomposite.tcz
libXcursor.tcz
libXdamage.tcz
libXdmcp.tcz
libXext.tcz
libXfixes.tcz
libXft.tcz
libXi.tcz
libXinerama.tcz
libXmu.tcz
libXpm.tcz
libXrandr.tcz
libXrender.tcz
libXt.tcz
libXtst.tcz
libXxf86dga.tcz
libXxf86vm.tcz
libdrm.tcz
libffi.tcz
libpciaccess.tcz
libpng.tcz
libxcb.tcz
libxkbfile.tcz
libxshmfence.tcz
udev-lib.tcz
tc@box:~$
This is an alphabetized list of unique entries. The awk command echoes the file with leading whitespace removed. The | is a
pipe symbol that redirects the output from awk into sort. The -u tells sort to remove duplicate entries after sorting.