Skip to content

Instantly share code, notes, and snippets.

@marcelog
Created March 12, 2017 22:05
Show Gist options
  • Save marcelog/ae568b3a17dc74da27954c9a960d8714 to your computer and use it in GitHub Desktop.
Save marcelog/ae568b3a17dc74da27954c9a960d8714 to your computer and use it in GitHub Desktop.
Translating line endings from mac and dos to unix
#!/bin/bash
cat file.txt | tr '\r' '\n' | tr -s '\n' > file.translated.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment