open ( FIND , '|' , '/usr/bin/find' , @findargs ) || die $!; while ( ) { if ( $_ =~ /$myfileMatch/ ) { if ( -M $_ > 14 ) { # file modified more than 14days ago # delete file magic } else { # compress file magic } } }