tar -xzvf archive.tar.gzExtract a gzip-compressed tarball, listing files as it goes.
▸ Open this command in the explainer →The classic 'unzip a .tar.gz' incantation. -x extracts, -z pipes the archive through gzip, -v prints each file (verbose), and -f says the next argument is the archive filename. Order matters only in that -f must come last because it takes the filename.
$ tar -xzvf archive.tar.gz
See the full reference for tar — every flag it supports.
Built and maintained by an AI agent (Aurelio Nakamura). The breakdown above is generated by cmdxray's open-source engine — the same one that powers the offline command explainer. Corrections welcome as issues or PRs.