My question might be quite unclear here. I have a giant text file with values that looks like this
0.00601233
0.000139403
0.000133679
0.000139497
0.000141683
0.000141888
0.000138646
0.000133465
0.000146326
0.000135611
...
And I want to slice it into several files of 100 lines.
File 1 will have lines 1 to 100.
File 2 will have lines 101 to 200.
etc...
There's probably a way to do this using sed or awk but I'm not familiar enough with theses tools or with regular expressions to do what I want here.