I have a file readme.txt
in which I want to find the text
'I like pizza'
and remove the ' character with sed cmd and to modify to:
I like pizza
I have tried with this script
#!/bin/bash
echo $1'/readme.txt'
$1/build.ninja
sed -i "s|\'I like pizza\'|I like pizza|g" $1/readme.txt
but i does not work