#!/bin/sh find . \ -not \( -path './.git' -prune \) \ -not \( -path './build' -prune \) \ -not \( -path './dep' -prune \) \ -name '*.c' -o -name '*.h'