J'ai cette piqûre : the string's problem
et je veux changer cela en :
file 'the string'\''s problem'
Mon code ressemble à ceci :
newline=`echo "$string" | sed "s/'/'\\\''/g"`
echo $newline | sed "s|$newline|file '$newline'|g" >> "$newPList"
Mais le résultat de ceci est :
file 'the string'''s problem'
Des suggestions ?