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: 056069352fc626a2d38dac05c89680075b395754f4249aba45634f29c4c8607c
User & Date: gawthrop@users.sourceforge.net on 2000-04-10 09:40:13
Other Links: branch diff | manifest | tags
Context
2000-04-10
10:06:04
Changed to a one argument version (Sys_rep.lang) for implicit make rules. check-in: a1b9f11afd user: gawthrop@users.sourceforge.net tags: origin/master, trunk
09:40:13
Initial revision check-in: 056069352f user: gawthrop@users.sourceforge.net tags: origin/master, trunk
2000-04-08
10:43:26
Initial revision check-in: 5a522e1ac8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Added mttroot/mtt/bin/trans/mtt_langname version [c54b9eac8f].















1
2
3
4
5
6
7
8
9
10
11
12
13
14
+
+
+
+
+
+
+
+
+
+
+
+
+
+
#! /bin/sh

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

# Bourne shell script: mtt_langname

# Returns the language name from System_rep.lang

# P.J.Gawthrop Feb 2000
# Copyright (C) 2000 by Peter J. Gawthrop

echo $1 | awk -F '.' '{print $2}'

Added mttroot/mtt/bin/trans/mtt_repname version [35f149671a].















1
2
3
4
5
6
7
8
9
10
11
12
13
14
+
+
+
+
+
+
+
+
+
+
+
+
+
+
#! /bin/sh

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

# Bourne shell script: mtt_repname

# Returns the representation name from System_rep.lang

# P.J.Gawthrop Feb 2000
# Copyright (C) 2000 by Peter J. Gawthrop

echo $1 | tr '.' '_' | awk -F '_' '{print $2}'

Added mttroot/mtt/bin/trans/mtt_sysname version [61d88d20d5].















1
2
3
4
5
6
7
8
9
10
11
12
13
14
+
+
+
+
+
+
+
+
+
+
+
+
+
+
#! /bin/sh

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

# Bourne shell script: mtt_sysname

# Returns the system name from System_rep.lang

# P.J.Gawthrop Feb 2000
# Copyright (C) 2000 by Peter J. Gawthrop

echo $1 | awk -F '_' '{print $1}'


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