Skip to content

Instantly share code, notes, and snippets.

@makerneo-com
Created August 28, 2013 06:00
Show Gist options
  • Select an option

  • Save makerneo-com/6362572 to your computer and use it in GitHub Desktop.

Select an option

Save makerneo-com/6362572 to your computer and use it in GitHub Desktop.
unix2dos.sh
cat file | tr -s "\r\n" "\n" > file.tmp1
awk '{ORS="\r\n";print $0}' file.tmp1 > file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment