I'd like to grep lines starting with printf
, however it could not end at that line and it can have more lines with \
(backslash).
For instance,
printf("%s %s %s", \
"one more line", \
"second one", \
"third one");
Yes, we can use the option -A
(After) but it could include also meaningless lines as it specifies the number how many lines shall be output.
Please let me know if you have a brilliant idea to solve. Thanks.