Tag: tar

  • Compression: Tar, Gzip, Bzip2, Compress

    Given two files, sample1.txt and sample1.sh, that I want to archive, which means combining files together (different than compressing them): $ tar -csv ThisIsACompressedTarFile.tar sample1.txt sample1.sh This gives us: We can peek into the Tar file without extracting the files using -t option We can extract those files using the -x (extract) switch: Now that…