On 9 April 2015 at 05:40, ayush kabra wrote:
> I need little bit help. i need to sort a file according to its 3rd column
> and i need the output. can you please help me on this.
> Input file we can take anyone either .txt or .xls or .csv. Please look
> into this and help me.
>
If you need somet
Please take any further messages in this conversation off list. It's
off-topic, off-putting to newcomers, and generally boring and/or
aggravating for those of us that have seen it before.
Rob: there is no obligation for people to disclose that they wrote the
stuff they're advocating. Nobody has a
On 10/05/2013 04:54 AM, Rob Dixon wrote:
Uri, I rarely see File::Slurp recommended other than by yourself.
usually it is in the context of a work-around for Perl's lack of support
for a regex version of $/. I have also never had occasion to use it
myself, despite a working understanding of its
On 04 Oct 2013 06:33, Shlomi Fish wrote:
> On 02 Oct 2013 Uri Guttman wrote:
>> On 02 Oct 2013 08:56 PM, Rob Dixon wrote:
>>> On 03 Oct 2013 01:39, Uri Guttman wrote:
I do recommend you try to use File::Slurp to read in and write out your
files.
>>>
>>> It would help a lot if you dec
Hi Uri,
On Wed, 02 Oct 2013 23:44:04 -0400
Uri Guttman wrote:
> On 10/02/2013 08:56 PM, Rob Dixon wrote:
> > On 03/10/2013 01:39, Uri Guttman wrote:
> >>
> >> I do recommend you try to use File::Slurp to read in and write out your
> >> files.
> >
> > It would help a lot if you declared your inte
On Wed, Oct 2, 2013 at 5:10 PM, Peter Holsberg
wrote:
> Charles DeRykus has written on 10/2/2013 5:49 PM:
> >
> > Wouldn't a manual edit be easier... or is this a recurrent problem?
> > If recurrent, a messy solution may be possible but fragile unless
> > the html formatting is invariant - what if
Shawn H Corey wrote:
On Wed, 02 Oct 2013 13:57:36 -0400
Peter Holsberg wrote:
I was so upset that I deleted it all! It seems to me that
it should be fairly straightforward, but at 79, the old synapses
aren't firing quite as well as they used to.
Can you get me started?
Sure:
my @files =
Peter Holsberg wrote:
Let me start over.
The file I want to modify has a 6-digit filename and an extension htm.
For example, 131002.htm
I'm working in Windows, with Strawberry perl, with Randall L. Schwartz's
Randal L. Schwartz
John
--
Any intelligent fool can make things bigger and
more
On 10/02/2013 08:56 PM, Rob Dixon wrote:
On 03/10/2013 01:39, Uri Guttman wrote:
I do recommend you try to use File::Slurp to read in and write out your
files.
It would help a lot if you declared your interest in File::Slurp. It is
disingenuous to recommend your own modules.
i don't see why
On 10/02/2013 08:44 PM, Peter Holsberg wrote:
Uri Guttman has written on 10/2/2013 8:39 PM:
use File::Slurp qw( read_dir edit_file ) ;
foreach my $file ( grep /^\d{6}\.htm$/, read_dir( $dir ) ) {
edit_file { s/foo/bar/g } $file ;
}
read_dir is also fr
That should read as follows:
use strict;
use warnings;
use Tie::File;
use File::Copy 'copy';
use File::Spec;
my $dir = '/path/to/my/directory';
opendir my ($dh), $dir;
# Find all files in the directory that match \d{6}\.htm
# Die if none or multiple files found
#
my @files = grep /\A\d{6}\
On 02/10/2013 18:22, Peter Holsberg wrote:
Hi,
I have tried to do this for hours but it looks like it is just too
difficult for me.
I would like a script to open a file in the current directory and edit
it. The file's name is \d{6}.htm
The script then needs to search for a line that begins:
On 03/10/2013 01:39, Uri Guttman wrote:
I do recommend you try to use File::Slurp to read in and write out your
files.
It would help a lot if you declared your interest in File::Slurp. It is
disingenuous to recommend your own modules.
Rob
--
To unsubscribe, e-mail: beginners-unsubscr...@pe
On 03/10/2013 00:19, Shawn H Corey wrote:
It would be difficult to get a file with a backslash in it.
perl -e "open X, q/>\d{6}.htm/"
Rob
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/
Uri Guttman has written on 10/2/2013 8:39 PM:
> On 10/02/2013 08:02 PM, Peter Holsberg wrote:
>> Let me start over.
>>
>> The file I want to modify has a 6-digit filename and an extension htm.
>> For example, 131002.htm
>
> i figured that was the case. you should state that in the beginning and
On 10/02/2013 08:02 PM, Peter Holsberg wrote:
Let me start over.
The file I want to modify has a 6-digit filename and an extension htm.
For example, 131002.htm
i figured that was the case. you should state that in the beginning and
then say a regex to match that is \d{6}\.htm. then you can u
On 10/02/2013 07:19 PM, Shawn H Corey wrote:
On Wed, 02 Oct 2013 23:43:40 +0100
Rob Dixon wrote:
The file's name is \d{6}.htm
do you mean that literal name, or do you want to include *.htm files
that start with six decimal digits? Jim Gibson has assumed the former,
while Shawn, the latter.
Let me start over.
The file I want to modify has a 6-digit filename and an extension htm.
For example, 131002.htm
I'm working in Windows, with Strawberry perl, with Randall L. Schwartz's
"Learning Perl", copyright 1993. I also have "Perl 5 Pocket Reference",
1998 and copies of "Programming Perl"
On Wed, Oct 2, 2013 at 8:19 PM, Shawn H Corey wrote:
> On Wed, 02 Oct 2013 23:43:40 +0100
> Rob Dixon wrote:
>
> > > The file's name is \d{6}.htm
> >
> > do you mean that literal name, or do you want to include *.htm files
> > that start with six decimal digits? Jim Gibson has assumed the former
On Wed, 02 Oct 2013 23:43:40 +0100
Rob Dixon wrote:
> > The file's name is \d{6}.htm
>
> do you mean that literal name, or do you want to include *.htm files
> that start with six decimal digits? Jim Gibson has assumed the former,
> while Shawn, the latter.
It would be difficult to get a file
On Wed, Oct 2, 2013 at 4:44 PM, Peter Holsberg
wrote:
> Shawn H Corey has written on 10/2/2013 2:29 PM:
> > On Wed, 02 Oct 2013 13:57:36 -0400
> > Peter Holsberg wrote:
> >
> >> I was so upset that I deleted it all! It seems to me that
> >> it should be fairly straightforward, but at 79, the old
On 02/10/2013 20:44, Peter Holsberg wrote:
Shawn H Corey has written on 10/2/2013 2:29 PM:
my @files = grep { /^\d{6}\.htm$/i } glob( '*.htm' );
Well, I'm more of a beginner than I thought I was!
The /i to grep is to ignore case?
Why are you globbing *.htm?
Hi Peter
All that Shawn has sh
On Wed, 02 Oct 2013 15:44:56 -0400
Peter Holsberg wrote:
> Why are you globbing *.htm?
See `perldoc -f glob` and `perldoc File::Glob`.
--
Don't stop where the ink does.
Shawn
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@pe
On Oct 2, 2013, at 10:22 AM, Peter Holsberg wrote:
> Hi,
>
> I have tried to do this for hours but it looks like it is just too
> difficult for me.
>
> I would like a script to open a file in the current directory and edit
> it. The file's name is \d{6}.htm
That is an unusual name for a file.
Shawn H Corey has written on 10/2/2013 2:29 PM:
> On Wed, 02 Oct 2013 13:57:36 -0400
> Peter Holsberg wrote:
>
>> I was so upset that I deleted it all! It seems to me that
>> it should be fairly straightforward, but at 79, the old synapses
>> aren't firing quite as well as they used to.
>>
>> C
On Wed, 02 Oct 2013 13:57:36 -0400
Peter Holsberg wrote:
> I was so upset that I deleted it all! It seems to me that
> it should be fairly straightforward, but at 79, the old synapses
> aren't firing quite as well as they used to.
>
> Can you get me started?
Sure:
my @files = grep { /^\d{6}\.
John SJ Anderson has written on 10/2/2013 1:45 PM:
> On Wed, Oct 2, 2013 at 10:22 AM, Peter Holsberg
> wrote:
>> Hi,
>>
>> I have tried to do this for hours but it looks like it is just too
>> difficult for me.
>
> You should maybe show the code you have, and we can help you with
> that. If you'v
On Wed, Oct 2, 2013 at 10:22 AM, Peter Holsberg
wrote:
> Hi,
>
> I have tried to do this for hours but it looks like it is just too
> difficult for me.
You should maybe show the code you have, and we can help you with
that. If you've worked for "hours", you must have something to show.
j.
--
T
Hi,
> "alo" == alok wrote:
alo>I am trying to use Win32::IEAutomation module to test one web
alo>application which is HTTPS based.
alo>I am unable to bypass SSL security warning.
alo>Can someone help - here's the code I am using.
alo>use Win32::IEAutomation;
al
Can you use Win32::GuiTest to find the SSL security warning windows
(since it's a windows alert) and handle it?
On Thu, Apr 19, 2012 at 10:45 AM, alok wrote:
> I am trying to use Win32::IEAutomation module to test one web
> application which is HTTPS based.
>
> I am unable to bypass SSL security
List,
First I would like to thank all who provided input.. With the help of the
this list, I was able to figure out what I needed to change to get it all
working.. And we have successfully kept VB out (Yippy!)..
Now to the solution (note: I have copied the little test code and its output
below..
> Can someone explain how to access $InstDesc?? Also please
> explain how I would access (that is read from or write to)
> to the $Severity scalar on the bottom structure..
> Thanks in advance.. flk
Sure I can help. (or guide you astray)
#!/usr/bin/perl
use strict;
use warnings;
my %PlcyActi
On 28/09/2011 15:33, Frank Kleinburg wrote:
Hello list,
I've been playing with perl going back to the 4.x days, mostly simple
scripts to monitor server or application daemons, kick off and manage
backups, or read log files.. While some of these programs are fairly
complicated, none have more tha
Frank:
CCing the list since you didn't indicate that this was a private
message. I'm assuming you meant to "reply to all" (which is
probably what you should have done anyway). :)
On Wed, Sep 28, 2011 at 12:55 PM, Frank Kleinburg wrote:
> Brandon,
>
> You nailed it.. The one change from "INSTNCE
On Wed, Sep 28, 2011 at 1:00 PM, lesleyb wrote:
> $Policy->{INSTNCE} evaluates to a hash. Then you ask Perl to access the value
> given by the key $CondID in that hash. $CondID is a key to a reference to
> another anonymous hash. But this time you don't use the '->' to get to the
> value of the
On Wed, Sep 28, 2011 at 09:33:50AM -0500, Frank Kleinburg wrote:
> Hello list,
>
> I've been playing with perl going back to the 4.x days, mostly simple
> scripts to monitor server or application daemons, kick off and manage
> backups, or read log files.. While some of these programs are fairly
>
On Wed, Sep 28, 2011 at 10:33 AM, Frank Kleinburg wrote:
> $Policy = {
> NAME => $PlcyName,
> DESCRPT => $PlcyDesc,
> INSTNCE => { %Instance },
> };
>
> %Instance = (
> $CondID => {
> DESCRPT =>
On Fri, Jul 08, 2011 at 15:23:11 +0530 , pawan kumar wrote:
> Hi,
> I am BE(CSE) fresher.I got a call for interview and openings is in perl.I
> know the basics of perl.Please let me know what i have to prepare for
> interview.Any link for frequently asked scripts??
> --
> K.V. PAWAN KUMAR
Did t
2011/7/8 pawan kumar :
> I am BE(CSE) fresher.I got a call for interview and openings is in perl.I
> know the basics of perl.Please let me know what i have to prepare for
> interview.Any link for frequently asked scripts??
It's not so easy to reply. It depends of the company and also a lot of
poi
On Fri, Jul 8, 2011 at 11:53 AM, pawan kumar wrote:
> Hi,
> I am BE(CSE) fresher.I got a call for interview and openings is in perl.I
> know the basics of perl.Please let me know what i have to prepare for
> interview.Any link for frequently asked scripts??
> --
> K.V. PAWAN KUMAR
>
Good one...
2011/5/6 meaculpa :
> Hi,
>
> I am developing an automation tool, where users can upload the script
> to webserver and they can select any of the uploaded script and
> execute the script.
>
I hope this is not a creacker behavior.
But you could upload the files with Net::FTP.
If you don't have the
Mornin' --
You might check Log::Log4perl on CPAN. It will most likely do what you want
might out of the box (the Easy Mode) and will make your life a lot easier
by taking care of such 'trivia' as time-stamps, severity-levels, etc.
B
On Tue, Apr 26, 2011 at 7:49 AM, Khabza Mkhize wrote:
> I
At 4:49 PM +0200 4/26/11, Khabza Mkhize wrote:
I have different Web based scripts when they run update SQL Data Base. Now I
need to audit every update sql in my database and store all logs to data
file.
I dont mind about size of a file since I will create different file foreach
item Audited. I wi
first, this isn't the proper forum. second...
On Fri, Apr 22, 2011 at 12:47 PM, Agnello George
wrote:
> Hi All
>
> i am creating a script for deployment of websites and i need to create
> hash %config ( which stores a lot of configurations setting for
> each type of website ) ... i have been
On Wed, Mar 23, 2011 at 08:47, Sudhir wrote:
> My work environment recently shifted from perl v5.6 to perl v5.10
>
> I found one issue with perl format statement in latest version v5.10
>
> sample code:
>
> #!/bin/env perl
> use strict;
>
> &genRep();
>
> sub genRep
> {
> format DURATION_TOP =
> @
Thanks a lot Parag.. That was indeed helpful...
On Thu, Jan 20, 2011 at 11:50 AM, Parag Kalra wrote:
> Snippet of what I understand from your requirement:
>
> parag@ubuntu-studio:~$ cat app
> #!/bin/bash
> if [ $# -ne 1 ]
> then
>echo -e "Invalid number of input\nUsage: app "
>exit 1
> e
Message-
> From: CM Analyst [mailto:cmanal...@yahoo.com]
> Sent: Thursday, January 27, 2011 6:25 PM
> To: Parag Kalra
> Cc: beginners@perl.org
> Subject: Re: Need help with Use of uninitialized value in concatenation
> (.) or string
>
> This is a sample of the data I a
-84f9e0f6609e;|]
com.raec.cq.CQCommitException: You wanted to commit a modifyCR based record,
but the record was
not found in the ClearQuest Database.
--- On Thu, 1/27/11, Parag Kalra wrote:
From: Parag Kalra
Subject: Re: Need help with Use of uninitialized value in concatenation (.) or
string
To: &qu
When you are already storing the line under $line
>>>while(( my $line = )) {
Then why are you using $_
>>>my @fields = split '\|', $_;
Cheers,
Parag
On Thu, Jan 27, 2011 at 12:57 PM, CM Analyst wrote:
> Hello,
>
> In the following script my goal is pull the date value each time an error
> va
Can you send an example of the data in the log file?
tm
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/
On Tue, Jan 25, 2011 at 8:46 AM, Khabza Mkhize wrote:
> Can you please help with where to find information about Perl mobile
> version
> I need to develop Accommodation Booking Website that will run on Smart
> phone, Iphone And Blackberry.
>
> Please send me a links with relevant information
>
>
Snippet of what I understand from your requirement:
parag@ubuntu-studio:~$ cat app
#!/bin/bash
if [ $# -ne 1 ]
then
echo -e "Invalid number of input\nUsage: app "
exit 1
else
input=$1
fi
if [ $input != "register" ]
then
echo "Invalid choice"
exit 1
fi
echo "mac"
echo "windoze
On Fri, 26 Nov 2010, Shlomi Fish wrote:
Actually I use Alpine, but thanks for that warning, I'll make sure to
delete all links from my future posts, because research shown that humans
are intelligent enough to follow a thread without being spoonfed through
the throat.
Hi Erez,
next time, pl
Hi Erez,
next time, please don't omit the links in your quoted reply, so people will
understand what we're talking about. (Unless it was one of GMail.com's many
braindamages, in which case I'm sorry for accusing you.)
On Friday 26 November 2010 19:12:45 Erez Schatz wrote:
> There are many books
There are many books available,
On Fri, 26 Nov 2010, Shlomi Fish wrote:
Hi Uma,
welcome to the Perl world.
On Thursday 25 November 2010 17:12:49 Umashankar wrote:
Hi All,
I started my career in a software firm, am working in PERL platform.
Can some one guide me by providing some online tuto
Hi Chandrashekar,
On Friday 26 November 2010 12:24:49 Chandrashekar Bhat wrote:
> Hi Umashankar,
>
> Below links may be useful.
>
> http://www.perl.com/pub/2000/10/begperl1.html
see the links at the top of that resource for a more up-to-date version or see
http://perl-begin.org/ .
>
> http:/
Hi Uma,
welcome to the Perl world.
On Thursday 25 November 2010 17:12:49 Umashankar wrote:
> Hi All,
>
> I started my career in a software firm, am working in PERL platform.
> Can some one guide me by providing some online tutorials, course
> materials links.
>
We have collected some recommend
Hi Umashankar,
Below links may be useful.
http://www.perl.com/pub/2000/10/begperl1.html
http://computer.howstuffworks.com/perl.htm
http://docstore.mik.ua/orelly/perl/prog3/ch01_01.htm
http://www.pageresource.com/cgirec/index.html
http://perl.plover.com/IAQ/IAQlist.html
Thanks,
Chandrashekar
You're right, my path is messed up, I have SAX installed. I tried to move
stuff around and when I run the script I get a new error message:
Can't locate loadable object for module XML::LibXML in @INC (@INC contains:
/usr/local/lib/perl5/site_perl/5.12.2/x86_64-linux-multi
/usr/local/lib/perl5/site_
I'm just talking out of my ass here but, it sounds like either you need to
install the sax module or your search path is messed up. The former should
be easy enough to check, for the later try:
perldoc -v
And
perldoc -f perlrun
On Nov 1, 2010 5:04 PM, "galeb abu-ali" wrote:
> i downloaded perl-XM
i downloaded perl-XML-Parser using yum and am getting an error message:
Can't locate XML/LibXML/SAX.pm in @INC (@INC contains:
/usr/local/lib/perl5/site_perl/5.12.2/x86_64-linux-multi
/usr/local/lib/perl5/site_perl/5.12.2
/usr/local/lib/perl5/5.12.2/x86_64-linux-multi /usr/local/lib/perl5/5.12.2
.
I'm running Red Hat Enterprise Linux 5.5, and don't know how to go through
the package manager to get this done. Also, is it possible that I didn't
place the expat library in the right place?
thanks
On Mon, Nov 1, 2010 at 2:38 PM, shawn wilson wrote:
> What distribution are you running? It migh
I do not have ParserDetails.ini in the SAX folder. I just tried installing
XML::Parser using CPAN and got a lot of error messages that end with:
make[1]: *** [Expat.o] Error 1
make[1]: Leaving directory `/root/.cpan/build/XML-Parser-
2.40-oAWQkX/Expat'
make: *** [subdirs] Error 2
CHORNY/XML-Pars
On 11/1/10 Mon Nov 1, 2010 10:01 AM, "galeb abu-ali"
scribbled:
> Hi,
>
> I installed BioPerl on RHEL 5.5 (successfully I hope) and am trying to
> execute a xml parser script that uses XML::Simple. I keep getting the
> following error message:
>
> could not find ParserDetails.ini in /usr/loca
Hi Chaitanya,
I'm de-CCing the PHP lists because I may not have permissions to post to them.
On Tuesday 26 October 2010 07:28:56 Chaitanya Yanamadala wrote:
> Hai
>
> I have developed an application in the perl and it is working fine. Now the
> problem is that everytime i need to run the script
On Sun, Aug 8, 2010 at 15:44, Vimal wrote:
> Hi Guys,
>
> I am trying to learn modules in Perl.. I was checking the documentation of
> Net::Twitter::Role::OAuth which has text:
>
>
> In a web application mode, you need to save the oauth_token and
> oauth_token_secret somewhere when you re
Vimal wrote:
Hi Guys,
Hello,
I am trying to learn modules in Perl.. I was checking the documentation
of Net::Twitter::Role::OAuth which has text:
In a web application mode, you need to save the oauth_token and
oauth_token_secret somewhere when you redirect the user to the OAuth
auth
On Tue, Jun 22, 2010 at 00:52, Chaitanya Yanamadala
wrote:
> i have done it this way,
> but i need some other way using a module,
snip
>> > i have an xml like this
>> >
>> > hello
>> >
>> >
>> > now i need to add a new attribute to node a.
snip
Personally, I like [XML::Twig][1]. It is a stream
i have done it this way,
but i need some other way using a module,
$outputfile=shift;
open(MYINPUT, "$outputfile"); # open for input
my(@lines1) = ; # read file into list
my $value=5;
foreach $line_new (@lines1) # loop thru list
{
if ($line_new =~ /a/)
{
my ($value) = $line_new =~
Hi
There is an example available in the following location
http://squirrelmail.svn.sourceforge.net/viewvc/squirrelmail/trunk/squirrelmail/config/conf.pl?view=markup
its a recursive menu driven script. HTH.
--
Regards,
Mohan.
On 18/05/10 13:40, Steve Bertrand wrote:
On 2010.05.17 21:44, Cheta
On 2010.05.17 21:44, Chetan wrote:
> Dear Perl Experts,
>
> I need a big favor & help for me to learn perl programming,
> I need to write menu to display (say Alpha, Beta, Gema) & store in
> variable var1, based on which option is selected, I need to display
> values in the next menu (if Alpha is
Hi Raheel,
On Friday 30 Apr 2010 14:17:03 Raheel Hassan wrote:
> Hi Shlomi,
>
> I am very thankful to you for helping me, yes i resolved the problem
> actually perl-devel was missing. So when i executed 'urpmi perl-devel' i
> got EXTERN.h. Now i am able to install all the required packages from
>
Hi Raheel,
Sorry for the late response.
On Friday 23 Apr 2010 19:04:20 Raheel Hassan wrote:
> Hi Shlomi and Owen,
>
> On Thu, Apr 22, 2010 at 5:37 PM, Shlomi Fish wrote:
> >2.6.27.24-2 is the kernel version (which is kinda old - I'm using
>
> 2.6.33.2). I
>
> >need the Mandriva version - plea
On 23 April 2010 17:04, Raheel Hassan wrote:
> Hi Shlomi and Owen,
> On Thu, Apr 22, 2010 at 5:37 PM, Shlomi Fish wrote:
>
>>2.6.27.24-2 is the kernel version (which is kinda old - I'm using
> 2.6.33.2). I
>>need the Mandriva version - please do:
>>[shell]
>>shlomi:~$ cat /etc/mandriva-release
>>
Hi Shlomi and Owen,
On Thu, Apr 22, 2010 at 5:37 PM, Shlomi Fish wrote:
>2.6.27.24-2 is the kernel version (which is kinda old - I'm using
2.6.33.2). I
>need the Mandriva version - please do:
>[shell]
>shlomi:~$ cat /etc/mandriva-release
>Mandriva Linux release 2010.1 (Cooker) for i586
>shlomi:~$
Hi Raheel,
On Thursday 22 Apr 2010 17:19:58 Raheel Hassan wrote:
> Thanks for your reply, I am using 2.6.27.24-2xossmp version of Mandriva.
2.6.27.24-2 is the kernel version (which is kinda old - I'm using 2.6.33.2). I
need the Mandriva version - please do:
[shell]
shlomi:~$ cat /etc/mandriva-
Thanks for your reply, I am using 2.6.27.24-2xossmp version of Mandriva. I
need to install some modules ExtUtils, GD, Term::ReadKey, Term::ScreenColor,
IO etc. I need these modules because the software that i developed uses
these modules and i want to run my software on this version of Mandriva. I
*I have only these files.
[r...@localhost /]# find -name 'CORE'*
./usr/lib/perl5/5.10.1/i386-linux-thread-multi/CORE
./usr/lib/perl5/5.10.0/i386-linux-thread-multi/CORE
[r...@localhost /]# cd /usr/lib/perl5/5.10.1/i386-linux-thread-multi/CORE
[r...@localhost CORE]# ls
config.h git_version.h lib
Hi Raheel!
On Thursday 22 Apr 2010 14:21:20 Raheel Hassan wrote:
> -- Forwarded message --
> From: Raheel Hassan
> Date: Wed, Apr 21, 2010 at 3:55 PM
> Subject: ExtUtils-Makemaker comilation problems.
> To: beginners@perl.org
>
>
> Hi,
>
> When i am trying to install ExtUtils i
>
> When i am trying to install ExtUtils i have these errors are coming. I
> am
> trying ti install it in Mandriva. Can any one can give be the clue.
> Thanks
> in advance.
>
> /usr/lib/perl5/5.10.1/**ExtUtils/typemap Test.xs > Test.xsc && mv
> Test.xsc
> Test.c
> # make[1]: *** No rule to mak
Hi Arjun,
>Can someone suggest me some good e-books or tutorials to start
>learning PERL?
Welcome to the Perl world. :-) By the way, the language is named Perl, and not
PERL.
For online tutorials and links to books on the Perl language, you can check:
http://perl-begin.org/
Regards,
Alan Hagg
Hi Arjun,
On Saturday 03 Apr 2010 05:42:31 Arjun wrote:
> Hi, I'm new to this group. I would like to learn the PERL language.
> Can someone suggest me some good e-books or tutorials to start
> learning PERL?
You can find links to recommended E-books, tutorials and a lot of other
material on the
http://learn.perl.org/books/beginning-perl/
This book should be a decent one to start with.
On Jan 25, 7:22 am, sisyph...@optusnet.com.au (Sisyphus) wrote:
> - Original Message -
> From: "electr0n wizard"
> To:
> Sent: Saturday, January 23, 2010 11:45 AM
> Subject: Need help with Net::SSH::Perl
>
> >I am new to Perl and am running ActiveStatePerl on a Windows 7
> > machine. I a
- Original Message -
From: "electr0n wizard"
To:
Sent: Saturday, January 23, 2010 11:45 AM
Subject: Need help with Net::SSH::Perl
I am new to Perl and am running ActiveStatePerl on a Windows 7
machine. I am trying to get SSH to work but get the error:
The getpwuid function is uni
Hi electr0n wizard!
On Saturday 23 Jan 2010 02:45:46 electr0n wizard wrote:
> I am new to Perl and am running ActiveStatePerl on a Windows 7
> machine. I am trying to get SSH to work but get the error:
>
> The getpwuid function is unimplemented at C:/Perl/site/lib/Net/SSH/
> Perl.pm line 110.
M
ot test that, but I guess you'll get the meaning. :-)
HTH
-- Eric
"Dennis G. Wicks" wrote on 07/04/2009 03:10:45 AM:
From:
"Dennis G. Wicks"
To:
beginners@perl.org
Date:
07/04/2009 03:11 AM
Subject:
Re: Need help w/ substitute ie. s/x/y/
Gunnar Hjal
:-)
HTH
-- Eric
"Dennis G. Wicks" wrote on 07/04/2009 03:10:45 AM:
> From:
>
> "Dennis G. Wicks"
>
> To:
>
> beginners@perl.org
>
> Date:
>
> 07/04/2009 03:11 AM
>
> Subject:
>
> Re: Need help w/ substitute ie. s/x/
Gunnar Hjalmarsson wrote the following on 07/03/2009 07:34 PM:
Dennis G. Wicks wrote:
Greetings;
I have a file of 100+ records like the following. I hope the line wrap
doesn't mess things up too much.
http://www.ten.com/"; target="_blank">|border="0">| ,http://www.ten.com/"; target="_blank">
Dennis G. Wicks wrote:
Greetings;
I have a file of 100+ records like the following. I hope the line wrap
doesn't mess things up too much.
http://www.ten.com/"; target="_blank">|border="0">| ,http://www.ten.com/"; target="_blank">size="1">|Link Text Message|
<-($1)
Jeff Chimene wrote the following on 06/26/2009 10:14 AM:
I don't see glaringly wrong with it off the top of my head.
You might try some things:
* Split the 'content_id' value into its own parameter
* Let Mail::Sender supply the "boundary" parameter
* Employ the 'debug' parameter in the
In my limited experience, I have had no issues with
Email::MIME::CreateHTML. It also creates an object that Email::Sender
can deliver. Do try it.
REgards
Gurunandan
On Fri, 2009-06-26 at 17:36 +0200, Jenda Krynicky wrote:
> Yes, the problem is very simple. Each mail client handles this
> dif
2009/6/26 Jenda Krynicky :
This is what
> worked for me in Pegasus Mail:
It's good to know there are still a few pmail users out there :)
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/
Date sent: Thu, 25 Jun 2009 23:27:24 -0500
From: Dennis Wicks
To: Perl Beginners
Subject:Need help with Mail::Sender
> Greetings;
>
> Following the docs I have it working, somewhat, but it is
> not handling html w/inline images
From: Dennis Wicks
> Following the docs I have it working, somewhat, but it is
> not handling html w/inline images correctly.
>
> Instead of getting an html message with inline image it is
> sending a blank email with both the html and the jpg image
> as attachments.
>
> Here is my program. Does
From: "Dennis G. Wicks"
> Jeff Pang wrote the following on 06/21/2009 09:51 PM:
> > 2009/6/22 Dennis G. Wicks :
> >> Greetings;
> >>
> >> I can't seem to find the problem with the Email::Send portion of this
> >> program. It may be that I am getting an error from the smtp server but I
> >> haven't
Jeff Pang wrote the following on 06/21/2009 09:51 PM:
2009/6/22 Dennis G. Wicks :
Greetings;
I can't seem to find the problem with the Email::Send portion of this
program. It may be that I am getting an error from the smtp server but I
haven't been able to adapt an error routine that works wi
2009/6/22 Dennis G. Wicks :
> Greetings;
>
> I can't seem to find the problem with the Email::Send portion of this
> program. It may be that I am getting an error from the smtp server but I
> haven't been able to adapt an error routine that works with Mail::Sender to
> work with Email::Send.
>
I
2009/6/16 Irfan Sayed :
> Hi All,
Hello,
> I have perl script like this :
>
> use strict;
> use warnings;
> use Cwd;
> my $chver;
> my $fina;
> &chversion();
&chversion() should be kept as simply chversion();
> sub chversion {
> print STDERR "Current directory is " . cwd() . "\n";
> print
From: Telemachus
> On Thu Jan 15 2009 @ 1:12, Kammen van, Marco, Springer SBM NL wrote:
>> Looking at all his posts below with the exact same format just
different questions...
>>
>> Is this guy for real... or is this a spam bot??
> A real guy with a lot of homework?
Or just an unrealistic set o
1 - 100 of 475 matches
Mail list logo