zip and unzip using tar code example
Example 1: how to zip with tar command
tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
Example 2: how to unzip using tar
tar -xf archive.tar.gz
tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
tar -xf archive.tar.gz