Skip to content

Instantly share code, notes, and snippets.

@donnior
Created November 5, 2015 05:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donnior/6f5fccc7f317d84f3d03 to your computer and use it in GitHub Desktop.
Save donnior/6f5fccc7f317d84f3d03 to your computer and use it in GitHub Desktop.
replace tab with spaces
find . -name '*.java' ! -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