/usr/share/barnowl/lib/BarnOwl/Help.pm is in barnowl 1.9-4build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | use warnings;
use strict;
package BarnOwl::Help;
use BarnOwl::Parse qw(tokenize);
use BarnOwl::Editwin qw(text_before_point text_after_point);
sub show_help {
my $cmd = shift;
my $words = tokenize(text_before_point() . text_after_point());
BarnOwl::help($words->[0]) if @$words;
}
1;
|