projects
/
feisty_meow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a656868
)
addressed extra spaces from mac wc cmd
author
Chris Koeritz
<fred@gruntose.com>
Thu, 20 Feb 2020 19:03:41 +0000
(14:03 -0500)
committer
Chris Koeritz
<fred@gruntose.com>
Thu, 20 Feb 2020 19:03:41 +0000
(14:03 -0500)
scripts/agenda/info_overload_report.sh
patch
|
blob
|
history
diff --git
a/scripts/agenda/info_overload_report.sh
b/scripts/agenda/info_overload_report.sh
index b4ad7388d9d83bb9bcc178c0cb4d9c557a3b0046..e6b63b2fcdc4f28475ab0f7585583bd8b44cbdda 100644
(file)
--- a/
scripts/agenda/info_overload_report.sh
+++ b/
scripts/agenda/info_overload_report.sh
@@
-32,7
+32,7
@@
function calculate_weight()
function calculate_complexity()
{
local dir="$1"; shift
- local complexity=$(find "$dir" -type d | wc -l)
+ local complexity=$(find "$dir" -type d | wc -l
| tr -d ' '
)
if [ -z "$complexity" ]; then echo 0; else echo "$complexity"; fi
}