I want to replace "1/1" with "1/2" in all files in a directory
I tried
find . -type f -exec sed -i 's/1/1/1/2/g' {} +
and got
sed: -e expression #1, char 6: unknown option to `s'
what am i doing wrong? how to use this when i need replace it with pattern containing "/"?
Thanks in advance