in reply to Problem with Parentheses

Double-escape the parentheses:
print MYFILE `find . -type f \\( -perm -0020 -o -perm -0004 -o -perm - +0002 -o -perm -0001 -o -perm -1000 \\) -ls`;
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Replies are listed 'Best First'.
Re^2: Problem with Parentheses
by jjoyce (Initiate) on Aug 21, 2012 at 21:30 UTC
    Thank you for your help, this solves my problem.