7 lines
159 B
Bash
Executable File
7 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
find . \
|
|
-not \( -path './.git' -prune \) \
|
|
-not \( -path './build' -prune \) \
|
|
-not \( -path './dep' -prune \) \
|
|
-name '*.c' -o -name '*.h'
|