I accidentally added this line:
tazadeg2018/test2018/g
many many ways to multiple files by a wrong use of sed where i just wanted to change a word in multiple files.
Now I tried to remove the lines containing this word with something like:
find . -type f -exec sed -i 's/tazadeg2018/test2018/g//g' {} \;
But it doesn't work saying: sed: -e expression #1, char 28: unknown option to `s'
I guess this is due to the many forward-slashes that have a special meaning in sed. So if anyone knows how to remove this line in multiple files I'd be super happy:)