联发科数字 IC 设计提前批,2020年。
用 perl 脚本读入一个文件,将文件中所有内容变成一行输出到文件 out.txt 中。
1. 知识点
(1)文件以读取方式打开;
(2)文件以写入方式打开;
(3)去除换行符,写入;
(4)文件关闭;
2. 文件以读取方式打开
格式:
3. 文件以写入方式打开
格式:
4. 去除换行并写入文件
5. 关闭文件
全部代码:
代码语言:javascript复制#!/usr/bin/perl
open(file1, "< in.txt") or die "con not open file1";
open(file2, "> out.txt") or die "con not open file2";
while( <file1> ){
chomp;
print file2 $_;
}
close( file1 );
close( file2 );
6. 相关知识点总结