!/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";#向文件写入内容 print FH "OK\n"; close(FH); #open a file open(FH, "aa.txt") or die $!; my @f = <FH>;#将文件内容读出 print @f; close(FH);
标签:
Perl,读写文件
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
内蒙古资源网 Copyright www.nmgbbs.com
暂无“Perl读写文件简单示例”评论...