Einfache Möglichkeit zum konvertieren von Windows zu Unix Linebreaks:
In vi, you can remove the carriage return ( ^M ) characters with the following command:
:1,$s/^M//g
Note: To input the ^M character, press Ctrl-v , then press Enter or return.
Einfache Möglichkeit zum konvertieren von Windows zu Unix Linebreaks:
In vi, you can remove the carriage return ( ^M ) characters with the following command:
:1,$s/^M//g
Note: To input the ^M character, press Ctrl-v , then press Enter or return.