0

I want to use ssconvert from Gnumeric to convert an Excel file to .txt file. The command should be:

ssconvert -O 'separator= ' excel.xlsx result.txt

However, it doesn't insert ' ' between cells. For example A B is written as AB.

How can I fix that?

pnuts
  • 58,317
  • 11
  • 87
  • 139
mahmood
  • 23,197
  • 49
  • 147
  • 242

1 Answers1

1

Try that:

ssconvert -O "separator=' '" excel.xlsx result.txt