Skip to content

Instantly share code, notes, and snippets.

@TJkrusinski
Created May 21, 2014 14:48
Show Gist options
  • Save TJkrusinski/6f2e462966e2abc05528 to your computer and use it in GitHub Desktop.
Save TJkrusinski/6f2e462966e2abc05528 to your computer and use it in GitHub Desktop.
tabs to spaces
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