Skip to content

Instantly share code, notes, and snippets.

@ianthekid
Created October 16, 2014 15:17
Show Gist options
  • Select an option

  • Save ianthekid/f070fb8374d117b3ff39 to your computer and use it in GitHub Desktop.

Select an option

Save ianthekid/f070fb8374d117b3ff39 to your computer and use it in GitHub Desktop.
Create multi-part tar archives of large directory
/*
* Create multi-part archive of ./www/
*/
tar czf - www|split -b 1073741824 - www_backup.tar.
/*
* Extract multi-part archive
*/
cat www_backup.tar.*|gunzip -c |tar xf -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment