---
tags: [ compression ]
---
# To extract an archive:
unzip <archive>

# To extract an archive to a specific directory:
unzip <archive> -d <directory>

# To test integrity of archive:
unzip -tq <archive>

# To list files and directories an archive:
unzip -l <archive>
