Ferramenta de compressão de arquivos. Utilizado com metodos de compressão como o de gzip ou bzip2. Mais informações: https://www.gnu.org/software/tar.
tar -cvf {{output.tar}} {{arquivo1}} {{arquivo2}} {{arquivo3}}
tar -czvf {{output.tar.gz}} {{arquivo1}} {{arquivo2}} {{arquivo3}}
tar -cavf {{output.tar.xz}} {{arquivo1}} {{arquivo2}} {{arquivo3}}
tar -xvf {{input.tar[.gz|.bz2|.xz]}}
tar -xzvf {{input.tar[.gz|.bz2|.xz]}}
tar -xvf {{input.tar[.gz|.bz2|.xz]}} -C {{diretório}}
tar -xvf {{input.tar}} --wildcards "{{*.html}}"
tar -tvf {{input.tar}}