|
Lines 63-68
runreport.pl [ -h | -m ] [ -v ] reportID [ reportID ... ]
Link Here
|
| 63 |
--subject=s subject for the e-mail |
63 |
--subject=s subject for the e-mail |
| 64 |
--param=s parameters for the report |
64 |
--param=s parameters for the report |
| 65 |
--store-results store the result of the report |
65 |
--store-results store the result of the report |
|
|
66 |
--separator separator character for CSV |
| 67 |
--quote quote character in CSV |
| 66 |
--csv-header add column names as first line of csv output |
68 |
--csv-header add column names as first line of csv output |
| 67 |
|
69 |
|
| 68 |
|
70 |
|
|
Lines 129-134
Store the result of the report into the saved_reports DB table.
Link Here
|
| 129 |
|
131 |
|
| 130 |
To access the results, go on Reports > Guided reports > Saved report. |
132 |
To access the results, go on Reports > Guided reports > Saved report. |
| 131 |
|
133 |
|
|
|
134 |
=item B<--separator> |
| 135 |
|
| 136 |
Separator character for CSV, by default comma. |
| 137 |
|
| 138 |
=item B<--quote> |
| 139 |
|
| 140 |
Quote char in CSV, by default double quote. |
| 141 |
Empty string is allowed. |
| 142 |
|
| 132 |
=back |
143 |
=back |
| 133 |
|
144 |
|
| 134 |
=head1 DESCRIPTION |
145 |
=head1 DESCRIPTION |
|
Lines 205-210
GetOptions(
Link Here
|
| 205 |
'password:s' => \$password, |
216 |
'password:s' => \$password, |
| 206 |
'method:s' => \$method, |
217 |
'method:s' => \$method, |
| 207 |
'store-results' => \$store_results, |
218 |
'store-results' => \$store_results, |
|
|
219 |
'separator=s' => \$separator, |
| 220 |
'quote=s' => \$quote, |
| 208 |
'csv-header' => \$csv_header, |
221 |
'csv-header' => \$csv_header, |
| 209 |
|
222 |
|
| 210 |
) or pod2usage(2); |
223 |
) or pod2usage(2); |
| 211 |
- |
|
|