From 17fda1d570d4e3b47ef1c13755fa6fc279e7c623 Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Thu, 9 Jul 2020 19:43:08 +0000 Subject: [PATCH] style(unitproc):bkFreqWrite:Add boilerplate and semicolons --- unitproc/bkFreqWrite | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/unitproc/bkFreqWrite b/unitproc/bkFreqWrite index cec372e..2111e2c 100644 --- a/unitproc/bkFreqWrite +++ b/unitproc/bkFreqWrite @@ -13,12 +13,12 @@ magicWriteBuffer() { printf "%s\n" "${buffer[@]}" >> /dev/shm/$(date +%s)..bkFreqWrite-output.txt; } -bufferRound=0 +bufferRound=0; # Run until script TTL seconds pass while [[ $SECONDS -lt "scriptTTL" ]]; do bufferTOD="$((SECONDS + $bufferTTL))"; - lineCount=0 - # Start and fill buffer until buffer time-of-death (TOD) arrives + lineCount=0; + # Consume stdin to fill buffer until buffer time-of-death (TOD) arrives while read -r line && [[ $SECONDS -lt "$bufferTOD" ]]; do # Append line to buffer buffer+=("$line"); @@ -33,3 +33,6 @@ while [[ $SECONDS -lt "scriptTTL" ]]; do # Increment buffer round ((bufferRound++)); done; + +# Author: Steven Baltakatei Sandoval +# License: GPLv3+ -- 2.30.2