Re: GET ME OFF

2001-08-24 Thread M.W. Koskamp
- Original Message - From: Miriam Hadary <[EMAIL PROTECTED]> To: Gene Martin <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, August 21, 2001 7:33 PM Subject: GET ME OFF > DEAR EVERYONE, > > I HAVE REALLY TRIED TO GET OFF THIS FORUM BUT TO NO AVAIL. I DON'T MEAN TO > SOUND LIKE T

Re: test presence of hash key with regexp?

2001-08-24 Thread M.W. Koskamp
> > > > That's too much there... > > > > /add_\w+/ and print("Yippie!\n"), last while $_ = each %hash; > > > > "scalar each" is underutilized. :) > what happened to grep? print "found it" if grep{$_ =~ /foo/}keys %bar If find this more readable, allthough Randall's solution is more effic

Re: PERL IS NOT A HIGH LEVEL LANGUAGE

2001-08-17 Thread M.W. Koskamp
- Original Message - From: <[EMAIL PROTECTED]> To: Jon Acierto <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, August 18, 2001 12:29 AM Subject: Re: PERL IS NOT A HIGH LEVEL LANGUAGE [...] Instead of only tring to comfort one another among ourselves, with all sorts of valid arg

Re: PERL IS NOT A HIGH LEVEL LANGUAGE

2001-08-17 Thread M.W. Koskamp
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: Jon Acierto <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, August 17, 2001 8:13 PM Subject: Re: PERL IS NOT A HIGH LEVEL LANGUAGE > > This thread is quite curious to me. Perl in most respects is a *highe

Re: XML::Parser -- Problem with undefined entities in element attributes

2001-08-15 Thread M.W. Koskamp
- Original Message - From: KAVANAGH, Michael <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 15, 2001 12:28 PM Subject: XML::Parser -- Problem with undefined entities in element attributes > Hi there, > I've been bumping my head up against this problem all morning no

Re: if in a list

2001-07-26 Thread M.W. Koskamp
- Original Message - From: Brett W. McCoy <[EMAIL PROTECTED]> To: Jennifer Pan <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, July 26, 2001 9:12 PM Subject: Re: if in a list [...] > > Here's how I would code this: > > foreach (@mylist) { > > $boolean = ($_ eq 'AF1') ?

Re: Unix syntax

2001-07-24 Thread M.W. Koskamp
- Original Message - From: Sparkle Williams <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 24, 2001 2:43 PM Subject: Unix syntax > I wrote a program running off a Windows NT platform and was trying to > convert it to a UNIX platform. My problem comes with my syntax. I k

Re: Snippet to list both directories and files to an array or...?

2001-07-20 Thread M.W. Koskamp
- Original Message - From: Bob Bondi <[EMAIL PROTECTED]> To: Beginners-perl <[EMAIL PROTECTED]> Sent: Friday, July 20, 2001 11:49 PM Subject: Snippet to list both directories and files to an array or...? > I've been trying to use opendir($tempdir,@ARGV[0]) or die "Couldn't open the > di

Re: A simple question

2001-07-10 Thread M.W. Koskamp
- Original Message - From: Jie Meng <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 10, 2001 5:02 PM Subject: A simple question Dear all, I plan to write a simple remote connection script, and then "ls" the content of the current directory, input like telnet hostname u

Re: perl / php question

2001-07-10 Thread M.W. Koskamp
- Original Message - From: Bob Mangold <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 09, 2001 7:43 PM Subject: perl / php question > Hello, > > I'm not sure if anyone here can help me with this, but at least some direction > in where to to look would be great. > > I'm u

Re: Module to Parse MIME-encoded Email?

2001-07-08 Thread M.W. Koskamp
- Original Message - From: Mike Miller <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 07, 2001 6:08 PM Subject: Module to Parse MIME-encoded Email? > > Gurus: > > As a learning exercise I'm writing my own web-based POP3 client, and > wish to be able to handle emails wh

Re: How is this doing what I want it too?

2001-06-30 Thread M.W. Koskamp
> > for ($i=0; $b[$i] != undef; $i++) > { > print STDOUT $b[$i]; > } > > and that seem logical but I was getting complaints such as.. > "Argument "#stopped at 867\n" isn't numeric in ne at ./page57_1.pl line > 9, chunk 1544." > > anyhow hope you can enlighten me as to all this hullaballooo ;-)

