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");
     # Increment buffer round
     ((bufferRound++));
 done;
+
+# Author: Steven Baltakatei Sandoval
+# License: GPLv3+