Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / bin / generate_topinfo_charts.sh
blob7556bc925cbc2884aea6b462adcc000361da8eff
1 #!/bin/sh
3 gnuplot <<_EOF_ >/dev/null 2>&1
4 set xdata time
5 set xtics rotate
6 set timefmt '%Y/%m/%d-%H:%M'
7 set xlabel 'Date (MM/DD)'
8 set ylabel 'Size (KBytes) $4'
9 set terminal png small size 800,600 color
10 set output "$2"
11 plot '$1' using 1:2 title '$3' w l
12 exit
13 _EOF_