Hi, I have problem with tshark when I'm trying to save interface list into a file. I used comand: tshark.exe -D > file.txt and file was created but it is empty. In console I can see list of my interfaces. I'm using wireshark 1.6.4 and have this problem. On wireshark 1.4.2 all works fine. asked 06 Dec '11, 05:02 Maniek |
One Answer:
tshark outputs the interface info on the standard error stream (stderr). To redirect this to a file use the redirection operator "2>", e.g. I have no idea if this changed after 1.4.2, but is the current situation. answered 06 Dec '11, 06:54 grahamb ♦ |