<< You need to escape special characters that might be processed by the shell you're using I usually type it like this 'find / -user username -name '*regexep*' -exec do_something \{\} \;'
Since bash uses ; to seperate commands, and if *regexp* matches files in the current dir it'll expand that too, unless you quote it. >>
Yeah, thats basically what I said. And thats how I got it to work. I got a different error when I didnt include the "\" though, is the error notfred mentioned the one BASH gives (I dont have BASH 😀)?