Hi guys,
Just run the following set of command (each followed by enter) in a folder where you have zip files,
1. for z in *.zip
2. do
3. unzip $z;
4. done
Here is the way I did the job,
bhavin@bhavin-Aspire-A315-51:~/Dropbox/60001/2$ for z in *.zip
> do
> unzip $z
> done
In order to extract 7z, rar or tar.xz files, just do the following replacements,
1. *.zip
*.tar.xz
*.rar
*.7z
3. unzip
tar -xf
unrar e
7z e
Just run the following set of command (each followed by enter) in a folder where you have zip files,
1. for z in *.zip
2. do
3. unzip $z;
4. done
Here is the way I did the job,
bhavin@bhavin-Aspire-A315-51:~/Dropbox/60001/2$ for z in *.zip
> do
> unzip $z
> done
In order to extract 7z, rar or tar.xz files, just do the following replacements,
1. *.zip
*.tar.xz
*.rar
*.7z
3. unzip
tar -xf
unrar e
7z e