Skip to content

Instantly share code, notes, and snippets.

@jcataluna
Last active April 18, 2016 03:53
Show Gist options
  • Save jcataluna/0dc80c86a6d88c3946e261937bdd0c9c to your computer and use it in GitHub Desktop.
Save jcataluna/0dc80c86a6d88c3946e261937bdd0c9c to your computer and use it in GitHub Desktop.
Finally a sed expression to remove ALL spaces and CR
find . -type f -print0 | xargs -0 sed -i -e "s/_id/id/g"
find . -type f -print0 | xargs -0 sed -i -e "s/\s//g"
find . -type f -print0 | xargs -0 sed -i -e :a -e '/$/N; s/[\r\n]//; ta;'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment