So you have just completed a download and it is in multiple zip files, rather than unpack them in the gui one at a time try this.
Open a terminal and 'cd' to the folder containing the zips, then enter this command:
for FILE in *.zip; do unzip -jo $FILE; done
I would suggest having the zip files in a separate folder to anything else to avoid confusion over the files that get unpacked.
1 comment:
Greeat share
Post a Comment