info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: add directory heirarchy


From: Francesc Guasch
Subject: Re: add directory heirarchy
Date: Thu, 15 Mar 2001 13:29:40 +0100

Eric Siegerman wrote:
> 
> On Wed, Mar 14, 2001 at 02:11:42PM -0500, Derek R. Price wrote:
> >     $ find newdir -type f -exec cvs add {} \;
> 
> $ find newdir \( -type f -o -type d \) -exec cvs add {} \;
> 
> If you don't add the directories, you can't add the files...
> 

I do:

for i in `find newdir -type d -print | grep -v CVS`; do
cvs add $i
cvs add $i/*html
done

But that's because I only have html files.

-- 
 - frankie -



reply via email to

[Prev in Thread] Current Thread [Next in Thread]