Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How to extract/create tar files?

create Extract files tar
0
Posted

How to extract/create tar files?

0

Tar sticks multiple files together. Tar dose not compress any of the files, use gzip or compress to do that. This will extract files from foo.tar. tar xvf foo.tar x = extract files from an archive v = verbosely list files processed f = use archive file foo.tar, default is tape drive This will archive the files bar1, bar2, and bar3 into foo.tar You may specify directories as well as files to be included in the tar file. If you specify a directory, everything in the directory will be included. tar cvf foo.tar bar1 bar2 bar3 c = create a new archive v = verbosely list files processed f = use archive file foo.tar, default is tape drive This will show you the contents of foo.tar.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123