Re: wildcards in Windows

2002-12-04 Thread Bryan Harris
> The G.pm was made so that it's a NOOP (NO OPeration) under anything > but windows. You may want to make sure it will not be even loaded by > > BEGIN { > if ($^O eq 'MSWin32') { > eval "use G;"; > } > } > > If course it's up to you whether you have > eval "use G;"; > or some glob() based code t

Re: wildcards in Windows

2002-12-04 Thread Jenda Krynicky
From: Bryan Harris <[EMAIL PROTECTED]> > >> I'm sure this has been answered before, but I can't seem to find an > >> answer. > >> > >> Windows doesn't seem to want to expand wildcards before passing > >> arguments to my script. For example, typing: > >> > >> fixNCcode P* > >> > >> Passes 'P*'

Re: wildcards in Windows

2002-12-04 Thread Bryan Harris
>> I'm sure this has been answered before, but I can't seem to find an answer. >> >> Windows doesn't seem to want to expand wildcards before passing arguments to >> my script. For example, typing: >> >> fixNCcode P* >> >> Passes 'P*' to my script instead of all files that start with "P". >>

Re: wildcards in Windows

2002-12-04 Thread Jenda Krynicky
From: Bryan Harris <[EMAIL PROTECTED]> > I'm sure this has been answered before, but I can't seem to find an > answer. > > Windows doesn't seem to want to expand wildcards before passing > arguments to my script. For example, typing: > > fixNCcode P* > > Passes 'P*' to my script instead of al

Re: wildcards in Windows

2002-12-03 Thread John W. Krahn
Bryan Harris wrote: > > I'm sure this has been answered before, but I can't seem to find an answer. > > Windows doesn't seem to want to expand wildcards before passing arguments to > my script. For example, typing: > > fixNCcode P* > > Passes 'P*' to my script instead of all files that start

wildcards in Windows

2002-12-03 Thread Bryan Harris
I'm sure this has been answered before, but I can't seem to find an answer. Windows doesn't seem to want to expand wildcards before passing arguments to my script. For example, typing: fixNCcode P* Passes 'P*' to my script instead of all files that start with "P". Is there a workaround? H