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
|
#!/bin/sh
# Writes argument list to standard output ready for use in calling lbl file
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
# Copyright (C) 2001 by Peter J. Gawthrop
if [ -f "$1_lbl.txt" ]; then
grep '[#%]ALIAS' $1_lbl.txt |\
awk '{
if (match($2,"\\$")==1){
i = substr($2,2);
arg[i] = $3
N++
}
}
END{
for (j=1;j<=N;j++){
|
>
>
>
|
>
|
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
|
#!/bin/sh
# Writes argument list to standard output ready for use in calling lbl file
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 2001/06/11 15:06:58 gawthrop
## Now handles user-defined components
##
###############################################################
# Copyright (C) 2001 by Peter J. Gawthrop
if [ -f "$1_lbl.txt" ]; then
grep '[#%]ALIAS' $1_lbl.txt |\
awk '{
if (match($2,"\\$[0-9]")==1) ## Test if its a argument alias
{
i = substr($2,2);
arg[i] = $3
N++
}
}
END{
for (j=1;j<=N;j++){
|