6 examples for unzip

{{ score }}
  # Extracts contents to specified directory
unzip archive.zip -d /path/to/other/directory/
        
{{ score }}
  # unzip a zip file, extract in current directory
unzip -e archive.zip
        
{{ score }}
  # use unzip -l to see the contents of an archive
unzip -l archive.zip
        
{{ score }}
  # unzip many files in one command: must add \ before wildchar
# otherwise command will extract first zip and search other files in it
unzip -e \*.zip
        
{{ score }}
  # Unzip overwriting content of current directory
unzip -o archive.zip
        
{{ score }}
  # Unzip all *.zip files
unzip '*.zip'