Search the web
Sign In
New User? Sign Up
perl-beginner · Perl Beginners Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 26538 - 26570 of 26720   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
26538
I'm generating text file in Perl, but I need to e-mail them out. This is on a Sun Solaris 10 and it has mailx command on it. I need to send the files as...
Dukelow, Don
dondukelow
Offline Send Email
Feb 11, 2009
9:44 pm
26539
http://www.akadia.com/services/email_attachments_using_perl.html ... From: Dukelow, Don <dukelow@...> Subject: [PBML] Perl Mail To:...
bill lanier
wlanie01
Offline Send Email
Feb 11, 2009
11:25 pm
26540
sir, i need to find one string from paragraph and to convert all the letters in paragraph to 'X', except that string. can anyone help to correct it. i have...
sajan_c_r
Offline Send Email
Feb 25, 2009
5:34 am
26541
... sajan> sir, i need to find one string from paragraph and to convert all the sajan> letters in paragraph to 'X', except that string. can anyone help to ...
merlyn@...
merlynstoneh...
Offline Send Email
Feb 25, 2009
4:13 pm
26542
I'm running Solaris 10 and my Perl script won't work under crontab. Well part of it does anyway. I'm making a file with headers in it and that part works...
Dukelow, Don
dondukelow
Offline Send Email
Feb 25, 2009
4:37 pm
26543
... First question I'm gonna ask as a follow up is what error(s) are you seeing? -- Peter L. Berghold http://www.berghold.net peter@... Unix...
Peter L. Berghold
blue_cowdawg
Offline Send Email
Feb 25, 2009
4:43 pm
26544
No errors! it just doesn't happened. ... Don Dukelow HP/GM GSC33 License Team e-mail: dukelow@... ________________________________ From:...
Dukelow, Don
dondukelow
Offline Send Email
Feb 25, 2009
4:45 pm
26545
... Let me ask a different way. What is not happening when you run the script from cron? Is there an interactive portion of the process that is not being...
Peter L. Berghold
blue_cowdawg
Offline Send Email
Feb 25, 2009
4:50 pm
26546
Hi Sajan, I am working on this problem and I found all that I could get out of $para was the number of substitutions. The way this seems to work is on the...
mrkcoconnell
Offline Send Email
Feb 25, 2009
4:54 pm
26547
When run manually the script makes three forks, runs around the network gathering server port information. Then I make the file with the header information in...
Dukelow, Don
dondukelow
Offline Send Email
Feb 25, 2009
5:11 pm
26548
Hi, The symptoms make this sound like a permission problem. You may not be accessig a directory when this runs under cron. Kevin ... crontab. Well part of it...
mrkcoconnell
Offline Send Email
Feb 25, 2009
5:28 pm
26549
... Ok. So I assume you want $para=~s/[^$string]/X/g; ... just a ^ to look for non-matching things. ... -- -- http://thexayon.wordpress.com Que la fuerza os...
David Francos (XayOn)
yo.orco@...
Send Email
Feb 25, 2009
5:31 pm
26550
... OK: what does "runs around the network" mean? What is being invoked? What I'm trying to help you discover is what is the difference in the environment...
Peter L. Berghold
blue_cowdawg
Offline Send Email
Feb 25, 2009
5:33 pm
26551
What I mean by run around the network is. I have a list of servers and i use Net::SSH::Perl to SH into each one and do ifconfig's and kstat to gather port...
Dukelow, Don
dondukelow
Offline Send Email
Feb 25, 2009
5:57 pm
26552
... That's because you're doing: $para = s/something/X/g; instead of $para =~ s/something/X/g; You're using the = operator instead of the =~ operator. -- The...
Jeff Pinyan
evilffej
Offline Send Email
Feb 25, 2009
7:59 pm
26553
Sorry it took so long but they expect me to do work around here for some stranfe reasion. The to attachments is the output of the %ENV hash running the scrips...
Dukelow, Don
dondukelow
Offline Send Email
Feb 26, 2009
4:31 pm
26554
I'm trying to find out what my primary dns server is, within a perl script. It just happens to be an AD server, and I need to point to it as a AD machine...
Brian
brianlamere
Offline Send Email
Mar 20, 2009
9:12 pm
26555
... Is this what you need? Not sure I understand what you are trying to do... http://www.net-dns.org/...
wlanie01
Offline Send Email
Mar 20, 2009
9:45 pm
26556
sortof, closest I could find there was Net::DNS::ToolKit::get_ns but that didn't want to work on my machine. basically - the system knows what it's name...
Brian
brianlamere
Offline Send Email
Mar 20, 2009
11:07 pm
26557
Is it possible to implement this without using any external modules from CPAN ? Thanks & Regards, Amit Saxena [Non-text portions of this message have been...
Amit Saxena
learn.tech123@...
Send Email
Mar 23, 2009
7:07 pm
26558
... Amit> Is it possible to implement this without using any external modules from Amit> CPAN ? Is it possible? Yes. Reasonable? No. Please state clearly your...
merlyn@...
merlynstoneh...
Offline Send Email
Mar 23, 2009
8:46 pm
26559
Hi, I am using a script where it works out of loop and loads different configs everytime from config files. I am loading that configs using 'require' ...
yaswanth krishna
yaswanth.krishna@...
Send Email
Mar 24, 2009
5:10 am
26560
... That doesn't sound like a good plan. You are importing unknown variables and routines into your symbol table. That is not a usually a good perl programming...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Mar 24, 2009
9:40 am
26561
... As mentioned in the earlier example, I need the script to run in different modes. For every mode of invocation, I am taking mode specific configs from ...
yaswanth krishna
yaswanth.krishna@...
Send Email
Mar 24, 2009
11:01 am
26562
From: yaswanth krishna <yaswanth.krishna@...> ... foreach ('a.conf', 'b.conf') { my $config = require '$_'; do_something_with( $config->{var1},...
Jenda Krynicky
jendaperl
Offline Send Email
Mar 24, 2009
2:51 pm
26563
... yaswanth> As mentioned in the earlier example, I need the script to run in yaswanth> different modes. For every mode of invocation, I am taking mode ...
merlyn@...
merlynstoneh...
Offline Send Email
Mar 24, 2009
3:17 pm
26566
Were you able to solve this ? If so, how... /Tux On Tue, Mar 24, 2009 at 10:40 AM, yaswanth krishna < ... [Non-text portions of this message have been removed]...
igotux igotux
igotux@...
Send Email
Mar 29, 2009
6:33 am
26568
#!/usr/bin/perl # Author leebinkley@... use strict; use warnings; my $diff = 0; my @TI = (); my $TimeInfo = \@TI; get_time($TimeInfo); my $MyWrkLoc =...
leebinkley
Offline Send Email
Mar 30, 2009
12:02 am
26569
#!/usr/bin/perl -w use strict; use warnings; use Data::Dumper; my %MFI = (); my $MyFolderInfo = \%MFI; my $MyIn = 0; my $MyOut = 0; my @MyWorka = (); # #...
leebinkley
Offline Send Email
Mar 30, 2009
12:07 am
26570
$err=Net::Pcap::sendpacket($pcap,\$ethr_data) or die "Can't send packet:$!\n\r$err"; and it will be stopped when it goes here.return error is :Bad file...
q11112345
Offline Send Email
Mar 30, 2009
8:27 am
Messages 26538 - 26570 of 26720   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help