Skip to content

Instantly share code, notes, and snippets.

@nathansizemore
Created June 25, 2015 15:10
Show Gist options
  • Select an option

  • Save nathansizemore/f8f03a1f0f2321a6b1b8 to your computer and use it in GitHub Desktop.

Select an option

Save nathansizemore/f8f03a1f0f2321a6b1b8 to your computer and use it in GitHub Desktop.
unix2dos
perl -pi -e 's/\r\n|\n|\r/\r\n/g' file-to-convert # Convert to DOS
perl -pi -e 's/\r\n|\n|\r/\n/g' file-to-convert # Convert to UNIX
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment