• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

使用Perl分割文件

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

特性


使用换行作为分界
忽略注释行#
分割存入新指定的文件中

待分割的文件test.lst


wwdg/prescaler

syscfg/test1
syscfg/test2

uart/uart7/uart7_dma1
uart/uart7/uart7_dma2

分割后的文件结构


Perl代码genlst.pl


#!/usr/bin/perl
use warnings;

###########################################
#cut up file
#
#cut_flie.pl test.lst
###########################################

my $find_ip =0;
my $find_begin = 0;
my $line_index = 0;
my $lstname   = "error";
my $past_line = "error";

my $infile= $ARGV[0];
open(INFILE, " $infile") || die ("Could not open file $infile ! \n");

if(-z $infile){
    print "\nFile is blank!\n";
    exit;
}

#覆盖lst中的文件,需手动删除已经存在的文件
my $dir = "lst";                        #创建存放目录
if(-e $dir){
}
else{
    mkdir $dir;
}

#删除lst中的文件
#my $dir = "lst";                        #创建存放目录
#if(-e $dir){
#    unlink glob "$dir/* $dir/.*"
#}
#else{
#    mkdir $dir;
#}


# get file lines amount 
my @fileline = <INFILE>;                #得到文件的行数
my $line_num = @fileline;
close INFILE;

unlink "temp.lst";
open(TEMPA, ">> temp.lst") || die ("Could not open file temp.lst! \n");

open(INFILE, " $infile") || die ("Could not open file $infile ! \n");
while ($line = <INFILE>){
    $line_index ++;
    chomp($line);
    if($line =~ /^#/) { #find "#" at the beginning, don't care
        next;
    }

    if($line =~ /^(\w+)[\s\$\W]*/){     #匹配捕获字符串,非空行
        if($past_line =~ /^$/){         #上一行为空最为分界
            print TEMPA  "\n\n";

            my $full_lstname = $lstname."_lst";  
            print "$dir\/$full_lstname\n";
            
            rename "temp.lst",  "$full_lstname";
            close TEMPA;                #完成一个文件的分割

            system"mv $full_lstname lst";

            print "\n\n";

            unlink "temp.lst";
            open(TEMPA, ">> temp.lst") || die ("Could not open file temp.lst! \n");  #继续进行下一个文件处理
        }

        $line =~ /^(\w+)[\s\$\W]*/ ;    #正则处理,得到文件名
        print TEMPA  "$line \n";
        print "$line \n";
        $lstname = $1;
    }

    if($line_index == $line_num){       #单独处理最后行情况
        print TEMPA  "\n\n";
        #print "\n\n";

        my $full_lstname = $lstname."_lst";
        print "$dir\/$full_lstname\n";
        
        rename "temp.lst",  "$full_lstname";
        close TEMPA;

        system"cp $full_lstname lst";
        unlink "$full_lstname";
    }

    if($line =~ /^\s*$/){
        if($line_index == 1){
            next;
        }
        if($past_line =~ /^$/){
            next;
        }
    }
    $past_line = $line;                   #保存上一行情况
}
close INFILE;
close TEMPA;
unlink "temp.lst";                        
unlink "lst/error_lst";

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
[Perl]多线程并发编程发布时间:2022-07-22
下一篇:
TheABCofPerl:MyFirstPerlProgram发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap