From 9a527adf943c0c76f91f97dc0842e750c1cebdec Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Fri, 31 Jan 2014 15:11:52 +0400 Subject: [PATCH] Add find_sources.sh: find files pruning VCS directories --- bin/find_sources.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 bin/find_sources.sh diff --git a/bin/find_sources.sh b/bin/find_sources.sh new file mode 100755 index 0000000..c3111e6 --- /dev/null +++ b/bin/find_sources.sh @@ -0,0 +1,4 @@ +#! /bin/sh + +exec cgmem_nice 100 \ +find . \( -type d \( -name CVS -o -name .git -o -name .hg -o -name .svn \) -prune \) -o -type f -print -- 2.39.2