2008-06-15から1日間の記事一覧

ファイルIO

超基本だけど、たまに忘れるので。 use IO::File; my $fh = IO::File->new('./foo.txt','r') or die "cannot create file handle: $!"; my $line = $fh->getline; $fh->close; http://digit.que.ne.jp/work/wiki.cgi?Perl%E3%83%A1%E3%83%A2%2FIO%3A%3AFile%…