log
graph
tags
branches
changeset
browse
file
latest
diff
annotate
file log
raw
lilalo
annotate taillast.pl @ 118:73fb48eb8110
find changesets by author, revision, files, or words in the commit message
typo fixed
author
igor
date
Mon Mar 10 16:35:37 2008 +0200 (2008-03-10)
parents
children
rev
line source
devi@0
1
#!/usr/bin/perl
devi@0
2
devi@0
3
for $d (@ARGV) {
devi@0
4
push @d, glob("$d/*");
devi@0
5
}
devi@0
6
@{f} = sort { (stat(${a}))[9] <=> (stat(${b}))[9] } (@d);
devi@0
7
print "tail -f ${f[$#f]}\n";
devi@0
8
__END__