The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/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");