I currently have the following:
Which works.
However, it should only do the "start normal" of $srcdb=$desdb AND both srcdb and desdb begin with IFS.
Could someone please demonstrate how this may be achieved?
thanks
Applications Support
UK
Code:
if [ "$srcdb" = "$desdb" ]
then
echo "Start normal"
else
echo "Start control"
fi
Which works.
However, it should only do the "start normal" of $srcdb=$desdb AND both srcdb and desdb begin with IFS.
Could someone please demonstrate how this may be achieved?
thanks
Applications Support
UK