Skip to content

Instantly share code, notes, and snippets.

@noromanba
Created June 9, 2012 08:31
Show Gist options
  • Select an option

  • Save noromanba/2900131 to your computer and use it in GitHub Desktop.

Select an option

Save noromanba/2900131 to your computer and use it in GitHub Desktop.
Linebreak convert to LF from CRLF
#!/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