Debugging AUTOLOAD functions

2005-08-12 Thread lohit
Hello everyone, I am trying to debug perl code. A function call is autoloaded and when i step into it, it takes me to perl AUTOLOAD call, returning from there gets me back to main file executing the funtion. Is there any special settings/procedure i should follow? thanks in advance, lohit

Re: passing arguments with white spaces

2005-07-04 Thread lohit
2 this is arg3 this is arg4 On 7/4/05, John Doe <[EMAIL PROTECTED]> wrote: > > lohit am Montag, 4. Juli 2005 09.17: > > Hi there, > > how do i pass arguments with spaces in it. > > exaple if i pass fun("abc is not bcd"); > > indicates that you pass

passing arguments with white spaces

2005-07-04 Thread lohit
Hi there, how do i pass arguments with spaces in it. exaple if i pass fun("abc is not bcd"); @ARGV would store this as 4 words. how do i retrieve it as $var = "abc is not bcd"; thanks!!

Re: parsing command line arguments multiple times

2005-04-29 Thread lohit
On 4/29/05, John Doe <[EMAIL PROTECTED]> wrote: > > Am Freitag, 29. April 2005 10.19 schrieb lohit: > > On 4/29/05, John Doe <[EMAIL PROTECTED]> wrote: > > > Am Freitag, 29. April 2005 09.19 schrieb lohit: > > > > On 4/29/05, lohit <[EMAIL

Re: parsing command line arguments multiple times

2005-04-29 Thread lohit
On 4/29/05, John Doe <[EMAIL PROTECTED]> wrote: > > Am Freitag, 29. April 2005 09.19 schrieb lohit: > > On 4/29/05, lohit <[EMAIL PROTECTED]> wrote: > > > Hi, > > Hi > > > > i have a requirement, as in based on one command line option, the res

Re: parsing command line arguments multiple times

2005-04-29 Thread lohit
On 4/29/05, lohit <[EMAIL PROTECTED]> wrote: > > Hi, > i have a requirement, as in based on one command line option, the rest of > the arguments change for the same script. > eg: script could be called in either of the ways > script1 -option1 -option2 adfas -option3 >

parsing command line arguments multiple times

2005-04-28 Thread lohit
Hi, i have a requirement, as in based on one command line option, the rest of the arguments change for the same script. eg: script could be called in either of the ways script1 -option1 -option2 adfas -option3 script -option1 -option4 my question is 1. how do we get the option1 alone from GetO

Re: functionality of .pl from .pm

2005-04-06 Thread lohit
> alias wonko-summary 'perl -I/tmp/libperl > -MWonko=script -e script' > > Now I can do > > lawrence /home/export/lawrence > wonko-summary client 15173 > Total invoiced: 372.56 Aged 30 days: 144.31 Aged 60 days: 72.55 Aged 90 > days: 33.11 > > Hope this helps... > > -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- > Lawrence Statton - [EMAIL PROTECTED] s/aba/c/g > Computer software consists of only two components: ones and > zeros, in roughly equal proportions. All that is required is to > sort them into the correct order. awesome! thanks, this will help -lohit

functionality of .pl from .pm

2005-04-06 Thread lohit
Hi there, i have a strange requirement where in i have certain functionality to be achieved by calling a perlscript. say script.pl but i also have to seperate these functionalities in a module script.pm how woudl you design a case where in script.pm provides certain functions, yet be able to wor

Net::SSH::Perl error

2005-03-29 Thread lohit
se entires to \etc\services file ssh22/tcp but it is not helping. any windows specific configuration?? thanks, lohit -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: accidently changed stdout | can't print to screen

2005-03-01 Thread lohit
On Tue, 1 Mar 2005 09:17:09 -0800, bright true <[EMAIL PROTECTED]> wrote: > Hello , > > are you trying to print out in a web browser ? ? if so ... then > > add the following line before your print line : > > print "content-type: text/html \n\n"; > > bye > > On Tue, 1 Mar 2005 10:40:53 -0500, E

Re: DBI

2004-06-07 Thread lohit
on windows... set HTTP_Proxy= ppm search DBI install DBI .try help aditi gupta wrote: hi, how to download DBI via PPM? regards, aditi Yahoo! India Matrimony: Find your partner online.

Re: Newbie: Perl reg. expression

2004-05-18 Thread lohit
Durai wrote: Hi, It gives the output: (0.0.0.0) 12.34.56.78:80 204.62.129.132 I need Only IP address. I need like: 204.62.129.132 127.0.0.1 if you want to exclude only 0.0.0.0 , how about print if /(\d+\.\d+\.\d+\.\d)/ and $1 != "0.0.0.0"; Not like 12.34.56.78:80,(0.0.0.0),..etc. Thanks, Durai.