summaryrefslogtreecommitdiff
path: root/bin/generate_topinfo_charts.sh
blob: 5785ceeb0490efaf034e066279e4726bdcfe281e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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) $4'
  set terminal png small color
  set output "$2"
  plot '$1' using 1:2 title '$3' w l
  exit
_EOF_