Skip to content

Instantly share code, notes, and snippets.

@jordic
Created June 23, 2016 05:10
Show Gist options
  • Save jordic/d8ab0dd08dbcde840d540a4523917f95 to your computer and use it in GitHub Desktop.
Save jordic/d8ab0dd08dbcde840d540a4523917f95 to your computer and use it in GitHub Desktop.
Create a multitar archive
# Create
tar czpvf - /path/to/archive | split -d -b 100M - tardisk
# Decompress
cat tardisk* | tar xzpvf -
# http://superuser.com/questions/290986/how-to-create-tar-archive-split-into-or-spanning-multiple-files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment