My goal is to replace str-a
with str-b
in all the files in the folder src.
I tried:
find src -type f -exec sed -i "" 's/a-table/chi-table/g' {} +
As a result, I get this error:
sed: RE error: illegal byte sequence
My goal is to replace str-a
with str-b
in all the files in the folder src.
I tried:
find src -type f -exec sed -i "" 's/a-table/chi-table/g' {} +
As a result, I get this error:
sed: RE error: illegal byte sequence