Skip to content

Instantly share code, notes, and snippets.

@joanhey
Last active March 2, 2016 20:36
Show Gist options
  • Save joanhey/1972df2f7bcb0dbdef08 to your computer and use it in GitHub Desktop.
Save joanhey/1972df2f7bcb0dbdef08 to your computer and use it in GitHub Desktop.
Cambiar la identación de tabs a espacios en todos los ficheros php de un directorio recursivamente
find . -type f -name '*.php' -exec bash -c 'expand --tabs=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