Overview
Comment:Initial revision
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 5ff20f5f4cb2cb8fcd44edb50a35a27d74bb99ceef94e8c42859f728db77ba7f
User & Date: gawthrop@users.sourceforge.net on 1996-10-20 19:19:50
Other Links: branch diff | manifest | tags
Context
1996-10-20
19:22:41
Cleans up after itself. check-in: 2be2a4fb7b user: gawthrop@users.sourceforge.net tags: origin/master, trunk
19:19:50
Initial revision check-in: 5ff20f5f4c user: gawthrop@users.sourceforge.net tags: origin/master, trunk
17:18:36
Initial revision check-in: d924118982 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Added mttroot/mtt/bin/trans/cmp2sub_m2sh version [09d87326f5].

































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
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
40
41
42
43
44
45
46
47
48
#! /bin/sh

     ###################################### 
     ##### Model Transformation Tools #####
     ######################################

# Bourne shell script: cmp2sub_m2sh

# Copyright (c) P.J.Gawthrop 1996.

###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################


#Inform user
echo Creating $1_sub.sh

echo '# Commands to generate subsystems'>  $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 _cmp file
awk '/comp_type = / {print substr($3,2,length($3)-3)}' $1_cmp.m |\
sort -u > tmp1

# Get a list of all simple components
ls $MTTPATH/comp/simple |\
  awk '/_cause.m/{split($1,a,"_");print(a[1])}' |\
  sed  's/^zero$/0/' |\
  sed  's/^one$/1/' |\
  sort -u >tmp2

# Print the non-standard components
comm tmp1 tmp2 |\
  awk 'BEGIN{FS="\t"}{if (length($1)>0) print "mtt", $1, "abg m"}' \
  >>$1_sub.sh








MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]