[Linux]Cutting a file into several parts

Last update on October 9, 2009 10:16 AM by netty5
Published by jak58

[Linux]Cutting a file into several parts







Linux is full of utility tools allowing you to manipulate files. There is a very handy tool to split a file into several parts (for example to carry data on low capacity media).
  • The split command:


split -b 1440k my_big_file


The split command will create files named xaa, xab, Xac [etc], equal in size or less than 1440 KB
To recover the whole file simply use the cat command as follows:

cat xaa xab Xac> my_big_file 


The join command may also be convenient for this purpose.
Best answers for « Cutting a file into several parts » in :
Converting your PDF file into an Image Show Converting your PDF file into an Image Universal Document Converter PDF2IMAGE PDF TO IMAGE CONVERTER You could have encountered difficulties to modify PDF docs in the past. Nowadays this is no more trouble as there are several PDF...
[MySQL]Loading a text file into ue table Show [MySQL]Loading a text file into ue table To load a text file as follows: $ tail /home/user1/test.txt 'name1',1,9 'name2',2,3 'name3',3,54 'name4',4,2 'name5',5,9 In a table defined as follows: CREATE TABLE...
Assembling multiple PDF files ShowAssembling multiple PDF files Intro Steps: Intro PDF creator is a software allowing you to print several files into one with its printer function. Download link http://en.kioskea.net/telecharger/telecharger-40-pdf...
DV files divided into several files ShowDV files divided into several files It is good to know that the fat32 file system which however cannot handle files larger than 4GB may split a digital video in DV format into several files. A plausible and right solution to...
How to convert Excel into PDF? ShowHow to convert Excel into PDF? Here is a small tips about how to convert your excel files into PDF for your presentation. Step 1 PDF995 is software that gets installed on your computer which enables you to print any sources of document to...
Download Document Printer ShowDocument Printer (docPrint) is a format converter. It allows to convert word format into JPG, JPEG and TIFF, DOC files into JPG and JPEG, PDF files into TIFF, JPG, JPEG, TIFF DWG, DWG files into JPG, JPEG, DXF files into TIFF, PPT files into JPEG,...
UNIX - Files ShowIntroduction to UNIX files In UNIX systems any element is represented in the form of a file. All files are architectured around a single tree structure where the base, called the root, is written "/". File types UNIX systems define different...
The file system ShowWhat is a file system? Even though hard drives can be very small, they still contain millions of bits and therefore need to be organised so that information can be located. This is the purpose of the file system. Remember that a hard drive is made...
FAT16 and FAT32 ShowThe FAT16 file system The first file system to be used on a Microsoft operating system was the FAT system, which uses a file allocation table. The file allocation table is actually an index which lists the content of the disk in order to record the...