info-cvs
[Top][All Lists]
Advanced

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

Re: CVS setup


From: Larry Jones
Subject: Re: CVS setup
Date: Fri, 6 Apr 2001 15:00:37 -0400 (EDT)

Laine Stump writes:
> 
> Yes, the unfortunate part is that InstallShield insists on using long
> names with embedded spaces for directories and files, which leads to
> odd inconveniences occasionally (eg, cvs -n update doesn't work
> properly, 

What goes wrong?

> you can't use "find . -print | xargs ...", etc).

You can if you have the GNU versions of find and xargs:

        find . -print0 | xargs -0 ...

(Actually, all you need is GNU xargs:

        find . -print | tr '\n' '\0' | xargs -0 ...

although various versions of tr have slightly different syntaxes, so you
might have to fool around a bit to get exactly the right incantation.)

-Larry Jones

We don't ATTEND parties, we just CRASH 'em. -- Calvin



reply via email to

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