I'm running cURL in bash, and in that cURL is a string. So it looks like this:
waf[exploitA]=$(curl https://foo.com \
--data '{
"description": "Blah",
"expression": "Lorem ipsum"
}'
The cURL will print "Lorem ipsum" verbatim.
The question is, what's the best option if I wanted it to print it on two lines? Eg,
Lorem
Ipsum
Can I just do this in bash, with the `accent` or whatever it's called?
"expression": `Lorem
ipsum`
Or do I have to make it the harder-to-read:
"expression": "Lorem\nipsum"
Or something else?