From d323c568b59eea82de7473e5ed05ddebb6dfb94c Mon Sep 17 00:00:00 2001 From: olli Date: Wed, 17 May 2023 11:35:29 +0200 Subject: [PATCH] typo --- dabo/analyze.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dabo/analyze.sh b/dabo/analyze.sh index e85d66e..2187a9e 100755 --- a/dabo/analyze.sh +++ b/dabo/analyze.sh @@ -40,14 +40,14 @@ function analyze { IFS=$'\n' local f_strategy - lines=$(egrep "^${ANALYZE_TIME}" "$file" | grep -v ',,' | wc -l) - if [ $lines -lt 40 ] - then - g_echo "Only $lines lines for given timeframe (${ANALYZE_TIME}) in $file - ignoring files with less then 40!" - return 1 - fi + #lines=$(egrep "^${ANALYZE_TIME}" "$file" | grep -v ',,' | wc -l) + #if [ $lines -lt 40 ] + #then + # g_echo "Only $lines lines for given timeframe (${ANALYZE_TIME}) in $file - ignoring files with less then 40!" + # return 1 + #fi - for line in $(egrep "^${ANALYZE_TIME}" "$file" | grep -v ',,' + for line in $(egrep "^${ANALYZE_TIME}" "$file" | grep -v ',,') do IFS="$ORIGIFS" current=$(echo $line | cut -d, -f2)