Skip to content

Instantly share code, notes, and snippets.

@korakot
Last active March 26, 2024 07:29
Show Gist options
  • Save korakot/2741f8e93f6822531a9412c02d1ec8a8 to your computer and use it in GitHub Desktop.
Save korakot/2741f8e93f6822531a9412c02d1ec8a8 to your computer and use it in GitHub Desktop.
Unzip a file in the current directory (-j ignore path info)
!unzip -j archive.zip path/to/file.txt
!unzip -j archive.zip path/to/file.txt -d /to/path/
# download and unzip in one line, quietly
!wget -qO- http://host.com/file.zip | jar x
!curl -s http://host.com/file.zip | jar x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment