I'm trying to write a display filter in tshark where the value I'm searaching for includes the ";" character. The problem is this character seems to have some special significance with tshark and it complains that it was unexpected. This is true even when the display filter is cleanly encapsulated in quotation marks. For example:
Also tried:
So... is there some kind of character expected to be used to tell tshark that the ; character should be treated as part of the string in the display filter? asked 20 May '13, 16:03 Quadratic |
One Answer:
Please use the following syntax: Linux:
Windows (uses different quoting rules on the CLI):
Regards answered 20 May '13, 16:40 Kurt Knochner ♦ edited 20 May '13, 16:40 |
And for completeness, when using PowerShell, use single quote marks to group the argument and then escaped double quotes to quote the parameter value:
Ah, thanks. That works.