perldoc

まずは、Perlのドキュメントを調べる方法を調べます(ややこしい)。調べ方がわからないと、どうにもならないですよね。もちろんウェブで検索という手もありますけど……。
Perl のドキュメントを調べるには、コマンドプロンプトperldocというコマンドを使えばいいみたいです。perldoc の後ろにスペースと調べたい言葉を入力して実行すれば、ドキュメントが表示されるそうです。
まずは、「perl」を調べてみました。

C:\Documents and Settings\palmo>perldoc perl

すると、以下のような文章が表示されました。

NAME
    perl - Practical Extraction and Report Language

SYNOPSIS
    perl [ -sTtuUWX ] [ -hv ] [ -V[:*configvar*] ]
    [ -cw ] [ -d[t][:*debugger*] ] [ -D[*number/list*] ]
    [ -pna ] [ -F*pattern* ] [ -l[*octal*] ] [ -0[*octal/hexadecimal*] ]
    [ -I*dir* ] [ -m[-]*module* ] [ -M[-]*'module...'* ] [ -f ]
    [ -C [*number/list*] ] [ -P ] [ -S ] [ -x[*dir*] ] [ -i[*extension*] ]
    [ -e *'command'* ] [ -- ] [ *programfile* ] [ *argument* ]...

    If you're new to Perl, you should start with perlintro, which is a
    general intro for beginners and provides some background to help you
    navigate the rest of Perl's extensive documentation.

(中略)

    The Perl motto is "There's more than one way to do it." Divining how
    many more is left as an exercise to the reader.

    The three principal virtues of a programmer are Laziness, Impatience,
    and Hubris. See the Camel Book for why.

これによると、初心者の人は perlintro を見ればいいみたいですね。Spaceで先送りしていくと、英語の文章がたくさんでてきます。大変なので斜め読み……(^-^;
「There's more than one way to do it.」(それをやるには複数の方法がある)というのは僕も聞いたことがあります。略して「TMTOWTDI」はPerlのモットーとの事。
その次の文章は、「Laziness(怠惰), Impatience(短気) と Hubris(傲慢)がプログラマの三大美徳である」と書いてあります。これも有名ですね。Perlを勉強するからには、僕もこの三大美徳を肝に銘じなくては。
今度は、「perldoc perlinto」を実行してみると、Perlのオーバービュー(概要)を読むことができました。もちろん英語ですけど。(-_-;