Re: Problem with hash value

2001-06-29 Thread M.W. Koskamp
- Original Message - From: Wang, Lanbo <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, June 30, 2001 12:04 AM Subject: Problem with hash value > Hi Members, > > It seemed that a value was incorrectly retrieved from the hash list in the > following small Perl script. . > > #!

Re: Optional Variables

2001-06-29 Thread M.W. Koskamp
> > my $option = defined $ARGV[0] ? $ARGV[0] : "default"; > > Didn't we already go through all of this a few hours ago? Randal (of > course) came up with the most succint solution: > > my $option = @ARGV ? shift : ; > Sorry for trying to be helpful. Mailing list arent represented in threads in ou

Re: Optional Variables

2001-06-29 Thread M.W. Koskamp
- Original Message - From: Evgeny Goldin (aka Genie) <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: Brett W. McCoy <[EMAIL PROTECTED]> Sent: Friday, June 29, 2001 11:34 PM Subject: Re: Optional Variables > > > my $option = $ARGV[0] || 1; > > And what if $ARGV[0] equal to 0 ? Ops ..

Re: Another Regex Question

2001-06-22 Thread M.W. Koskamp
- Original Message - From: Jack Lauman <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 21, 2001 11:48 PM Subject: Another Regex Question > I'm trying to create a CSV file from the text data below. Lines > containing High and Low Tide data have 9 fields, lines having >

Re: if then else

2001-06-08 Thread M.W. Koskamp
- Original Message - From: Jeff Yoak <[EMAIL PROTECTED]> To: Luinrandir Hernson <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, June 09, 2001 12:10 AM Subject: Re: if then else > At 05:35 PM 6/8/01 -0400, Luinrandir Hernson wrote: > >ok, where did i go wrong now??? > > '=' is

Re: Substitution Problem

