Question says it all. I've tried using awk 'BEGIN{RS=\"} /Match/{print $0}' input
and every combination of escaping and quoting I could think of. Any Ideas how to pull this off?
views:
29answers:
2
+2
A:
you can use \042.
awk 'BEGIN{RS="\042"}{}' file
or
awk -vRS='"' '{}' file
ghostdog74
2010-07-11 00:50:56