Hi I had the current version of Wireshark1.10.2 on my laptop (Mac Os) and desktop (windows 7) I tried this script in terminal and it is working on Mac Os, but whenever I try it in Windows 7 command terminal, I get this error: tshark: Invalid -o flag "column.format:'No.,%m," Why it is working in Mac os but not in windows !!!!! Please Help me :) tshark -Y "ip" -o column.format:'"No.","%m", "full time", "%Yt","src ip", "%us","des ip","%ud", "lenght", "%L","transfered byte", "%B","protocol","%p","srcmac","%uhs","destmac","%uhd","sourceport", "%uS", "destport", "%uD", "Info", "%i"' -r test.pcap >test.txt tshark: Invalid -o flag "column.format:'No.,%m," Thanks in advance asked 17 Jan '14, 11:46 Payam365 |
One Answer:
The problem is quoting. You need to escape all the quotes using
answered 17 Jan '14, 12:07 cmaynard ♦♦ |