for file in `ls *.zip`; do unzip $file -d `echo $file | cut -d "." -f 1`; done
unzip all zip files in the current dir to a separate folder
Posted in Uncategorized
for file in `ls *.zip`; do unzip $file -d `echo $file | cut -d "." -f 1`; done
Posted in Uncategorized