Split

From Noah.org
Revision as of 16:47, 17 September 2007 by Root (talk | contribs) (New page: category:Engineering Some filesystems have 2GB limits, so this can be useful when burning to DVD or copying to FAT32. This splits a bigfile into many smallfiles of 2 GB each (2048 MB):...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Some filesystems have 2GB limits, so this can be useful when burning to DVD or copying to FAT32. This splits a bigfile into many smallfiles of 2 GB each (2048 MB):

 split --bytes=2048m bigfile smallfile

Use `cat` to merge the smallfiles back:

 cat smallfile* > bigfile

or from a Windows cmd shell:

 copy /b smallfile* bigfile