input is
abcde123456
output is
abc
de1
234
56
insert a \n after every 3.char (if present)
the inputfile is large, very very large
sed does not understand \n,
maybe i don't understand sed
vi can do it
:%s/.../&^M/g
but, needs days to do the job
it's a performance Q.
any idea? thanks iribach