From 49b01b3946c710b199dfb3e740d8efec0b4b77f4 Mon Sep 17 00:00:00 2001 From: olli Date: Wed, 17 May 2023 11:06:30 +0200 Subject: [PATCH] set ignoring files with less then 50 to 45 --- dabo/analyze.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dabo/analyze.sh b/dabo/analyze.sh index 995ccc1..bc4f842 100755 --- a/dabo/analyze.sh +++ b/dabo/analyze.sh @@ -129,9 +129,9 @@ do echo "${file}" | egrep -q "BALANCE|MSCI-WORLD-INDEX" && continue lines=$(egrep "^${ANALYZE_TIME}" "$file" | grep -v ',,' | wc -l) - if [ $lines -lt 50 ] + if [ $lines -lt 40 ] then - g_echo "Only $lines lines for given timeframe (${ANALYZE_TIME}) in $file - ignoring files with less then 50!" + g_echo "Only $lines lines for given timeframe (${ANALYZE_TIME}) in $file - ignoring files with less then 40!" continue fi