diff options
author | geronimo <geronimo013@gmx.de> | 2012-07-13 04:26:40 +0200 |
---|---|---|
committer | geronimo <geronimo013@gmx.de> | 2012-07-13 04:26:40 +0200 |
commit | 2d48ae784ea6828e8626c32c848f64232d8f35c0 (patch) | |
tree | fab114b03e91125783a778b835dd1913b039cebe /findFiles | |
download | cmp-2d48ae784ea6828e8626c32c848f64232d8f35c0.tar.gz cmp-2d48ae784ea6828e8626c32c848f64232d8f35c0.tar.bz2 |
initial import
Diffstat (limited to 'findFiles')
-rwxr-xr-x | findFiles | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/findFiles b/findFiles new file mode 100755 index 0000000..921f8c4 --- /dev/null +++ b/findFiles @@ -0,0 +1,6 @@ +#!/bin/bash +dirs=$(find . | grep -e "\(include\|doc\|src\)$" | grep -v obj) + +for i in $dirs; do + find $i +done |