File: copydb

package info (click to toggle)
libpalm-pdb-perl 1.400-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 256 kB
  • sloc: perl: 1,406; makefile: 7
file content (13 lines) | stat: -rwxr-xr-x 231 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env 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::PDB;
use Palm::Raw;

my $pdb = new Palm::PDB;

$pdb->Load($ARGV[0]);

$pdb->Write("foo.pdb");