Created
June 25, 2015 15:10
-
-
Save nathansizemore/f8f03a1f0f2321a6b1b8 to your computer and use it in GitHub Desktop.
unix2dos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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