RE: Problem with Net::FTP

2003-03-19 Thread resaulpaugh
There is a windows console command that has both the word net and the word use net use * unc_server\\share A typo perhaps? richard Beckett Richard-qswi266 [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 03/19/2003 03:33 AM To:'Koteshwar Rao A' [EMAIL PROTECTED], [EMAIL

RE: Problem with Net::FTP

2003-03-19 Thread Koteshwar Rao A
Thank you for the first question. Is there any answer for second question,by using PPM. --Eswar. -Original Message- From: Beckett Richard-qswi266 [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 3:03 PM To: 'Koteshwar Rao A'; [EMAIL PROTECTED] Subject: RE: Problem with

(no subject)

2003-03-19 Thread Tim Straub
Hi list, is there any way to open a hidden UNC path with the mkdir statement given by a parameter. Let's say I run the script with the parameter \\server\new$ the path will get truncated one time by the newline '\n' and the dollar sign will by cut off. Then putting it in the variable $x the

(no subject)

2003-03-19 Thread Tim Straub
Hi list, is there any way to open a hidden UNC path with the mkdir statement given by a parameter. Let's say I run the script with the parameter \\server\new$ the path will get truncated one time by the newline '\n' and the dollar sign will by cut off. Then putting it in the variable $x the

RE: (no subject)

2003-03-19 Thread JamesTillman
Try server\\new\$ In perl you escape meta-characters with backslashes. Not much fun when you discover that Win32 just loves backslashes! jpt -Original Message- From: Tim Straub [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 7:10 AM To: [EMAIL PROTECTED] Subject:

RE: UNC Path (hidden) in Variable With MKDIR, was (no subject)

2003-03-19 Thread Tim Straub
[EMAIL PROTECTED] .state.fl.us

Functions for clearing screen

2003-03-19 Thread Koteshwar Rao A
Can any one tell me functions same as CD dir , dir commands in DOS and for clearing screen Thanx in advance --Eswar. -Original Message- From: $Bill Luebkert [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 3:45 PM To: Koteshwar Rao A Cc: 'Beckett Richard-qswi266'; [EMAIL

RE: Functions for clearing screen

2003-03-19 Thread Beckett Richard-qswi266
Please stop CCing me, I read the list. Thanks. R. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Scripting for MOM

2003-03-19 Thread Stanley . G . Martin
Has anyone done any scripting for the Microsoft Operations Manager (MOM) yet? I just started to eval it for my group here in Sprint and was wondering if it was going to be very flexible, where I could add my own scripts to it. Stanley G. Martin Sprint - EISĀ³ Customer Care [EMAIL PROTECTED]

Re: How do one determine the amount of memory used by an process withinperl

2003-03-19 Thread Thomas R Wyant_III
Mundell, R. \(Ronald\) [EMAIL PROTECTED] wrote: I am busy writing a script that will determine the status of an application. I also need to determine the amount of memory used by such an application. If anyone knows how to do this within perl please help. This solution needs to be platform

Delete

2003-03-19 Thread Krishna, Hari
Hello friends, I have written a perl program that downloads the files (basically ftp in a batch program) from the unix systems to windows. These files contain the ping information to various unix systems that we use. The program then calculates the uptime and downtime quarterly for these

RE: Delete

2003-03-19 Thread Morley, Philip
To answer your lat two questions use telnet. I believe there is a Perl module, Net::Telnet available form ppm/CPAN although I have never used it myself. Regards, Phil. -Original Message- From: Krishna, Hari [mailto:[EMAIL PROTECTED] Sent: 19 March 2003 13:54 To: [EMAIL PROTECTED]

RE: Delete

2003-03-19 Thread Krishna, Hari
Thanks to all for the delete (I was using the rm command as would one use in unix.. ) command. ;( But how do I login to Unix and start or stop a script from running, through a program, like perl? -Original Message- From: $Bill Luebkert [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19,

Re: Delete

2003-03-19 Thread Thomas R Wyant_III
Krishna, Hari [EMAIL PROTECTED] wrote: I have written a perl program that downloads the files (basically ftp in a batch program) from the unix systems to windows. These files contain the ping information to various unix systems that we use. The program then calculates the uptime and downtime

RE: Delete

2003-03-19 Thread Ross Matt-QMR000
A cheesy way to remove the file on the Unix system inside of your FTP. Step 01 Change the windows directory to a different location where the filenames that you just pulled down do not live. Step 02 Cycle though all the filename that are on the Unix side issuing the put FILENAME command this

Couple questions (alarm(), nested loops)

2003-03-19 Thread FARRINGTON, RYAN
Title: Couple questions (alarm(), nested loops) ok does ActiveState implement something like alarm() in the win32 version? and if I have nested loops: foreach $var(@vars){ foreach $stuff (@stuffs){ } } how do I make the second loop force the first loop to go to the next

RE: Couple questions (alarm(), nested loops)

2003-03-19 Thread Joseph P. Discenza
Please post in plain text if you can. It makes it easier to reply. FARRINGTON, RYAN wrote, on Wednesday, March 19, 2003 10:14 : ok does ActiveState implement something like alarm() in the win32 version? IIRC, they don't. Someone else may have better information (5.8?) than I do. : and if I

RE: (no subject)

2003-03-19 Thread Gerber, Christopher J
Tim, AFAIK, the mkdir command can only make subdirectories, not new shared folders. Making shares is covered very well in Roth's Win32 Perl Programming, pages 70-78. To create a share, take a look at Win32::NetResource::NetShareAdd or Win32::Lanman::NetShareAdd. Here's a sample: use

TR: Re:cr/lf in perl

2003-03-19 Thread JGONCALV
Hi, i have this: #perl use strict; use warnings; while ( DATA ) { chomp; my data = map { s/^\s+//; s/\s+$//; $_ } split /;/; reformat ( data ); } sub reformat { format = PROBTRAC: Continuous Problem Tracking System Submittal Form !crstatus = shift !severity:

RE: Scripting for MOM

2003-03-19 Thread Eli Jehoel
Your message was encoded in RTF, and as a Microsoft Outlook user I have to open your message as an attachment with Microsoft Word. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 2:29 PM To:

RE: RE: (no subject)

2003-03-19 Thread Tim Straub
Dear Christopher, the share is already available. It is only the subdirectory which I need. Tim Gerber, Christopher J

RE: UNC Path (hidden) in Variable With MKDIR, was (no subject)

2003-03-19 Thread JamesTillman
-Original Message- From: Tim Straub [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 7:42 AM To: [EMAIL PROTECTED] Subject: RE: UNC Path (hidden) in Variable With MKDIR, was (no subject) Try server\\new\$ unfortunately the syntax have to be something like

Re: Problem with Net::FTP

2003-03-19 Thread Carl Jolley
On Wed, 19 Mar 2003, Koteshwar Rao A wrote: Hai , My name is eswar , I am in a process of automating the ftp process from a windows worstation to Unix server, When I am using this Net::Ftp for this , I am getting the following error, Can't locate object method Use via

Win32-API 0.41 Compile and install help

2003-03-19 Thread Adam Frielink
I cannot find a PPM for this and when I compile it with VC++ v6 standard, I keep getting failed tests during the 'nmake test' stage. C:\Documents and Settings\Adam\Desktop\Win32-API-0.41.tar\Win32-API-0.41perl Ma kefile.pl Writing Makefile for Win32::API::Callback Writing Makefile for Win32::API

(OT) Catchall DNS?

2003-03-19 Thread Steve Karr
%% OFF TOPIC %% I know this is off topic, but I can't find the answer myself, and I'm sure someone on this list will know, so I'm asking. Please some yell at me ;) Does anyone know how to configure BIND DNS Server like a catchall email address? I know how to do it with CNAMES (*), but not for