Re: How can I list down all builtin functions?(Re: Read a text file starting from the bottom)

2007-01-15 Thread John W. Krahn
Bill Jones wrote: > On 1/15/07, Michael Alipio <[EMAIL PROTECTED]> wrote: >> >> Is there a way to list down all builtin functions so that I may know >> what to "perldoc -f"? > > Here is an example (from Apache2Triad on Windows.) This doesn't list "all builtin functions", it lists all environment

Re: Read a text file starting from the bottom

2007-01-15 Thread Rob Dixon
Michael Alipio wrote: I wanted to extract the start time of a particular logfile (located at the beginning of the file, and also the end time which is located at the end of the logfile. Is there any way to do this in perl without using "head" or "tail" commands? To read a file backwards, you

Re: How can I list down all builtin functions?(Re: Read a text file starting from the bottom)

2007-01-15 Thread Bill Jones
On 1/15/07, Michael Alipio <[EMAIL PROTECTED]> wrote: Hi, Is there a way to list down all builtin functions so that I may know what to "perldoc -f"? Thanks. Here is an example (from Apache2Triad on Windows.) #!C:/apache2triad/perl/bin/perl.exe print "Content-type: text/html\n\n"; # # ge

Re: How can I list down all builtin functions?(Re: Read a text file starting from the bottom)

2007-01-15 Thread Ken Foskey
On Sun, 2007-01-14 at 21:54 -0800, Michael Alipio wrote: > Hi, > > Is there a way to list down all builtin functions so that I may know what to > "perldoc -f"? http://freshmeat.net/projects/podbrowser/ It is a gui interface to all the documentation. -- Ken Foskey FOSS developer -- To uns

Re: Read a text file starting from the bottom

2007-01-14 Thread John W. Krahn
Michael Alipio wrote: > Hi, Hello, > I wanted to extract the start time of a particular logfile (located at the > beginning of the file, and also the end time which is located at the end > of the logfile. > > Is there any way to do this in perl without using "head" or "tail" commands? ## UNTES

Re: How can I list down all builtin functions?(Re: Read a text file starting from the bottom)

2007-01-14 Thread John W. Krahn
Michael Alipio wrote: > Hi, Hello, > Is there a way to list down all builtin functions so that I may know what to > "perldoc -f"? perldoc perlfunc Near the top is the list of "Perl Functions by Category" John -- Perl isn't a toolbox, but a small machine shop where you can special-order cert

How can I list down all builtin functions?(Re: Read a text file starting from the bottom)

2007-01-14 Thread Michael Alipio
Hi, Is there a way to list down all builtin functions so that I may know what to "perldoc -f"? Thanks. - Original Message From: Michael Alipio <[EMAIL PROTECTED]> To: beginners@perl.org Sent: Monday, January 15, 2007 1:44:22 PM Subject: Read a text file starting from the bottom Hi,