while read -r -t "$bufferTTL" line && [[ $SECONDS -lt "$bufferTOD" ]]; do
# Append line to buffer array
buffer+=("$line");
- echo "DEBUG:Processing line:$lineCount";
- echo "DEBUG:Current line :$line";
- echo "DEBUG:buf elem count :${#buffer[@]}";
+ vbm "DEBUG:Processing line:$lineCount";
+ vbm "DEBUG:Current line :$line";
+ vbm "DEBUG:buf elem count :${#buffer[@]}";
((lineCount++));
done;
# Create dir_tmp if missing