Archiving utility. Often combined with a compression method, such as gzip or 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}}
tar xf {{source.tar}} --wildcards {{"*.html"}}