lilalo

view taillast.pl @ 62:c4bea959dbb1

Beautyfication of l3-agent code. Many lines were erased. Need to be tested
author devi
date Thu Jan 26 00:00:53 2006 +0200 (2006-01-26)
parents
children
line source
1 #!/usr/bin/perl
3 for $d (@ARGV) {
4 push @d, glob("$d/*");
5 }
6 @{f} = sort { (stat(${a}))[9] <=> (stat(${b}))[9] } (@d);
7 print "tail -f ${f[$#f]}\n";
8 __END__