How can I get awk to produce a singe quote in my output file?
For example:
awk '{print $1 ", " $2 ", " 'CA'}' some_file > foo
assuming some_file contained
Bob Smith
I'd like the output to be
Bob, Smith, 'CA'
Thanks,
Joe
Received on Fri Aug 10 2001 - 14:06:47 NZST