10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
######################################
###############################################################
## 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)
##
##
###############################################################
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 2001/07/23 23:26:23 gawthrop
## Removed some boring user feedback
##
## 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)
##
##
###############################################################
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
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
# Get a list of all components for the _abg file
cat $1_abg.fig |\
grep ':' |\
awk '{if ($1==4) split($14,a,":"); print a[1]}' |\
sort -u > mtt_tmp1
# Remove all components starting with 0 or 1
grep -v '^[01]' < mtt_tmp1 > mtt_tmp4
|
>
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
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
# Get a list of all components for the _abg file
cat $1_abg.fig |\
grep -v '\[[0-9]*:[0-9]*\]' |\
grep ':' |\
awk '{if ($1==4) split($14,a,":"); print a[1]}' |\
sort -u > mtt_tmp1
# Remove all components starting with 0 or 1
grep -v '^[01]' < mtt_tmp1 > mtt_tmp4
|