spdlog/format.sh

6 lines
127 B
Bash
Raw Normal View History

2018-03-09 07:27:15 -05:00
#!/bin/bash
find . -name "*\.h" -o -name "*\.cpp"|xargs dos2unix
2018-03-16 11:04:35 -04:00
find . -name "*\.h" -o -name "*\.cpp"|xargs clang-format -i
2018-03-09 07:27:15 -05:00