Archiving utility Optional compression with gzip / bzip
tar cf {{target.tar}} {{file1 file2 file3}}
tar czf {{target.tar.gz}} {{file1 file2 file3}}
tar xf {{source.tar}} -C {{folder}}
tar xzf {{source.tar.gz}}
tar xjf {{source.tar.bz2}}
tar caf {{target.tar.xz}} {{file1 file2 file3}}
tar -tvf {{source.tar}}