find ext src -name '*.cpp' -exec \ sed -i -e 's/foreach(\([^,]\+\),/for (\1 :/' {} \;
Command line: find src ext -regex '.*\.\(h\|cpp\|mm\)' -exec clang-format -i -style='{BasedOnStyle: Google, DerivePointerBinding: false}' {} \;