Answers for "how to tar linux"

10

how to tar linux

tar -zcvf file.tar.gz /path/to/dir/
Posted by: Guest on March-07-2020
5

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
Posted by: Guest on September-29-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language