Skip to content

Instantly share code, notes, and snippets.

@geraldstanje
Forked from bluefuton/gist:1468061
Created May 18, 2014 21: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 geraldstanje/06c790adbb633e6d0c4f to your computer and use it in GitHub Desktop.
Save geraldstanje/06c790adbb633e6d0c4f 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