summaryrefslogtreecommitdiff
path: root/TAO/examples/RTCORBA/Activity/gen_graphs.sh
blob: 50ceee794e127d6c3cecd706d6b9778860751841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
#
# $Id$
#

# test.dat test.png test
#gnuplot <<_EOF_ >/dev/null 2>&1
/usr/bin/gnuplot <<_EOF_
    set xlabel 'time (uS)'
    set ylabel 'Request latency (uS)'
    set terminal png small color
    set autoscale
    set output "$2"
    plot '$1' using 1:2 title '$3' w l
    exit
_EOF_