Skip to content

Instantly share code, notes, and snippets.

@mmarcon
Forked from bluefuton/gist:1468061
Created August 13, 2013 16:54
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 mmarcon/6223201 to your computer and use it in GitHub Desktop.
Save mmarcon/6223201 to your computer and use it in GitHub Desktop.
find . -name "*.php" | while read line; do expand -t 4 $line > $line.new; mv $line.new $line; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment