1DBFDUMP(1) User Contributed Perl Documentation DBFDUMP(1)
2
3
4
6 dbfdump.pl - Dump the record of the dbf file
7
9 dbfdump.pl [options] files
10
11 where options are
12
13 --rs output record separator (default newline)
14 --fs output field separator (default colon)
15 --fields comma separated list of fields to print (default all)
16 --undef string to print for NULL values (default empty)
17 --memofile specifies unstandard name of attached memo file
18 --memosep separator for dBase III dbt's (default \x1a\x1a)
19
20 --nomemo do not try to read the memo (dbt/fpt) file
21 --info print info about the file and fields
22 with additional --SQL parameter, outputs the SQL create table
23 --version print version of the XBase library
24 --table output in nice table format (only available when
25 Data::ShowTable is installed, overrides rs and fs)
26
28 dbfdump.pl -fields id,msg table.dbf
29 dbfdump.pl -fs=' : ' table
30 dbfdump.pl --nomemo file.dbf
31
32 ssh user@host 'cat file.dbf.gz' ⎪ gunzip - ⎪ dbfdump.pl -
33
35 Dbfdump prints to standard output the content of dbf files listed. By
36 default, it prints all fields, separated by colons, one record on a
37 line. The output record and column separators can be changed by
38 switches on the command line. You can also ask only for some fields to
39 be printed.
40
41 The content of associated memo files (dbf, fpt) is printed for memo
42 fields, unless you use the "--nomemo" option.
43
44 You can specify reading the standard input by putting dash (-) instead
45 of file name.
46
48 (c) 1998--1999 Jan Pazdziora, adelton@fi.muni.cz,
49 http://www.fi.muni.cz/~adelton/ at Faculty of Informatics, Masaryk Uni‐
50 versity in Brno, Czech Republic
51
53 perl(1); XBase(3)
54
55
56
57perl v5.8.8 2006-06-16 DBFDUMP(1)