vote up 0 vote down star

I have several large files, each of which I want to chunk/split it in to predefined number of parts.

Is there an efficient way to do it in Unix (e.g. via awk/sed/perl)?

Also each file can have varied number of lines.

File1.txt 20,300,055 lines
File2.txt 10,033,221 lines
etc...
flag

what'a s k-part? – hacker Oct 17 at 10:27
1  
Do you want to split them into predefined size files (ie, 1MB), or do you want to split it into n number of parts, and if this latter, do you want to split it by number of lines, or into equal sized files? – Matthew Scharley Oct 17 at 10:29
3  
Why was the title changed to be about Perl when the question isn't about Perl? – Kinopiko Oct 17 at 12:46
1  
Whatever you think about either wording, Perl is mentioned in both, so it's not really a change. – JB Oct 17 at 12:50
1  
@Kinopiko I am not sure what you think Perl/Unix means, but I took it to mean Perl on Unix. The OP could have rolled back the change if he did not agree with it. – Sinan Ünür Oct 17 at 20:58
show 3 more comments

3 Answers

vote up 7 vote down check

If you just want to split each file into files of a fixed number of lines or bytes, you can use the split command.

link|flag
vote up 2 vote down

you can use csplit, which can split by context. Check the man/info page of csplit for more info.

link|flag
vote up 2 vote down

I found this. You may need to find the number of parts to be splited it too first.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.