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: 4975366d5a215bb7cfeb03d236a4aaf94bdb41b70daaf3b9bcf49f59a679deec
User & Date: gawthrop@users.sourceforge.net on 1998-07-02 08:14:07
Other Links: branch diff | manifest | tags
Context
1998-07-02
08:34:00
Renamed to lbl2alias_txt2txt check-in: 287b5fa097 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
08:14:07
Initial revision check-in: 4975366d5a user: gawthrop@users.sourceforge.net tags: origin/master, trunk
1998-07-01
17:34:43
No change check-in: e11a55f23d user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Added mttroot/mtt/bin/trans/lbl2alias_txt version [d289ce86ad].











































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
#! /bin/sh

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

# Bourne shell script: lbl2alias_txt
# Creates the component aliases in text form

# Copyright (c) P.J.Gawthrop 1998

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

# Inform user
echo Creating $1_alias.txt

#Create the alias file complete with headers.
echo "# Alias file ($1_alias.txt)" > $1_alias.txt
echo "# Generated by MTT at `date`" >> $1_alias.txt

#Write out the variables 
grep '[%|#]ALIAS' $1_lbl.txt |\
awk '{print $2,$3}' >> $1_alias.txt










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