i like to convert .xlsx-files to .html-files with a bash script. Is that possible?
Thank you!
i like to convert .xlsx-files to .html-files with a bash script. Is that possible?
Thank you!
It is possible, with the help of other external programs. For example, if you have LibreOffice installed on your computer, the following Bash code would achieve what you want:
libreoffice --invisible --convert-to html /folder/spreadsheet.xlsx --outdir /destination/folder
The code above worked fine for LibreOffice version 4.3.3.2.