I'm trying to unpack a large mass of files in linux and I'm trying to use a for that looks like this:
for z in *.zip; do unzip $z ; done
but I get the following message:
unzip: can not find or open divide, divide.zip, or divide.ZIP. unzip: can not find or open install, install.zip or install.zip.
The biggest problem is because there are spaces in the names, etc.
I already made another for
replacing the spaces with '_' but I would like to know if there is any way to unpack without replacing the spaces.