tar -xzvf
Extract a compressed gzip archive. Decompresses and extracts files from a tar.gz file.
Primary Syntax
$ tar -xzvf archive.tar.gz
#
Example Usage
tar -xzvf archive.tar.gz -C /destination/
tar -xvf archive.tar#
Quick Tips
• Use man tar to read the full manual
• Add --help flag for quick options reference
• Combine with | less for paginated output
Submitted by: admin
Added: 2/9/2026