Hi,
I am on Sun Solaris and struggling with a very simple sed command.
I want to search and replace, ignoring the case.
Lets say, I have a file,
Abcd
abCd
abcD
And I issue a command,
sed -e 's/abcd/CORRECT/i' my_file
This should give output like,
CORRECT
CORRECT
CORRECT
But, my above sed...