Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / examples / RTCORBA / Activity / gen_graphs.sh
blob34619ba2aee209c0be450532999dd56ff52cda86
1 #!/bin/sh
4 # test.dat test.png test
5 #gnuplot <<_EOF_ >/dev/null 2>&1
6 /usr/bin/gnuplot <<_EOF_
7 set xlabel 'time (uS)'
8 set ylabel 'Request latency (uS)'
9 set terminal png small color
10 set autoscale
11 set output "$2"
12 plot '$1' using 1:2 title '$3' w l
13 exit
14 _EOF_