Splitting large files
Splitting large files
Simple howto split large file into several parts.
In the following example the file IMAGE.iso is splitted into several 1,5GB files.
Command for splitting:
split -b 1500m IMAGE.iso partThis command will create several parts named like
partaa, partab, partac etc.Joining these files back together:
cat parta* > IMAGE.isovisit link download