#!/bin/sh

ALLPKGS="`ls -1 packages/`"

> listmodifiedpkgs.txt

for ONEPKG in $ALLPKGS
do
 echo "Checking $ONEPKG"
 if [ ! "`find packages/$ONEPKG -type f -mount -mtime -28`" = "" ];then
  echo "$ONEPKG" >> listmodifiedpkgs.txt
 fi

done
