Go to the first, previous, next, last section, table of contents.

last

`last LABEL'
`last'
last コマンドは C での break(ループ中で使用される) と似ている。現在実行中のループから直ちに抜け出す。 LABEL を省略すると、最も奥のループを構成する囲みの最後にとぶ。 continue がもしあっても、実行されない。
line: while (<STDIN>) {
     last line if /^$/;  # ヘッダーが終わったら抜ける
     ...
}

Go to the first, previous, next, last section, table of contents.