Differences From Artifact [61d88d20d5]:
- Executable file mttroot/mtt/bin/trans/mtt_sysname — part of check-in [056069352f] at 2000-04-10 09:40:13 on branch origin/master — Initial revision (user: gawthrop@users.sourceforge.net, size: 330) [annotate] [blame] [check-ins using]
To Artifact [4a73c625bc]:
- Executable file mtt/bin/trans/mtt_sysname — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 331) [annotate] [blame] [check-ins using] [more...]
- Executable file
mttroot/mtt/bin/trans/mtt_sysname
— part of check-in
[66bb5feadf]
at
2002-04-28 18:41:27
on branch origin/master
— Fixed [ 549658 ] awk should be gawk.
Replaced calls to awk with call to gawk. (user: geraint@users.sourceforge.net, size: 331) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /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 | | | 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 | gawk -F '_' '{print $1}' |