Last active
October 27, 2016 08:38
-
-
Save itsdouges/21cc58f166971de738ac5e3c8359f67d to your computer and use it in GitHub Desktop.
Recursively replaces tabs with spaces.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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