Skip to content

Instantly share code, notes, and snippets.

@AlekseyKorzun
Created February 14, 2013 17:11
Show Gist options
  • Save AlekseyKorzun/4954350 to your computer and use it in GitHub Desktop.
Save AlekseyKorzun/4954350 to your computer and use it in GitHub Desktop.
Convert all tabs to spaces within PHP files
find . -name *.php ! -type d ! -name _tmp_ -exec sh -c 'expand -t 4 {} > _tmp_ && mv _tmp_ {}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment