sssummary 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/sssummary +4 -4
- data/lib/sssummary/version.rb +1 -1
- metadata +1 -1
data/bin/sssummary
CHANGED
@@ -27,18 +27,18 @@ end
|
|
27
27
|
if options[:error] || options[:help]
|
28
28
|
puts <<"EOH"
|
29
29
|
usage: sssummary [OPTION]... SQL
|
30
|
-
-f, --file file path for
|
30
|
+
-f, --file file path for summarizing.
|
31
31
|
If this option are not specified, read aggregation data from STANDARD INPUT.
|
32
32
|
-d, --database database name.
|
33
|
-
-p, --database
|
33
|
+
-p, --database-file the path where you want to save the database file.
|
34
34
|
-t, --table table name.
|
35
35
|
-c, --columns column names. (e.g., date,url,elapsed_time)
|
36
36
|
-s, --import-separator The String placed between each field in import file. default string is TAB.
|
37
37
|
-o, --output-separator The String placed between each field in output. default string is TAB.
|
38
38
|
-l, --leave-database leave the database. If this option are not specified, delete the database file after processing.
|
39
|
-
-i, --ignore-header ignore header(first line) in import file
|
39
|
+
-i, --ignore-header ignore header(first line) in import file.
|
40
40
|
-v, --verbose explain what is being done.
|
41
|
-
-h, --help show this message
|
41
|
+
-h, --help show this message.
|
42
42
|
EOH
|
43
43
|
exit(0) if options[:help]
|
44
44
|
exit(1)
|
data/lib/sssummary/version.rb
CHANGED