2001-06-08 Thread M.W. Koskamp
> -Original Message- > From: Mark Martin [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 08, 2001 10:01 > To: [EMAIL PROTECTED] > Subject: Substitution Problem > > > Hi, > I'm taking in a csv file and splitting it. One of the fields(doc) could > possibly have six spaces which will disrupt

Re: double quotes around a variable

2001-06-07 Thread M.W. Koskamp
- Original Message - From: Peter Scott <[EMAIL PROTECTED]> To: Byron Rendar <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, June 07, 2001 9:11 PM Subject: Re: double quotes around a variable > At 09:50 AM 6/7/01 -0700, Byron Rendar wrote: > >my $input= ; > > my $username =

Re: splitting strings with quoted white space

2001-06-06 Thread M.W. Koskamp
- Original Message - From: Peter Cornelius <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 2:49 AM Subject: splitting strings with quoted white space > I have this script that reads in lines from a configuration file, processes > them, and then stores them in

Re: Fwd: 'use' question

2001-06-05 Thread M.W. Koskamp
- Original Message - From: Timothy Kimball <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001 9:45 PM Subject: Re: Fwd: 'use' question > > M.W. Koskamp wrote: > > : You are missing a semi-colon at the end of line 1 &

Re: Fwd: 'use' question

2001-06-05 Thread M.W. Koskamp
- Original Message - From: Bob Mangold <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001 9:28 PM Subject: Re: Fwd: 'use' question > ok sorry for the lack of a script before, > > here is a little test script i wrote to try to figure out how to use the > Getopt::S

Re: problems following a refresh meta tag using LWP and open SSL (2ed request)

2001-06-05 Thread M.W. Koskamp
- Original Message - From: Hill, Ronald <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001 7:07 PM Subject: problems following a refresh meta tag using LWP and open SSL (2ed request) > Hello All, > > I am trying to connect to the Wells Fargo online bank using the L

Re: probably a simple matter but...

2001-06-05 Thread M.W. Koskamp
- Original Message - From: Marcelo E. Magallon <[EMAIL PROTECTED]> To: M.W. Koskamp <[EMAIL PROTECTED]> Cc: Brent Buckalew <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, June 03, 2001 7:58 PM Subject: Re: probably a simple matter but... > >>

Re: testing null strings for form field values

2001-06-04 Thread M.W. Koskamp
- Original Message - From: Paul <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; Perl Discuss <[EMAIL PROTECTED]> Sent: Monday, June 04, 2001 8:51 PM Subject: Re: testing null strings for form field values > > --- [EMAIL PROTECTED] wrote: > > if ( $formdata{view_name} ne "" ) { > > $vie

Re: probably a simple matter but...

2001-06-03 Thread M.W. Koskamp
- Original Message - From: Brent Buckalew <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, June 03, 2001 9:28 AM Subject: probably a simple matter but... > Hello all, > > I've constructed a perl script which takes number from a large text file > and prints them as well as manip

Re: append a file to another file

2001-06-01 Thread M.W. Koskamp
- Original Message - From: Nichole Bialczyk <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 01, 2001 9:30 PM Subject: append a file to another file > i understand how to open and create files, but let's say that i want to > open several files and insert them all into one

Re: array inside a hash

2001-05-31 Thread M.W. Koskamp
- Original Message - From: Gary Stainburn <[EMAIL PROTECTED]> To: Perl Beginners <[EMAIL PROTECTED]> Sent: Thursday, May 31, 2001 1:21 PM Subject: array inside a hash > Hi all, > > I'm writing a small script to collect info from various system commands > to produce a small meaningfull r

Re: DB

2001-05-25 Thread M.W. Koskamp
- Original Message - From: justin todd <[EMAIL PROTECTED]> To: Beginners (E-mail) <[EMAIL PROTECTED]> Sent: Friday, May 25, 2001 10:18 AM Subject: DB > Hi. > (...) In short: Your webserver doesn't connect to your DB server. Basically this had nothing to do with the NT Domain trusting an

Re: mail

2001-05-23 Thread M.W. Koskamp
- Original Message - From: Yacketta,Ronald J <[EMAIL PROTECTED]> To: Beginners (E-mail) <[EMAIL PROTECTED]> Sent: Wednesday, May 23, 2001 10:52 PM Subject: mail > Folks, > > I search CPAN and found a good deal of Mail packages, seeing that I am > frankly new > which of them would you

Re: Sendmail

2001-05-22 Thread M.W. Koskamp
- Original Message - From: Chris Tunnell <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 11:23 PM Subject: Sendmail I use a program called activeperl to run perl scripts on my W2k machine. Does anyone know where the sendmail is located Yes, on the nearest unix m

Re: error using sendmail

2001-05-21 Thread M.W. Koskamp
> I am trying to send an email to users based on a list of emails that have > been read into an array. The array contains about 600 records but it abends > at around 200. May i ask what the purpose of that script is? Maarten.

Re: Arrays of hashes?

2001-05-17 Thread M.W. Koskamp
- Original Message - From: David H. Adler <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 17, 2001 7:13 PM Subject: Re: Arrays of hashes? (...) > Technically, that's not *literally* possible. But you can have an array > of *references* to hashes (as assoc. arrays tend

Re: Sorting a Two Dimensional Array

2001-05-16 Thread M.W. Koskamp
- Original Message - From: Matt Noel <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 16, 2001 7:05 PM Subject: Sorting a Two Dimensional Array (...)> I have a simple two-dimensional array, call it @Weights. I think of the > first index as being the Row index and the se

Re: formatting

2001-05-15 Thread M.W. Koskamp
- Original Message - From: Liger-dc <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2001 10:14 PM Subject: formatting > What does the following formatting do? > > $line =~ /^; .ot (\d+)/) It has nothing to do with formatting. Is is a reg exp match statement. I sugg

Re: Oracle Database...

2001-05-15 Thread M.W. Koskamp
- Original Message - From: Ang Sei Heng <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2001 7:18 PM Subject: Oracle Database... > Hello Everyone, > > Recently I did some database connection to Oracle via DBD::Oracle. > > I manage to conncec to server, the follow stat

Re: Regexp Question Again

2001-05-11 Thread M.W. Koskamp
- Original Message - From: Gross, Stephan <[EMAIL PROTECTED]> To: 'Beginner Perl' <[EMAIL PROTECTED]> Sent: Friday, May 11, 2001 5:26 PM Subject: Regexp Question Again > I wasn't clear last time. I wrote: > >I want to match the following: > >1) the letters "PT" > >2) a space or nothing

Re: Very beginner question

2001-05-09 Thread M.W. Koskamp
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 7:50 PM Subject: Very beginner question > > if I am trying to just extract "john" for the value $b, why would the > following script not work. I thought it would take bothIt returns the

Re: ppm error

2001-05-08 Thread M.W. Koskamp
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 08, 2001 7:54 PM Subject: ppm error > when i use Active Perl on Win98 PPm i get the following error when i try to use the search command: > > --- > PPM> search > > not well-formed at li

Re: Need help on Unicode Programming...

2001-05-08 Thread M.W. Koskamp
- Original Message - From: Ang Sei Heng <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 1:27 AM Subject: Need help on Unicode Programming... > This is what I did: > -- BEGIN - > #!/usr/bin/perl -w > > use Unicode::Map8; > use Unicode::S

Re: nested each(%hash) question

2001-05-08 Thread M.W. Koskamp
> I have 2 hashes, %one and %two. > > the ($key, $value) of %one is a span of time. > > I need to compare this span of time over every $key of %two. > > Here's what I have: > > while (($key1, $val1) = each (%one)) { > > while (($key2, $val2) = each (%two)) { > > if (($key2 >= $key1) && ($key2 <

Re: db connect

2001-05-07 Thread M.W. Koskamp
- Original Message - From: justin todd <[EMAIL PROTECTED]> To: Beginners (E-mail) <[EMAIL PROTECTED]> Sent: Monday, May 07, 2001 6:30 PM Subject: db connect > Hi Folks > > I am running a IIS server and MSSQL7, both on the same machine. > > The database server is called JUSTIN. The da

Re: appending unique entries to a text file in perl

2001-05-04 Thread M.W. Koskamp
> Here is what I have so far: > > open (FILE, ">>file2") || die "cannot open file2\n"; > open (OIDFILE, "file1") || die "cannot open file1\n"; > while () { > $new_oid = $_; > while () { You opened FILE for output here. besides this is not too efficient, because you read the whole file2 over and o

Re: Separate DB

2001-05-04 Thread M.W. Koskamp
- Original Message - From: justin todd <[EMAIL PROTECTED]> To: Beginners (E-mail) <[EMAIL PROTECTED]> Sent: Friday, May 04, 2001 9:18 AM Subject: Separate DB > Hi all. > > I am running a IIS webserver and a separate MSSQL database. > > Could anyone please tell me what the connection

Re: How to implement Variable variable names?

2001-05-03 Thread M.W. Koskamp
- Original Message - From: M.W. Koskamp <[EMAIL PROTECTED]> To: Me <[EMAIL PROTECTED]>; Christodoulou Demetris <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, May 03, 2001 10:52 AM Subject: Re: How to implement Variable variable names? > > -

Re: How to implement Variable variable names?

2001-05-03 Thread M.W. Koskamp
- Original Message - From: Me <[EMAIL PROTECTED]> To: Christodoulou Demetris <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, May 03, 2001 10:26 AM Subject: Re: How to implement Variable variable names? > > Hi, > > I am writing an application where i have to read > > from a fil

Re: String deconstruction?

2001-05-02 Thread M.W. Koskamp
- Original Message - From: David H. Adler <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 02, 2001 8:46 PM Subject: Re: String deconstruction? > On Wed, May 02, 2001 at 11:28:14AM -0700, Ross Larner wrote: > > Hello. I am attempting to print a string one character at a

Re: String deconstruction?

2001-05-02 Thread M.W. Koskamp
print join "\n", split "", "abcdefg"; split will give you a list where "abcdefg" is splitted on nothing. so it will contain (a,b,c,d,e,f,g). Join "\n" will join the items in the list with newlines between em. So it will print: a b c d e f If you want to reuse the array do this: my @chars = spli

Re: I am a real begginer to perl......

2001-05-02 Thread M.W. Koskamp
Programming the perl DBI would be a good book. Also learning perl from O'reilly is fairly good. If you get perl from activestate.com you get the perl documentation in html format. Very good and worth reading. Try read the different tutorials. I suggest perlsyn, perlop, and perl sub. Also make a n

Re: eliminating duplicate lines in a file

2001-05-02 Thread M.W. Koskamp
- Original Message - From: Casey West <[EMAIL PROTECTED]> To: M.W. Koskamp <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; cherukuwada subrahmanyam <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, May 02, 2001 6:45 PM Subject: Re: eliminating duplic

Re: eliminating duplicate lines in a file

2001-05-02 Thread M.W. Koskamp
- Original Message - From: Paul <[EMAIL PROTECTED]> To: cherukuwada subrahmanyam <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, May 02, 2001 7:08 PM Subject: Re: eliminating duplicate lines in a file > > --- cherukuwada subrahmanyam <[EMAIL PROTECTED]> wrote: > > Hi, > > Ia

Re: I am a real begginer to perl......

2001-05-02 Thread M.W. Koskamp
Read the documentation in IO::Handle and FileHandle - Original Message - From: n6tadam <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 02, 2001 1:27 PM Subject: I am a real begginer to perl.. > Dear All, > > I wonder if someone could help me. I have been programming

Re: How to create a log file from a perl script

2001-04-26 Thread M.W. Koskamp
- Original Message - From: Kevin Meltzer <[EMAIL PROTECTED]> To: Peter Lemus <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, April 26, 2001 10:07 PM Subject: Re: How to create a log file from a perl script > Hi Peter, > > Look at the perlopentut man page: > > perldoc perlope

Re: missing something obvious

2001-04-25 Thread M.W. Koskamp
- Original Message - From: Paul Johnson <[EMAIL PROTECTED]> To: Sean O'Leary <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, April 25, 2001 7:07 PM Subject: Re: missing something obvious > On Wed, Apr 25, 2001 at 12:47:59PM -0400, Sean O'Leary wrote: > > split (".", $ARGV[0

Re: How to send attacments>

2001-04-24 Thread M.W. Koskamp
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, April 22, 2001 12:28 AM Subject: How to send attacments> How do i send an html file as an attachment using sendmail? Thanks Take a look at the MIME::Lite module...

Re: [beginner] file parsing question

2001-04-24 Thread M.W. Koskamp
- Original Message - From: Stout, Joel R <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 24, 2001 10:20 PM Subject: [beginner] file parsing question > Sorry so lengthy but here goes: > > I am a Perl newbie and trying to parse a file. Depending on the tags in the > data

Re: Complex Regex.

2001-04-24 Thread M.W. Koskamp
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 24, 2001 6:34 PM Subject: Complex Regex. > The Text has numbers in it apparently-1.0 at random but 12 actually not... > $% 12.3 0.9 .333 33 and -33.909 I need to extract > u&t(y2335

Re: quick PERL question

2001-04-23 Thread M.W. Koskamp
- Original Message - From: Paul Johnson <[EMAIL PROTECTED]> To: David Gilden <[EMAIL PROTECTED]> Cc: Casey West <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, April 23, 2001 10:30 PM Subject: Re: quick PERL question > > > > $x = &checkPrice($in{'price'}); > > if ( ($in{'name'} e

Re: quick PERL question

2001-04-23 Thread M.W. Koskamp
- Original Message - From: David Gilden <[EMAIL PROTECTED]> To: Casey West <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, April 23, 2001 9:23 PM Subject: quick PERL question > Dear Casey and the list, > Thanks for your all of your valuable help, > > What is $|++ for? > > #!/u

Re: print with => ??

2001-04-23 Thread M.W. Koskamp
- Original Message - From: David Gilden <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 23, 2001 6:33 PM Subject: print with => ?? > Hello, > Sorry to ask this, as I am quite new at this. > And the online class that I am just now finishing has > lots of bad code for exam

Re: Parsing newbie

2001-04-22 Thread M.W. Koskamp
- Original Message - From: Pang, Joseph <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 21, 2001 12:30 AM Subject: Parsing newbie > Is there any lib/module I could use for data parsing? > > I has some data format that the grammar is known (quite simple actually), > but

Re: Populating Hashs and checking multi form fields

2001-04-20 Thread M.W. Koskamp
- Original Message - From: David Gilden <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 21, 2001 2:49 AM Subject: Populating Hashs and checking multi form fields > # stuff $pwd in to @indata > open(FILE,$pwfile) || die &dead("Can't find $pwfile. $!"); > @indata = ; Th

Re: renaming files in a directory....

2001-04-20 Thread M.W. Koskamp
- Original Message - From: McCormick, Rob E <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 21, 2001 12:08 AM Subject: renaming files in a directory > I can print a file listing with this: > Try to do the rename in the while loopm cuz it loops over all the files i