summaryrefslogtreecommitdiff
path: root/bin/generate_footprint_chart.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/generate_footprint_chart.sh')
-rwxr-xr-xbin/generate_footprint_chart.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/bin/generate_footprint_chart.sh b/bin/generate_footprint_chart.sh
deleted file mode 100755
index a3aaa1768fd..00000000000
--- a/bin/generate_footprint_chart.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-#
-# $Id$
-#
-
-gnuplot <<_EOF_ >/dev/null 2>&1
- set xdata time
- set timefmt '%Y/%m/%d-%H:%M'
- set xlabel 'Date (MM/DD)'
- set ylabel 'Size (KBytes)'
- set terminal png small color
- set yrange [0:3000]
- set output "$2"
- plot '$1' using 1:(\$2/1024.0) title '$3' w l
- exit
-_EOF_
-