JustinMacCarthy's [macarthy at iol.ie] 13 lines of wisdom included:
:>I'm using gawk on a log file
:>
:>gawk {FS = " "}; $9~/404/ {print $9 $11 } file
:>
:>How do I get a space between the fields in the output ?
gawk {FS = " "}; $9~/404/ {print $9,$11 } file
gawk {FS = " "}; $9~/404/ {print $9 " " $11 } file
Phil.