74
75
76
77
78
79
80
81
82
83
84
85
86
|
## 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
|
|
|
74
75
76
77
78
79
80
81
82
83
84
85
86
|
## Now get the explicit declarations
if [ -n "$UseLabelFile" ]; then ## Take input from lbl.txt
ext=_lbl.txt
else
ext=_abg.m
fi
strip_pars.sh $1${ext} $1 | sort -u > mtt_explicit_args
## And write sorted list
cat mtt_explicit_args mtt_stripped_args
|