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

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

Reply via email to