1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-18 13:55:11 -05:00
polybar/common/clang-format.sh

19 lines
379 B
Bash
Raw Normal View History

2016-11-25 05:49:37 -05:00
#!/bin/sh
main() {
if [ $# -lt 1 ]; then
2017-01-26 22:15:14 -05:00
printf "%s DIR...\n" "$0" 1>&2
2016-11-25 05:49:37 -05:00
exit 1
fi
search="${*:-.}"
[ -d "$search" ] || search="$(dirname "$search")"
# shellcheck disable=2086
find $search -regex ".*.[c|h]pp" \
-exec printf "\033[32;1m** \033[0mFormatting %s\n" {} \; \
-exec clang-format -style=file -i {} \;
}
main "$@"