Hi,
I have the following file as shown below:
Replace()
{
sed -e "s+ABCDIR+$DDIR/C+g" \
-e "s+ABCDIR+$DDIR/C+g" \
-e "s + ABCDDIR+$DDIR/C"\
}
I need a Regular expression to grep 0nly ABCDIR.
if i use grep -i "ABCDIR" it will display everything.
just i need the out put as only ABCDDIR.
Please help me in solving.
Thank you very much
Ravi