10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
##
###############################################################
# Copyright (C) 1996--2001 by Peter J. Gawthrop
if [ -f "$1_sub.sh" ]; then
echo Using "$1_sub.sh"
exit
else
#Inform user
echo Creating $1_sub.sh
fi
echo '# Commands to generate subsystem representations'> $1_sub.sh
echo "# File $1_sub.sh" >> $1_sub.sh
echo "# Generated by MTT on `date`." >> $1_sub.sh
echo >> $1_sub.sh
|
>
>
>
>
|
|
|
|
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 2001/06/11 19:47:49 gawthrop
## Makes the sub.sh file directly from the abg.fig file
## Used for making lbl files (abg2lbl_fig2txt)
##
##
###############################################################
# Copyright (C) 1996--2001 by Peter J. Gawthrop
#if [ -f "$1_sub.sh" ]; then
# echo Using "$1_sub.sh"
# exit
#else
#Inform user
echo Creating $1_sub.sh
#fi
echo '# Commands to generate subsystem representations'> $1_sub.sh
echo "# File $1_sub.sh" >> $1_sub.sh
echo "# Generated by MTT on `date`." >> $1_sub.sh
echo >> $1_sub.sh
|