Skip to content

Instantly share code, notes, and snippets.

@gregmercer
Created February 22, 2017 17:02
Show Gist options
  • Save gregmercer/303b725d2fbdf7f63c0c8ce07e42311e to your computer and use it in GitHub Desktop.
Save gregmercer/303b725d2fbdf7f63c0c8ce07e42311e to your computer and use it in GitHub Desktop.
find . -name "*.cs" | 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