linux .tar.gz code example
Example 1: how to zip with tar command
tar -czvf archive.tar.gz stuff
Example 2: untar tar.gz
tar -xzf file.tar.gz
Example 3: tar.gz files
tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
tar -czvf archive.tar.gz stuff
tar -xzf file.tar.gz
tar -czvf name-of-archive.tar.gz /path/to/directory-or-file