-wholename pattern
File name matches shell pattern pattern. The metacharacters do not treat `/' or `.'
specially; so, for example,
find . -wholename './sr*sc'
will print an entry for a directory called './src/misc' (if one exists). To ignore
a whole directory tree, use -prune rather than checking every file in the tree. For
example, to skip the directory `src/emacs' and all files and directories under it,
and print the names of the other files found, do something like this:
find . -wholename './src/emacs' -prune -o -print
Nö, nicht daß ich wüßte...catweasel schrieb:Suse 10.3 hab ich auch. Hast du eine besondere Version?