-
-
Save noromanba/2900131 to your computer and use it in GitHub Desktop.
Linebreak convert to LF from CRLF
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
| #!/usr/bin/bash | |
| # Linebreak convert to LF from CRLF | |
| # @author noromanba http://flavors.me/noromanba | |
| # @license CC0 Univ PD https://creativecommons.org/publicdomain/zero/1.0/ | |
| for stream in $@ | |
| do | |
| cat $stream | tr -d '\r' > tmpstream | |
| mv tmpstream $stream | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment