Skip to content

Instantly share code, notes, and snippets.

@pcewing
Created March 23, 2019 06:30
Show Gist options
  • Select an option

  • Save pcewing/d5b083bcd09ea49c0feb43cda08b0f52 to your computer and use it in GitHub Desktop.

Select an option

Save pcewing/d5b083bcd09ea49c0feb43cda08b0f52 to your computer and use it in GitHub Desktop.
Find file and format them in place with clang-format
#!/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