Hi, I got a directory of ZIP files (created on a Windows machine), I can manually unzip them using "unzip filename" but how can I unzip all the ZIP files in the current folder via a shell scripts?
Using Unbuntu Linux Server.
Thanks
Hi, I got a directory of ZIP files (created on a Windows machine), I can manually unzip them using "unzip filename" but how can I unzip all the ZIP files in the current folder via a shell scripts?
Using Unbuntu Linux Server.
Thanks
unzip *.zip, or if they are in subfolders, then something like
find . -name "*.zip" -exec unzip {} \;