[Gimp-docs] command "find"

Ulf-D. Ehlert ude88 at web.de
Wed Mar 26 02:52:04 PDT 2008


Kolbjørn Stuestøl (Dienstag, 25. März 2008, 21:54):
> The command "find src *.xml | xargs grep -E 'xxx' > xxx.txt" in
> Cygwin Thanks to Julien for the tip :-) . The command is very fast
> and I therefore prefer to use it.
> But how to exclude files from the listings? Something like: "Find and
> list all "xyz" in all xml files in all folders except in the .svn
> folders". Perhaps an unfulfillable wish? The help in Cygwin was of no
> help to me in this question.
> Kolbjørn

find src -name .svn -prune -o -name '*.xml' -print

or (to exclude more than one directory)

find src \( -name .svn -o -name foo \) -prune -o -name '*.xml' -print

Ulf
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : /lists/gimp-docs/attachments/20080326/1e99d074/attachment.bin 


More information about the Gimp-docs mailing list