/usr/share/doc/libooolib-perl/examples/writer-example2 is in libooolib-perl 0.1.9-1.1.
This file is owned by root:root, with mode 0o755.
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 17 18 19 20 21 | #!/usr/bin/perl -I.
# writer-example2 - Creates a sxw Writer document
use ooolib;
# Set variables
$doc = new ooolib("sxw");
$doc->oooSet("builddir", ".");
$doc->oooSet("title", "Another Simple Writer Document");
$doc->oooSet("subject", "Writer Examples");
$doc->oooSet("comments", "Special characters are handled differently");
$doc->oooSet("author", "ooolib example");
$doc->oooData("default", "This is some simple text");
$doc->oooData("default"); # A blank line
$doc->oooData("default", "Special Characters: ");
$doc->oooData("default", "\t!\"#\$%\&'()`{}[];:+*\\_,.<>?|");
my($filename) = $doc->oooGenerate("writer-example2.sxw");
exit;
|