Hi everyone, I am monitoring wifi traffic and want to process every output line in real time. Monitoring works:
Saving to a file works:
Piping file for processing works:
But piping thark output directly just doesn't work:
What's the problem? How can I process every line of tshark output in real time? Cheers bluepuma asked 25 Nov '13, 10:56 bluepuma |
One Answer:
tshark output is buffered. Please use tshark option -l, if you want tshark to flush STDOUT after every packet. Regards answered 25 Nov '13, 11:04 Kurt Knochner ♦ |
Thanks, that was easy