vote up 2 vote down star

I was sent a zip file containing 40 files with the same name. I wanted to extract each of these files to a seperate folder OR extract each file with a different name (file1, file2, etc).

Is there a way to do this automatically with standard linux tools? A check of man unzip revealed nothing that could help me. zipsplit also does not seem to allow an arbitrary splitting of zip files (I was trying to split the zip into 40 archives, each containing one file).

At the moment I am (r)enaming my files individually. This is not so much of a problem with a 40 file archive, but is obviously unscalable.

Anyone have a nice, simple way of doing this? More curious than anything else.

Thanks.

flag

80% accept rate
I'm not sure if this belongs here or on serverfault - if there is such a tool then the question belongs on serverfault, if you need to right one it belongs here. – Douglas Leeder Oct 13 at 16:28
1  
I always considered writing shell scripts/piped commands to be more programming than IT, but I can see your point. – pisswillis Oct 13 at 17:25
I'm curious how you end up with this zip file. If you use a tool like zip to add a file to an archive already containing a file of that name, it gets replaced. – Jefromi Oct 13 at 23:20
This zip was created on windows using right click "Send to Archive" type actions. – pisswillis Oct 15 at 12:10

1 Answer

vote up 4 vote down

Assuming that no such tool currently exists, then it should be quite easy to write one in python. Python has a zipfile module that should be sufficient.

Something like this (maybe, untested):

#!/usr/bin/env python

import os
import sys
import zipfile

count = 0

z = zipfile.ZipFile(sys.argv[1],"r")

for info in z.infolist():
    directory = str(count)
    os.makedirs(directory)
    z.extract(info,directory)
    count += 1

z.close()
link|flag
Wow, I didn't realize it'd be this simple. – Jefromi Oct 13 at 16:42
1  
Thanks for your answer, but I was looking for a technique that uses standard linux tools. However, this is most likely the most elegant solution. – pisswillis Oct 13 at 17:22
1  
python is pretty much a standard Linux tool. – Douglas Leeder Oct 13 at 17:27

Your Answer

Get an OpenID
or

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