1. ホーム
  2. スクリプト・コラム
  3. パール

Perl の読み書きファイルの簡単な例

2022-01-03 03:48:21

! /usr/bin/perl -w
 use strict;
 
 #print "please input a string\n";
 #my $line = <STDIN>;
 #print $line;
 
 #wirte a file
 open(FH, ">aa.txt") or die $! ; 
 print FH "hello\n";#write to the file
 print FH "OK\n";
 
 close(FH);
 
 #open a file
 open(FH, "aa.txt") or die $! ;
 my @f = <FH>;#Read out the contents of the file
 print @f;
 
 close(FH);