1
2orcus-csv
3=========
4
5Usage
6-----
7
8**orcus-csv [options] FILE**
9
10The FILE must specify a path to an existing file.
11
12Allowed options
13---------------
14
15**-h [ --help ]**
16   Print this help.
17
18**-d [ --debug ]**
19   Turn on a debug mode to generate run-time debug output.
20
21**--dump-check**
22   Dump the content to stdout in a special format used for content verification
23   in automated tests.
24
25**-o [ --output ] arg**
26   Output directory path, or output file when --dump-check option is used.
27
28**-f [ --output-format ] arg**
29   Specify the format of output file.  Supported format types are:
30
31   - csv - CSV format
32   - flat - flat text format
33   - html - HTML format
34   - json - JSON format
35   - none - no output
36
37**--row-size arg**
38   Specify the number of maximum rows in each sheet.
39
40**--row-header arg**
41   Specify the number of header rows to repeat if the source content gets split
42   into multiple sheets.
43**--split**
44   Specify whether or not to split the data into multiple sheets in case it
45   won't fit in a single sheet.
46
47