I am trying to use sed to find a replace "Host"
with "Europe/London"
, however it is failing as shown below:
# sed -i -e 's/"Host"/"Europe/London"/g' /usr/local/php73/lib/php.ini
sed: -e expression #1, char 18: unknown option to `s'
What am I doing wrong here?