Skip to content

Instantly share code, notes, and snippets.

@lillyfreitas
Last active May 19, 2018 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lillyfreitas/76dae8ecd538eeea5e99d13207dc6b53 to your computer and use it in GitHub Desktop.
Save lillyfreitas/76dae8ecd538eeea5e99d13207dc6b53 to your computer and use it in GitHub Desktop.
Como criar um tar multipart
# Fonte: http://dicas.obiz.com.br/artigo/como-criar-um-tar-multipart
# Fragmentar um tar muito grande pode ser muito útil para transferir arquivos com conexões caindo:
tar -cvf - meuarquivo.grande | split -b 10m - meuarquivo.tar
# Para juntar tudo e descompactar, use o comando seguinte:
cat meuarquivo.tar.* | tar xvf -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment