Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View SpongeBobSun's full-sized avatar
🤔
Whaaaat

bob.sun SpongeBobSun

🤔
Whaaaat
View GitHub Profile
@SpongeBobSun
SpongeBobSun / gist:14831d03f3373302e146
Created January 15, 2016 03:37 — forked from bluefuton/gist:1468061
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