I'm parsing an XML file with
"lalala it's a Sunday {{ Some words here, maybe
a new line }} oh boy"
How would I use grep to get everything within "{{" and "}}" given that the grep .
character doesn't recognize newlines?
Currently I have
grep '{{.*}}'
but it only works on things that are on the same line.