I have a command similiar this this one:
find ./ -type f | xargs gsed -i -r 's/[$][A-Za-z_\'"]/testing
I would like put this command to work. Unfortunally the single and double quotes breaks the command. How can I escape this strings and put this command to work?
This question isnt the same as this one because I have a single quote inside the [. But if a littler modification solves the problem works I would like to know.
I had tried several different ways using @, #, \, but no success yet.