ERROR: bad flag in substitute command:
I want to update the value of key inside of my config.yml
key: secret
i used this sed command to able to achieve it
sed -i "s/secret/$token/g" config.yml
But when the value of token has "/" at the end I'm encountering that error
something like token="asda213123asndasd/"
Do you how to handle this? Without removing the "/" at the end?