in reply to Re: Replacing ^L with \n
in thread Replacing ^L with \n

That ended up replacing ^L with the actual character n, not a carriage return.

I tried this and it worked:

perl -pi -e 's/^L/\n/g' file.txt

Maybe I should learn something about regular expressions?

Muchos Gracias
-auzten