- 论坛徽章:
- 0
|
感谢各位高手:) 麻烦大家帮忙看看,谢谢~~
#!/usr/bin/perl -w
#LastUpdated:2006-06-13
#这是一个日志分割程序,实现功能如下示例:
# rotate the named log file and archive $howmany old versions. eg,
# rotate("foo",3);
# will move foo -> foo.0 -> foo.1 -> foo.2 -> foo.3
# and remove old foo.3, then create empty foo.
#程序执行的格式: ./logrotate.pl -r 3 logfile 其中,3为保留日志的个数,在后面也做for循环的范围变量;
#1. @ARGV 这个系统变量,我理解的是@ARGV 存储了 程序后面加载的所有参数,也就是 (-r 3 logfile);
#我分别在Line.21 ,Line.56 行输出@ARGV,但@ARGV只有一个 logfile名,那么 (-r 3 )这些值都到那里去了呢?
#那么在Line.53 行,语句:"rotate ($file,$opt{'r'});" 怎么能确定logfile名呢?如果只能返回logfile,那么如下语句:my($file,$howmany) = @_;如何给$howmany符值为3的呢?
#2.函数scalar,是转换标量??不理解他的具体作用.
#3. $$ 系统变量是得到当前程序的PID?? sub rotate ($$) 在这里的用途是什么呢?
代码如下: (代码被删减过,有两个sub没有体现,但不影响阅读.)
use strict;
use constant USAGE => "usage:logrotate [-z] [-p PID] [-s SIG] -r N file...\n";
use IO::File;
use Getopt::Std;
my %opt = ();
getopts('zp:s:r:',\%opt);
###print ("argv1: @ARGV\n";
scalar(@ARGV) or die USAGE; # are there files specified?
die USAGE unless $opt{'r'};
sub rotate ($$) {
my($file,$howmany) = @_;
print ("$howmany";
my($cur);
return if ($howmany < 0);
unlink ("$file.$howmany","$file.$howmany.gz"; # remove topmost one.
for ($cur = $howmany; $cur > 0; $cur--) {
my $prev = $cur - 1;
rename("$file.$prev","$file.$cur" if (-f "$file.$prev";
rename("$file.$prev.gz","$file.$cur.gz" if (-f "$file.$prev.gz";
}
rename("$file","$file.0"; # move original one
# create the new one!
my $fh = new IO::File $file, O_WRONLY|O_CREAT, 0644;
$fh->close();
}
# MAIN
# first rotate the files
foreach my $file (@ARGV) {
###print ("argv2: @ARGV\n"
rotate ($file,$opt{'r'});
}
exit(0);
[[i] 本帖最后由 joyaid 于 2006-6-14 09:55 编辑 [/i]] |
|