tar -cvf – path-to-your-file | gzip | split -b 1024m – path-to-where-to-save-the-chunks/prefix
extract:
cat * | gunzip | tar -xvf -
source: http://kstephens.co.uk/mac-osx-how-to-compress-a-large-file-into-chunks/
tar -cvf – path-to-your-file | gzip | split -b 1024m – path-to-where-to-save-the-chunks/prefix
extract:
cat * | gunzip | tar -xvf -
source: http://kstephens.co.uk/mac-osx-how-to-compress-a-large-file-into-chunks/