工作要求,要写一个读取配置文件的脚本,从来没接触过,研究了一天才整出来,特此做笔记
代码如下:
#!/usr/bin/perl -w
##===============================
##==== 打开配置文件 ======
open(CONF,"<","./file.conf")||die"cannot open the file: $!\n";
my $comm="asdsdssdfefe201010dfs&payUse=2sdf7021sddfs0170218";
##my $comm=$_[0];
m...
看了很多资料和帖子对于next和last的说明都是很模糊;今天通过例子很随意就看出二者的区别。
#!usr/local/bin/perl
for( $i=0;$i<4;$i++)
{
$t+=$i;
if($i==2)
{
last;
}
}
print "$t";这个打印出来的结果是3,
而#!usr/local/bin/perl
for( $i=0;$i<4;$i++)
...