Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any way in Notepad++ (or even with another tool) to change the line ending automatically on multiple files in one go?

i.e. convert a mix of windows EOL (CRLF) and UNIX EOL (LF) files to be all Windows EOL (CRLF)

solution using Notepad++:

  1. use the Replace function for all open files.
  2. look for the end of line to be replaced (\n for UNIX format, \r\n for Windows format)
  3. make sure to select the Extended search mode, in order to prevent stuff like printf("blah\n"); to be replaced...
share|improve this question
In case notepad++ isn't a firm requirement, the info here might be relevant: stackoverflow.com/questions/3110031/… – reuben Jul 5 '12 at 9:43

2 Answers

up vote 3 down vote accepted

An alternative to the EOL conversion could be to use the Notepad++ Replace dialog. You can use extended characters (line feed in Windows is \r\n, I'm not sure about Unix).

You can also use the Find in Files tab of the dialog to perform the replace across multiple files.

share|improve this answer

I have Notepad++ 6.1.2.
In "Edit" menu you have "EOL conversion" that does exactly what you need.

share|improve this answer
1  
that works on a file basis, cannot be applied to a whole set of files. – fduff Jul 5 '12 at 9:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.