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

@ARGV : スクリプトに与えられたコマンドライン引数

@ARGV : スクリプトに与えられたコマンドライン引数。

$#ARGV は通常 引数の数 - 1 になっていることに注意。 なぜなら、$ARGV[0] は最初の引数であって、 コマンドの名前ではないからだ。 コマンド名を知るには $0 を見よ。

See section $0 : 実行している perl スクリプトのファイル名.


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