diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:30 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:30 +0000 |
commit | c44379cc7d9c7aa113989237ab0f56db12aa5219 (patch) | |
tree | 66a84b20d47f2269d8bdc6e0323f338763424d3a /ACE/bin/generate_footprint_chart.sh | |
parent | 3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (diff) | |
download | ATCD-c44379cc7d9c7aa113989237ab0f56db12aa5219.tar.gz |
Repo restructuring
Diffstat (limited to 'ACE/bin/generate_footprint_chart.sh')
-rwxr-xr-x | ACE/bin/generate_footprint_chart.sh | 16 |
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_ + |