I wonder how to specify to the command "find" for searching files under current directory but skipping some specific sub-directories.
For example, I would like to skip sub-directories that match "./dir1/*.1/"
Thanks and regards!
EDIT:
Thanks for your help! It works with -prune.
If I would like to exclude subdirectories that match "./dir1/train*.1/", "./dir2/train*.3/", "./dir1/dir3/train*.2/", ..., how can I specify all of them? I tried "-path '*/train*.*' -prune" but it does not work.
Thanks again!