[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

rdoc under Windows: --exclude pattern

Burkhard Boerner

1/20/2006 1:54:00 PM

Hello,

I need a little help:
under UNIX the pattern for the --exclude option works well
( --exclude \/base\|hidden\/ ),
but under Windows (Batch-File) ==> "hidden is not a command ..."

Can someone me help to write a correct pattern working under Windows?

regards

Burkhard



1 Answer

Nobuyoshi Nakada

1/22/2006 1:39:00 PM

0

Hi,

At Fri, 20 Jan 2006 22:53:54 +0900,
Burkhard Boerner wrote in [ruby-talk:176254]:
> I need a little help:
> under UNIX the pattern for the --exclude option works well
> ( --exclude \/base\|hidden\/ ),
> but under Windows (Batch-File) ==> "hidden is not a command ..."

--exclude "base|hidden"
or
--exclude base --exclude hidden

--
Nobu Nakada