linux tar compress 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 tar linux
tar -zcvf file.tar.gz /path/to/dir/
Example 3: tar compress
tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
Example 4: linux tar command
Create a new tar archive.
$ tar cvf archive_name.tar dirname/
Extract from an existing tar archive.
$ tar xvf archive_name.tar
View an existing tar archive.
$ tar tvf archive_name.tar