Possible Duplicate:
How to bulk convert all the file in a file system branch between Unix and Windows line break format?
which is the best tool to convert the CRLF to LF for my project in C++,one of the guideline is to do so before review.
Possible Duplicate:
How to bulk convert all the file in a file system branch between Unix and Windows line break format?
which is the best tool to convert the CRLF to LF for my project in C++,one of the guideline is to do so before review.
Try the dos2unix
and unix2dos
tools.
Wrap it in a shell script to match all your source files and it should be done.