Tag: tar
-
Extract tar archive to specified location
How to extract a tar file to a directory tar -cvvf archive.tar /pathtoextract
-
How to generate a tar gz file from a file list
Easy example of tar use. We provide a list of files to archive them in one tar file. tar zcvf myFile.tar.gz file1.txt file2.txt file3.txt file4.txt