unzip

Linux · Files · available in the simulator

What it does

Extracts and lists files in ZIP archives.

Syntax

unzip [opciones] archivo.zip

Options and parameters

  • -l

    Lists archive contents without extracting.

    unzip -l copia.zip
  • -d

    Extracts files to the specified directory.

    unzip copia.zip -d /tmp/destino
  • -o

    Overwrites existing files without prompting.

  • -n

    Never overwrites existing files.

  • -q

    Quiet mode.

Usage examples

  • unzip archivo.zip
  • unzip archivo.zip -d destino/
  • unzip -l copia.zip
  • unzip copia.zip -d /tmp/destino
Practise unzip

Related commands