vote up 0 vote down star

I'm looking for a command that will compress every folder within a directory separately with the name of each archive reflecting the original folder name. I know that

tar czvf example.tar.gz example/

will compress an entire folder. However, I have not found a command to bulk archive. Is there such a command?

flag
1  
Yeah, I see find, xargs and sed in your future. – jeffamaphone Sep 20 at 20:02
yep, you sed it ;) – undoIT Sep 21 at 0:24

3 Answers

vote up 0 vote down

Okay, here's the final command I came up with to archive then compress with bzip2 for maximum compression

find -mindepth 1 -maxdepth 1 -type d -exec tar cjf '{}'.tar.bz2 '{}' \;

thanks everyone!

link|flag
vote up 1 vote down
for f in `find -mindepth 1 -maxdepth 1 -type d`; do
    tar -czf $f.tar.gz $f
done
link|flag
Thanks! Exactly what I was looking for. – undoIT Sep 20 at 23:49
Okay, one more question. If I want to compress to bzip2, what would the full command be? – undoIT Sep 21 at 0:18
vote up 1 vote down
find -mindepth 1 -maxdepth 1 -type d -exec tar czf {}.tar.gz {} \;

Note that I used -maxdepth 1.

Consider the directory structure:

.
|-- a
|   `-- x
|-- b
`-- c

Without -maxdepth 1 you would get a.tar.gz and a/x.tar.gz. a.tar.gz would contain x and all of the files within; and a/x.tar.gz would contain x and its files. But this stores the items within x twice, assuming that isn't the goal.

Updated to use -mindepth 1 as well, because when run outside of example/ an example.tar.gz would be created as well.

Update ... and for bzip2:

find -mindepth 1 -maxdepth 1 -type d -exec tar cjf {}.tar.bz2 {} \;
link|flag
Without -mindepth 1, won't it create an archive for the current directory? – Adam Crume Sep 20 at 20:17
I thought that too, but when I tested it I didn't see that happening. – opello Sep 20 at 20:35
Ah but if you execute it within "example/" it doesn't, if you don't, it does. Will update. – opello Sep 20 at 20:38
is it possible to adjust the command so that bzip2 is used for compression? – undoIT Sep 21 at 0:24
@opello: Since the find command is finding '.', wouldn't it create a file called '..tar.gz'? ls wouldn't show that by default. – Adam Crume Sep 21 at 14:44
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.