Hi,
Are there any good books on Perl for beginers? Online sources prefered. I'm already reading through the man pages.
Also, I write my Perl programs in pico and run them from the shell prompt. Any better way to do this? I would prefer working on console and not on X. Still, please suggest X utilities also, if any.
Many thanks, Nikhil.
Sometime today, Nikhil Karkera wrote:
Are there any good books on Perl for beginers? Online sources prefered. I'm already reading through the man pages.
See perl.com (.org) for tutorials. Read the regex(7) and perlre manpages.
Also, I write my Perl programs in pico and run them from the shell prompt. Any better way to do this?
Yes - Vim. Use Vim. See the Vim tutorial to get started. There's an excellent Vi tutorial written by Bill Joy somewhere on the Web. Read that first.
Manish
Sometime Today, Nikhil Karkera assembled some asciibets to say:
Are there any good books on Perl for beginers? Online sources prefered. I'm already reading through the man pages.
Man pages are the best. Also, download programs written in perl, and read them. Then, write your own. If you want books, read Learning Perl - Tom and Randy, Programming Perl - Larry, Tom and Randy, Mastering Regular Expressions - Friedl.
Also, I write my Perl programs in pico and run them from the shell prompt. Any better way to do this? I would prefer working on console
vim has a perl syntax colouring mode. You could use that. You shouldn't use pico for anything other than email really. You can execute through the shell itself, just use a different console.
Philip
On Sun, 02 Sep 2001, Philip S Tellis spewed into the ether: <snip>
vim has a perl syntax colouring mode. You could use that. You shouldn't use pico for anything other than email really. You can execute through the shell itself, just use a different console.
With vi, or vim :perl /path/to/perl/script will do that for you. Or there may be another option for this in emacs.
Devdas Bhagat