Skip to content

Instantly share code, notes, and snippets.

@ernestom
Forked from panquetofobia/gist:342812
Created August 21, 2012 18:53
Show Gist options
  • Save ernestom/3418310 to your computer and use it in GitHub Desktop.
Save ernestom/3418310 to your computer and use it in GitHub Desktop.
# Expand tabs in php files.
$ for i in $(find ./* -iname "*.php"); do awk '{sub("\t"," ",$0); print $0}' $i > ~/e.tmp && cat ~/e.tmp > $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment