13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.415 2006/02/09 23:58:24 geraint
## rtxi: builds but does not yet work.
##
## Revision 1.414 2005/11/18 17:23:19 geraint
## rtxi.
##
## Revision 1.413 2005/11/16 00:43:15 geraint
|
>
>
>
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.416 2006/09/27 13:03:20 geraint
## Fixed fr.view and enabled commands to directly build ??fr.m
##
## Revision 1.415 2006/02/09 23:58:24 geraint
## rtxi: builds but does not yet work.
##
## Revision 1.414 2005/11/18 17:23:19 geraint
## rtxi.
##
## Revision 1.413 2005/11/16 00:43:15 geraint
|
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
|
fi
# Copy systems from the example library
if [ "$1" = "copy" ]; then
#set up source and destination dirs
source=$3
if [ -z "$source" ]; then
source=$MTT_Examples
fi
destination=$4
if [ -z "${destination}" ]; then
destination=$2
fi
# check that its not here already
file_exists=`ls ${destination}/$2_abg.fig 2> /dev/null`
|
|
|
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
|
fi
# Copy systems from the example library
if [ "$1" = "copy" ]; then
#set up source and destination dirs
source=$3
if [ -z "$source" ]; then
source=$MTT_EXAMPLES
fi
destination=$4
if [ -z "${destination}" ]; then
destination=$2
fi
# check that its not here already
file_exists=`ls ${destination}/$2_abg.fig 2> /dev/null`
|