I\'d rather not do this in PHP so I\'m hoping a someone decent at shell scripting can help.
I need a script that runs through directory recursively and finds all fil
This should show all files modified within the last 7 days.
find . -type f -mtime -7 -print
Pipe that into tar/zip, and you should be good.