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



_______________________________________________
gnumeric-list mailing list
gnumeric-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gnumeric-list

Reply via email to