Currently having a problem with using SED command
For example: I have 2 files
First file contain abc Second file contain abcaaa
Sed command i am using
sed -i "s/'abc'/change/g"
However my result for both file turn out to be
first file : change second file changeaaa
How do i make it only equal to abc and not contain abc?