Skip to content

Instantly share code, notes, and snippets.

@itsdouges
Last active October 27, 2016 08:38
Show Gist options
  • Save itsdouges/21cc58f166971de738ac5e3c8359f67d to your computer and use it in GitHub Desktop.
Save itsdouges/21cc58f166971de738ac5e3c8359f67d to your computer and use it in GitHub Desktop.
Recursively replaces tabs with spaces.
find . -name '*.[FILEEXTENSION]' ! -type d -exec bash -c 'expand -t 4 "$0" > /tmp/e && mv /tmp/e "$0"' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment