Date: Wed, 19 May 93 12:34:45 EDT From: DJ Delorie To: sandmann AT clio DOT rice DOT edu Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: stub.exe (fwd) > Another wish - that GO32 environment variable parameters could be installed > into stub.exe which would optionally override the ones in your variable. > Thus, I could disable globbing on selective images only by putting noglob > into their stub header. This would also be very desirable when distributing > images to others when some necessary feature for this one image conflicts > with their normal GO32 environment variable. In v2, all the GO32 environment variable-controlled features will move into the application and out of GO32, so your app could use or ignore them as it saw fit. Note that you can disable globbing by putting single quotes around the wildcards: C> djecho *.c a.c b.c C> djecho '*.c' *.c