/usr/share/doc/libpalm-perl/examples/copydb is in libpalm-perl 1:1.012-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 14 15 16 | #!/usr/bin/perl
# Utility to copy the contents of a PDB.
# $Id: copydb,v 1.2 1999/11/18 05:21:01 arensb Exp $
use strict;
use Palm::Raw;
use Palm::Memo;
use Palm::Address;
use Palm::Datebook;
use Palm::Mail;
my $pdb = new Palm::PDB;
$pdb->Load($ARGV[0]);
$pdb->Write("foo.pdb");
|