1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#!/bin/bash
#
# Recursively format all C & C++ sources and header files, except those in the
# 'config' directory and generated files, such as ncgenyy.c, etc.
#
# Note that any files or directories that are excluded here should also be
# added to the 'exclude' list in .github/workflows/clang-format-check.yml
COMMAND="clang-format"
if [ $# -eq 1 ]; then
COMMAND="$COMMAND-$1"
fi
echo ""
echo "bin/format_source <version>"
echo ""
echo "Format the HDF4 source using clang-format. The <version>"
echo "parameter is optional and can be used to force a specific"
echo "installed version of clang-format to be used."
echo ""
find . \( -type d -path ./config -prune -and -not -path ./config \) \
-or \( -iname *.h -or -iname *.c -or -iname *.java \) \
| xargs -P0 -n1 ${COMMAND} -style=file -i -fallback-style=none
exit 0
|