lilalo
diff taillast.pl @ 112:da65f1cbaf3a
l3prompt added
author | igor |
---|---|
date | Sat Mar 08 22:36:44 2008 +0200 (2008-03-08) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/taillast.pl Sat Mar 08 22:36:44 2008 +0200 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__