[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#51470: Bug with Putty
From: |
Paul Eggert |
Subject: |
bug#51470: Bug with Putty |
Date: |
Fri, 29 Oct 2021 12:55:41 -0700 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.2.0 |
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.tgz
but you'll need to read the 'find' and 'tar' documentation to see
exactly what you want.