Re: Perl directory listing program

2007-06-13 Thread Chas Owens
On 6/13/07, John W. Krahn <[EMAIL PROTECTED]> wrote: Dr.Ruud wrote: > [EMAIL PROTECTED] schreef: > >> I need a program that will list all of the files in a directory. >> Without any arguments the program will list only the files (not >> directories) in the current directory. But I must have some

Re: Perl directory listing program

2007-06-13 Thread John W. Krahn
Dr.Ruud wrote: [EMAIL PROTECTED] schreef: I need a program that will list all of the files in a directory. Without any arguments the program will list only the files (not directories) in the current directory. But I must have some command line options: [...] Might be a 1-liner with usage of

Re: Perl directory listing program

2007-06-13 Thread Dr.Ruud
[EMAIL PROTECTED] schreef: > I need a program that will list all of the files in a directory. > Without any arguments the program will list only the files (not > directories) in the current directory. But I must have some > command line options: [...] Might be a 1-liner with usage of IO::All.

Re: Perl directory listing program

2007-06-12 Thread [EMAIL PROTECTED]
On Jun 12, 5:26 pm, [EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote: > Looking for some help here you perl geniuses you : ) > > I need a program Sorry, I think you are in the wrong place. Here we help people who want to learn Perl. (People who want bespoke ad-hoc programs written for free are general

Re: Perl directory listing program

2007-06-12 Thread John W. Krahn
[EMAIL PROTECTED] wrote: Looking for some help here you perl geniuses you : ) I need a program that will list all of the files in a directory. Without any arguments the program will list only the files (not directories) in the current directory. But I must have some command line options: -d i

Re: Perl directory listing program

2007-06-12 Thread Chas Owens
On 6/12/07, Beginner <[EMAIL PROTECTED]> wrote: snip perldoc -f format # For an alternative way to format some headers. snip I would suggest using Perl6::Form instead of the built-in format handling. The built-in format pretty much forces you to use bad style. * http://

Re: Perl directory listing program

2007-06-12 Thread Beginner
On 12 Jun 2007 at 16:26, [EMAIL PROTECTED] wrote: > Looking for some help here you perl geniuses you : ) > > I need a program that will list all of the files in a directory. > Without any arguments the program will list only the files (not > directories) in the current directory. But I must have