Welcome to mirror list, hosted at ThFree Co, Russian Federation.

format.sh - github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7bb076d0fd06a4344b68041b249aeee9d66a18f2 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
echo -n "Running dos2unix     "
find . -name "*\.h" -o -name "*\.cpp"|xargs -I {} sh -c "dos2unix '{}' 2>/dev/null; echo -n '.'"
echo
echo -n "Running clang-format "
find . -name "*\.h" -o -name "*\.cpp"|xargs -I {} sh -c "clang-format -i {}; echo -n '.'"
echo