I am using SunOS 10.
I am trying to replace the : character at the end of line if the word contains : in it on SunOs I am using the below command for it.
echo -n "test:" | sed 's/:$//g'
its not working. what I did wrong here?
The same is working fine in GNU/Linux.
/gflag is superfluous; you can obviously only replace the last individual character once. – tripleee Sep 6 '12 at 14:27