I want to archive files (with tar) which are below 3 MB in size. But I also want to retain the directories in which those files exist. (so I cannot use find command). I just want to avoid the files which are above 3 MB in size. How can this be done?
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
Simpler than you think:
On a semi-related note (relating to your statement that you can't use find) to get a listing of all files (including directories) under a path minus files larger than 3MiB, use:
You could then do:
But I'd prefer the first one as it's simpler, clearly expresses what you want and will lead to less surprises. |
||||
|
|
findagain? – Ignacio Vazquez-Abrams Feb 8 '11 at 6:28