#!/bin/sh

cd /srv/lintian.debian.org/laboratory
find pool -name '*_amd64_binary' -o -name '*_all_binary' | \
  while read file; do
    echo -n "$file: "
    ar t "$file/deb" | grep '^data\.tar'
  done >~/deb-data-comp.out
