From 2877379462b7a48f01ebd6ce46c6c9e73999223a Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sun, 15 Jan 2012 20:02:29 -0500 Subject: [PATCH] taking out rev control directories slightly better. --- scripts/notes/info_overload_report.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/notes/info_overload_report.sh b/scripts/notes/info_overload_report.sh index 1150f543..46901db5 100644 --- a/scripts/notes/info_overload_report.sh +++ b/scripts/notes/info_overload_report.sh @@ -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. -- 2.34.1