Forum Moderators: DixonJones
I would have thought you could pipe the tail output to GREP in order to strip what you need.
TJ
where aaa is the width of your terminal.
tail -f combined_log ¦ awk '{print $1,$7,$9}'
and:
tail -f combined_log ¦ awk -F\" '{print $2,$6}'
;)