| 12345678910111213141516171819202122232425 |
- #!/bin/bash
- files=(`find ./src ./tests ./sandbox ./tools ./shaders ./samples -name '*.h' -o -name '*.hpp' -o -name '*.c' -o -name '*.cpp' -o -name '*.glsl'`)
- filecount=${#files[@]}
- count=0
- for f in ${files[@]}
- do
- # Run it in parallel
- echo -ne Formatting ${count}/${filecount}\\r
- ./thirdparty/bin/clang-format -sort-includes=false -i ${f} &
- count=$((${count}+1))
- # Throttle the parallel commands
- if !((count % 16)); then
- wait
- fi
- done
- wait
- echo Done! Formatted ${filecount} files
|