I am having the below text in my-config file
<!--<URL>www.abc.com</URL>-->
www.xyz.com
I want to uncomment the commented line and comment the uncommented line. I tried using the sed command
sed -i '/<!--<URL>www.abc.com</URL>-->/s/^#//g' filename
but getting error as
sed: -e expression #1, char 24: unknown command:
/'`
please help in resolving this or correct if anything wrong in my sed command. Thanks in advance.