pivot table procedure conceptually works
[pspp] / doc / pspp-convert.texi
1 @node Invoking pspp-convert
2 @chapter Invoking @command{pspp-convert}
3 @cindex Invocation
4 @cindex @command{pspp-convert}
5
6 @command{pspp-convert} is a command-line utility accompanying
7 @pspp{}. It reads an SPSS system or portable file @var{input} and
8 writes a copy of it to another @var{output} in a different format.
9 Synopsis:
10
11 @display
12 @t{pspp-convert} [@var{options}] @var{input} @var{output}
13
14 @t{pspp-convert -@w{-}help}
15
16 @t{pspp-convert -@w{-}version}
17 @end display
18
19 The format of @var{Iinput} is automatically detected, when possible.
20 The character encoding of old SPSS system files cannot always be
21 guessed correctly, and SPSS/PC+ system files do not include any
22 indication of their encoding.  Use @code{-e @var{encoding}} to specify
23 the encoding in this case.
24
25 By default, the intended format for @var{output} is inferred based on its
26 extension:
27
28 @table @code
29 @item csv
30 @itemx txt
31 Comma-separated value.  Each value is formatted according to its
32 variable's print format.  The first line in the file contains variable
33 names.
34
35 @item sav
36 @item sys
37 SPSS system file.
38
39 @item por
40 SPSS portable file.
41 @end table
42
43 Use @code{-O @var{extension}} to override the inferred format or to
44 specify the format for unrecognized extensions.
45
46 The following options are accepted:
47
48 @table @code
49 @item -O @var{format}
50 @itemx --output-format=@var{format}
51 Specifies the desired output format.  @var{format} must be one of the
52 extensions listed above, e.g. @code{-O csv} requests comma-separated
53 value output.
54
55 @item -c @var{maxcases}
56 @itemx --cases=@var{maxcases}
57 By default, all cases are copied from @var{input} to @var{output}.
58 Specifying this option to limit the number of cases written to
59 @var{output} to @var{maxcases}.
60
61 @item -e @var{charset}
62 @itemx --encoding=@var{charset}
63 Overrides the encoding in which character strings in @var{input} are
64 interpreted.  This option is necessary because old SPSS system files,
65 and SPSS/PC+ system files, do not self-identify their encoding.
66
67 @item -h
68 @itemx --help
69 Prints a usage message on stdout and exits.
70
71 @item -v
72 @itemx --version
73 Prints version information on stdout and exits.
74 @end table