|
|
|
|
||||||
| comp.unix.shell Using and programming the Unix shell. |
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
Hi All,
I want to be able to find from a directory, all files that do NOT have a ".gz" file extension and also are more than 1 day old. The idea is to zip the resultant files. Thanks in Advance |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
zmasood@gmail.com wrote:
> Hi All, > > I want to be able to find from a directory, all files that do NOT have > a ".gz" file extension and also are more than 1 day old. > > The idea is to zip the resultant files. > > > Thanks in Advance > find . \! -name "*.gz" -print or find . -name "*.gz" -o -print -- Michael Tosch @ hp : com |
|
![]() |
| Outils de la discussion | |
|
|