Files
funstraw/format.sh

6 lines
121 B
Bash
Raw Normal View History

2016-09-25 17:37:37 -07:00
#!/bin/sh
exec find $(dirname $0) \
-name '*.cc' -o -name '*.h' \
-exec clang-format-3.8 -i --style=google '{}' ';'