Bash - Tar - Uncompress


$ tar -xzvf compress.tar.gz
  • -x: Extract files from an archive (Undoes the .tar part)
  • -z: Filter archive through gzip (uncompress, the .gz part)
  • -v: Verbose, list files processed (can get annoying)
  • -f: Name of archive file to use