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
- instructstar
that 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
2 years ago