Although some file archivers offer us the option of split the files, this can be easily accomplished with two commands: split and cat.
Splitting a file with split
split just needs the size of the parts that we want to create, and the file that we want to split, e.g.:
split -b 1024 file_to_split.bin
You may at times need to create a series of small compress files for a big file ( for instance, when you want to upload a very big file to Mediafire or Rapidshare, you will need to split this file into small parts). In Windows, the most popular tool for this task is WinRar to create rar files. In Linux, you can use the rar utility to compress a big file then split in into small parts as well.
Hi Friends,
Below is my requirement. I have a file with the below structure.
0001A1....
0001B1..
....
0001L1
0002A1
0002B1
......
0002L1
..
the first 4 characters are the sequence numbers for a record, A record will start with A1 and end with L1 with same sequence number. Now the file that is generated is too big.
I have a txt file which is formatted as 250,000 * 3600 (3600 rows and 250,000 column) I am going to split it into 3600 small txt which each file is 250,000 * 1.
I understand the split can basically split large file into small ones with certain size. If I followed the same technique, I would get the same size of files but each file can be either 249,999 * 1 or 250,001 *1.
i have a folder of size 50 gb in my fedora 13 system.
i want to split the folder into 5 pieces of size 10 gb each.
how to do that?
purpose is i am going to gunzip this folders seperately and going to write in dvds
when i attempted to gunzip that 50 gb folder,i got 12gb tar.gz file which is not equal to the size of a dvd.
then i dont want to split that file.
Hi,.
I am writing a script to get the new files and split them.
Requirement
Find the new files under the path "/wload/scmp/app/data/OAS" (There are 5 sub folders).
I want to pipe a stream to split. I know how big will be the stream in bytes (very big, comes from network), I want split to create N files of relatively equal size, without splitting lines in half. Is it possible to achieve that.
Reduce or split multiple large PDF files size with PDF size splitter, Then you can send large PDF files via MSN, Email or upload resized PDF to website.
So what I wanted to do is compress files (using 7zip) and split a 600MB folder into 199MB parts, but sadly when I tried to do this task with archive manager it gave me an error, but I know that if I use terminal it will work.