Skip to content

Instantly share code, notes, and snippets.

@medeirosthiago
Last active May 21, 2016 15:25
Show Gist options
  • Save medeirosthiago/97656c3f81198ed6fd7cf49bdc7af4ab to your computer and use it in GitHub Desktop.
Save medeirosthiago/97656c3f81198ed6fd7cf49bdc7af4ab to your computer and use it in GitHub Desktop.

Canivete! 🔩

Remove linhas em brancos:

sed '/^$/d' <in> > <out>


Adiciona vírgula no fim de cada linha:

sed 's/$/,/' <in> > <out>


Remover ^M no final da lina:

perl -pi -e 's/\r\n/\n/g' <file>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment