Most Linux distros and macOS have tar program pre-installed by default, it can be used to extract tar.gz archives. Command structure is next:
tar -xzvf archive.tar.gz /path/to/file/or/dir
What these flags mean:
-
-x- instructstarthat we are going to extract archive; -
-z- use gzip as compression method; -
-f archive.tar.gz- specifies archive file name to extract; -
-v- enables verbose mode.
Popular knowhows
pubsub
gcloud
docker
3 years ago
go
golang
testing
3 years ago
ubuntu
macos
terminal
tar
3 years ago