Wireshark-users: Re: [Wireshark-users] merging many files using mergecap
From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Sun, 21 Feb 2010 12:28:29 -0800
On Feb 21, 2010, at 12:23 PM, Sake Blok wrote:

> You might consider running Cygwin (www.cygwin.com) on your WIndows box, I don't have problems with this command in a Cygwin (bash) shell window. 

UN*X shells expand wildcards in the shell, and pass the resulting list of file names to the application; Windows console shells expect the application to do so.

However, I had the impression that the Microsoft C/C++ startup code would expand wildcards before calling main(), so that the UN*X way of doing things in an app (relying on wildcards being expanded for you) works.  It sounds as if either

	1) that's not the case

or

	2) you have to do something to enable it, and we're not doing so.