range fixes

This commit is contained in:
olli 2023-10-30 16:37:08 +01:00
parent 4d392cac27
commit d90a381d6d

View File

@ -14,7 +14,7 @@ function get_range {
local f_range_data=$(grep "^${f_range_day}" ${f_hist_file} | cut -d , -f2 | grep "^[0-9]") local f_range_data=$(grep "^${f_range_day}" ${f_hist_file} | cut -d , -f2 | grep "^[0-9]")
# Check for new range # Check for new range
local f_last_range_day=$(tail -n1 ${f_hist_file} | cut -d, -f24) local f_last_range_day=$(tail -n2 ${f_hist_file} | head -n1 | cut -d, -f24)
if echo "${f_latest_date}" | grep -q ${f_last_range_day} if echo "${f_latest_date}" | grep -q ${f_last_range_day}
then then
g_echo_note "${FUNCNAME} $@: No new range" g_echo_note "${FUNCNAME} $@: No new range"