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
|
#!/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++
}
}
|
>
>
>
|
|
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
33
|
#!/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.2 2001/07/03 22:59:08 gawthrop
## Fixed problems with argument passing for CRs
##
## 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 |\
gawk '{
if (match($2,"\\$[0-9]")==1) ## Test if its a argument alias
{
i = substr($2,2);
arg[i] = $3
N++
}
}
|