unzip

How to unzip a zip file from the Terminal?

pacman -S unzip

After installing the unzip utility, if you want to extract to a particular destination folder, you can use:

unzip file.zip -d destination_folder

If you want to extract to a directory with the same name as the zip in your current working directory, you can simply do:

unzip file.zip

Links to this note