I\'m trying to replace all double quotes in a string with single quotes. here my expression:
echo \"
You need to pass the g flag to sed:
g
sed
sed "s/\"/'/g"