Skip to content

Instantly share code, notes, and snippets.

@joujiahe
Created February 23, 2019 06:04
Show Gist options
  • Save joujiahe/cc39b31c50e466e6aa6716eb199851b5 to your computer and use it in GitHub Desktop.
Save joujiahe/cc39b31c50e466e6aa6716eb199851b5 to your computer and use it in GitHub Desktop.
Replace DOS line endings to Unix style in MacOS
// to get ^M, type CTRL-V and CTRL-M
find . -type f -name '*.ts' -exec perl -p -i -e "s/^M//g" {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment