Re: Help
- From: Tim Chase <gnumeric tim thechases com>
- To: Morten Welinder <mortenw gnome org>
- Cc: "gnumeric-list gnome org" <gnumeric-list gnome org>, Jakob Noe-Nygaard <xjnn hotmail com>
- Subject: Re: Help
- Date: Wed, 13 Apr 2016 07:34:02 -0500
On 2016-04-13 07:24, Morten Welinder wrote:
You don't need to load the files into the gui at all. From the
command line, do something like
ssconvert file1.wk1 file1.xlsx
ssconvert file2.wk1 file2.xlsx
...
Just make yourself a script with 143 lines of that.
If you're on a reasonable platform (i.e., not Windows), please don't
write that 143 line script. Do it in a bash for-loop, either
for i in {1..143} ; do ssconvert "file${i}.wk1" "file${i}.xlsx" ; done
or even better:
for i in file*.wk1 ; do ssconvert "$i" "${i%%.wk1}.xlsx" ; done
You might be able to do something like this with shell-scripting on
Windows but it would be more painful.
-tkc
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]