Skip to content

Instantly share code, notes, and snippets.

@cyrosy
Created July 18, 2013 09:27
Show Gist options
  • Save cyrosy/031becaba4a4f239ad47 to your computer and use it in GitHub Desktop.
Save cyrosy/031becaba4a4f239ad47 to your computer and use it in GitHub Desktop.
Convert CRLF to LF in files under cwd
for file in $(find '.' -type f); do sed 's/^M//' -i $file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment