Re: sub alias name

2008-08-27 Thread Raja Vadlamudi
Or you might just want to use typeglob for only sub-routine. *real_long_fund = \& really_long_function_name_i_do_not_like_to_type; On 8/27/08 3:02 PM, "John W. Krahn" <[EMAIL PROTECTED]> wrote: > Ryan wrote: >> given: >> >> sub really_long_function_name_i_do_not_like_to_type {return 'data';} >

Re: Issue with my subroutine/library script.

2008-09-03 Thread Raja Vadlamudi
On 9/3/08 4:01 PM, "Raul Ruiz Jr." <[EMAIL PROTECTED]> wrote: > I created a card shuffling program and it works > fine. However, for my project I am to place the shuffling part of my > code in a separate script as a subroutine. > > I am to remove the code > that does the shuffling and include

Re: perl if/then

2008-09-03 Thread Raja Vadlamudi
$? Is a child error status and it works in perl too. Try to print it out and see what it says. On 9/3/08 3:43 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I have a script in which I distribute directories to host. I use > either rdist or scp based on their OS. For example older sun mac

Re: looping through multiple arrays

2008-09-04 Thread Raja Vadlamudi
On Thu, Sep 4, 2008 at 12:36 PM, Raja Vadlamudi <[EMAIL PROTECTED]> wrote: > > > On Thu, Sep 4, 2008 at 11:22 AM, Bobby <[EMAIL PROTECTED]> wrote: > >> Hi, >> >> I have a large pipe delimited text file that i want to loop through and >> sort out a

Re: Delete file if it contains x y or z

2008-09-05 Thread Raja Vadlamudi
On Fri, Sep 5, 2008 at 2:09 PM, brian54321uk <[EMAIL PROTECTED]>wrote: > HI again > I would like to test a folder full of files, and if a file contains > abc123blue or xyz357green then that file is to be deleted. > What would be the best way of achieving this please? > > If however, it would be si

Re: local var with no assignment

2008-09-10 Thread Raja Vadlamudi
On Wed, Sep 10, 2008 at 10:19 AM, oldyork90 <[EMAIL PROTECTED]> wrote: > True or false. (Trying to figure out why this would be done with no > assignment). In the following construct, the current value of $/ is > protected by localizing it to the scope of the block. In this block, > the current

Re: Fetching "n" number of records at a time in Perl DBI !

2008-09-11 Thread Raja Vadlamudi
On Thu, Sep 11, 2008 at 11:12 PM, Amit Saxena <[EMAIL PROTECTED]>wrote: > On Fri, Sep 12, 2008 at 12:01 AM, Dr.Ruud > <[EMAIL PROTECTED] <[EMAIL PROTECTED]>< > [EMAIL PROTECTED] <[EMAIL PROTECTED]>> > > wrote: > > > "Amit Saxena" schreef: > > > Dr.Ruud: > > >> jm: > > > > >>> there is a LIMIT opti

Re: certification for perl

2008-10-07 Thread Raja Vadlamudi
On Mon, Oct 6, 2008 at 8:32 AM, Rob Coops <[EMAIL PROTECTED]> wrote: > On Mon, Oct 6, 2008 at 2:16 PM, Praveena Vittal <[EMAIL PROTECTED] > >wrote: > > > Hi All, > > > > I like to do some certification in perl,but i could not get any > information > > about the available certifications in perl . >

Re: Spreadsheet::WriteExcel problem with large file

2007-07-16 Thread Raja Vadlamudi
Use Spreadsheet::Big module if the file size happens to be larger than 7 MB. The latest Spreadsheet module will have this Big module integrated, but if you are using older version, then you need to use this Big module. On 7/16/07 8:46 AM, "Rob Dixon" <[EMAIL PROTECTED]> wrote: > a_arya2000 wrote