Compare pkg content
Sep 3, 2014
Technology
Use dpkg for reading the content and compare with the official ones:
dpkg -c ../../xxxxx_name.deb | awk '{print $3 $6}' | sort -n
Scripts for listing all of the content in the directory:
for i in `ls *.deb`
do
echo $i
dpkg -c $i
done