How to unzip multiple files with MacOS via CLI with unzip

# change directory to the folder with the zip files
cd /Users/Steve/Desktop/zips_folder

#if we don’t escape the asterisk then bash will expand the wildcard, so we use a backslash so that *.zip is passed

unzip \*.zip

# no needed for rm to remove/delete all .zips
rm -f *.zip

No comments yet.

Leave a Reply