http://www.uopmu.ees.osakafu-u.ac.jp/~yabu/soft/perl.html#8

ファイルハンドルの引数渡し

&sub3(FP);

sub sub3{
my($FP) = @_;
$_ = <FP>;
print "file : $_\n";
}