Skip to content

Instantly share code, notes, and snippets.

@morris821028
Created January 12, 2015 00:55
Show Gist options
  • Save morris821028/f15d842eafc4be6616e4 to your computer and use it in GitHub Desktop.
Save morris821028/f15d842eafc4be6616e4 to your computer and use it in GitHub Desktop.
txt Windows To Unix, replace '\r\n' to '\n'
$ awk '{ sub("\r$", ""); print }' out.txt > output.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment