...
|
...
|
@@ -44,6 +44,8 @@ Please see below for a list of command line options.
|
44
|
44
|
-filemask
|
45
|
45
|
bulk mode, specify a file mask here (e.g. "/use/docs/datalib/2018*.csv")
|
46
|
46
|
make sure to quote the filespace to prevent shell globbing
|
|
47
|
+ output files will have the same name as input file with a .xslx extension
|
|
48
|
+ will override any --infile or --outfile options)
|
47
|
49
|
-headerlines
|
48
|
50
|
specify number of header lines in the CSV file (default is 1, use 0 fpr no header)
|
49
|
51
|
-h
|
...
|
...
|
@@ -54,7 +56,8 @@ Please see below for a list of command line options.
|
54
|
56
|
-outfile string
|
55
|
57
|
full pathname of output file (.xlsx file)
|
56
|
58
|
-outdir
|
57
|
|
- path to a target directory for the xlsx files (must exist and be writable)
|
|
59
|
+ path to a target directory for the xlsx files (must exist and be writable)
|
|
60
|
+ must not be used with --outfile
|
58
|
61
|
-rows string
|
59
|
62
|
list of line numbers to use (1,2,8 or 1,3-14,28)
|
60
|
63
|
-sheet string
|
...
|
...
|
@@ -126,7 +129,7 @@ of people looking for such a tool, I decided to make it publicly available. I am
|
126
|
129
|
I am sure there are much better, more Go-idiomatic ways to achieve this functionality. If you have feedback on how to improve
|
127
|
130
|
the code or want to contribute, please do not hesitate to do so. I'd really like to improve my GO skills and learn things.
|
128
|
131
|
As my spare time for coding is limited to some hours around midnight a week, so please have some patience with my answers.
|
129
|
|
-I am still amazed what you can accomplish within less than 200 lines of code in terms of making my admin part of life easier. :-)
|
|
132
|
+I am still amazed what you can accomplish within less than 500 lines of code in terms of making my admin part of life easier. :-)
|
130
|
133
|
|
131
|
134
|
### Changelog
|
132
|
135
|
|
...
|
...
|
@@ -156,6 +159,11 @@ I am still amazed what you can accomplish within less than 200 lines of code in
|
156
|
159
|
2018-06-21 0.3.1
|
157
|
160
|
Added -filemask option to allow bulk processing
|
158
|
161
|
|
|
162
|
+ 2018-06-21 0.3.2
|
|
163
|
+ Bugfix that caused -outfile to be ignored in 0.3.1
|
|
164
|
+ new option for -fontsize and -fontname
|
|
165
|
+ new option for -headerlines
|
|
166
|
+
|
159
|
167
|
|
160
|
168
|
### License
|
161
|
169
|
|