command tar linux code example
Example 1: 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
Example 2: how to make a tarball in linux
tar -cvzf name.tar /path/to/directory