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 -

_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to