Created
May 21, 2014 14:48
-
-
Save TJkrusinski/6f2e462966e2abc05528 to your computer and use it in GitHub Desktop.
tabs to 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 ./views -type f -name \*.jade | while IFS="" read i; do expand -t2 "$i" > "$i-"; mv "$i-" "$i"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment