AW: Unix/Linux question ...

2003-04-02 Thread Wittrock, Friedel
Hi, ls -lad DMA* or ls -lad BMFA* will go regards Friedel -Ursprungliche Nachricht- Von: Daniel Gross [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 3. April 2003 06:28 An: [EMAIL PROTECTED] Cc: Daniel Gross Betreff: Unix/Linux question ... Hi, I have a linux directory that conta

Re: PERL.EXE hangs in memory

2003-04-02 Thread Sisyphus
- Original Message - From: "Hill, David K" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 03, 2003 5:46 AM Subject: PERL.EXE hangs in memory I am experiencing a problem with a PERL.EXE Script running on a W2K server. I am running Perl 5.8 build 804. The scripts just op

Re: Unix/Linux question ...

2003-04-02 Thread will
Hello Daniel, If I'm understanding correctly, you don't want to list the files in the DMA* directories. You just want the directory names themselves right? If that's the case just do ls -ld DMA* The 'd' flag tells ls to list only the directory names. Regards, Will On Wed, 2 Apr 2003, Danie

RE: coping files

2003-04-02 Thread Scot Robnett
use File::Copy http://search.cpan.org/author/JHI/perl-5.8.0/lib/File/Copy.pm ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Unix/Linux question ...

2003-04-02 Thread Scot Robnett
Probably better off using opendir and readdir. They're built into Perl and you don't need to launch another child process to get the results you want. This worked for me, and should work on Windoze or *NIX. I created 4 directories: DMAR, DMAX, BFMAR, BFMAX.

coping files

2003-04-02 Thread Ivan Wills
Hi Does anyone know of a cross platform way to copy files in perl, like deleting files with unlink? Thanks Ivan -- ,###' *##/ Ivan Wills ,*##' Email : [EMAIL PROTECTED] .*##) ,###' l##* ,. __ _. _ .*##' /%# ;*##*_*###*#' .*#\

RE: Converting JPG to TIF ...

2003-04-02 Thread Scot Robnett
Something like this may work #!/usr/bin/perl -w use Image::Magick; my ($image, $foo); $image = Image::Magick->new; $foo = $image->Read('image.jpg'); $foo = $image->Write('image.tif'); # Image::Magick (PerlMagick) module found here: # http://www.imagemagick.org/www/perl.html # Also, you must

Converting JPG to TIF ...

2003-04-02 Thread Daniel Gross
Hello, Is there a perl module available that converts JPG images to TIF ? Thanks Daniel ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Unix/Linux question ...

2003-04-02 Thread Daniel Gross
Hi, I have a linux directory that containts other directories and files. I'd like to submit a linux shell command that will list all directories that are prefixed with a letter sequence. For example: ls -l DMA* Or Ls -l BMFA* Unfortunately, the * expands to all files within all DMA directories.

WMI ExecQuery questions

2003-04-02 Thread Bryan Tom Team EITC
Hey List, I have been using WMI queries in my perl scripts to return EventLog entries from the previous day. I need to trim the number it returns because this wiil be running on 400 or so servers everyday. I want to add the TimeGenerated >= somenumber to my ExecQuery. Code is below. Basicall

Re: Development environments ...

2003-04-02 Thread John
On Thursday, April 03, 2003 9:09 AM AEST, Daniel Gross wrote: > Thank you for the incomming IDE suggestions ... > > Its interesting to see that some perl developers seem not to "require" > an interactive debugging environment, but are happy with power-text > editors, and (I would imagine) with th