I have the example text:
"are "insulin sensitizers" "
I am trying to use the below command to find and replace the xml quote command with a single quote but it only works for the first one and the second that follows "sensitizers" is left unchanged.
command:
grep -rl """ ./ | xargs sed -i "s/"/'/"
result:
"are 'insulin sensitizers" "
desired result:
"are 'insulin sensitizers' "