When i attempt to autorun this code using batch file process, I discovered that it does not accept it, rather it attempts to capture the traffic on my network. I want it to dissect the specified file. Is there a way to instruct it (tshark) to dissect the given file, and not to capture traffic..? Thanks in anticipation of your response. asked 25 Aug '13, 09:36 Hunted converted to question 25 Aug '13, 10:07 Guy Harris ♦♦ |
2 Answers:
Did you put "<file>" literally in your batch file? The word "<file>" should be replaced by the name of the packet capture file that you want to analyze. answered 25 Aug '13, 16:30 SYN-bit ♦♦ edited 25 Aug '13, 16:30 |
The reason is the wrong number of quotes " in the argument string. Your shell will get confused by the additional quotes around http.request.method. Please try this
or this (single quotes)
Regards answered 26 Aug '13, 06:25 Kurt Knochner ♦ edited 26 Aug '13, 06:26 |
You say "batch file", which is a term used more on Windows than on UN*X; is this on Windows or on UN*X (note: Linux and OS X are versions of UN*X)?
What are the exact contents of the batch file in question?