lilalo
diff taillast.pl @ 96:93281d002ee4
install-lm и install-pm объединён в install-lm
author | devi |
---|---|
date | Sat Apr 22 20:32:48 2006 +0300 (2006-04-22) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/taillast.pl Sat Apr 22 20:32:48 2006 +0300 1.3 @@ -0,0 +1,8 @@ 1.4 +#!/usr/bin/perl 1.5 + 1.6 +for $d (@ARGV) { 1.7 + push @d, glob("$d/*"); 1.8 +} 1.9 +@{f} = sort { (stat(${a}))[9] <=> (stat(${b}))[9] } (@d); 1.10 +print "tail -f ${f[$#f]}\n"; 1.11 +__END__