How can I replace \"abc\" with \"abcd\" on all files of a folder using shell?
\"abc\"
\"abcd\"
Is it possible using sed command?
sed
Yes:
find /the/folder -type f -exec sed -i 's,\,&d,g' {} \;