Answers for "tar linux"

0

tar linu

tar -czvf {namafile}.tar.gz {namafolder}
Posted by: Guest on March-09-2021
3

how to zip with tar command

tar -czvf archive.tar.gz stuff
Posted by: Guest on March-11-2020
10

how to tar linux

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

how to zip with tar command

tar -czvf archive.tar.gz /usr/local/something
Posted by: Guest on March-11-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
1

archive tar

tar -czvf archive.tar.gz /usr/local/something
Posted by: Guest on June-29-2020

Browse Popular Code Answers by Language