From 1cfe4a68944b166f452f949ade14cc57f3c505e7 Mon Sep 17 00:00:00 2001 From: olli Date: Sat, 11 Nov 2023 17:10:06 +0100 Subject: [PATCH] more pure bash to speed up things --- dabo/functions/get_vars_from_csv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dabo/functions/get_vars_from_csv.sh b/dabo/functions/get_vars_from_csv.sh index bec4a8f..5d4507c 100644 --- a/dabo/functions/get_vars_from_csv.sh +++ b/dabo/functions/get_vars_from_csv.sh @@ -9,7 +9,7 @@ function get_vars_from_csv { if [ -z "${f_last_lines}" ] then - # mapfile -t f_last_lines <<< $(tail -n4 "${f_ASSET_HIST_FILE}") + mapfile -t f_last_lines <<< $(tail -n4 "${f_ASSET_HIST_FILE}") fi if [ -z "${f_market_performance}" ]