Archiving utility. Often combined with a compression method, such as gzip or bzip. More information: https://www.gnu.org/software/tar.
tar cf {{target.tar}} {{file1}} {{file2}} {{file3}}
tar czf {{target.tar.gz}} {{file1}} {{file2}} {{file3}}
tar xf {{source.tar[.gz|.bz2|.xz]}}
tar xf {{source.tar}} -C {{directory}}
tar caf {{target.tar.xz}} {{file1}} {{file2}} {{file3}}
tar tvf {{source.tar}}
tar xf {{source.tar}} --wildcards {{"*.html"}}