| delorie.com/archives/browse.cgi | search |
| X-Spam-Check-By: | sourceware.org |
| X-YMail-OSG: | o9nh0OUVM1la.CwSUXQ9T8hdBDVmDc.TObNR7MQ9YDG1r.2MOzcIvsJ8KQMSgz.4ISB4XRTmUxlwzFIoDGsIBUPylox_0i5QjNFvFX1_VXveVkGbwQC8h2saxT1iJLEPfA.ZaV44fhkO18Z9x9HMZHnENEGdl1v3Dw-- |
| From: | "jim" <jim DOT junk2 AT sbcglobal DOT net> |
| To: | <cygwin AT cygwin DOT com> |
| Subject: | command line arg expansion |
| Date: | Thu, 11 Jan 2007 11:38:18 -0800 |
| Message-ID: | <001301c735b8$0bf0bf10$300b17ac@sanmateo.corp.akamai.com> |
| MIME-Version: | 1.0 |
| X-Mailer: | Microsoft Office Outlook 11 |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
I have recently upgraded from 1.5.12 to 1.5.23 and noticed something that
has me wondering. I compiled this on 1.5.23 and have run it under cmd.exe
on on 1.5.12 and 1.5.23:
#include <stdio.h>
int main(int argc, char *argv[])
{
int i, c;
for (i = 0; i < argc; i++)
printf("arg[%d]: '%s'\n", i, argv[i]);
}
On 1.5.12:
C:\>e '/.*/'
arg[0]: 'e'
arg[1]: '/.*/'
On 1.5.23:
C:\>e '/.*/'
arg[0]: 'e'
arg[1]: '/../'
arg[2]: '/./'
arg[3]: '/.other/'
It appears that the runtime initialization on 1.5.23 is doing command line
expansion - is this correct? If so, is this change documented somewhere so
I get the full explanation?
thanks for any insight,
jim
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |