spdlog/format.sh

6 lines
127 B
Bash
Raw Normal View History

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