* IO::Allモジュール [#d1722013]

** ファイルを先頭行と最終行を省いてコピーする [#xefe0fcb]
 use IO::All;
 
 my $in = io('in.txt');
 my $out = io('out.txt');
 my $temp = io('?'); #(必要ないが)一時ファイルを介してコピー
 for (my $i=1,my $n=@$in;$i<$n-1;$i++) {
     print $in->[$i],"\n";
     $temp->appendln($in->[$i]);
 }
 print "----\n";
 $temp->seek(0,0);
 while ($_ = $temp->getline) {
     print "$_";
     $out->appendln($_);
 }

in.txt 
 1
 2
 3
 4
out.txt
 2
 3
** マニュアル [#a127dace]
http://perldoc.jp/docs/modules/IO-All-0.31/All.pod


トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS