I know find is able to do this (find files based on date, and then send them to gzip). Sorry, I don't know the exact commands, check the man page, but something like this:
touch -t 04200000 datefile ; gzip `find /whatever -newer datefile` ; rm -f datefile should gzip all files that were modified after 4/20 at 0:00 (04200000) On Sun, Apr 30, 2000 at 12:31:56PM -0500, Lance Hoffmeyer wrote: > I wish to gzip a numbe of files based on the date they were created. > I assume I would use ls and gzip. Are these the commands I should use > or is there an easier way? > > Lance > -- Those of you who think you know everything are annoying those of us who do :)

