[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: "svn add * --force" and global-ignores / svn:ignore property

From: Alan Barrett <apb_at_cequrux.com>
Date: 2006-01-03 19:51:48 CET

On Tue, 03 Jan 2006, mailinglist@perspectives.qc.ca wrote:
> >I was going to say that you might be able to use "find" instead of
> >shell expansion, except that I can't figure out how to make find work
> >non-recursively
>
> -maxdepth?
>
> $ find . -maxdepth 1

"-maxdepth" is not in POSIX find. For portability, use "-prune" to make
it stop recursing. For example:

        find . \! \( -type d \! -name . -prune \) -print

--apb (Alan Barrett)

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Jan 3 20:10:17 2006

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.