How can I replace \"abc\" with \"abcd\" on all files of a folder using shell?
\"abc\"
\"abcd\"
Is it possible using sed command?
sed
sed -i 's/abc/&d/g' *
should work.