6 examples for unzip

19
1
2
  # Extracts contents to specified directory
unzip archive.zip -d /path/to/other/directory/
17
1
2
  # unzip a zip file, extract in current directory
unzip -e archive.zip
8
1
2
  # use unzip -l to see the contents of an archive
unzip -l archive.zip
3
1
2
3
  # 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
2
1
2
  # Unzip overwriting content of current directory
unzip -o archive.zip
2
1
2
  # Unzip all *.zip files
unzip '*.zip'