Thanks a lot PERL

May 03, 2009 19:03

Seriously?
@files = <*.mp3>;
That gets all the files in the directory that match that pattern? And no one told me?

DO YOU KNOW HOW MANY FRAKKIN TIMES I'VE WRITTEN THE FOLLOWING CODE:
opendir(DIR, $dir);
my @files = readdir(DIR);
close(DIR)

GRAH

Leave a comment

Comments 1

mcmar May 4 2009, 04:00:53 UTC
TMTOWTDI :)

Reply


Leave a comment

Up