Reputation:
I am piping a sequence through a PIPE to another program (mkfifo) on Linux. Is there a way for me to sample the data being read, periodically and see what's going on?
seq 99999999 -1 00000000 >/tmp/foo pyrit -r cap/ZUTUMS-01.cap -i /tmp/foo attack_passthrough
How do i see where i am in the sequence whenever I feel like it. I don't want to write to disk or stdout. I could use strace but that's overkill.
Upvotes: 0
Views: 175
Reputation: 4342
I would recommend to use Pipe Viewer
It can give you such info as:
Upvotes: 1