Posted on July 30, 2015 in linux, tips
Here is one simple way to unzip multiple zip files in linux thru console.
bash-4.2$ for i in *.zip; do unzip -d $i.folder $i; done
Posted on July 30, 2015 in linux, tips
Here is one simple way to unzip multiple zip files in linux thru console.
bash-4.2$ for i in *.zip; do unzip -d $i.folder $i; done