Skip to content

Instantly share code, notes, and snippets.

@WISHPRO
Created August 30, 2016 14:53
Show Gist options
  • Save WISHPRO/dccbae47f380f2605215992f87eb9e0c to your computer and use it in GitHub Desktop.
Save WISHPRO/dccbae47f380f2605215992f87eb9e0c to your computer and use it in GitHub Desktop.
Recursively convert Windows CR+LF to Unix LF in bash Raw
find . -name *.svg -exec perl -pi -e 's/\r\n/\n/g' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment