On 10/29/21 06:03, Dewberry, Heather wrote:
Is there a way to zip up all of the files that I am trying to zip up outside of using gzip?
That depends on exactly what you're trying to do. Maybe something like this: find /var/log/pb/eventlog ! -name '*.gz' -mtime +60 -print0 | tar --null -T- -czf somefile.tgzbut you'll need to read the 'find' and 'tar' documentation to see exactly what you want.