in reply to Newbie Tainted glob question

I don't have 5.005 handy for testing but perhaps this will work:
opendir(DIR, '/var/www/htdocs') or die $!; my @entries = grep{/.*\.html$/} readdir(DIR); closedir(DIR);
Update: or do this properly as chipmunk suggests (my die was also added later - you'd think I'd learn to be more careful when pasting from a 1-liner test...)

--
I'd like to be able to assign to an luser