Skip to content

Instantly share code, notes, and snippets.

@cybniv
Forked from marcelog/to_unix_eol.sh
Created September 3, 2020 23:47
Show Gist options
  • Save cybniv/3824bbcc6a700bf8c57262d0d774a584 to your computer and use it in GitHub Desktop.
Save cybniv/3824bbcc6a700bf8c57262d0d774a584 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