I'm trying to to get a list of files with find() on HP UX
LD_PRELOAD = "`find ./lib/ -type f \( -name \*boo\* -or -name \*foo\* -and -not -name \*zoo\* \)`"
and HP UX console tells me that -or / -and / -not operators are bad.
meanwhile this stuff is working normal on linux redhat...
what should I do ?