RsD0p9BK
7/13/2016 - 12:19 PM

replaceTabs.sh

# OS X: replace tabs with spaces in all files using expand 

find . -name "*.php" | while read line; do expand -t 4 $line > $line.new; mv $line.new $line; done

# https://gist.github.com/bluefuton/1468061