This file is indexed.

/usr/share/doc/libui-dialog-perl/examples/kde.pl is in libui-dialog-perl 1.09-1.

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
#!/usr/bin/perl
use strict;
use warnings;
use diagnostics;

use UI::Dialog::KDE;

my $d = new UI::Dialog::KDE ( title => "UI::Dialog::KDE Demo",
							  debug => 0, height => 20, width => 65 );

$d->msgbox( text => "This message box is provided by one of the following: kdialog or Xdialog." );