summaryrefslogtreecommitdiff
path: root/findFiles
diff options
context:
space:
mode:
authorgeronimo <geronimo013@gmx.de>2012-07-13 04:26:40 +0200
committergeronimo <geronimo013@gmx.de>2012-07-13 04:26:40 +0200
commit2d48ae784ea6828e8626c32c848f64232d8f35c0 (patch)
treefab114b03e91125783a778b835dd1913b039cebe /findFiles
downloadcmp-2d48ae784ea6828e8626c32c848f64232d8f35c0.tar.gz
cmp-2d48ae784ea6828e8626c32c848f64232d8f35c0.tar.bz2
initial import
Diffstat (limited to 'findFiles')
-rwxr-xr-xfindFiles6
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