Created
March 23, 2019 06:30
-
-
Save pcewing/d5b083bcd09ea49c0feb43cda08b0f52 to your computer and use it in GitHub Desktop.
Find file and format them in place with clang-format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| find ./src -type f -iname '*.c' -exec clang-format -style=file -i {} \; | |
| find ./include -type f -iname '*.h' -exec clang-format -style=file -i {} \; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment