Tried assigning the command to a scalar variable and it does not work too well with the system function. $uname = "uname -r"; $var = `ssh servername $uname`; ...
... This executes the ssh command and places its stdout into $var ... This executes the stdout of the ssh command - certainly not what you wanted to do. ... ...
I wanna get information from a site which contain frames and dynamic content(jsp).I used lwp module but i can get only source code.The code i wrote is below. ...
Hi, You mentioned that you are new to perl. So I think you should learn basics of perl which are very important. For reading excel file in perl you should...
Hi all, Greetings to you. I am looking for PERL,Shell exp candidates for chennai/NY ( Investment Banking Domain based company Pl send your resume @ earliest ...
Hi all, I have wrote this config.pl, I want to know how to use the variables defined in this config file to any other PERL script. Plz explain this using a...
It's one easy way: you can save config.pl like Perl module. For example, in Perl-module directory (ex. c:\perl\site\lib) you mus create one folder (ex....
Allo! My ISP is complaining about one my my Perl script. The script is taken to much resource from the server. The script run smoothly for a certain period,...
Can any send me the code .. to send email in per using SMTP .. Waiting .. ... Do you Yahoo!? Check out the new Yahoo! Front Page. www.yahoo.com [Non-text...
Hi, I am trying to create a complex datastructure in perl corresponding to a class in C++ , but have been doing it unsuccessfully. Can anyone help? I have...
Hi! Why I receive messages from this group? I choose the "No e-mail" option in the "Edit My Membership" section, but in any case I get these messages. I don't...
You can use the Benchmark module. I guess it comes woth the default perl installation itself. Or else you can download it from CPAN. You can read the...
I'm using the latest activeperl IDE and perlbuilder on windows. The problem is i can't even open a text file for reading. The file is in the right directory...
... Hash: SHA1 ... Is activeperl the same as activestate perl? Have you tried changing / to \ In Windows, i use SiePerl (1). You could get it from gnuwin (2)....
Hi All, I'm having a multidimension array in a file like this... 23 45 76 89 99 12 32 56 88 33 . . . . Can anybody plz. tell me how to read each individual ...
... You can think of a multi-dimensional array as an 'array of arrays'. To get the first element of the first array you would use: $array[0][0] More at:...
Hi Priya, You can use this code ... dim.txt is your file.... #!/usr/bin/perl @suresh = (); open (F,"c:/dim.txt") or die "Can not open"; while (<F>) { chomp; ...
... skumar> @farray = join ",",split(/\s+/,$_); Huhhh? The output of split is your list. Why would you consider "joining" it with commas, making one long...
The one way is to install Mail::Sender Perl module (look at CPAN). The part of possible code is: #!/usr/bin/perl use Mail::Sender; ... $mail_server =...
I have used perl Tk to do something similar. I am not sure about GD, never used it. You can Google a lot of Tk stuff and many ready-made examples Here is a...
Hello i would like to know abt doin some graphics in perl. Basically i have a set of coordinates generated by my perl program . i need to write a prog for an...