Files
funstraw/format.sh
2016-09-25 17:37:37 -07:00

6 lines
121 B
Bash
Executable File

#!/bin/sh
exec find $(dirname $0) \
-name '*.cc' -o -name '*.h' \
-exec clang-format-3.8 -i --style=google '{}' ';'