Feature #771
Remove Trailing ^M Line Feed Character From Files
Status:
Closed
Priority:
Normal
Assignee:
Category:
Command-Line Help
Target version:
Description
Once in a while I will download a config file that contains ^M characters at the end of each line. This can easily be fixed using vi.
- Open the text file:
vi ~/somefile.txt
- Then use the following command to delete all matches of ^M; make sure to use CTRL+V and CTRL+M to create the
^M
character, or else nothing will happen::%s/^M//
Updated by Daniel Curtis almost 9 years ago
- Status changed from New to Resolved
- Start date changed from 03/05/2016 to 03/06/2016
- % Done changed from 0 to 100