Skip to main content
Add link to bash documentation for reference.
Source Link

You can't escape single quotes inside single quotescan't escape single quotes inside single quotes. The easiest way for you is to put your script in a file and then run

find arts/ -type f -iname "bass.html" -exec sed -i -f your-script.sed '{}' \;

You can't escape single quotes inside single quotes. The easiest way for you is to put your script in a file and then run

find arts/ -type f -iname "bass.html" -exec sed -i -f your-script.sed '{}' \;

You can't escape single quotes inside single quotes. The easiest way for you is to put your script in a file and then run

find arts/ -type f -iname "bass.html" -exec sed -i -f your-script.sed '{}' \;
Source Link
angus
  • 12.7k
  • 3
  • 46
  • 40

You can't escape single quotes inside single quotes. The easiest way for you is to put your script in a file and then run

find arts/ -type f -iname "bass.html" -exec sed -i -f your-script.sed '{}' \;