文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>使用Perl来进行IP排序

使用Perl来进行IP排序

时间:2008-05-09  来源:lvDbing

 

[[email protected] perl]#cat ip.txt
202.168.1.2
192.168.5.1
192.172.2.2
202.172.1.3
192.168.3.5
[[email protected] perl]#perl 1.pl
192.168.3.5
192.168.5.1
192.172.2.2
202.168.1.2
202.172.1.3
[[email protected] perl]#cat 1.pl

#!/usr/bin/perl -w

open (FILE,"<","ip.txt") or die "Can't open the file. $!";
@line = <FILE>;
sub myfunction()
{
        return ($a cmp $b);
}
print sort myfunction @line;

相关阅读 更多 +
排行榜 更多 +
飞艇大战

飞艇大战

飞行射击 下载
三维空间战斗机

三维空间战斗机

飞行射击 下载
战斗机教练

战斗机教练

飞行射击 下载