You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
543 B
18 lines
543 B
#!/bin/sh
|
|
#
|
|
# Author: Yann Dirson <dirson@debian.org>
|
|
# License: GPL
|
|
|
|
datafile=/var/log/popularity-contest
|
|
|
|
if [ ! -e $datafile ] ; then
|
|
echo "warning: Missing required file $datafile."
|
|
echo "info: Run 'popularity-contest > $datafile' to generate it."
|
|
exit 1
|
|
fi
|
|
|
|
grep '<OLD>' $datafile | cut -d' ' -f3 |
|
|
xargs -r apt-cache -o 'APT::Cache::AllVersions=0' show |
|
|
grep -E '^(Package|Installed-Size): ' |
|
|
perl -ne 'if (/^Package: (.*)/) { $p = $1 }; if (/^Installed-Size: (.*)/) { print "$1 $p\n"; $p = 'BUG' }' |
|
|
sort -rn
|
|
|