FW: FW: delete files

2001-05-17 Thread Porter, Chris
-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

RE: FW: delete files

2001-05-16 Thread Paul
--- "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

FW: FW: delete files

2001-05-16 Thread Porter, Chris
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

Re: FW: delete files

2001-05-15 Thread Paul
--- "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

Re: FW: delete files

2001-05-15 Thread Jos Boumans
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

FW: delete files

2001-05-15 Thread Porter, Chris
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