Following situation:

I'm working on a Mac running OS X and recently joined a project whose members so far all use Windows. One of my first tasks was to set up the codebase in a Git repository, so I pulled the directory tree from FTP and tried to check it into the Git repo I had prepared locally. When trying to do this, all I got was this

fatal: CRLF would be replaced by LF in blog/license.txt.

Since this affects all files below the "blog" folder, I'm looking for a way to conveniently convert ALL files in the tree to Unix line-endings. Is there a tool that does that out of the box or do I get scripting something myself?

For reference, my Git config concerning line-endings:

core.safecrlf=true
core.autocrlf=input
link|improve this question

60% accept rate
feedback

2 Answers

up vote 6 down vote accepted

dos2unix does that for you. Fairly straight forward process.
dos2unix filename

Here is a blip on converting all files recursively.

Thanks to useless, here is a simple command to convert file endings recursively.
find blog -type f | xargs dos2unix

link|improve this answer
2  
find blog -type f | xargs dos2unix should be faster. You don't need the -name *.* either, unless you specifically want only files with a period somewhere in the name. That's a windows glob, not a *nix one. – Useless Aug 15 '11 at 17:31
cheers: it was close enough to your blip to not feel like a seperate answer :-) – Useless Aug 15 '11 at 18:48
Appreciate the bone:) – Andy Aug 15 '11 at 19:40
Piping find to xargs will fail if find matches any files with whitespace, quotes, or other shell meta characters in their path. At the least use find blog -type f -print0 | xargs -0 dos2unix to handle the case of whitespace. You have to use find's -exec instead of piping to avoid quotes, etc.. The dos2unix man page doesn't specify what its behavior is if you invoke it on binary files. If it converts CRLF in binary files, it will corrupt them. See my answer for a safer, albeit longer alternative. – toolbear Sep 23 '11 at 19:11
feedback

Assuming you have GNU grep and perl this will recursively convert CRLF to LF in non-binary files under the current directory:

find . -type f -exec grep -qIP '\r\n' {} ';' -exec perl -pi -e 's/\r\n/\n/g' {} '+'

How it Works

Find recursively under current directory. Change . to blog or whatev subdirectories to limit the replacement.

find .

Only match regular files.

  -type f

Test if file contains CRLF. Exclude binary files. Runs grep command for every regular file. That's the price of excluding binaries. If you have an old grep you could try building a test using the file command.

  -exec grep -qIP '\r\n' {} ';'

Replace CRLF with LF. The '+' with the second -exec tells find to accumulate matching files and pass them to one (or as few as possible) invocations of the command -- like piping to xargs, but without problems if file path contains spaces, quotes, or other shell meta characters. The i in -pi tells perl to modify the file in place. You could use sed or awk here with some work, and you'll probably change '+' to ';' and invoke a separate process for each match.

  -exec perl -pi -e 's/\r\n/\n/g' {} '+'
link|improve this answer
1  
Wow! This worked for me. Awesome! – Mark Dec 15 '11 at 2:47
Thanks for this! – Sean May 12 at 3:03
feedback

Your Answer

 
or
required, but never shown

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