spdlog/scripts/format.sh
2024-12-01 23:58:58 +02:00

12 lines
345 B
Bash
Executable File

#!/bin/bash
cd "$(dirname "$0")"/..
pwd
find_sources="find include src tests example bench -type f -name *\.h -o -name *\.cpp"
echo -n "Running dos2unix "
$find_sources | xargs -I {} sh -c "dos2unix '{}' 2>/dev/null; echo -n '.'"
echo
echo -n "Running clang-format "
$find_sources | xargs -I {} sh -c "clang-format -i {}; echo -n '.'"
echo