-Original Message-
From: Porter, Chris
Sent: Thursday, May 17, 2001 6:59 AM
To: '[EMAIL PROTECTED]'
Subject: RE: FW: delete files
Thanks, helps very much. The directory -- I added the directory I'm
referring to.
opendir DIR - added the same directory()
Can u
--- "Porter, Chris" <[EMAIL PROTECTED]> wrote:
> Silly question --- where do i exactly insert all of my information
> that points to where my changes need to be made. Sorry if this is a
> stupid question. Thank you.
If you don't know, it would be sillier not to ask. =o)
chdir "/the/directo
Forwarded message.
-Original Message-
From: Porter, Chris
Sent: Wednesday, May 16, 2001 7:14 AM
To: '[EMAIL PROTECTED]'; ',[EMAIL PROTECTED]'
Subject: RE: FW: delete files
Silly question --- where do i exactly insert all of my information that
points to where m
--- "Porter, Chris" <[EMAIL PROTECTED]> wrote:
> Any ideas???
> > me. I want to create a script that deletes uppercase words from a
> > directory using the unlink command. Probably a very simple thing
chdir $dir or die $!;
opendir DIR, "." or die $!;
for my $file (grep { -f $_ } read
Chris,
You might want to start by reading the documentation for 'opendir' (perldoc -f
opendir) or view it online here:
http://www.perl.com/pub/doc/manual/html/pod/perlfunc/opendir.html
Now, you can then use a simple regexp (perldoc perlre) to see if you have any
all-uppercase characters in your
Any ideas???
> -Original Message-
> From: Porter, Chris
> Sent: Tuesday, May 15, 2001 9:20 AM
> To: '[EMAIL PROTECTED]'
> Subject: delete files
>
> Hello,
>
> How are you? Sorry to bother. I am very new to perl so please bear with
> me. I want to create a script