Here are two useful vi commands:
globally find and replace ^M characters with nothing
:s/^V^M/g
globally delete blank lines
:g/^$/d
Figuring things out, to get it done!
Here are two useful vi commands:
globally find and replace ^M characters with nothing
:s/^V^M/g
globally delete blank lines
:g/^$/d