taking out rev control directories slightly better.
authorChris Koeritz <fred@gruntose.com>
Mon, 16 Jan 2012 01:02:29 +0000 (20:02 -0500)
committerChris Koeritz <fred@gruntose.com>
Mon, 16 Jan 2012 01:02:29 +0000 (20:02 -0500)
scripts/notes/info_overload_report.sh

index 1150f543f645c790fc4fdea05f8d455d56613b9e..46901db55e33eaf724506bb8eaf6e4dc13c21b79 100644 (file)
@@ -4,14 +4,14 @@
 REPORT_FILE="$HOME/quartz/history_info_overload.txt"
 
 # notes are individual files of tasks, usually, although some are combined.
-note_depth=$(find ~/quartz/grunty_notes/ -type f -exec echo \"{}\" ';' | grep -v svn | wc -l)
+note_depth=$(find ~/quartz/grunty_notes/ -type f -exec echo \"{}\" ';' | grep -v "\.svn" | grep -v "\.git" | wc -l)
 
 # projects are slightly more productive, ongoing things that are very active.
-project_depth=$(find ~/quartz/projects/ -type f -exec echo \"{}\" ';' | grep -v svn | wc -l)
+project_depth=$(find ~/quartz/projects/ -type f -exec echo \"{}\" ';' | grep -v "\.svn" | grep -v "\.git" | wc -l)
 
 # source examples need to be sucked into other places, other codebases.  they are not
 # supposed to pile up here.
-source_example_depth=$(find ~/quartz/example_source_code/ -type f -exec echo \"{}\" ';' | grep -v svn | wc -l)
+source_example_depth=$(find ~/quartz/example_source_code/ -type f -exec echo \"{}\" ';' | grep -v "\.svn" | grep -v "\.git" | wc -l)
 
 
 #hmmm: need the counter of things in the html files back too.