>How can I unlink files in a directory that are, for example older than 1 >hour?
`find /path/to/dir -cmin +60 -type f -print0 | xargs -0 rm -f`; --------------------------------------------------------------------- michal migurski- contact info and pgp key: sf/ca http://mike.teczno.com/contact.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php