Files
spdlog/scripts/format.sh

12 lines
345 B
Bash
Raw Permalink Normal View History

2019-07-01 12:37:18 +02:00
#!/bin/bash
2020-02-25 18:52:35 +02:00
cd "$(dirname "$0")"/..
pwd
2024-01-14 12:44:52 +02:00
find_sources="find include src tests example bench -type f -name *\.h -o -name *\.cpp"
2018-03-17 12:49:31 +02:00
echo -n "Running dos2unix "
2023-09-25 15:43:06 +03:00
$find_sources | xargs -I {} sh -c "dos2unix '{}' 2>/dev/null; echo -n '.'"
2018-03-17 12:47:04 +02:00
echo
echo -n "Running clang-format "
2023-09-25 15:43:06 +03:00
$find_sources | xargs -I {} sh -c "clang-format -i {}; echo -n '.'"
2024-12-01 23:58:58 +02:00
echo