Skip to content

Instantly share code, notes, and snippets.

@HendrikLouw
Created April 16, 2012 07:44
Show Gist options
  • Save HendrikLouw/2396970 to your computer and use it in GitHub Desktop.
Save HendrikLouw/2396970 to your computer and use it in GitHub Desktop.
Cleanup whitespaces
# Remove trailing spaces from files
sed -i 's/[ \t]*$//g' app/**/*.rb
# Convert tabs to spaces
sed -i 's/[ ]/ /g' app/**/*.rb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment