Hi,
I have a coloring issue with the following line:
RET=`sed -n -e "s/dssWorkflowMgr.tableRecordLengths.${1}[[:space:]]*|[[:space:]]*\([0-9][0-9]"'*\)[[:space:]]*$/\1/p' ${DSSFILE}`
Where the editor doesn't recognize the end ` and colors (yellow) in my case until the end of the script.
Thanks.
Claude.
Are you sure your expression is valid?
Why do you have /p' with a single quote at the end, although there should be double quotation " there?
RET=`sed -n -e "s/dssWorkflowMgr.tableRecordLengths.${1}[[:space:]]*|[[:space:]]*\([0-9][0-9]"'*\)[[:space:]]*$ / \1/p" ${DSSFILE}`
is parsed fine consequently.