paulobrads
Programmer
I'm piping the output of tcpdump to an awk command. Something like this:
Tcpdump seems to buffer output until quite a bit of data is received which is then all dumped to output in one load. Can this be removed to allow real time processing and printing of stuff piped out?
Cheers.
Code:
tcpdump -i eth0 | awk'{print $1}'
Tcpdump seems to buffer output until quite a bit of data is received which is then all dumped to output in one load. Can this be removed to allow real time processing and printing of stuff piped out?
Cheers.