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...
Show off your group to the world. Share a photo of your group with us.

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 26554 - 26587 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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...
Online Now 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
Online Now 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...
Online Now 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
26571
... [snip] Why are you submitting this? Is it for peer review? CPAN has a script repository if you want to contribute scripts to the perl community. HTH, ...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Mar 31, 2009
4:50 pm
26572
I submitted this script in the event for aix administrators. so it should go to cpan site ok thanks ... From: Charles K. Clarkson <cclarkson@...> ...
Robert Binkley
leebinkley
Offline Send Email
Mar 31, 2009
10:34 pm
26573
... Robert> I submitted this script in the event for aix administrators. so it Robert> should go to cpan site ok thanks That's not how to put things onto the...
merlyn@...
merlynstoneh...
Online Now Send Email
Apr 1, 2009
12:32 am
26574
Thanks for the Info awaiting on password     Request to register new user fullname: Robert Lee Binkley Jr   userid: RBINKL     mail: CENSORED homepage:  ...
Robert Binkley
leebinkley
Offline Send Email
Apr 1, 2009
1:23 am
26575
Hello everybody, I need to write a Perl CGI script to login from one system (A) into remote system (B) and do a ping to the third system (C). As of now, I have...
Amit Saxena
learn.tech123@...
Send Email
Apr 1, 2009
5:05 pm
26576
Create a new console window and show message gived by the parent process.may be it is a new Dos window.how to do it.this new window is a child.or child thread....
q11112345
Offline Send Email
Apr 6, 2009
12:52 pm
26577
i want to pass a file handle to child process.like this: system("perl child.pl $filehandle"); but it doesn't work.the value passed to child is only a string.i...
q11112345
Offline Send Email
Apr 11, 2009
1:25 am
26578
Hi there, This does not answer the original question and may be naive, but why not just have the child process [re]open the file? Is there a reason you need...
Jeff Soules
soules@...
Send Email
Apr 11, 2009
5:02 pm
26579
hi. actually i've found how to do that. open(INPUT, "< /etc/motd") or die "/etc/motd: $!"; if ($pid = fork) { wait } else { defined($pid) or die "fork:$!";...
Chaofei Yang
q11112345
Offline Send Email
Apr 12, 2009
12:55 am
26580
... Hello all, Thanks for the replies and the help. Since last few weeks, I am also trying for a solution to the same. So far, what I am trying and did is to...
Amit Saxena
learn.tech123@...
Send Email
Apr 12, 2009
5:21 pm
26581
#!/usr/bin/perl use Net::SSH::Perl; my $host = "perlhowto.com"; my $user = "user"; my $password = "password"; #-- set up a new connection my $ssh =...
leebinkley
Offline Send Email
Apr 12, 2009
7:46 pm
26582
How do I get the number of days between two dates using DATE::MANIP? This is all I can come up with but it gives me Weeks and Days, not just days. ...
dachner2002
Offline Send Email
Apr 13, 2009
8:22 pm
26583
Hello, I think Date::Time will give you best results use DateTime; use DateTime::Duration; use Date::Manip; my $dt = DateTime->now;         # same as (...
Kalyan Raj
kalyanraj55
Offline Send Email
Apr 14, 2009
4:26 am
26585
http://faq.perl.org/perlfaq4.html#How_can_I_compare_tw Another way: use Date::Calc qw(Delta_Days); $days = Delta_Days( $year1, $month1, $day1, $year2, $month2,...
buxh42a
Offline Send Email
Apr 15, 2009
4:43 pm
26586
Date::Calc requires a C compiler to install so I've stayed away from it. Don...
dachner2002
Offline Send Email
Apr 15, 2009
7:06 pm
26587
Hi All, I have a requirement to use IO:SOCKET:SSL for which I had to install IO-Socket-SSL-1.24 which needed Net-SSLeay-1.35 and then openssl-0.9.8k. I...
Munthajeeb Akbar
munthajeeb
Offline Send Email
Apr 17, 2009
5:40 pm
Messages 26554 - 26587 of 26718   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