diff --git a/guide/english/bash/bash-unzip/index.md b/guide/english/bash/bash-unzip/index.md new file mode 100644 index 0000000000..cf77e8d70e --- /dev/null +++ b/guide/english/bash/bash-unzip/index.md @@ -0,0 +1,16 @@ +--- +title: Bash unzip +--- + +## Bash command: unzip + +**unzip will list, test, or extract files from a ZIP archive, commonly found on MS-DOS systems.** +``` +unzip [-Z] [-cflptTuvz[abjnoqsCDKLMUVWX$/:^]] file[.zip] [file(s) ...] [-x xfile(s) ...] [-d exdir] +``` +Example: + +Easiest way to extract in current folder +``` +unzip file.zip +```