
The signatures feature has been "experimental" since Perl 5.20 (May 2014), but expected to stay. After 8 years I'm ready to take the risk :) Have added Perl v5.28 (June 2018) as the minimum requirement, even though the current revbank should work with 5.20, to see if this bothers any users. Perl v5.28 is in Debian "buster", which is now oldstable.
13 lines
392 B
Perl
13 lines
392 B
Perl
#!perl
|
|
|
|
sub command :Tab(tail) ($self, $cart, $command, @) = @_;
|
|
return NEXT if $command ne 'tail';
|
|
|
|
my $n = (`tput lines 2>/dev/null` || 13) - 3;
|
|
my $c = (`tput cols 2>/dev/null` || 80) + 0;
|
|
|
|
# ew :)
|
|
system "perl -lane's/CHECKOUT\\s+\\S+\\s+// or next; s/ #// or next; s/_/ /; print' .revbank.log | tail -n$n | perl -ple'\$_ = substr \$_, 0, $c'";
|
|
|
|
return ACCEPT;
|
|
}
|