Mail Archives: cygwin/2002/07/15/14:28:49
On Mon, Jul 15, 2002 at 07:23:03PM +0100, Chris January wrote:
>
>----- Original Message -----
>From: "Christopher Faylor" <cgf AT redhat DOT com>
>To: <cygwin AT cygwin DOT com>
>Sent: Monday, July 15, 2002 4:55 PM
>Subject: Re: cygwin1.dll mangling command line args
>
>
>> On Mon, Jul 15, 2002 at 10:08:35AM -0400, Mark Blackburn wrote:
>> >Observe the following testcases
>> >
>> >test.c:
>> >int main(int argc, char** argv)
>> >{
>> > int i;
>> > for (i=0; i<argc; i++)
>> > printf("%s\n",argv[i]);
>> >}
>> >
>> >D:\home\windows\desktop>gcc test.c -o test -mno-cygwin
>> >
>> >D:\home\windows\desktop>test \\mark\share "\\mark\share"
>> >test
>> >\\mark\share
>> >\\mark\share
>> >
>> >Everything is fine here.
>> >
>> >D:\home\windows\desktop>gcc test.c -o test
>> >
>> >D:\home\windows\desktop>test \\mark\share "\\mark\share"
>> >test
>> >\\mark\share
>> >\mark\share
>> >
>> >The second argument in the quotes loses a backslash
>This is correct - the first \ in the quotes escapes the second.
Unfortunately, it doesn't do this with native, msvc, compiled apps.
This is the age-old discussion regarding what command line paradigm
cygwin is supposed to emulate when it is not run from a UNIX shell.
cgf
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
- Raw text -