summaryrefslogtreecommitdiff
path: root/ACE/bin/generate_topinfo_charts.sh
blob: 7556bc925cbc2884aea6b462adcc000361da8eff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

gnuplot <<_EOF_ >/dev/null 2>&1
  set xdata time
  set xtics rotate
  set timefmt '%Y/%m/%d-%H:%M'
  set xlabel 'Date (MM/DD)'
  set ylabel 'Size (KBytes) $4'
  set terminal png small size 800,600 color
  set output "$2"
  plot '$1' using 1:2 title '$3' w l
  exit
_EOF_