Operating System - HP-UX
1757791 Members
2629 Online
108863 Solutions
New Discussion

analyzing ipfilter logs, need shell script advice

 
SOLVED
Go to solution
Dennis Handly
Acclaimed Contributor

Re: analyzing ipfilter logs, need shell script advice

If you want to remove that column, you can also re-print out each line
awk '
NF == 8 { print $0; next }
{ print $1, $2, $3, $4, $6, $7, $8, $9 }' file