summaryrefslogtreecommitdiff
path: root/ACE/bin/generate_footprint_chart.sh
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:30 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:30 +0000
commitc44379cc7d9c7aa113989237ab0f56db12aa5219 (patch)
tree66a84b20d47f2269d8bdc6e0323f338763424d3a /ACE/bin/generate_footprint_chart.sh
parent3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (diff)
downloadATCD-c44379cc7d9c7aa113989237ab0f56db12aa5219.tar.gz
Repo restructuring
Diffstat (limited to 'ACE/bin/generate_footprint_chart.sh')
-rwxr-xr-xACE/bin/generate_footprint_chart.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/ACE/bin/generate_footprint_chart.sh b/ACE/bin/generate_footprint_chart.sh
new file mode 100755
index 00000000000..49b783dde0a
--- /dev/null
+++ b/ACE/bin/generate_footprint_chart.sh
@@ -0,0 +1,16 @@
+#!/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 size 800,600 color
+ set output "$2"
+ plot '$1' using 1:(\$2/1024.0) title '$3' w l
+ exit
+_EOF_
+