File: copydb

package info (click to toggle)
libpalm-perl 1%3A1.400-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 396 kB
  • sloc: perl: 2,266; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 283 bytes parent folder | download | duplicates (9)
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");