免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2923 | 回复: 7
打印 上一主题 下一主题

请教如何将几个文件按行数合并 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-05-10 17:19 |只看该作者 |倒序浏览
file1:
line1 of file1
line2 of file1

file2:
line1 of file2
line2 of file2

file3:
line1 of file3
line2 of file3

合并成一个文件:
line1 of file1
line1 of file2
line1 of file3
line2 of file1
line2 of file2
line2 of file3
line3 of file1
line3 of file2
line3 of file3

另外就是3个文件都是上百m的,请问如何实现上面的操作?谢谢

[ 本帖最后由 saicom 于 2007-5-10 17:26 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2007-05-10 17:50 |只看该作者
不看书的吗?最基本的呀

  1. #! /usr/perl/bin

  2. use warnings;
  3. use strict;

  4. open (NF,">","new.txt");
  5. #@ARGV = qw/1.txt 2.txt/;
  6. while(<>){
  7.         print NF $_;
  8. }
  9. close(NF);
复制代码

论坛徽章:
0
3 [报告]
发表于 2007-05-10 18:21 |只看该作者
楼上的,首先很感谢你回答我的帖子
不过希望你能看清楚我的帖子再回贴
你写的程序用cat一个命令就完成了

论坛徽章:
0
4 [报告]
发表于 2007-05-11 13:08 |只看该作者
sort file1 file2 file3??

论坛徽章:
0
5 [报告]
发表于 2007-05-11 18:12 |只看该作者
伪代码

  1. open f1
  2. open f2
  3. open f3
  4. open output
  5. while
  6. {
  7. s=read(f1)
  8. write(s,output)
  9. s=read(f2)
  10. write(s,output)
  11. s=read(f3)
  12. write(s,output)
  13. }
复制代码

论坛徽章:
0
6 [报告]
发表于 2007-05-12 17:02 |只看该作者
楼上的意思大概了解
不过你的代码不能直接用
自己改了没成功
能给个实验成功的代码吗?

论坛徽章:
0
7 [报告]
发表于 2007-05-13 20:28 |只看该作者
可以试一下
paste file1 file2 file3

论坛徽章:
0
8 [报告]
发表于 2007-05-13 23:57 |只看该作者
楼上的是正解。。。
如果在在win32下面,也可以自己写一个简单的paste


  1. #perl

  2. my @file_hanldes;

  3. print STDERR "composing @ARGV\n into stdout";

  4. map {
  5.     open $file_hanldes[$_],"<",$ARGV[$_] or die "can't open $ARGV[$_]\n";
  6. } 0..@ARGV; #把文件句柄放到数组中去

  7. @sweeper = (@file_hanldes);
  8. while(@file_hanldes > 0){ #只要还有文件就继续打印
  9.     map { my $line =  <$_>; print $line; } @file_hanldes;
  10.     @file_hanldes = grep {not eof $_;} @file_hanldes; #文件在退出时由perl关闭
  11. }

复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP