Categories
Uncategorized

unzip all zip files in the current dir to a separate folder

for file in `ls *.zip`; do unzip $file -d `echo $file | cut -d "." -f 1`; done