Skip to content

Instantly share code, notes, and snippets.

@kballenegger
Created August 12, 2014 02:04
Show Gist options
  • Save kballenegger/c398a3d2be417a54716e to your computer and use it in GitHub Desktop.
Save kballenegger/c398a3d2be417a54716e to your computer and use it in GitHub Desktop.
4-space -> 2-space indentation in entire codebase
find . -name '*.js*' -exec bash -c "ruby -ne 'puts \$_.gsub(/^(( )+)/) {|m| (m.length/2).times.map{|_|\" \"}.join }' <{} >{}.bk && rm -f {} && mv {}.bk {}" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment