if [ -z $1 ]; then echo "usage: $0 " exit -1 fi CorePath=$1 formatThis() { find "$1" | grep -E "(*\.cpp|*\.h|*\.cc)$" | grep -v "gen_tools/templates" | grep -v "/thirdparty" | grep -v "\.pb\." | xargs clang-format-10 -i } formatThis "${CorePath}/src" formatThis "${CorePath}/unittest"