"S.P. Hoeke" <[EMAIL PROTECTED]> wrote:
>Keep in mind i'm a newbie to qmail and OpenBSD... a lot of this stuff
>maybe self-explanatory to the more 'advanced' users.
No problem.
>Specifically I don't know how to "feed your log through" the awk line.
If your log is in a file called "foo", do:
awk '{$1="";$2="";$3="";$4="";$5="";print}' foo
That will, of course, output to standard output, so you want to feed
it to matchup:
awk '{$1="";$2="";$3="";$4="";$5="";print}' foo | ./matchup
And matchup outputs to standard output, so you'll want to redirect it
to a file, say matchup.out:
awk '{$1="";$2="";$3="";$4="";$5="";print}' foo | ./matchup >matchup.out
>Same goes for "feed the matchup output through any of the" scripts
E.g.:
./zoverall <matchup.out
-Dave