On 11/30/11 01:41, rakesh kumar wrote: > find ./ -type f -mtime +7 -name "*.00*" | xargs tar zcvf Archieve_7.tar.gz
This runs "tar" multiple times, which is not what you want. I suggest looking at tar's --files-from option.
On 11/30/11 01:41, rakesh kumar wrote: > find ./ -type f -mtime +7 -name "*.00*" | xargs tar zcvf Archieve_7.tar.gz
This runs "tar" multiple times, which is not what you want. I suggest looking at tar's --files-from option.