John Jack schreef:

> I very new to programming and I'm introduced to perl a couple of
> weeks ago. I want to write a perl script to read a content of a
> directory and the subdirectories within and print out the path to all
> files in this directory and sub-directories. Can someone help me to
> do this, please? 
> 
> I urgently need assistance as this is my first exercise that I'd like
> to do. 

perl -MIO::All -wle'
    my $io = io ".";
    print for $io->All;
'

-- 
Affijn, Ruud

"Gewoon is een tijger."

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to