in reply to Re: path-names [a very easy question of a true beginner]
in thread path-names [a very easy question of a true beginner]
#!/usr/bin/perl use strict; use warnings; use diagnostics; use File::Find::Rule; my @files = File::Find::Rule->file() ->name('*.html') ->in( 'home/usr/perl/html.files' ); foreach my $file(@files) { print $file, "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: path-names [a very easy question of a true beginner]
by Khen1950fx (Canon) on Oct 02, 2010 at 09:58 UTC | |
by Perlbeginner1 (Scribe) on Oct 02, 2010 at 12:49 UTC | |
by Khen1950fx (Canon) on Oct 02, 2010 at 13:27 UTC | |
by Perlbeginner1 (Scribe) on Oct 02, 2010 at 15:33 UTC | |
by Perlbeginner1 (Scribe) on Oct 02, 2010 at 19:21 UTC | |
| |
|
Re^3: path-names [a very easy question of a true beginner]
by Perlbeginner1 (Scribe) on Oct 02, 2010 at 21:40 UTC |