/usr/share/doc/libui-dialog-perl/examples/ui-dialog.pl is in libui-dialog-perl 1.08-1.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 12 13 | #!/usr/bin/perl
use strict;
use warnings;
use diagnostics;
use UI::Dialog;
my $d = new UI::Dialog ( title => "UI::Dialog Demo",
debug => 0, height => 20, width => 65 );
$d->msgbox( text => [ "This message box is provided by one of the following: zenity, Xdialog or gdialog. ",
"(Or if from a console: dialog, whiptail, ascii)" ] );
|