in reply to Getting To Grips With Taint - And Picking Up Files
use DirHandle; my $dh = new DirHandle('/var/log/accounts/'); while (my $file = $dh->read()) { # do stuff ... } [download]
-- perl: code of the samurai