Date: Fri, 7 May 93 09:41:55 EDT From: DJ Delorie To: WKIM AT vms DOT cis DOT pitt DOT edu Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: How to pass wildcard filenames to program? Wildcards can be disabled globally by setting "noglob" in the GO32 environment variable. There is no way to disable expansion on a per-program basis until 2.0, where such expansion will be handled by libc.a. You can also quote the wildcards: C> list *.c a.c b.c C> list '*.c' *.c