How to remove ^m characters in Vim

Source: Internet
Author: User
Dos/windows-based text files have a CR (carriage return) and LF (line wrapping) at the end of each line, and UNIX text has only one line break, that is, win each line ends with \ r \ n, and Linux has only one \ n
If the document on win is uploaded to Linux, a ^m will appear at the end of each line (^m is ctrl+v,ctrl+m)
If it is a single document, you can open with VI, execute:%s/^m//g to remove ^m,
But if the bulk of the removal of words can not use VI,

Command with SED
Convert the win document to a Linux document:
Find./-type F print0 | xargs-0 sed-i ' s/^m$//'

Convert the files under Linux to win
Find./-type F print0 | xargs-0 sed-i ' s/$/^m/' %s/\r//g

How to remove ^m characters in Vim

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.