问题
I've tried R
and a JavaScript
library j without success. I saw a way to do it with libreoffice CLI, so should I try with bash
?
With j I did:
j file.xlsb --xlsx --output file.xlsx
回答1:
I'm not sure this is bash related, but sure you could try running LibreOffice from the command line to convert xlsb
to csv
:
soffice --convert-to csv file.xlsb
Or if you have many files to convert:
soffice --convert-to csv *.xlsb
来源:https://stackoverflow.com/questions/45556974/how-to-convert-xlsb-files-to-xlsx-or-csv-with-a-script-in-macos-ive-tried-r-an