spdlog/scripts/format.sh

13 lines
336 B
Bash
Raw Normal View History

2019-07-01 18:37:18 +08:00
#!/bin/bash
2020-02-26 00:52:35 +08:00
cd "$(dirname "$0")"/..
pwd
2018-03-17 18:49:31 +08:00
echo -n "Running dos2unix "
2020-02-26 00:52:35 +08:00
find . -name "*\.h" -o -name "*\.cpp"|grep -v bundled|xargs -I {} sh -c "dos2unix '{}' 2>/dev/null; echo -n '.'"
2018-03-17 18:47:04 +08:00
echo
echo -n "Running clang-format "
2020-02-26 00:52:35 +08:00
find . -name "*\.h" -o -name "*\.cpp"|grep -v bundled|xargs -I {} sh -c "clang-format -i {}; echo -n '.'"
2018-03-17 18:47:04 +08:00
echo
2018-03-09 20:27:15 +08:00