i am trying to replace a single line in an existing file as
sed -i -e 's/# elasticsearch.url: "http://localhost:9200"/elasticsearch.url: "http://myOwnHost:9200"/g' config/kibana.yml
but i get an error
sed: -e expression #1, char 32: unknown option to `s'
i can figure out how and what to escape here. I am quite new to sed.