#!/bin/bash

cat listen.stats | awk -F ':' '{print $7" " $9}' | awk '{print $1"\t"$4}' > stats.csv
gnuplot -persist -e 'set pointsize 1;set yrange [0:100];set multiplot;plot "stats.csv" using 0:2 with lines lt rgb "#aa5555"; plot "stats.csv" using 0:1 with dots lt rgb "#5555aa"'