Skip to content

Instantly share code, notes, and snippets.

@mRoca
Forked from cyrosy/gist:031becaba4a4f239ad47
Last active December 19, 2015 22:29
Show Gist options
  • Save mRoca/2a9a63e6212fd969fdff to your computer and use it in GitHub Desktop.
Save mRoca/2a9a63e6212fd969fdff 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