ADDED mttroot/mtt/bin/trans/multi_command Index: mttroot/mtt/bin/trans/multi_command ================================================================== --- /dev/null +++ mttroot/mtt/bin/trans/multi_command @@ -0,0 +1,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 Index: mttroot/mtt/bin/trans/multi_command2 ================================================================== --- /dev/null +++ mttroot/mtt/bin/trans/multi_command2 @@ -0,0 +1,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 /")