From c486e64596db92a4319f48f27832fd7ff8cc639d Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Fri, 30 Oct 2009 02:23:23 +0000 Subject: Clean up dist-tools, remove or update. svn path=/branches/BRANCH_6-3/; revision=5446 --- dist-tools/timeplot | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 dist-tools/timeplot (limited to 'dist-tools/timeplot') diff --git a/dist-tools/timeplot b/dist-tools/timeplot deleted file mode 100755 index c8240d05..00000000 --- a/dist-tools/timeplot +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# -# timeplot -- plot data on fetchmail release intervals -# -# - -# Get data from the NEWS file -timeseries | awk >/tmp/timeplot$$ ' -START {maxdiff = 0;} -/^[#%]/ {next;} - {days[count++] = $6;} -END { - for (i = 0; i < count-1; i++) - { - diffs[i] = days[i] - days[i + 1]; - if (maxdiff < diffs[i]) - maxdiff = diffs[i]; - } - for (i = 0; i <= maxdiff; i++) - freq[i] = 0; - for (i = 0; i < count - 1; i++) - { - freq[diffs[i]]++; - } - for (i = 0; i <= maxdiff; i++) - printf("%d %d\n", i, freq[i]); - } -' - -gnuplot >time.png - <