11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
echo Creating view of $1
gnuplot << EOF
set grid
set title "$1. Generated by MTT on $(date)"
plot '$1.gdat' with lines
pause 100000
EOF
|
>
>
>
|
|
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1996/08/15 08:50:20 peter
## Initial revision
##
###############################################################
# echo Creating view of $1
gnuplot << EOF
set grid
# set title "$1. Generated by MTT on $(date)"
set title "$(date) $2 "
plot '$1.gdat' with lines
pause 100000
EOF
|