64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
## Implicit declarations from the arg list
## if (match($1,"arg")>0) {
args= substr($3,2,length($3)-3);
if (length(args)>0)
printf("%s\t%s\n", args,system_name)
## }
}' system_name=$SystemName |\
grep -v '^\$' | mtt_strip_args |\
sort -u #> $1_sympar.txt 2>mtt_error.txt
# Now invoke the standard error handling.
#mtt_error mtt_error.txt
|
|
|
|
>
>
>
>
>
|
>
>
>
|
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
## Implicit declarations from the arg list
## if (match($1,"arg")>0) {
args= substr($3,2,length($3)-3);
if (length(args)>0)
printf("%s\t%s\n", args,system_name)
## }
}' system_name=$SystemName |\
grep -v '^\$' | mtt_strip_args | sort -u > mtt_stripped_args
## Now get the explicit declarations
if [ -n "$UseLabelFile" ]; then ## Take input from lbl.txt
ext=_lbl.txt
else
ext=_abg.m
fi
sh $1_type.sh "strip_pars.sh " "$ext " " " | sort -u > mtt_explicit_args
## And write sorted list
cat mtt_explicit_args mtt_stripped_args
|