Skip to content

Instantly share code, notes, and snippets.

@mywarr
Created January 28, 2014 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mywarr/8663897 to your computer and use it in GitHub Desktop.
Save mywarr/8663897 to your computer and use it in GitHub Desktop.
textfile processing notes sed etc..
remove empty lines
sed -i '/^[[:space:]]$/d' *.md
convert crlf to cr aka dos to unix with tr command.
for f (*.md) {tr -d '\r' < $f > $f_Without_CR.md}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment