Matt Randolph wrote:
Neil Bothwick wrote:Or you can do it automatically with qpkg -I -nc -v | while read p; do touch --no-create $PKGDIR/$p.tbz2 touch --no-create $PKGDIR/All/$(basename $p).tbz2 done find $PKGDIR ! -mtime +1 -exec rm "{}" \;Since qpkg is being phased out, I guess the equery way to do this is: equery -C l 2> /dev/null | grep / | while read p; do touch --no-create $PKGDIR/$p.tbz2 touch --no-create $PKGDIR/All/$(basename $p).tbz2 done find $PKGDIR ! -mtime +1 -exec rm "{}" \; Right? qpkg is a lot faster, though.
Oops! I guess the -C flag isn't strictly necessary. -- "Pluralitas non est ponenda sine necessitate" - W. of O. -- [email protected] mailing list

