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: |
4bccf60e71f8f9adc7082e8cf759cf60 |
User & Date: | gawthrop@users.sourceforge.net on 1996-10-21 12:34:47 |
Other Links: | branch diff | manifest | tags |
Context
1996-10-27
| ||
10:39:04 | Only compute matrix exponential once. check-in: 456ffafe03 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1996-10-21
| ||
12:34:47 | Initial revision check-in: 4bccf60e71 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1996-10-20
| ||
19:23:54 | Automatic generation of sub-system abg.m files. check-in: af3f3a57fb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/multi_command version [d785943ab0].
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: multi_command # Copyright (c) P.J.Gawthrop 1996. # creates a list of commands - one for each file matching $2_*_$3 # Each command is of the form $1 $2_*_$3 & ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### (ls $2_*_$3 \ | sed "s/\(.*_*\)$3/$1 \1$3 \&/") |
Added mttroot/mtt/bin/trans/multi_command2 version [1736d74891].
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: multi_command2 # Copyright (c) P.J.Gawthrop 1996. # creates a list of commands - one for each file matching $2_*_$3 # Each command is of the form $1 $2_*_$3 > $2_*_$4 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### (ls $2_*_$3 \ | sed "s/\(.*_*\)$3/$1 \1$3 > \1$4 /") |