repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Changes to attempt to silence bcc64x
[ACE_TAO.git]
/
ACE
/
bin
/
generate_topinfo_charts.sh
blob
7556bc925cbc2884aea6b462adcc000361da8eff
1
#!/bin/sh
2
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_
14