Skip to content

Instantly share code, notes, and snippets.

@MaximeFrancoeur
Created September 29, 2016 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaximeFrancoeur/205889d21bbdd331961acf311878865a to your computer and use it in GitHub Desktop.
Save MaximeFrancoeur/205889d21bbdd331961acf311878865a to your computer and use it in GitHub Desktop.
Convert CRLF to LF for OS X
find ./ -type f -exec perl -pi -e 's/\r\n|\n|\r/\n/g' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment