in reply to Long string needs to be separated

here's a one liner...

perl -e "print \"$_\n\" while sysread STDIN,$_,150,0" < your.file.here
it avoids slurping the file into a variable, so it saves a lot of memory.

~Particle