Loose-Info.com
Last Update 2008/05/18
TOP
-
Perl
- 特殊変数 - @ARGV
コマンドラインで入力された際の引数が格納されます。
(例)
foreach $data (@ARGV) { print "$data\n"; }
コマンドラインの内容
test_1.pl a b c
実行結果
a b c
©
loose-info.com All Rights Reserved.