Skip to content

Instantly share code, notes, and snippets.

@ethangardner
Created November 25, 2015 15:11
Show Gist options
  • Save ethangardner/49d33bd3c899bd757632 to your computer and use it in GitHub Desktop.
Save ethangardner/49d33bd3c899bd757632 to your computer and use it in GitHub Desktop.
Nomalize spaces in a directory
find . \( -name '*.scss' -o -name '*.html' -o -name '*.js' -o -name '*.php' \) ! -type d -exec bash -c 'expand -t 4 "$0" > /tmp/e && mv /tmp/e "$0"' {} \;
@ethangardner
Copy link
Author

Converts tabs to 4 spaces.

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