function calculate_count()
{
local dir="$1"; shift
+#hmmm: good grief, use an array here. need some kind of pipe chain array handling.
local count=$(find "$dir" -type f -exec echo \"{}\" ';' 2>/dev/null | grep -v "\.svn" | grep -v "\.git"| grep -v "\.basket" | grep -v "\.version" | grep -v "\.keep" | wc -l | tr -d ' ')
if [ -z "$count" ]; then echo 0; else echo "$count"; fi
}
function calculate_weight()
{
local dir="$1"; shift
+#hmmm: good grief, use an array here. need some kind of pipe chain array handling.
local weight=$(find "$dir" -type f -exec echo \"{}\" ';' 2>/dev/null | grep -v "\.svn" | grep -v "\.git"| grep -v "\.basket" | grep -v "\.version" | grep -v "\.keep" | xargs ls -al | awk '{ print $5 }' | paste -sd+ - | bc 2>/dev/null)
if [ -z "$weight" ]; then echo 0; else echo "$weight"; fi
}
##############"
echo -e "$full_report" | tee -a "$REPORT_FILE"
+echo -e "\n{report stored in $REPORT_FILE}"